Difference between revisions of "OnClientPedStep"
Jump to navigation
Jump to search
(works fine with peds) |
|||
Line 4: | Line 4: | ||
This event is called when a peds foot has come on to the ground after jumping or taking a full step. | This event is called when a peds foot has come on to the ground after jumping or taking a full step. | ||
}} | }} | ||
− | |||
{{Note|This event is only triggered for peds that are streamed in}} | {{Note|This event is only triggered for peds that are streamed in}} | ||
==Parameters== | ==Parameters== |
Revision as of 12:54, 9 March 2020
This event is called when a peds foot has come on to the ground after jumping or taking a full step.
Note: This event is only triggered for peds that are streamed in |
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
Minimum supported server | n/a |
---|---|
Minimum supported client | 1.5.6.14735 |
Note: Using this function/event requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version client="1.5.6.14735" />
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 )
See Also
Client ped events
Client event functions
- addEvent
- addEventHandler
- cancelEvent
- cancelLatentEvent
- getEventHandlers
- getLatentEventHandles
- getLatentEventStatus
- removeEventHandler
- triggerEvent
- triggerLatentServerEvent
- triggerServerEvent
- wasEventCancelled