OnPlayerEnterCheckpoint

From SA-MP Wiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 13:29, 19 February 2013
Mauzen (Talk | contribs)
(German page hint)
← Previous diff
Revision as of 18:01, 5 February 2014
Connor Mead (Talk | contribs)

Next diff →
Line 1: Line 1:
{{Scripting}} {{Scripting}}
-{{Title}} 
{{Description|This callback is called when a player enters the checkpoint set for that player.}} {{Description|This callback is called when a player enters the checkpoint set for that player.}}
Line 42: Line 41:
[[de:OnPlayerEnterCheckpoint]] [[de:OnPlayerEnterCheckpoint]]
 +[[fr:OnPlayerEnterCheckpoint]]

Revision as of 18:01, 5 February 2014



Description:

This callback is called when a player enters the checkpoint set for that player.


Parameters:
(playerid)
playeridThe player who entered the checkpoint.


Return Values:

This callback does not handle returns.


//In this example, a checkpoint is created for the player when spawning,
//which creates a vehicle and disables the checkpoint.
public OnPlayerSpawn(playerid)
{
    SetPlayerCheckpoint(playerid, 1982.6150, -220.6680, -0.2432, 3.0);
    return 1;
}
 
public OnPlayerEnterCheckpoint(playerid)
{
    CreateVehicle(520, 1982.6150, -221.0145, -0.2432, 82.2873, -1, -1, 60000);
    DisablePlayerCheckpoint(playerid);
    return 1;
}

Related Callbacks

The following callbacks might be useful as well, as they are related to this callback in one way or another.


Related Functions

The following functions might be useful, as they're related to this callback in one way or another.

In other languages