13.11.2012, 19:41
pawn Код:
public OnGameModeInit()
{
// Don't use these lines if it's a filterscript
SetGameModeText("Learner Script, Select your class, Some have advantages.");
AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
print("You have selected CJ, This class has no perks and spawns with nothing");
AddPlayerClass(285, 1958.3783, 1343.1572, 15.3746, 269.1425, 13, 100, 19, 100, 0, 0);
print("You have selected SWAT, This class spawns with some weapons");
AddPlayerClass(102, 1958.3783, 1343.1572, 15.3746, 269.1425, 5, 0, 22, 100, 32, 50);
print("You have selected Balla, This is a gang member with little weapons");
return 1;
}