OnPlayerLogout
From Multi Theft Auto: Wiki
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.
Cancel effect
If you cancel this event the player will not be 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
- onPlayerACInfo
- onPlayerBan
- onPlayerChangeNick
- onPlayerChat
- onPlayerClick
- onPlayerCommand
- onPlayerConnect
- onPlayerContact
- onPlayerDamage
- onPlayerJoin
- onPlayerLogin
- onPlayerLogout
- onPlayerMarkerHit
- onPlayerMarkerLeave
- onPlayerModInfo
- onPlayerMute
- onPlayerNetworkStatus
- onPlayerPickupHit
- onPlayerPickupLeave
- onPlayerPickupUse
- onPlayerPrivateMessage
- onPlayerQuit
- onPlayerScreenShot
- onPlayerSpawn
- onPlayerStealthKill
- onPlayerTarget
- onPlayerUnmute
- onPlayerVehicleEnter
- onPlayerVehicleExit
- onPlayerVoiceStart
- onPlayerVoiceStop
- onPlayerWasted
- onPlayerWeaponFire
- onPlayerWeaponSwitch