setplayercheckpoint - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: setplayercheckpoint (
/showthread.php?tid=277434)
setplayercheckpoint -
ServerRestart - 17.08.2011
Is it possible to create multiple setplayercheckpoints? and i dont want to use CreateDynamicCP..
And also is it possible to remove the redmarker from setplayercheckpoint, so the player only see's it when he is near it on the map, thanks!
Re: setplayercheckpoint -
grand.Theft.Otto - 17.08.2011
No, setplayercheckpoint is only for one checkpoint. You're gunna have to use the streamer whether you like it or not.
Re: setplayercheckpoint -
Roperr - 18.08.2011
You haven't read what he has said.
You can:
Код:
if(IsPlayerInRangeOfPoint(playerid, 5.0, -339.2091,1861.4932,42.5078))
{
SetPlayerCheckpoint(playerid, -339.2091,1861.4932,42.5078, 3.0);
}
This way you can make a lot of checkpoints, but make them visible only when near.
Have fun.