[Ajuda] Senhas salvam como 0
#8

Mesma coisa, vou postar o que eu fiz ...

pawn Код:
public OnPlayerDisconnect(playerid, reason)
{
    new arquivo[40], Nome[MAX_PLAYER_NAME];
    GetPlayerName(playerid, Nome, 32);
    format(arquivo, 40, "Contas/%s.ini", Nome);
    if(DOF2_FileExists(arquivo))
        {
            pInfo[playerid][Dinheiro] = GetPlayerMoney(playerid);
            DOF2_SetString(arquivo, "Senha", pInfo[playerid][Senha]);
            DOF2_SetInt(arquivo, "Dinheiro", pInfo[playerid][Dinheiro]);
            DOF2_SaveFile();
        }
    return 1;
}

public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
    new arquivo[40], Nome[MAX_PLAYER_NAME];
    GetPlayerName(playerid, Nome, 32);
    format(arquivo, 40, "Contas/%s.ini", Nome);
    if(dialogid == DIALOG_REGISTRO)
        {
            if(!response)
                {
                    SendClientMessage(playerid, COR_VERMELHO, "Vocк Foi Desconectado Pelo Servidor por Nгo Efetuar o Registro.");
                    Kick(playerid);
                }
            if(strlen(inputtext) <= 6)
                {
                    ShowPlayerDialog(playerid, DIALOG_REGISTRO, DIALOG_STYLE_PASSWORD, "Sistema de Registro", "Sua Senha Deve Conter Mais de 6 Caracteres.", "Registrar", "Sair");
                }
            else
                {
                    pInfo[playerid][Senha] = strval(inputtext);
                    DOF2_CreateFile(arquivo);
                    DOF2_SetString(arquivo, "Senha", pInfo[playerid][Senha]);
                    DOF2_SetInt(arquivo, "Dinheiro", pInfo[playerid][Dinheiro]);
                    DOF2_SaveFile();
                    ShowPlayerDialog(playerid, DIALOG_CHECK, DIALOG_STYLE_PASSWORD, "Sistema de Registro", "Para Prosseguir, Confirme sua Senha.", "Confirmar", "Cancelar");
                }
        }
Reply


Messages In This Thread
Senhas salvam como 0 - by TTheGustavo - 24.03.2015, 02:47
Re: Senhas salvam como 0 - by ipsLuan - 24.03.2015, 02:54
Re: Senhas salvam como 0 - by TTheGustavo - 24.03.2015, 02:58
Re: Senhas salvam como 0 - by SkullFire - 24.03.2015, 02:59
Re: Senhas salvam como 0 - by Whoo - 24.03.2015, 03:00
Re: Senhas salvam como 0 - by Ever_SH - 24.03.2015, 03:01
Re: Senhas salvam como 0 - by n0minal - 24.03.2015, 03:02
Re: Senhas salvam como 0 - by TTheGustavo - 24.03.2015, 03:11
Re: Senhas salvam como 0 - by Ever_SH - 24.03.2015, 03:16
Re: Senhas salvam como 0 - by n0minal - 24.03.2015, 03:17

Forum Jump:


Users browsing this thread: 1 Guest(s)