OnPlayerSpawn

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 spawns.

Syntax

function onPlayerSpawn( player )

Parameters

  • player - The pointer of the player

Example

This will message the chat when a player spawns.

function onPlayerSpawn( player )
{
     Message( "*** " + player.Name + " spawned as skin " + GetSkinName( player.Skin ) );
}

Notes

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

Related Functions