/staff command fails to have more than one staff member on it.
#2

You're returning when a staff member is found, so it isn't going to continue. Using multiple loops is useless and inefficient, you should also consider using foreach.

Код:
command(staff, playerid, params[])
{
    #pragma unused params
    new string[128];
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(IsPlayerConnected(playerid))
        {
            SendClientMessage(playerid, COLOR_ORANGE, ". : : Administrators : : .");
            if(PlayerInfo[playerid][pAdmin] >= 1)
            {
                format(string, sizeof(string), "Name: %s{A9C4E4}: (Level %d) {%s}", RPName(playerid), PlayerInfo[playerid][pAdmin], GetAwayStatus(playerid));
                SendClientMessage(playerid, GREY, string);
            }
            SendClientMessage(playerid, COLOR_ORANGE, ". : : Moderators : : .");
            if(PlayerInfo[playerid][pModerator] >= 1)
            {
                format(string, sizeof(string), "Name: %s{A9C4E4} {%s}", RPName(playerid), GetAwayStatus(i));
                SendClientMessage(playerid, GREY, string);
            }
            SendClientMessage(playerid, COLOR_ORANGE, ". : : Helpers : : .");
            if(PlayerInfo[playerid][pHelper] >= 1)
            {
                format(string, sizeof(string), "Name: %s{A9C4E4} {%s}", RPName(playerid), GetAwayStatus(playerid));
                SendClientMessage(playerid, GREY, string);
            }
        }
    }
    return 1;
}
Reply


Messages In This Thread
/staff command fails to have more than one staff member on it. - by OMonger - 17.08.2015, 16:22
Re: /staff command fails to have more than one staff member on it. - by rymax99 - 17.08.2015, 16:27
Re: /staff command fails to have more than one staff member on it. - by arad55 - 17.08.2015, 16:29
Re: /staff command fails to have more than one staff member on it. - by Roberto80 - 17.08.2015, 16:31
Re: /staff command fails to have more than one staff member on it. - by OMonger - 17.08.2015, 16:37

Forum Jump:


Users browsing this thread: 1 Guest(s)