29.06.2009, 18:15
Hi,
If someone will teleport to some place then i want, it will freeze in air for 3 sec, How ?
If someone will teleport to some place then i want, it will freeze in air for 3 sec, How ?
forward DropDelay(playerid);
SetTimerEx("DropDelay",3000,0,"i",playerid);
SetPlayerPos(playerid, X, Y+3, Z);
TogglePlayerControllable(playerid, false);
public DropDelay(playerid)
{
TogglePlayerControllable(playerid, true);
}
pwn(630) : error 017: undefined symbol "X"
Originally Posted by James_Alex
change the X by the teleport position
|
SetPlayerPos(playerid, X, Y+3, Z);
Originally Posted by dice7
pawn Код:
|