29.06.2009, 18:50
If your using a command to teleport, Then heres how to do it:
This goes right on top of the script with your other "new" and "forward"
Put this in your teleport command.
Place this anywhere in the script.
This goes right on top of the script with your other "new" and "forward"
pawn Код:
forward DropDelay(playerid);
pawn Код:
SetTimerEx("DropDelay",3000,0,"i",playerid);
SetPlayerPos(playerid, X, Y+3, Z);
TogglePlayerControllable(playerid, false);
pawn Код:
public DropDelay(playerid)
{
TogglePlayerControllable(playerid, true);
}