OnPlayerJoin

From Vice City Multiplayer
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 joins the server. This is fired after data has been sent to the client.

Syntax

function onPlayerJoin( player )

Arguments

  • player - The pointer of the new player

Example

function onPlayerJoin( player )
{
    MessagePlayer( "Welcome " + player.Name + " to the server.", player );    
}

Notes

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

Related Functions