18.11.2012, 01:31
Well I recently added it so that when you walk into a checkpoint it pops up a dialog, but the checkpoint comes up when you go near that place and then never disapears on your minmap. How to make it disipear?
pawn Код:
public OnPlayerUpdate(playerid)
{
if(IsPlayerInRangeOfPoint(playerid, 7.0, 1985.3361,-1282.2993,23.9740))
{
SetPlayerCheckpoint(playerid, 1985.3361,-1282.2993,23.9740, 2.0);
return 1;
}
return 1;
}