OnPlayerPart

From Vice City Multiplayer
Revision as of 23:33, 29 July 2014 by Franklin (talk | contribs)
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing

This is called when a player disconnects from the server.

Syntax

function onPlayerPart( player, reason )

Arguments

  • player - The pointer of the player
  • reason - Reason ID for the part.

Example

In this example the server will send a message when a player leaves the server.

function onPlayerPart( player, reason )
{
    Message( player.Name + " left server." );    
}

Notes

The functions Message and Player.Name were used in this example. More info about them in corresponding pages.

Related Functions