[Ajuda]Salvamento
#4

sim, isso eu vi mais como eu faзo? isso que o Roach posto ajuda em nada, й tudo confuso.
olha o meu

pawn Код:
public OnPlayerDisconnect(playerid, reason)
 {
    new arq[64];
    if(PlayerInfo[playerid][pLogado] == 1)
    {
        format(arq, sizeof(arq), "Contas/%s.ini", PlayerName(playerid));
        dini_IntSet(arq, "Dinheiro", GetPlayerMoney(playerid));
        dini_IntSet(arq, "Level", GetPlayerScore(playerid));
        dini_IntSet(arq, "Admin", PlayerInfo[playerid][pAdmin]);
    }
    return 1;
}
nгo ta salvando :l

pawn Код:
stock SalvarContas(playerid)
 {
    new arq[64];
    if(PlayerInfo[playerid][pLogado] == 1)
    {
        format(arq, sizeof(arq), "Contas/%s.ini", PlayerName(playerid));
        dini_IntSet(arq, "Dinheiro", GetPlayerMoney(playerid));
        dini_IntSet(arq, "Level", GetPlayerScore(playerid));
        dini_IntSet(arq, "Admin", PlayerInfo[playerid][pAdmin]);
    }
    return 1;
}

stock RegistrarPlayer(playerid)
{
    new arquivo[64];
    format(arquivo,sizeof(arquivo),"Contas/%s.ini",PlayerName(playerid));
    dini_Create(arquivo);
    dini_Set(arquivo, "FirstVez", PlayerInfo[playerid][FirstVez]);
    dini_IntSet(arquivo, "Dinheiro", GetPlayerMoney(playerid));
    dini_IntSet(arquivo, "Level", GetPlayerScore(playerid));
    dini_IntSet(arquivo, "Admin", PlayerInfo[playerid][pAdmin]);
    return 1;
}


stock CarregarPlayer(playerid)
{
    new arquivo[64];
    PlayerInfo[playerid][pLogado] = 1;
    format(arquivo,sizeof(arquivo),"Contas/%s.ini",PlayerName(playerid));
    ResetPlayerMoney(playerid);
    GivePlayerMoney(playerid, dini_Int(arquivo, "Dinheiro"));
    SetPlayerScore(playerid, dini_Int(arquivo, "Level"));
    PlayerInfo[playerid][pAdmin] = dini_Int(arquivo, "Admin");
    return 1;
}
Reply


Messages In This Thread
[Ajuda]Salvamento - by Mteck - 02.05.2012, 14:50
Re: [Ajuda]Salvamento - by RoacH` - 02.05.2012, 14:53
Re: [Ajuda]Salvamento - by mau.tito - 02.05.2012, 14:54
Re: [Ajuda]Salvamento - by Mteck - 02.05.2012, 14:57
Re: [Ajuda]Salvamento - by Mteck - 02.05.2012, 15:16
Re: [Ajuda]Salvamento - by humildadeforever - 02.05.2012, 15:46
Re: [Ajuda]Salvamento - by Djair_Black - 02.05.2012, 19:51

Forum Jump:


Users browsing this thread: 2 Guest(s)