samp checkpoints
#1

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
Reply
#2

Use a cp streamer.

Peace...
Reply
#3

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

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

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

Edit: Too late
Reply
#6

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;
}
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)