[AJUDA] Comando /kickar
#6

pawn Код:
if(strcmp(cmd, "/kickar", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USE: /kickar [Id Do Jogador] [motivo]");
                return 1;
            }
            giveplayerid = ReturnUser(tmp);
            if (PlayerInfo[playerid][pAdmin] >= 1)
            {
                if(admintrabalhando[playerid] < 1)
                {
                SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo estб trabalhando! (/trabalhar)");
                return 1;
                }
                if(IsPlayerConnected(giveplayerid))
                {
                    if(giveplayerid != INVALID_PLAYER_ID)
                    {
                        GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
                        GetPlayerName(playerid, sendername, sizeof(sendername));
                        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_GRAD2, "USE: /kickar [Id Do Jogador] [motivo]");
                            return 1;
                        }
                        new year, month,day;
                        getdate(year, month, day);
                        format(string, sizeof(string), "ADMIN CMD: %s Foi kickado by %s, Motivo: %s (%d-%d-%d)", giveplayer, sendername, (result),month,day,year);
                        KickLog(string);
                        format(string, sizeof(string), "ADMIN CMD: %s Foi Kickado by %s, Motivo: %s", giveplayer, sendername, (result));
                        SendClientMessageToAll(COLOR_LIGHTRED, string);
                        Kick(giveplayerid);
                        return 1;
                    }
                }
            }
            else
            {
                format(string, sizeof(string), "   %d Nгo estб on.", giveplayerid);
                SendClientMessage(playerid, COLOR_GRAD1, string);
            }
        }
        return 1;
    }
Reply


Messages In This Thread
[AJUDA] Comando /kickar - by gustavo_2010_ - 22.03.2011, 14:02
Re: [AJUDA] Comando /kickar - by lucas_mdr1235 - 22.03.2011, 15:02
Re: [AJUDA] Comando /kickar - by Josma_cmd - 22.03.2011, 15:27
Re: [AJUDA] Comando /kickar - by lucas_mdr1235 - 22.03.2011, 15:36
Re: [AJUDA] Comando /kickar - by Canabis - 22.03.2011, 17:19
Re: [AJUDA] Comando /kickar - by Macintosh - 22.03.2011, 19:24
Re: [AJUDA] Comando /kickar - by Pedro Vicentini - 22.03.2011, 22:11
Re: [AJUDA] Comando /kickar - by LuxurioN™ - 22.03.2011, 22:51

Forum Jump:


Users browsing this thread: 1 Guest(s)