09.10.2010, 08:29
include a transferring period...
like:
forward transferre(playerid);
on your /aa command or whatever...:
and somewhere in you script:
this will cause that the player will float at the teleport or spawn positiong for 1.5 seconds, so you have enough time to let the objects load
like:
forward transferre(playerid);
on your /aa command or whatever...:
Код:
SetTimerEx("transferre", 1500, false, "i", playerid); TogglePlayerControllable(playerid, 0);
Код:
public transferre(playerid) { TogglePlayerControllable(playerid, 1); return 1; }