OnClientPedStep
Jump to navigation
Jump to search
This event is called when a peds foot has come on to the ground after jumping or taking a full step.
This article needs checking. | |
Reason(s): This event only seems to trigger for the local player |
Parameters
bool leftFoot
- leftFoot: a bool representing if it was the left foot that moved.
Source
The source of this event is the ped who stepped.
Requirements
This template will be deleted.
Example
addEventHandler("onClientPedStep", localPlayer, function(leftFoot) if (leftFoot) then outputChatBox("Your left foot hit the ground.", 0, 255, 0) else outputChatBox("Your right foot hit the ground.", 0, 255, 0) end end )
</section>
See Also
Client ped events
- onClientPedDamage
- onClientPedHeliKilled
- onClientPedHitByWaterCannon
- onClientPedVehicleEnter
- onClientPedVehicleExit
- onClientPedWasted
- onClientPedWeaponFire
- onClientPedStep
Client event functions
- triggerLatentServerEvent
- triggerServerEvent
- Shared
- addEvent
- addEventHandler
- cancelEvent
- cancelLatentEvent
- getEventHandlers
- getLatentEventHandles
- getLatentEventStatus
- removeEventHandler
- triggerEvent
- wasEventCancelled