samp checkpoints
#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


Messages In This Thread
samp checkpoints - by hadzx - 25.01.2011, 17:16
Re: samp checkpoints - by Stigg - 25.01.2011, 17:47
Re: samp checkpoints - by hadzx - 25.01.2011, 17:58
Re: samp checkpoints - by Vince - 25.01.2011, 17:59
Re: samp checkpoints - by Larsey123IsMe - 25.01.2011, 17:59
Re: samp checkpoints - by Sasino97 - 25.01.2011, 18:06

Forum Jump:


Users browsing this thread: 1 Guest(s)