[Ajuda] Salvamento DOF2.
#1

Olб caros amigos do forum sa-mp.

estou enfrentando um problema e nгo consigo localiza-lo em meu cуdigo. acontece que o sistema de salvamento que eu fiz a algum tempo atraz nгo estб funcionando corretamente... veja o cуdigo a seguir:

OnPlayerDisconnect

Code:
SalvarContas(playerid);
OnGameModeExit
Code:
for(new i = 0; i <= MAX_PLAYERS; i++)
	{
		if(IsPlayerConnected(i))
		{
			if(Logado[i] == 1)
			{
				SalvarContas(i);
            }
        }
    }
Em On‌DialogResponse = DIALOG_REGISTRO

Code:
            new String[80];
			format(String, sizeof(String), CONTAS, Nome(playerid));
			DOF2_CreateFile(String);
			DOF2_SetString(String,"Senha", inputtext);
                 	DOF2_SetInt(String,"Matou", PlayerInfo[playerid][Matou]);
            DOF2_SetInt(String,"Morreu", PlayerInfo[playerid][Morreu]);
            DOF2_SetInt(String,"Dinheiro", GetPlayerMoney(playerid));
     		DOF2_SaveFile();
Em DIALOG_LOGIN

Code:
SetarConta(playerid);
Stocks de Salvamento.
SalvarContas(playerid) {
Code:
    new String[54];
	format(String, sizeof(String), CONTAS, Nome(playerid));
    DOF2_SetInt(String,"Matou", PlayerInfo[playerid][Matou]);
    DOF2_SetInt(String,"Morreu", PlayerInfo[playerid][Morreu]);
    DOF2_SetInt(String,"Dinheiro", GetPlayerMoney(playerid));
    DOF2_SaveFile();
    return 1;
}

SetarConta(playerid) {
    new String[54];
	format(String, sizeof(String), CONTAS, Nome(playerid));
    GivePlayerMoney(playerid, DOF2_GetInt(String,"Dinheiro"));
    PlayerInfo[playerid][Matou] = DOF2_GetInt(String, "Morreu");
    PlayerInfo[playerid][Morreu] = DOF2_GetInt(String, "Matou");
    return 1;
}
Viu? nгo estб salvando, nгo consigo identificar o erro.
Reply


Messages In This Thread
Salvamento DOF2. - by BieeelEvolution - 23.03.2014, 20:43
Re: Salvamento DOF2. - by VeNuZ_ - 23.03.2014, 20:50
Re: Salvamento DOF2. - by PT - 23.03.2014, 20:50
Re: Salvamento DOF2. - by BieeelEvolution - 23.03.2014, 20:52
Re: Salvamento DOF2. - by VeNuZ_ - 23.03.2014, 21:30
Re: Salvamento DOF2. - by PT - 23.03.2014, 21:49
Re: Salvamento DOF2. - by BieeelEvolution - 23.03.2014, 22:09
Re: Salvamento DOF2. - by BieeelEvolution - 24.03.2014, 14:45
Re: Salvamento DOF2. - by Marlon_Lorran - 24.03.2014, 15:07
Re: Salvamento DOF2. - by BieeelEvolution - 24.03.2014, 15:30

Forum Jump:


Users browsing this thread: 2 Guest(s)