05.11.2013, 04:55
Emm, hey, I just had a problem with this. When I've wanted level 0, it doesn't allow me to join cops/fbi/army class, how to fix this?
Please help in advance, it has annoyed me for some days.
pawn Код:
public OnPlayerRequestSpawn(playerid)
{
if(gTeam[playerid] == POLICE || GetPlayerWantedLevel(UserInfo[playerid][uWanted]) >= 1)
{
SendClientMessage(playerid, -1, "You must have no wanted level to join this class!");
return 0;
}
if(gTeam[playerid] == FBI || GetPlayerWantedLevel(UserInfo[playerid][uWanted]) >= 1 && GetPlayerScore(playerid) < 500)
{
SendClientMessage(playerid, -1, "You need at least 500 score or must have no wanted level to join this class!");
return 0;
}
if(gTeam[playerid] == ARMY || GetPlayerWantedLevel(UserInfo[playerid][uWanted]) >= 1 && GetPlayerScore(playerid) < 1000)
{
SendClientMessage(playerid, -1, "You need at least 1000 score or must have no wanted level to join this class!");
return 0;
}
return 1;
}