[Pedido] fs de salvamento
#1

Eae galera, sou novo em programaзгo, tem algum fs que salve: dinheiro, level, level de procurado e vida, ou alguйm poderia criar um pra mim? pois eu nгo sei criar, se alguйm estiver disposto a me ensinar, ficaria agradecido
Reply
#2

Isso й simples e facil com DOF2, vocй mesmo pode fazer, siga o tutorial: http://forum.sa-mp.com/showthread.ph...t=Tutorialdof2
Reply
#3

Usa a include DOF2.
Reply
#4

Vou tentar aqui, obrigado cicinho e ipsLuan
Reply
#5

Se servir existe o meu https://sampforum.blast.hk/showthread.php?tid=468640
Reply
#6

Exemplo:
pawn Код:
//Topo
#include <DOF2>
new SalvarContas[90];
#define pContas "Players/%s.ini" //Ai й sу criar uma pasta "Players" em scriptfiles

//Logo apуs o cadastro
new Nome[MAX_PLAYER_NAME];
format(SalvarContas, sizeof(SalvarContas), pContas, Nome);
DOF2_CreateFile(SalvarContas);
DOF2_SetInt(SalvarContas,"Dinheiro",0);
DOF2_SaveFile();

//Em qualquer lugar do gamemode
SConta(playerid)
{
    new Nome[MAX_PLAYER_NAME];
    format(SalvarContas, sizeof(SalvarContas), pContas, Nome);
    DOF2_SetInt(SalvarContas,"Dinheiro", GetPlayerMoney(playerid));
    DOF2_SaveFile();
    return 1;
}

//Public onplayerspawn
GivePlayerMoney(playerid, DOF2_GetInt(SalvarContas,"Dinheiro"));

//Public onplayerdisconnect
SConta(playerid);

//Caso o gamemode desligue ai salva os dados de todos os jogadores
public OnGameModeExit()
{
    for(new i=0; i<MAX_PLAYERS; i++)
    {
        SConta(i);
    }
    DOF2_Exit();
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)