[Ajuda] Comando de adm
#5

Tenta esse

pawn Код:
if(strcmp(cmd, "/cadeia", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "[INFO] Use: /cadeia [ID/Nome] [Tempo(Minutos)] [Motivo]");
                return 1;
            }
            new playa;
            new money;
            playa = ReturnUser(tmp);
            tmp = strtok(cmdtext, idx);
            money = strval(tmp);
            if (PlayerInfo[playerid][pAdmin] >= 1)  // use as variaveis do seu servidor =)
            {
                if(admtrampando[playerid] < 1 && PlayerInfo[playerid][pAdmin] != 3000)  // use as variaveis do seu servidor =)
                {
                    SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo estб trabalhando! (/trabalhar)");
                    return 1;
                }
                if(IsPlayerConnected(playa))
                {
                    if(playa != INVALID_PLAYER_ID)
                    {
                        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, "[INFO] Use: /cadeia [id] [Tempo(Minutos)] [motivo]");
                            return 1;
                        }
                        GetPlayerName(playa, giveplayer, sizeof(giveplayer));
                        GetPlayerName(playerid, sendername, sizeof(sendername));
                        format(string, sizeof(string), "* Vocк prendeu %s.", giveplayer);
                        SendClientMessage(playerid, COLOR_LIGHTRED, string);
                        format(string, sizeof(string), "* Vocк foi preso pelo Admin %s    Motivo: %s.", sendername,result);
                        GameTextForPlayer(playa, "~b~Bem Vindo a ~n~~r~Cadeia Admin", 5000, 3);
                        ResetPlayerWeapons(playa);
                        WantedPoints[playa] = 0;
                        SetPlayerWantedLevel(playa, 0);
                        PlayerInfo[playa][pJailed] = 2;
                        PlayerInfo[playa][pJailTime] = money * 60;
                        SetPlayerPos(playa, 346.5848, 306.1026, 999.1484);
                        SetPlayerInterior(playa,6);
                        SetPlayerVirtualWorld(playa,random(20));
                        format(string, sizeof(string), "Vocк foi preso por %d minutos.", money);
                        SendClientMessage(playa, COLOR_LIGHTBLUE, string);
                        format(string, sizeof(string), "AdmCmd: Admin %s prendeu %s por {80E3FF}%d {E84F33}Minutos, Motivo: {80E3FF}%s.",sendername,giveplayer,money,result);
                        SendClientMessageToAll(COLOR_LIGHTRED, string);
                        printf("%s", string);
                        //ProcuradoPlayer(playa);
                    }
                }
            }
            else
            {
                SendClientMessage(playerid, COLOR_GRAD1, "   Vocк nгo tem permissao para usar esse comando!");
            }
        }
        return 1;
    }
/agendarcadeia

pawn Код:
if(strcmp(cmd, "/agendarcadeia", true) == 0 || strcmp(cmd, "/acadeia", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            new playa[64];
            new money;
            playa = strtok(cmdtext, idx);
            tmp = strtok(cmdtext, idx);
            if(!strlen(playa))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "[INFO] Use: /agendarcadeia [Nome] [Tempo(Minutos)] [Motivo]");
                return 1;
            }
            money = strval(tmp);
            if (PlayerInfo[playerid][pAdmin] >= 1) // use as variaveis do seu servidor =)
            {
                if(admtrampando[playerid] < 1 && PlayerInfo[playerid][pAdmin] != 3000) // use as variaveis do seu servidor =)
                {
                    SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo estб trabalhando! (/trabalhar)");
                    return 1;
                }
                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, "[INFO] Use: /cadeia [id] [Tempo(Minutos)] [motivo]");
                    return 1;
                }
                new arquivo[64];
                format(arquivo, sizeof(arquivo), OpenAccPlayer,playa);
                GetPlayerName(playerid, sendername, sizeof(sendername));
                if(!dini_Exists(arquivo))
                {
                    SendClientMessage(playerid, COLOR_GRAD1, "   Este Player Nгo estб Registrado no Servidor!");
                    return true;
                }
                format(arquivo, sizeof(arquivo), "Agendados/JAIL%s.ini",playa);
                if(dini_Exists(arquivo))
                {
                    dini_Set(arquivo,"Admin",sendername);
                    dini_Set(arquivo,"Motivo",result);
                    dini_IntSet(arquivo,"Tempo",money);
                }
                else
                {
                    dini_Create(arquivo);
                    dini_Set(arquivo,"Admin",sendername);
                    dini_Set(arquivo,"Motivo",result);
                    dini_IntSet(arquivo,"Tempo",money);
                }
                format(gstring,sizeof(gstring), "AdmAviso: %s Agendou %s, Tempo %d Minutos, Motivo: %s", sendername,playa,money,result);
                ABroadCast(COLOR_YELLOW,gstring,1);
            }
            else
            {
                SendClientMessage(playerid, COLOR_GRAD1, "   Vocк nгo tem permissao para usar esse comando!");
            }
        }
        return 1;
    }
Mude para as variaveis do seu servidor
Reply


Messages In This Thread
Comando de adm - by WenioGustavo - 13.12.2014, 06:00
Re: Comando de adm - by WenioGustavo - 13.12.2014, 14:54
Re: Comando de adm - by WendeLKILL - 13.12.2014, 15:59
Re: Comando de adm - by WenioGustavo - 13.12.2014, 16:11
Re: Comando de adm - by paulotuto - 13.12.2014, 16:49
Re: Comando de adm - by WenioGustavo - 13.12.2014, 16:57
Re: Comando de adm - by WenioGustavo - 13.12.2014, 19:35

Forum Jump:


Users browsing this thread: 1 Guest(s)