Resource:Spawnmanager/onSpawnpointUse

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This event is triggered when a player spawns at a spawnpoint.

Syntax

void onSpawnpointUse ( player player ) 

Variables

  • The source of this event refers to the spawnpoint that was used when a player spawned
  • player: A player element representing the player who spawned at the source spawnpoint.

Example

This example plays a sound when a player spawns

function spawnUse ( player ) --when a player spawns
	playSoundFrontEnd ( player, 16 ) --play a sound for him
end
addEventHandler ( "onSpawnpointUse", getElementRoot(), spawnUse ) --add an event for onSpawnpointUse