30.06.2012, 12:00
pawn Код:
public OnGameModeInit()
{
// Don't use these lines if it's a filterscript
SetGameModeText("Blank Script");
for(new i = 0; i < 300; i++)
{
switch(i)
{
case 0 .. 11, 13 .. 15, 17.. 26, 28 .. 45, 47 .. 49, 51 .. 58, 60 .. 67, 69 .. 89, 91 .. 119, 121 .. 136, 138 .. 149, 151, 153 .. 156, 160 .. 166, 168 .. 191, 193 .. 226, 228, 229, 231 .. 259, 261 .. 263, 265 .. 273, 278, 281, 286, 288 .. 295: continue;
default : AddPlayerClass(i, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
}
}
return 1;
}