31.10.2009, 15:40
If you mean to have text like "grove street" pop up when selecting a class, this is it. This gives you two slots for gang names.
Код:
public OnPlayerRequestClass(playerid, classid) { SetupPlayerForClassSelection(playerid); SetPlayerTeamFromClass(playerid,classid); if(classid == 0 || classid == 1) { GameTextForPlayer(playerid,"~g~TEAM ~w~ONE",1000,5); } else if(classid == 2 || classid == 3) { GameTextForPlayer(playerid,"~r~TEAM ~w~TWO",1000,5); } return 1; }