16.10.2009, 02:04
You can actually freeze players for 1-2 seconds when they are teleported to the place, where your custom objects are.
Top of the script:
Where you need to freeze:
Somewhere:
Top of the script:
pawn Код:
forward ToggleControl(playerid);
pawn Код:
TogglePlayerControllable(playerid,0);
SetTimerEx("ToggleControl", 1500, 0, "i", playerid);
pawn Код:
public ToggleControl(playerid)
{
TogglePlayerControllable(playerid,1);
}