Actual Admin ranks!
#1

Hello, I have got my /makeadmin Command - Non - MYSQL and it works but i need the actual ranks to be sort-en out!

Could someone help me?

Код:
enum PlayerInfo
{
    Pass[129],
    pAdmin,
    pMod,
    pMoney,
    pLevels
}
Enum^
Reply
#2

The ranks are set by you. What that means is that you must define them.
Reply
#3

How do i do this?

_________________________________
Skype: E.r.r.y
Reply
#4

pawn Код:
stock GetAdminRank(playerid)
{
    new string[15];
    switch(PlayerInfo[playerid][pAdmin])
    {
        case 1: format(string, sizeof(string), "Moderator");
        case 2: format(string, sizeof(string), "Junior Admin");
        // etc.
    }
    return string;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)