Scripting/Squirrel/Events/Player/onPlayerSpawn

From VC-MP Wiki

Jump to: navigation, search

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 Events

Personal tools
squirrel scripting