[Pedido] Comando de desbanir ip sem reinisciar o server
#3

Precisa dar unbanip e em ъltimo caso recarregar os arquivos


pawn Код:
if(!strcmp(cmd, "/desbanip", true))
{
    if(pAdmin[playerid] >= 1 && pAdmin[playerid] <= 5)  {

        static
            tmp[256], idx
        ;

        tmp = strtok(cmdtext, idx);
       
        if(strlen(tmp) < 10)
        {
            return SendClientMessage(playerid, Vermelho, "Uso: /desbanip [ip]"), true;
        }


        format( tmp, 128, "unbanip %s", tmp);
        SendRconCommand(tmp);

        SendRconCommand("reloadbans");
    }

    return true;
}
OU caso queira algo otimizado

pawn Код:
if(!strcmp(cmdtext, "/unba", true, 5))
{
    if(pAdmin[playerid] < 1) {
        return true;
    }

    if(!cmdtext[5] || strlen(cmdtext) >  54) {
        return SendClientMessage(playerid, -1, "USE: /unba [unbanip]");
    }


    static tmp [56];

    format( tmp, 56, "unbanip %s", cmdtext[6]); // 6 pois й apуs o espaзo xD
    SendRconCommand(tmp);

    SendRconCommand("reloadbans");

    return true;
}
Reply


Messages In This Thread
Comando de desbanir ip sem reinisciar o server - by aldair8 - 01.12.2012, 02:40
Re: Comando de desbanir ip sem reinisciar o server - by andreasbleck - 01.12.2012, 04:51
Respuesta: Comando de desbanir ip sem reinisciar o server - by ipsBruno - 01.12.2012, 05:13

Forum Jump:


Users browsing this thread: 1 Guest(s)