need help with /makeadmin cmd
#5

pawn Код:
if(strcmp(cmd, "/makeadmin", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /makeadmin [playerid/PartOfName] [level]");
                return 1;
            }
            new para1;
            new level;
            para1 = ReturnUser(tmp);
            tmp = strtok(cmdtext, idx);
            level = strval(tmp);
            if (PlayerInfo[playerid][pAdmin] >= 10)
            {
                if(IsPlayerConnected(para1))
                {
                    if(para1 != INVALID_PLAYER_ID)
                    {
                        GetPlayerName(para1, giveplayer, sizeof(giveplayer));
                        GetPlayerName(playerid, sendername, sizeof(sendername));
                        GiveNameSpace(sendername);
                        GiveNameSpace(giveplayer);
                        if(PlayerInfo[playerid][pAdmin] == 11) { sendername = "Hidden Admin"; }
                        new Float:shealth;
                        GetPlayerHealth(para1,shealth);
                        SetPlayerHealthEx(para1,shealth);
                        new Float:darmour;
                        GetPlayerArmour(para1,darmour);
                        SetPlayerArmourEx(para1,darmour);
                        PlayerInfo[para1][pAdmin] = level;
                        //printf("AdmCmd: %s has promoted %s to a level %d admin.", sendername, giveplayer, level);
                        format(string, sizeof(string), "   You have been promoted to a level %d admin by %s", level, sendername);
                        SendClientMessage(para1, COLOR_WHITE, string);
                        format(string, sizeof(string), "   You have promoted %s to a level %d admin.", giveplayer,level);
                        SendClientMessage(playerid, COLOR_WHITE, string);
                        format(string, sizeof(string), "[ID: %d]  %s has promoted %s [ID: %d] to a level %d admin.", playerid, sendername, giveplayer, para1,level);
                        ABroadCast(COLOR_YELLOW, string, 1);
                       
                    }
                }
            }
            else
            {
                SendClientMessage(playerid, COLOR_GRAD1, "   You are not authorized to use that command!");
            }
        }
        return 1;
    }
Try that
Reply


Messages In This Thread
need help with /makeadmin cmd - by PheonixButcher - 25.04.2011, 13:47
Re: need help with /makeadmin cmd - by Max_Coldheart - 25.04.2011, 13:54
Re: need help with /makeadmin cmd - by PheonixButcher - 25.04.2011, 13:55
Re: need help with /makeadmin cmd - by PheonixButcher - 25.04.2011, 14:12
Re: need help with /makeadmin cmd - by TeamPublic - 25.04.2011, 14:17
Re: need help with /makeadmin cmd - by PheonixButcher - 25.04.2011, 14:20
Re: need help with /makeadmin cmd - by TeamPublic - 25.04.2011, 14:22
Re: need help with /makeadmin cmd - by PheonixButcher - 25.04.2011, 14:26
Re: need help with /makeadmin cmd - by PheonixButcher - 25.04.2011, 14:31
Re: need help with /makeadmin cmd - by TeamPublic - 25.04.2011, 14:38

Forum Jump:


Users browsing this thread: 1 Guest(s)