Jump to content

[Ayuda]Necesito un evento.


Araa

Recommended Posts

Ehm bueno, lo que les queria preguntar es si existe algun evento que trigee una funcion cuando el jugador se mueve, o cuando apunta un arma.

Por ejemplo:

function back(player) 
    outputChatBox("You are no longer AFK",255,0,0,player) 
end 
  

para que muestre el mensaje cuando el jugador se mueva o apunte un arma, muchas gracias.

Link to comment

Ehm bueno, alfinal hice algo, gracias por la ayuda, ahora tengo un problema mas:

-- Server

function startDancing(player) 
    if (isPedOnGround) then 
        setPedAnimation(player,"DANCING", "dnce_m_b") 
    end 
end 
addCommandHandler("dance",startDancing) 
  
function stopDancingEvent(player) 
    setPedAnimation(player,false) 
end 
addEvent("stopDancing",true) 
addEventHandler("stopWalking",getRootElement(),stopDancingEvent) 

-- Client

  
function stopDancing(button,press) 
    if (press) then 
        if (button == "w") then 
            triggerServerEvent("stopDancing",getLocalPlayer()) 
        end 
    end 
end 
addEventHandler("onClientKey", root,stopDancing) 

El problema es que no se detiene y me dice que el argumento en setPedAnimation no es valido, alguna idea?

Link to comment
  • Recently Browsing   0 members

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