05.10.2010, 07:16
pawn Код:
SetTimerEx("freezetimer", 5000, 0, "%d", playerid); // Set the timer where needed
public freezetimer(playerid) // In the bottom of the script. This will simply unfreeze the player after 5 seconds.
{
TogglePlayerControllable(playerid, 1);
}