12.06.2010, 23:31
the public name should be the same as the timer name 

Код:
Onplayerspawn:
TogglePlayerControllable(playerid, false);
SetTimerEx("Unfreeze", 10000, 0, "i", playerid);
//-----------------------------
forward Unfreeze(playerid);
public Unfreeze(playerid)
{
TogglePlayerControllable(playerid, true);
return 1;
}

