Score must be 100 To spawn on this Team
#7

It's < 100, not 99.

Just a shortened and neater version:
pawn Код:
public OnPlayerRequestSpawn(playerid)
{
    if(gTeam[playerid] == Team_Cali)
    {
        if(strfind(name, "[Cali]", true) != 0) //This will only work if the player has [Cali] at the BEGINNING of their name.
        {
            GameTextForPlayer(playerid, "~r~You're not in (Cali)!", 3000, 5);
            ForceClassSelection(playerid);
            return 0;
        }
    }
    else if(gTeam[playerid] == TEAM_SWAT)
    {
        if(GetPlayerScore(playerid) < 100)
        {
            GameTextForPlayer(playerid, "NEED 100 SCORE", 3000, 3);
            SendClientMessage(playerid, -1, "You need atleast 100 score to play on this team.");
            ForceClassSelection(playerid);
            return 0;
        }
    }
    return 1;
}
EDIT: If this doesn't work, then gTeam[playerid] isn't TEAM_SWAT.
Reply


Messages In This Thread
Score must be 100 To spawn on this Team - by [Cali]ChrOnic_T - 11.06.2014, 03:16
Re : Score must be 100 To spawn on this Team - by Matnix - 11.06.2014, 03:26
Re: Score must be 100 To spawn on this Team - by jessejanssen - 11.06.2014, 03:28
Re: Re : Score must be 100 To spawn on this Team - by jessejanssen - 11.06.2014, 03:32
Re : Score must be 100 To spawn on this Team - by Matnix - 11.06.2014, 03:35
Re: Score must be 100 To spawn on this Team - by [Cali]ChrOnic_T - 11.06.2014, 03:48
Re: Score must be 100 To spawn on this Team - by Threshold - 11.06.2014, 03:53

Forum Jump:


Users browsing this thread: 1 Guest(s)