27.07.2012, 22:48
PHP код:
new n_Checkpoint;
public OnGameModeInit()
{
SetGameModeText("Blank Script");
n_Checkpoint= CreateCheckpoint( info );
return 1;
}
public OnPlayerEnterCheckpoint(playerid)
{
if(checkpoint == n_Checkpoint)
{
GameTextForPlayer(playerid, "Do NOT abuse the neons!", 5000, 1);
DisablePlayerCheckpoint(playerid);
}
return 1;
}