[Ajuda]
#1

Olб,
Bom queria saber se tem soluзгo pra alguns problemas que ando tendo aqui.
Comando [/Radio] (Nгo й RP/RPG, nгo liguem pro comando, sу tentem achar algum erro)
pawn Код:
if (strcmp("/radio", cmdtext, true, 10) == 0 || strcmp("/r", cmdtext, true, 10) == 0)
    {
        if(TemRadio[playerid] == 1 && PlayerInfo[playerid][pClass] > 1)
        {
            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_GRAD, "USE: (/R)adio [texto]");
                return 1;
            }
            format(string, sizeof(string), "Admin %s: %s", sendername, result);
            SendRadioMessage(0xFF6400FF,string);
        }
        return 1;
    }
Quando o player digita o comando, sai USE: (/R)..
Mas quando ele digita algo (/R eita!)
Fala Comando Invalido. Acho que й algum problema com a strlen. Alguem sabe??
************************************************** ***************
Outro problema que ando tendo й com Registro.
Bom galera, passei muito tempo procurando algum exemplo, porem nгo achei um.
Fiz um Dialog Para se registrarem com FIni, mas nгo dб certo!
Nгo cria o arquivo com o nome da pessoa. Comando:
pawn Код:
//OnDialogResponse..
if(dialogid==DIALOG_REGISTER) {
        if(response) {
            if(!strlen(inputtext)) return ShowPlayerDialog(playerid,DIALOG_REGISTER,DIALOG_STYLE_INPUT, "Registrar","Digite uma senha para obter um registro\n ( Digite uma senha vбlida por favor ):","Confirmar","Sair");
            Logado[playerid]=true;
            dini_Create(ReturnFileUser(playerid));
            dini_Set(ReturnFileUser(playerid),"Senha",inputtext);
// Deletei variaveis para n ficar muito grande.
        }
        else {
            new pName[MAX_PLAYER_NAME],lString[256];
            GetPlayerName(playerid,pName,sizeof(pName));
            format(lString,256," Vocк foi kickado por nгo se registrar.",pName,playerid);
            SendClientMessage(playerid,COLOR_GRAD,lString);
            Kick(playerid);
        }
        return 1;
    }
Peguei este com dini para ver se o problema era com a FINI, mas mesmo assim continua nгo
criando o .txt com a conta da pessoa ._. Algum milagreiro ai tem a resposta??
Reply


Messages In This Thread
[Ajuda] - by Carl_Thuse - 09.05.2011, 15:13
Re: [Ajuda] - by Josma_cmd - 09.05.2011, 15:23
Re: [Ajuda] - by Carl_Thuse - 09.05.2011, 15:27
Re: [Ajuda] - by Josma_cmd - 09.05.2011, 15:29
Re: [Ajuda] - by Carl_Thuse - 09.05.2011, 15:34
Re: [Ajuda] - by Josma_cmd - 09.05.2011, 15:37
Re: [Ajuda] - by Carl_Thuse - 09.05.2011, 15:43
Re: [Ajuda] - by Macintosh - 09.05.2011, 16:21
Re: [Ajuda] - by Carl_Thuse - 09.05.2011, 16:23
Re: [Ajuda] - by Macintosh - 09.05.2011, 16:29

Forum Jump:


Users browsing this thread: 1 Guest(s)