[PEDIDO]Nomes Proibidos
#7

luxurioN muito obrigado pela sua ajuda mas eu estou tentando passar o comando para o outro jeito eu nao consegui me entender com o zcms eu queria passar para o sistema igual a este:
pawn Код:
if(strcmp(cmd,"/ban",true) == 0)
    {
        tmp = strtok(cmdtext, idx);
        GetPlayerName(playerid, sendername, sizeof(sendername));
        PlayerInfo[playerid][pAdmin] = dini_Int(udb_encode(sendername), "level");
        if(!strlen(tmp))
        {
            SendClientMessage(playerid, COLOR_DBLUE, "Uso correto: /ban [id do player] [motivo]");
            return 1;
        }
        giveplayerid = strval(tmp);
        if(logged[playerid] == 1)
        {
            if(PlayerInfo[playerid][pAdmin] >= 2)
            {
                if(IsPlayerConnected(giveplayerid))
                {
                    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, erro, "Vocк sу pode banir com uma razгo apropriada!");
                    }
                    else
                    {
                        GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
                        format(string, sizeof(string), "[ADMIN]: %s fez merda e foi banido pelo %s pelo motivo: %s", giveplayer, sendername, result);
                        SendClientMessageToAll(info, string);
                        BanEx(giveplayerid, result);
                        new PlayerName[30];
                        GetPlayerName(playerid, PlayerName, 30);
                        printf("[Command] %s usou /ban para banir %s pelo motivo: %s", PlayerName, giveplayer, result);
                    }
                }
                else
                {
                    format(string, sizeof(string), "%d nгo й um player ativo!", giveplayerid);
                    SendClientMessage(playerid, erro, string);
                }
            }
            else
            {
                SendClientMessage(playerid, erro, "Vocк nгo tem permissгo para usar este comando!");
                return 1;
            }
        }
        else
        {
            SendClientMessage(playerid, erro, "Vocк tem que estar logado para usar este comando!");
        }
        return 1;
    }
por favor passe para este sistema para mim ai eu vou colocar dentro da public OnPlayerCommandText!
Reply


Messages In This Thread
[PEDIDO]Nomes Proibidos - by andersongr98 - 27.03.2011, 22:03
Re: [PEDIDO]Nomes Proibidos - by LuxurioN™ - 27.03.2011, 23:31
Re: [PEDIDO]Nomes Proibidos - by andersongr98 - 28.03.2011, 00:07
Re: [PEDIDO]Nomes Proibidos - by LuxurioN™ - 28.03.2011, 00:26
Re: [PEDIDO]Nomes Proibidos - by Dark.Angel - 28.03.2011, 00:30
Re: [PEDIDO]Nomes Proibidos - by LuxurioN™ - 28.03.2011, 00:33
Re: [PEDIDO]Nomes Proibidos - by andersongr98 - 28.03.2011, 03:59
Re: [PEDIDO]Nomes Proibidos - by LuxurioN™ - 28.03.2011, 14:14
Re: [PEDIDO]Nomes Proibidos - by andersongr98 - 28.03.2011, 19:16
Re: [PEDIDO]Nomes Proibidos - by LuxurioN™ - 28.03.2011, 22:21

Forum Jump:


Users browsing this thread: 2 Guest(s)