15.04.2010, 17:20
Make a variable for example
When you setting checkpoint do this
In OnPlayerEnterCheckPoint
pawn Код:
new Checkpoint[MAX_PLAYERS] = 0;
pawn Код:
Checkpoint[playerid] = 1;
pawn Код:
if(Checkpoint[playerid] == 1)
{
//Your Text here...
//Setting second checkpoint
Checkpoint[playerid] = 2;
}
else if(Checkpoint[playerid] == 2)
{
//Your second text here
//Another checkpoint if nedeed
}

