10.02.2013, 19:43
PHP код:
SetTimerEx("LoadInt",2500,0,"i",playerid);
TogglePlayerControllable(playerid, false);
//Then at the bottem on your script:
forward LoadInt(playerid);
public LoadInt(playerid)
{
TogglePlayerControllable(playerid, true);
return 1;
}