24.10.2010, 11:15
You have a statement doing nothing...what do you want to do? Disallow someone to spawn after reaching 100 score on that team? Then like so:
pawn Код:
public OnPlayerRequestSpawn(playerid)
{
if(gTeam[playerid] == CLASS_MERC)
{
if(GetPlayerScore(playerid) >= 100) return 0;
}
return 1;
}