SA-MP Forums Archive
samp checkpoints - 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: samp checkpoints (/showthread.php?tid=216454)



samp checkpoints - hadzx - 25.01.2011

i was wondering is it possable 2 make more than one checkpoint because at the moment it only displays 1 checkpoint at a time and if i make another 1 it will only ever show the 1st checkpoint is their anyway? crazybob has like 2000 checkpoints and they appear at the same time ty


Re: samp checkpoints - Stigg - 25.01.2011

Use a cp streamer.

Peace...


Re: samp checkpoints - hadzx - 25.01.2011

looked everwhere 4 one cant find one u got a streamer for it?


Re: samp checkpoints - Vince - 25.01.2011

https://sampforum.blast.hk/showthread.php?tid=102865
First thread in the plugins section. Was it so hard to find?


Re: samp checkpoints - Larsey123IsMe - 25.01.2011

http://forum.sa-mp.com/showthread.ph...light=Streamer

Edit: Too late


Re: samp checkpoints - Sasino97 - 25.01.2011

1 - Set a timer that when a player is near that point, the checkpoint appears there(sometimes bugging).

2 - Or use pickups(Recommended).
Example(pickups):

Код:
new Pickup1;

public OnGamemodeInit()
{
  Pickup1 = CreatePickup(MODEL,TYPE,X,Y,Z); //
  return 1;
}

public OnPlayerPickUpPickup(playerid,pickupid)
{
  if(pickupid == Pickup1)
  {
    SetPlayerPos(...);//etc..
    [...]
    return 1;
  }
  return 0;
}