OnClientPedStep: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{Client event}} __NOTOC__ {{New feature/item|3.0157|1.5.6|14735| This event is called when a peds foot has come on to the ground after jumping or taking a full step. }} {{Not...")
 
m (needs checking local player trigger only)
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.
}}
}}
{{Needs Checking|This event only seems to be trigger for the local player}}
{{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 21:38, 1 September 2019

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

Dialog-information.png This article needs checking.

Reason(s): This event only seems to be trigger for the local player
[[{{{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

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


Client event functions