OnClientPlayerStuntFinish: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Dox'd)
 
(Improve example.)
 
(5 intermediate revisions by 4 users not shown)
Line 17: Line 17:


==Example==  
==Example==  
[[Category:Needs Example]]
This is a simple stunt script which tells player what stunt he/she started and finished, time the stunt taken to perform and distance travelled while stunting.
<syntaxhighlight lang="lua">
function onClientPlayerStuntStart(stuntType)
    outputChatBox("You started stunt: "..stuntType)
end
addEventHandler("onClientPlayerStuntStart", localPlayer, onClientPlayerStuntStart)
 
function onClientPlayerStuntFinish(stuntType, stuntTime, stuntDistance)
    outputChatBox("You finished stunt: "..stuntType..", time: "..stuntTime..", distance: "..stuntDistance)
end
addEventHandler("onClientPlayerStuntFinish", localPlayer, onClientPlayerStuntFinish)
</syntaxhighlight>


==See Also==
==See Also==
{{Event_functions}}
===Client player events===
{{Client_player_events}}
===Client event functions===
{{Client_event_functions}}

Latest revision as of 08:00, 16 September 2021

This event is triggered whenever the local player finishes a vehicle stunt.

Parameters

string stuntType, int stuntTime, float stuntDistance
  • stuntType: the type of stunt the player just performed. Valid types are:
    • 2wheeler
    • wheelie
    • stoppie
  • stuntTime: the number of miliseconds the stunt lasted.
  • stuntDistance: the distance traveled while doing the stunt.

Source

The source of this event is the local player.

Example

This is a simple stunt script which tells player what stunt he/she started and finished, time the stunt taken to perform and distance travelled while stunting.

function onClientPlayerStuntStart(stuntType)
    outputChatBox("You started stunt: "..stuntType)
end
addEventHandler("onClientPlayerStuntStart", localPlayer, onClientPlayerStuntStart)

function onClientPlayerStuntFinish(stuntType, stuntTime, stuntDistance)
    outputChatBox("You finished stunt: "..stuntType..", time: "..stuntTime..", distance: "..stuntDistance)
end
addEventHandler("onClientPlayerStuntFinish", localPlayer, onClientPlayerStuntFinish)

See Also

Client player events


Client event functions