21.03.2013, 11:23
pawn Код:
public OnGameModeInit()
{
for(new s = 1; s < 300; s++) // run a loop that starts with ID 1, and ends in ID 299
{
if(s == 74) continue; // skin ID 74 is invalid, so when the loop hits that ID, skip it
else AddPlayerClass(s, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0); // the skin ID isn't 74, add the "class"
}
return 1;
}