[Ajuda] Registro І
#2

pawn Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
    new file[64];
    if(dialogid == DIALOG_REGISTRO)
    {
        if(!response) return Kick(playerid);
        GetPlayerName(playerid,file,sizeof(file));
        format(file, sizeof(file), "Contas/%s.ini", file);
        DOF2_CreateFile(file);
        DOF2_SetString(file, "Senha", inputtext);
        DOF2_SetInt(file, "Admin", 0);
        DOF2_SetInt(file, "Score", 0);
        DOF2_SetInt(file, "Grana", 0);
        DOF2_SetInt(file, "Multa", 0);
        DOF2_SetBool(file, "Regras", false);
        DOF2_SaveFile();
        ShowPlayerDialog(playerid, DIALOG_LOGAR, DIALOG_STYLE_PASSWORD, "Logar", "Vocк se cadastrou, agora й sу logar com sua senha registrada!", "Confirma", "Cancelar");
    }
    if(dialogid == DIALOG_LOGAR)
    {
        if(!response)return Kick(playerid);
        new file[64];
        GetPlayerName(playerid,file,sizeof(file));
        format(file, sizeof(file), "Contas/%s.ini", file);
        if(DOF2_FileExists(file))
        if(!strcmp(inputtext, DOF2_GetString(file, "Senha"), true))
        {
            PlayerInfo[playerid][Logado] = true;
            Carregar(playerid);
        }
        else
        {
            PlayerInfo[playerid][pTentativa]++;
            ShowPlayerDialog(playerid, DIALOG_LOGAR, DIALOG_STYLE_PASSWORD, "Logar", "Voce errou a senha! Coloque a correta agora:", "Confirma", "Cancelar");
            if(PlayerInfo[playerid][pTentativa] == 3)
            {
                Kick(playerid);
            }
        }
    }
    return 1;
}
O meu tava dando o msm erro, ate eu fazer isso .. colocar os dados dos jogadores na pastas ' Contas '
aee testa ai e cria a pasta la na pasta scriptfiles a pasta Contas, se nao vai continuar com o msm erro .. ^^
Reply


Messages In This Thread
Registro І - by Don_Speed - 07.11.2012, 15:03
Re: Registro І - by Nill.Oliveira - 07.11.2012, 15:31
Re: Registro І - by Don_Speed - 07.11.2012, 15:39
Re: Registro І - by Don_Speed - 07.11.2012, 18:31
Re: Registro І - by humildadeforever - 07.11.2012, 18:34
Re: Registro І - by Don_Speed - 07.11.2012, 18:37
Re: Registro І - by humildadeforever - 07.11.2012, 18:46
Re: Registro І - by Don_Speed - 07.11.2012, 18:56
Re: Registro І - by rodrigooo - 07.11.2012, 19:04
Re: Registro І - by Nill.Oliveira - 07.11.2012, 20:17

Forum Jump:


Users browsing this thread: 1 Guest(s)