09.09.2012, 01:12
The player needs 20 score to use this team... if the player dont have 20 score, it will not spawn
Is it like this?
Is it like this?
pawn Код:
public OnPlayerRequestSpawn(playerid)
{
if(gTeam[playerid] == SOLDIER)
{
if(GetPlayerMoney(playerid) < 1000) return SendClientMessage(playerid, SOLDIER_COLOR, "You are not a soldier. Apply in our forums to be a soldier.");
}
return 1;
}