help pls!!!!!
#1

how can i make when someone get on a checkpoint to send him to wait for 30 sec and then execute a command. i mean when he enter to show a gametext and say 30,29,28 etc and then do something.
i use this streamer http://forum.sa-mp.com/index.php?topic=127905.0
pls help!!!
Reply
#2

<BUMP> pls!!!!!!!!!!!!!!!
Reply
#3

pawn Код:
new CP1;
public OnGameModeInit()
{
CP1 = CreateDynamicCP(....)
return 1;
}

public OnPlayerEnterDynamicCP(playerid, checkpointid)
{
 if(checkpointid == CP1)
  {
  SetTimer("DoNothingHere", 30000, true);
  TogglePlayerControllable(playerid, 0);
  }
  return 1;
}

forward DoNothingHere();
public DoNothingHere()
{
 TogglePlayerControllable(playerd, 1);
 return 1;
}
Well its basically like that.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)