OnClientPlayerQuit: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(11 intermediate revisions by 8 users not shown)
Line 1: Line 1:
{{Needs_Checking|We need a list of valid quit reasons --[[User:Talidan2|Talidan2]] 08:17, 22 October 2007 (CDT)}}
__NOTOC__
__NOTOC__
{{Client event}}
{{Client event}}
This event is triggered when a remote player quits the game
This event is triggered when a '''remote''' player quits the game or leaves the server. It '''will not''' get triggered on the source player's client. (Use [[onClientResourceStop]] to save client side data when the local player quits.)


==Parameters==
==Parameters==
Line 10: Line 9:


*'''reason''': A string representing the reason why the player quit.
*'''reason''': A string representing the reason why the player quit.
** "Unknown"
** "Quit"
** "Kicked"
** "Banned"
** "Bad Connection"
** "Timed out"


==Source==
==Source==
Line 15: Line 20:


==Example==  
==Example==  
This page lacks an example
This example prints a message in the chatbox when a remote player leaves the server.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--add an example here
function onQuitGame( reason )
    outputChatBox ( getPlayerName( source ).." has left the server ("..reason..")" )
end
addEventHandler( "onClientPlayerQuit", getRootElement(), onQuitGame )
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{Event_functions}}
===Client player events===
[[Category:Incomplete]]
{{Client_player_events}}
[[Category:Needs Example]]
===Client event functions===
{{Client_event_functions}}

Latest revision as of 17:15, 23 August 2014

This event is triggered when a remote player quits the game or leaves the server. It will not get triggered on the source player's client. (Use onClientResourceStop to save client side data when the local player quits.)

Parameters

string reason
  • reason: A string representing the reason why the player quit.
    • "Unknown"
    • "Quit"
    • "Kicked"
    • "Banned"
    • "Bad Connection"
    • "Timed out"

Source

The source of this event is the player that quit the game.

Example

This example prints a message in the chatbox when a remote player leaves the server.

function onQuitGame( reason )
    outputChatBox ( getPlayerName( source ).." has left the server ("..reason..")" )
end
addEventHandler( "onClientPlayerQuit", getRootElement(), onQuitGame )

See Also

Client player events


Client event functions