12.05.2011, 12:30
The FreezeCount dont work....
Look the script:
Look the script:
pawn Код:
public Tre(playerid)
{
if(FreezeCount[playerid]==1)
{
TogglePlayerControllable(playerid, false);
return 1;
}
GameTextForAll("~y~3",1000,3);
return 1;
}
public Due()
{
GameTextForAll("~p~2",1000,3);
return 1;
}
public Uno()
{
GameTextForAll("~r~1",1000,3);
return 1;
}
public Via(playerid)
{
if(FreezeCount[playerid]==1)
{
TogglePlayerControllable(playerid, true);
FreezeCount[playerid]=0;
return 1;
}
GameTextForAll("~g~!!!Go!!!",3000,3);
return 1;
}