25.07.2009, 15:13
You can use this after checking that player has used it 2n time or whenever you want
pawn Код:
// Inside where you check that player has choosed it 2nd-5th time
TogglePlayerControllable(playerid,0);
SetTimerEx("UnFreeze",5000,0,"i",playerid);
/// Add this at last of the script
forward UnFreeze(playerid);
public UnFreeze(playerid){
TogglePlayerControllable(playerid,1);
}