How to make Operators/Trainee Rank with LuxAdmin?
#6

pawn Код:
dcmd_admins(playerid,params[])
{
    #pragma unused params
        new count = 0;
        new string[128];
        new ChangeColor;
        SendClientMessage(playerid, green, " ");
        SendClientMessage(playerid, green, "___________ |- Online Admins -| ___________");
        SendClientMessage(playerid, green, " ");
        for(new i = 0; i < MAX_PLAYERS; i++)
        {
            if (IsPlayerConnected(i))
            {
                if(AccInfo[i][Level] >= 1 && AccInfo[i][Hide] == 0)
                {
                    if(AccInfo[i][Level] > 5)
                    {
                        AdmRank = "Professional Admin";
                        ChangeColor = Color_Professional_Admin;
                    }
                    if(IsPlayerAdmin(i))
                    {
                        AdmRank = "RCON Administrator";
                        ChangeColor = Color_RCON_Administrator;
                    }
                    else
                    {
                        switch(AccInfo[i][Level])
                        {
                                                        /* Added Part All you do is move the case numbers up then add new case'es for the new ranks Admin is now level 6 Master Admin is now level 7 and down all i did is move them up */
                            case 1: {
                            AdmRank = "Trainee Assistant";
                            ChangeColor = Color_Basic_Moderator;
                            }
                            case 2: {
                            AdmRank = "Assistant";
                            ChangeColor = Color_Basic_Moderator;
                            }
                                                        /* Added Part End */
                            case 3: {
                            AdmRank = "Basic Moderator";
                            ChangeColor = Color_Basic_Moderator;
                            }
                            case 4: {
                            AdmRank = "Moderator";
                            ChangeColor = Color_Moderator;
                            }
                            case 5: {
                            AdmRank = "Master Moderator";
                            ChangeColor = Color_Master_Moderator;
                            }
                            case 6: {
                            AdmRank = "Administrator";
                            ChangeColor = Color_Administrator;
                            }
                            case 7: {
                            AdmRank = "Master Administrator";
                            ChangeColor = Color_Master_Administrator;
                            }
                        }
                    }
                    switch(AccInfo[i][OnDuty])
                    {
                        case 0: AdmDuty = "Playing!";
                        case 1: AdmDuty = "On Duty!";
                    }
                    format(string, 128, "Level: %d - %s (Id:%i) | %s | %s",AccInfo[i][Level], PlayerName2(i),i,AdmRank,AdmDuty);
                    SendClientMessage(playerid, ChangeColor, string);
                    count++;
                }
            }
        }
        if (count == 0)
        SendClientMessage(playerid,red,"No admin online in the list");
        SendClientMessage(playerid, green, " _______________________________________");
        return 1;
}
Reply


Messages In This Thread
How to make Operators/Trainee Rank with LuxAdmin? - by Uberanwar - 24.10.2012, 07:02
Re: How to make Operators/Trainee Rank with LuxAdmin? - by Gangster-rocks - 24.10.2012, 07:30
Re: How to make Operators/Trainee Rank with LuxAdmin? - by Uberanwar - 24.10.2012, 07:54
Re: How to make Operators/Trainee Rank with LuxAdmin? - by Uberanwar - 24.10.2012, 08:46
Re: How to make Operators/Trainee Rank with LuxAdmin? - by Uberanwar - 25.10.2012, 07:08
Re: How to make Operators/Trainee Rank with LuxAdmin? - by zT KiNgKoNg - 25.10.2012, 07:25

Forum Jump:


Users browsing this thread: 3 Guest(s)