OnClientPlayerQuit: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Clientside functions cant print to the server window...)
No edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client event}}
{{Client event}}
This event is triggered when a remote player quits the game or leaves the server.
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.


==Parameters==
==Parameters==

Revision as of 14:25, 29 March 2008

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.

Parameters

string reason
  • reason: A string representing the reason why the player quit.

Quit reason string can be: - "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