23.06.2011, 06:25
Well, you could always OnPlayerRequestClass do this
pawn Код:
public OnPlayerRequestClass(playerid, classid)
{
if(!IsPlayerNPC(playerid) && GetPVarInt(playerid, "LoginStatus") != 0 && GetPVarInt(playerid, "ClassSelection") == 1)
{
SpawnPlayer(playerid);
//Custom selection code here
}
return 1;
}