OnPlayerLogout: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(created.)
 
No edit summary
Line 23: Line 23:
</syntaxhighlight>
</syntaxhighlight>


{{See also/Server event|Client events}}
{{See also/Server event|Player events}}

Revision as of 16:29, 4 April 2009

This event is triggered when a user logs out of their account in-game.

Parameters

account thePreviousAccount, account theCurrentAccount
  • thePreviousAccount: The account the client was logged in as
  • theCurrentAccount: The account the client is a part of now (usually a guest account)

Source

The source of this event is the player that logged out.

Example

This example displays a message if the player logs out.

function loggedOut()
	outputChatBox( "You have successfully logged out!", source )
end
addEventHandler("onPlayerLogout",getRootElement(),loggedOut)

See Also

Player events


Event functions

Shared