08.03.2011, 20:25
Well, you can aswell, try this method.
First:
to define the checkpoint.
Now,on
put: hcheckpoint1 = CreateCheckpoint( bla bla bla )
And on
Now, I`m not 100% it`s checkpointid or something else, since I didn`t use checkpoints so often... If it`s not correct, you can try cpid = hcheckpoint1
But, this way will set a checkpoint for all players to see it ... not only for the ones who are in that range.
First:
pawn Код:
new hcheckpoint1;
Now,on
pawn Код:
public OnGameModeInit()
And on
pawn Код:
Player enter Checkpoint[/b]
pawn Код:
if( checkpointid = hcheckpoint1)
{
SetPlayerPos(playerid, 1527.229980,-11.574499,1002.097106);
SetPlayerInterior(playerid, 3);
return 1;
}
But, this way will set a checkpoint for all players to see it ... not only for the ones who are in that range.