OnClientPedStep: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(works fine with peds)
Line 18: Line 18:


==Example==
==Example==
 
<section name="Client" class="client" show="true">
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
addEventHandler("onClientPedStep", localPlayer,
addEventHandler("onClientPedStep", localPlayer,
Line 30: Line 30:
)
)
</syntaxhighlight>
</syntaxhighlight>
</section>


==See Also==
==See Also==

Revision as of 20:50, 5 April 2020

This event is called when a peds foot has come on to the ground after jumping or taking a full step.

[[{{{image}}}|link=|]] 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

This template will be deleted.

Example

Click to collapse [-]
Client
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