OnPlayerRequestSpawn: Difference between revisions
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
Decent 946 (talk | contribs) No edit summary |
No edit summary |
||
(2 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
when a players requests to spawn. | |||
== Syntax == | == Syntax == | ||
Line 13: | Line 14: | ||
function onPlayerRequestSpawn( player ) | function onPlayerRequestSpawn( player ) | ||
{ | { | ||
PrivMessage( player, "you will be spawned in 3 seconds." ); | |||
NewTimer( "spawnplayer", 3000, 1, player.ID ); | |||
return 0; | |||
} | |||
// Timers Call Back | |||
function spawnplayer( ID ) | |||
{ | |||
local player = FindPlayer( ID ); | |||
if ( player ) | |||
{ | |||
player.Spawn(); | |||
PrivMessage( player, "you have been spawned" ); | |||
} | |||
else return 0; | |||
} | } | ||
</source> | </source> | ||
Line 20: | Line 35: | ||
== Notes == | == Notes == | ||
The function [[Scripting/Squirrel/Functions/ | The function [[http://wiki.vc-mp.org/wiki/Scripting/Squirrel/Functions/PrivMessage|''PrivMessage'']] and call [[onPlayerRequestSpawn]] were used in this example. More info about them in corresponding pages. | ||
== Related | == Related Functions == | ||
{{Scripting/Squirrel/Events/Player_Events}} | {{Scripting/Squirrel/Events/Player_Events}} | ||
[[Category:Scripting/Squirrel/Events/Player_Events]] |
Latest revision as of 22:14, 30 January 2017
when a players requests to spawn.
Syntax
function onPlayerRequestSpawn( player )
Arguments
- Player player - The Pointer of the player.
Example
function onPlayerRequestSpawn( player )
{
PrivMessage( player, "you will be spawned in 3 seconds." );
NewTimer( "spawnplayer", 3000, 1, player.ID );
return 0;
}
// Timers Call Back
function spawnplayer( ID )
{
local player = FindPlayer( ID );
if ( player )
{
player.Spawn();
PrivMessage( player, "you have been spawned" );
}
else return 0;
}
Notes
The function [PrivMessage] and call onPlayerRequestSpawn were used in this example. More info about them in corresponding pages.
Related Functions
- onPlayerJoin( player )
- onPlayerPart( player, reason )
- onPlayerRequestClass( player, classID )
- onPlayerRequestSpawn( player )
- onPlayerSpawn( player )
- onPlayerDeath( player, reason )
- onPlayerKill( killer, player, reason, bodypart )
- onPlayerTeamKill( killer, player, reason, bodypart )
- onPlayerChat( player, message )
- onPlayerCommand( player, command, arguments )
- onPlayerPM( player, playerTo, message )
- onPlayerBeginTyping( player )
- onPlayerEndTyping( player )
- onLoginAttempt( playerName, password, ipAddress )
- onNameChangeable( player ) // Currently can't work.
- onPlayerMove( player, lastX, lastY, lastZ, newX, newY, newZ )
- onPlayerHealthChange( player, lastHP, newHP )
- onPlayerArmourChange( player, lastArmour, newArmour )
- onPlayerWeaponChange( player, oldWep, newWep )
- onKeyDown( player, bindID )
- onKeyUp( player, bindID )
- onPlayerAwayChange( player, newStatus )
- onPlayerSpectate( player, target )
- onPlayerCrashDump( player, crashReport )
- onPlayerNameChange( player, oldName, newName )
- onPlayerActionChange( player, oldAction, newAction )
- onPlayerStateChange( player, oldState, newState )
- onPlayerOnFireChange( player, isOnFireNow )
- onPlayerCrouchChange( player, isCrouchingNow )
- onPlayerGameKeysChange( player, oldKeys, newKeys )