Jump to content

Preciso de ajuda no isEventHandlerAdded


Recommended Posts

então como faço para esse comando funcionar?

 

bindKey("k","down",function ()
if not isEventHandlerAdded("onClientRender"rootinventario ) then
showCursor (true)
addEventHandler ("onClientRender"rootinventario)
changeVisibility("qtd"true)
end 
end)
bindKey("BACKSPACE""down"function()
if isEventHandlerAdded("onClientRender"rootinventario )then
removeEventHandler("onClientRender"getRootElement(), inventario)
showCursor (false)
changeVisibility("qtd"false)
end 
end)
Link to comment

Essa função foi feita pela comunidade e não é nativa do MTA. Você precisa copiar o código que tem na Wiki para que a função funcione. Basta colocar esse código:

function isEventHandlerAdded( sEventName, pElementAttachedTo, func )
    if type( sEventName ) == 'string' and isElement( pElementAttachedTo ) and type( func ) == 'function' then
        local aAttachedFunctions = getEventHandlers( sEventName, pElementAttachedTo )
        if type( aAttachedFunctions ) == 'table' and #aAttachedFunctions > 0 then
            for i, v in ipairs( aAttachedFunctions ) do
                if v == func then
                    return true
                end
            end
        end
    end
    return false
end

 

Link to comment

Precisamos da galera da perfomance neste post PLEASEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE!!!!

enfim não é 500 milhoes de vezes mais simples colocar um boolean ai?

quem invento essa mizeria

 

  • Haha 1
Link to comment
10 hours ago, Gw8 said:

Precisamos da galera da perfomance neste post PLEASEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE!!!!

enfim não é 500 milhoes de vezes mais simples colocar um boolean ai?

quem invento essa mizeria

 

né...

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...