/a command aka /admin
#5

pawn Код:
if(strcmp(cmd, "/admin", true) == 0 || strcmp(cmd, "/a", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            new str[160];
            GetPlayerName(playerid, str, MAX_PLAYER_NAME);
            for (new i = 0; i < MAX_PLAYER_NAME; i++)
            if (str[i] == '_')
                str[i] = ' ';
            new length = strlen(cmdtext);
            while ((idx < length) && (cmdtext[idx] <= ' '))
            {
                idx++;
            }
            new offset = idx;
            new result[64];
            while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
            {
                result[idx - offset] = cmdtext[idx];
                idx++;
            }
            result[idx - offset] = EOS;
            if(!strlen(result))
            {
                SendClientMessage(playerid, COLOR_LIGHTBLUE, "USAGE: (/a)dmin [admin chat]");
                return 1;
            }
            new arank[64];
            if(PlayerInfo[playerid][pAdmin] == 1) { arank = "New Admin"; }
            if(PlayerInfo[playerid][pAdmin] == 2) { arank = "Admin"; }
            if(PlayerInfo[playerid][pAdmin] == 3) { arank = "High Level Admin"; }
            if(PlayerInfo[playerid][pAdmin] == 4) { arank = "Head Admin"; }
            if(PlayerInfo[playerid][pAdmin] == 1340) { arank = "Owner"; }
            format(str, sizeof(str), "*%s %s: %s", arank, str, result);
            if (PlayerInfo[playerid][pAdmin] >= 1)
            {
                SendAdminMessage(COLOR_YELLOW, str);
            }
            printf("Admin %s: %s", str, result);
//          AdmincLog(string[]);
        }
        return 1;
    }
Reply


Messages In This Thread
[Solved] /a command aka /admin - by Master™ - 09.07.2010, 00:32
Re: /a command aka /admin - by Lilcuete - 09.07.2010, 00:44
Re: /a command aka /admin - by Master™ - 09.07.2010, 09:22
Re: /a command aka /admin - by Master™ - 09.07.2010, 09:24
Re: /a command aka /admin - by CAR - 09.07.2010, 09:50
Re: /a command aka /admin - by Master™ - 09.07.2010, 09:53
Re: /a command aka /admin - by CAR - 09.07.2010, 09:55
Re: /a command aka /admin - by Master™ - 09.07.2010, 09:56
Re: /a command aka /admin - by CAR - 09.07.2010, 09:57
Re: /a command aka /admin - by Master™ - 09.07.2010, 09:57

Forum Jump:


Users browsing this thread: 1 Guest(s)