[Ajuda] Duas contas em uma
#3

PHP Code:
stock SalvarPlayer(playerid)
{
    new 
Arquivo[40];
    
format(Arquivosizeof(Arquivo), "Contas/%s.ini"PlayerName(playerid));
    if(
DOF2_FileExists(Arquivo))
    {
        
DOF2_SetInt(Arquivo"Level"PlayerInfo[playerid][pLevel]);
        
DOF2_SetInt(Arquivo,"AdminLevel",PlayerInfo[playerid][pAdmin]);

        
DOF2_SaveFile();
    }
    return 
1;
}

stock CarregarPlayer(playerid)
{
    new 
Arquivo[40];
    
format(Arquivosizeof(Arquivo), "Contas/%s.ini"PlayerName(playerid));
    if(
DOF2_FileExists(Arquivo))
    {
        
PlayerInfo[playerid][pLevel] = DOF2_GetInt(Arquivo"Level");
        
PlayerInfo[playerid][pAdmin] = DOF2_GetInt(Arquivo"AdminLevel");

        
ResetPlayerMoney(playerid);

        
SetPlayerScore(playeridPlayerInfo[playerid][pLevel]);

        
DOF2_SaveFile();
    }
    return 
1;

Reply


Messages In This Thread
Duas contas em uma - by GasparzinhoXD - 18.12.2017, 21:39
Re: [Ajuda] Duas contas em uma - by Marllun - 18.12.2017, 22:55
Re: Duas contas em uma - by GasparzinhoXD - 19.12.2017, 18:23
Re: Duas contas em uma - by ipsLuan - 19.12.2017, 20:59
Re: Duas contas em uma - by Saw_BR - 20.12.2017, 11:26

Forum Jump:


Users browsing this thread: 2 Guest(s)