SA-MP Forums Archive
[Ajuda] Problema DOF2 - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Problema DOF2 (/showthread.php?tid=430196)



Problema DOF2 - Geo1996 - 13.04.2013

Bom, o problema й que ao setar uma string esta string nгo esta sendo escrita corretamente, sгo 128 caracteres porem so escreve 119.

pawn Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{

    if ( dialogid == DIALOG_REGISTRO )
    {

        format (String, sizeof String, "Contas/%s.ini", PlayerName(playerid));

        if ( response )
        {


            new Hash[129];
            WP_Hash(Hash, sizeof Hash, inputtext);


            DOF2_CreateFile(String);
            DOF2_SetString(String, "Senha", Hash);

        }
        else
        {
            Kick(playerid);

        }

        return 1;
    }
    return 1;
}



Re: Problema DOF2 - Delete_ - 13.04.2013

Aumenta as cйlulas.


Re: Problema DOF2 - HumildadeAgain - 13.04.2013

Quote:
Originally Posted by Delete_
Посмотреть сообщение
Aumenta as cйlulas.
e depois do DOF2_SetString esta faltando um DOF2_SaveFile();


Re: Problema DOF2 - Geo1996 - 13.04.2013

Quote:
Originally Posted by Delete_
Посмотреть сообщение
Aumenta as cйlulas.
Sua resposta й meio sem fundamento.

Quote:
Originally Posted by HumildadeAgain
Посмотреть сообщение
e depois do DOF2_SetString esta faltando um DOF2_SaveFile();
Cara, mesmo que eu fizer isso, nгo ira adiantar.

A proposito fiz, e continua mesma coisa


Re: Problema DOF2 - bruxo00 - 13.04.2013

PHP код:
new Hash[256]; 



Re: Problema DOF2 - DartakousLien - 13.04.2013

isso de aumentar as celulas nao iria adiantar, supostamente o problema esta em (String, "Senha", Hash); que tem um limite de cйlulas ou deve ser qualquer outro bug...

mas para ter certeza se esta ocurrendo algo errado use um modo debug
abaixo de DOF2_SetString use SendClientMessage(playerid,-1,Hash);


Re: Problema DOF2 - Don_Speed - 13.04.2013

Funзгo WP_Hash tem limitaзгo de celular .
Aumente !



Re: Problema DOF2 - StringBR - 13.04.2013

Hash, tem limitaзгo pode aumentar elas tranquilo


Re: Problema DOF2 - Geo1996 - 13.04.2013

Ja fiz um debug anteriormente de postar este tуpico, simplesmente dei print no hash gerado e no que estava sendo escrito, o hash gerado tem 128 caracteres se nгo me engano, e o que esta sendo escrito no arquivo 119.

@edit

Achei um soluзгo,

aumentei MAX_LINE_SIZE na prуpria include e agora esta certo.

Caso alguйm conheзa uma outra soluзгo por favor comente. Pois anteriormente funcionava normalmente.