24.10.2010, 11:19
Okay, then you can just make a slight modification:
pawn Код:
public OnPlayerRequestSpawn(playerid)
{
if(gTeam[playerid] == CLASS_MERC)
{
if(GetPlayerScore(playerid) < 100) return 0; // If their score is less than 100, return 0, which means they won't spawn
}
return 1;
}