[Ajuda]Comando /agendar
#1

Meu amigo fez este comando para mim, mais tipo ele da o seguinte erro mesmo a conta existindo fala Nome Invalido.
Se puderem me ajudar eu agradeзo

pawn Код:
if(strcmp(cmd, "/agendar",true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            new tempo[20], file[128], tempo2;
            if(PlayerInfo[playerid][pAdmin] < 2) return SendClientMessage(playerid, COLOR_GREY, "   Vocк nгo esta autorizado para usar este comando!");
            tmp = strtok(cmdtext, idx);
            tempo = strtok(cmdtext, idx);
            if(!strlen(tmp)) return SendClientMessage(playerid, COLOR_GRAD2, "USE: /agendar [Nome] [Tempo] [Motivo]");
            if(!strlen(tempo)) return SendClientMessage(playerid, COLOR_GRAD2, "USE: /agendar [Nome] [Tempo] [Motivo]");
            if(admtrampando[playerid] < 1) return SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo estб trabalhando! (/jogar)");
            giveplayerid = ReturnUser(tmp);
            tempo2 = strval(tempo);
            new length = strlen(cmdtext);
            while ((idx < length) && (cmdtext[idx] <= ' ')) idx++;
            new offset = idx;
            new result[100];
            while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
            {
                result[idx - offset] = cmdtext[idx];
                idx++;
            }
            result[idx - offset] = EOS;
            if(!IsPlayerConnected(giveplayerid))
            {
                if(dini_Exists(file))
                {
                    format(file,sizeof(file), "Contas/%s.ini", giveplayerid);
                    GetPlayerName(playerid, sendername, sizeof(sendername));
                    format(string, sizeof(string), "O admin %s agendou %s, %s minutos, Motivo: %s",PlayerName(playerid), giveplayerid, tempo, (result));
                    SendClientMessageToAll(COLOR_LIGHTRED, string);
                    dini_IntSet(file, "pJailed", 6);
                    dini_IntSet(file, "pJailTime", tempo2 * 60);
                }
                else return SendClientMessage(playerid, COLOR_GREY, "   Nome Invalido! !");
            }
            else
            {
                SendClientMessage(playerid, COLOR_GREY, "   O jogador estб online... Use o comando comum para prendelo. !");
                return true;
            }
        }
        return true;
    }
Reply
#2

Ta ae :
pawn Код:
if(strcmp(cmd, "/agendar",true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            new tempo[20], file[128], tempo2;
            if(PlayerInfo[playerid][pAdmin] < 2) return SendClientMessage(playerid, COLOR_GREY, "   Vocк nгo esta autorizado para usar este comando!");
            tmp = strtok(cmdtext, idx);
            tempo = strtok(cmdtext, idx);
            if(!strlen(tmp)) return SendClientMessage(playerid, COLOR_GRAD2, "USE: /agendar [Nome] [Tempo] [Motivo]");
            if(!strlen(tempo)) return SendClientMessage(playerid, COLOR_GRAD2, "USE: /agendar [Nome] [Tempo] [Motivo]");
            if(admtrampando[playerid] < 1) return SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo estб trabalhando! (/jogar)");
            giveplayerid = ReturnUser(tmp);
            tempo2 = strval(tempo);
            new length = strlen(cmdtext);
            while ((idx < length) && (cmdtext[idx] <= ' ')) idx++;
            new offset = idx;
            new result[100];
            while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
            {
                result[idx - offset] = cmdtext[idx];
                idx++;
            }
            result[idx - offset] = EOS;
            if(!IsPlayerConnected(giveplayerid))
            {
                format(file,sizeof(file), "Contas/%s.ini", giveplayerid);
                if(dini_Exists(file))
                {
                    GetPlayerName(playerid, sendername, sizeof(sendername));
                    format(string, sizeof(string), "O admin %s agendou %s, %s minutos, Motivo: %s",PlayerName(playerid), giveplayerid, tempo, (result));
                    SendClientMessageToAll(COLOR_LIGHTRED, string);
                    dini_IntSet(file, "pJailed", 6);
                    dini_IntSet(file, "pJailTime", tempo2 * 60);
                }
                else return SendClientMessage(playerid, COLOR_GREY, "   Nome Invalido! !");
            }
            else
            {
                SendClientMessage(playerid, COLOR_GREY, "   O jogador estб online... Use o comando comum para prendelo. !");
                return true;
            }
        }
        return true;
    }
Reply
#3

man vlw ai, mais tipo n ta dando de te dar rep.
Reply
#4

ta dando a mesma coisa cara. por favor alguem ajuda ai.
Reply
#5

UP pra te ajudar, tamen to curioso
Reply
#6

vamo ajudar ai gente
Reply
#7

pawn Код:
format(file,sizeof(file), "Contas/%s.ini", giveplayerid);
%s = String
%d = ID
ou seja,use :
pawn Код:
if(strcmp(cmd, "/agendar",true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            new tempo[20], file[128], tempo2;
            if(PlayerInfo[playerid][pAdmin] < 2) return SendClientMessage(playerid, COLOR_GREY, "   Vocк nгo esta autorizado para usar este comando!");
            tmp = strtok(cmdtext, idx);
            tempo = strtok(cmdtext, idx);
            if(!strlen(tmp)) return SendClientMessage(playerid, COLOR_GRAD2, "USE: /agendar [Nome] [Tempo] [Motivo]");
            if(!strlen(tempo)) return SendClientMessage(playerid, COLOR_GRAD2, "USE: /agendar [Nome] [Tempo] [Motivo]");
            if(admtrampando[playerid] < 1) return SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo estб trabalhando! (/jogar)");
            giveplayerid = ReturnUser(tmp);
            tempo2 = strval(tempo);
            new length = strlen(cmdtext);
            while ((idx < length) && (cmdtext[idx] <= ' ')) idx++;
            new offset = idx;
            new result[100];
            while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
            {
                result[idx - offset] = cmdtext[idx];
                idx++;
            }
            result[idx - offset] = EOS;
            if(!IsPlayerConnected(giveplayerid))
            {
                format(file,sizeof(file), "Contas/%d.ini", giveplayerid);
                if(dini_Exists(file))
                {
                    GetPlayerName(playerid, sendername, sizeof(sendername));
                    format(string, sizeof(string), "O admin %s agendou %d, %d minutos, Motivo: %s",PlayerName(playerid), giveplayerid, tempo, (result));
                    SendClientMessageToAll(COLOR_LIGHTRED, string);
                    dini_IntSet(file, "pJailed", 6);
                    dini_IntSet(file, "pJailTime", tempo2 * 60);
                }
                else return SendClientMessage(playerid, COLOR_GREY, "   Nome Invalido! !");
            }
            else
            {
                SendClientMessage(playerid, COLOR_GREY, "   O jogador estб online... Use o comando comum para prendelo. !");
                return true;
            }
        }
        return true;
    }
Reply
#8

continua ainda

pawn Код:
SendClientMessage(playerid, COLOR_GREY, "   Nome Invalido! !");
Reply
#9

Quote:

%s = String
%d = ID

Guh:
%s e %d

Esses citados em negritos acima , nгo quer dizer que o d seja o "id" e o s string'

Pelo que eu sei %s sгo para letras.(siйquemeintende).
e %d sгo para numeros tipo INT... e tambem tem o %i entre outro.
Reply
#10

Alguem ajuda ai nгo esta resultando em nada.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)