[Ajuda] Comando : /kick | Nгo aparece ao player o motivo do kick!
#1

Pessoal o comando /kick nгo ta aparecendo pro player que ele foi kikado aparece pra todos do server menos pra vitima kickada tipo

" Vocк foi kickado pelo administrador ... , Motivo : "

pawn Код:
if(strcmp(cmd, "/kick", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USE: /kick [Nome_Sobrenome/ID] [motivo]");
                return true;
            }
            giveplayerid = ReturnUser(tmp);
            if (PlayerInfo[playerid][pAdmin] >= 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: /kick [Id Do Jogador] [motivo]");
                            return true;
                        }
                        getdate(year, month, day);
                        if(admtrampando[playerid] == 1 && admhide[playerid] == 1)
                        {
                            format(string, sizeof(string), "AdmCmd: %s foi kickado por %s, Motivo: %s (%d-%d-%d)", giveplayer, sendername, (result),day,month,year);
                            KickLog(string);
                            format(string, sizeof(string), "AdmCmd: %s foi kickado por %s, Motivo: %s", giveplayer, sendername, (result));
                            SendClientMessageToAll(COLOR_LIGHTRED, string);
                        }
                        else
                        {
                            format(string, sizeof(string), "AdmCmd: %s foi kickado por %s, Motivo: %s (%d-%d-%d)", giveplayer, sendername, (result),day,month,year);
                            KickLog(string);
                            format(string, sizeof(string), "AdmCmd: %s foi kickado por %s, Motivo: %s", giveplayer, sendername, (result));
                            SendClientMessageToAll(COLOR_LIGHTRED, string);
                        }
                        TextDrawShowForPlayer(giveplayerid, TextKick[giveplayerid]);
                        Kick(giveplayerid);
                        return true;
                    }
                }
            }
            else
            {
                QQIssoNovinha;
            }
        }
        return true;
    }
Reply


Messages In This Thread
Comando : /kick | Nгo aparece ao player o motivo do kick! - by ScripterInicianteBR - 31.01.2015, 19:14
Re: Comando : /kick | Nгo aparece ao player o motivo do kick! - by NexNix - 31.01.2015, 19:19
Re: Comando : /kick | Nгo aparece ao player o motivo do kick! - by zPain - 31.01.2015, 19:24
Re: Comando : /kick | Nгo aparece ao player o motivo do kick! - by ScripterInicianteBR - 31.01.2015, 20:04

Forum Jump:


Users browsing this thread: 1 Guest(s)