[Ajuda] DOF2
#2

Se vocк salva a sede como um nъmero inteiro, vocк estб pegando seu valor como se fosse Float, caso o nъmero que atribui o nнvel de sede do jogador for inteiro, mude para:
Код:
Player[ playerid ][ pSede ] = DOF2_GetInt(GetPlayerArquivo(playerid),"Sede");
Jб ao segundo erro, vocк estб colocando espaзos na string correspondente ao tempo vivo do jogador (tambйm acontece quando vocк carrega a sede do jogador, mas jб arrumei acima ).
Код:
DOF2_SetInt( GetPlayerArquivo( playerid ), "AliveTime", Player[playerid][pDTime]); //Vocк salva com "AliveTime"
Player[ playerid ][ pDTime ] = DOF2_GetInt( GetPlayerArquivo(playerid), "Alive Time"); //Mas tenta pegar seu valor com "Alive Time".
Percebe o erro? O correto seria:
Код:
Player[ playerid ][ pDTime ] = DOF2_GetInt( GetPlayerArquivo(playerid), "AliveTime");
------
A propуsito, vocк estб fazendo algo meio desnecessбrio no inнcio do cуdigo, criando outro arquivo (mesmo que este substitua o anterior) jб tendo um existente, irei lhe passar o algoritmo corrigido abaixo:
PHP код:
stock SavePlayer(playerid)
{
    if(!
DOF2_FileExistsGetPlayerArquivoplayerid ) ) )
        
DOF2_CreateFile(GetPlayerArquivo(playerid));
    
//DOF2_SetInt( GetPlayerArquivo( playerid ), "Skin", Player[ playerid ][ Skin ] );
    
DOF2_SetIntGetPlayerArquivoplayerid ), "Score"Playerplayerid ][ Score ] );
    
DOF2_SetIntGetPlayerArquivoplayerid ), "Dinheiro"GetPlayerMoneyplayerid ));
    
DOF2_SetIntGetPlayerArquivoplayerid ), "Admin"Playerplayerid ][ Admin ] );
    
DOF2_SetIntGetPlayerArquivoplayerid ), "AliveTime"Player[playerid][pDTime]);
    
DOF2_SetIntGetPlayerArquivoplayerid ), "Sede"Player[playerid][pSede]);
    
DOF2_SaveFile();
    return 
1;

Sу serб preciso criar um novo arquivo caso nгo existir um, nй?
Sу mais uma coisa, se vocк estб usando estas funзхes, nгo precisa colocar "stock" em seu nome
Reply


Messages In This Thread
DOF2 - by PedroH - 17.07.2017, 01:03
Re: DOF2 - by NathanT - 17.07.2017, 16:17
Respuesta: DOF2 - by OtimoJogo - 17.07.2017, 17:11
Re: DOF2 - by PedroH - 17.07.2017, 17:46
Re: DOF2 - by NathanT - 17.07.2017, 23:14
Re: DOF2 - by PedroH - 18.07.2017, 15:00
Re: DOF2 - by NathanT - 18.07.2017, 17:48
Re: DOF2 - by PedroH - 18.07.2017, 18:10
Re: DOF2 - by NathanT - 18.07.2017, 21:21
Re: DOF2 - by PedroH - 19.07.2017, 00:25

Forum Jump:


Users browsing this thread: 2 Guest(s)