[Ajuda] Adaptaзгo 'Simples'
#1

Ae pessoal...alguйm poderia me ajudar a converter as linhas abaixo Dini para DOF2 .

Creio que o define nгo mudarб mais ai vai.
pawn Код:
#define savefile "Ranks/%s.ini"
pawn Код:
public OnPlayerConnect(playerid)
{
   
   
    new file[128];
    new name[MAX_PLAYER_NAME];
    GetPlayerName(playerid, name, sizeof(name));
    format(file,sizeof(file),savefile,name);
    if(!fexist(file))
    {
        dini_Create(file);
        dini_IntSet(file,"Exp", 0);
        dini_IntSet(file,"Level", 0);
    }
    if(fexist(file))
    {
        SendClientMessage(playerid,0xF0F8FFAA,"CHECK: Files Loaded!");
        Exp[playerid] = dini_Int(file,"pExp");
        Level[playerid] = dini_Int(file,"pLevel");
    }
   
    return 1;
}
pawn Код:
public OnPlayerDisconnect(playerid)
{
    new file[100];
    new name[MAX_PLAYER_NAME];
    GetPlayerName(playerid, name, sizeof(name));
    format(file,sizeof(file),savefile,name);
    dini_IntSet(file,"pExp",Exp[playerid]);
    dini_IntSet(file,"pLevel",Level[playerid]);
    return 1;

}
+REP .
Reply


Messages In This Thread
[Ajuda] Adaptaзгo 'Simples' - by sanalex - 02.05.2012, 13:47
Re: [Ajuda] Adaptaзгo 'Simples' - by ViniBorn - 02.05.2012, 13:58
Re: [Ajuda] Adaptaзгo 'Simples' - by sanalex - 02.05.2012, 14:08
Re: [Ajuda] Adaptaзгo 'Simples' - by humildadeforever - 02.05.2012, 15:09
Re: [Ajuda] Adaptaзгo 'Simples' - by sanalex - 02.05.2012, 15:49
Re: [Ajuda] Adaptaзгo 'Simples' - by ViniBorn - 02.05.2012, 16:45
Re: [Ajuda] Adaptaзгo 'Simples' - by sanalex - 02.05.2012, 16:46
Re: [Ajuda] Adaptaзгo 'Simples' - by ViniBorn - 02.05.2012, 16:50
Re: [Ajuda] Adaptaзгo 'Simples' - by CidadeNovaRP - 02.05.2012, 16:55
Re: [Ajuda] Adaptaзгo 'Simples' - by sanalex - 02.05.2012, 16:59

Forum Jump:


Users browsing this thread: 1 Guest(s)