Resource:Spawnmanager/onSpawnpointUse: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 9: | Line 9: | ||
==Variables== | ==Variables== | ||
* The [[source]] of this event refers to the spawnpoint that was used when a player spawned | * The [[event system#Event source|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. | *'''player''': A player element representing the player who spawned at the source spawnpoint. | ||
Revision as of 19:47, 19 October 2007
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