[AJUDA] Data
#2

Nгo Usando PVARs
pawn Код:
new TiagoPS[SLOTS];
TiagoPS[playerid] = 10;
Usando PVARs
pawn Код:
SetPVARInt(playerid,"TiagoPS",10);
Poupa mais linha e й mais otimizado.


Enquanto a dъvida й fбcil:
pawn Код:
stock SalvarDataAniver(playerid,dia,mes,ano)
{
    new name[24], file[44];
    GetPlayerName(playerid,name,24);
    format(file, sizeof(file), "%s_Aniver",name);
    if(fexist(file))
    {
        dini_IntSet(file,"Dia",dia);
        dini_IntSet(file,"Mes",mes);
        dini_IntSet(file,"Ano",ano);
    }
    return true;
}

stock GetarDataAniver(playerid)
{
    new Year, Month, Day;
    new name[24], file[44];
    GetPlayerName(playerid,name,24);
    format(file, sizeof(file), "%s_Aniver",name);
    if(fexist(file))
    {
        getdate(Year, Month, Day);
        if(dini_Int(file,"Dia") == Day && dini_Int(file,"Ano") == Year && dini_Int(file,"Mes") == Month)
        {
            GivePlayerMoney(playerid,99999999); // aniver
        }
    }
    return true;
}
Agradecer nгo Custa,rs.
Reply


Messages In This Thread
[AJUDA] Data - by TiagoPS - 12.11.2010, 10:07
Re: [AJUDA] Data - by ipsBruno - 12.11.2010, 10:20
Re: [AJUDA] Data - by TiagoPS - 12.11.2010, 10:42
Re: [AJUDA] Data - by ipsBruno - 12.11.2010, 10:49
Re: [AJUDA] Data - by TiagoPS - 12.11.2010, 10:53
Re: [AJUDA] Data - by roginho_97 - 12.11.2010, 11:34
Re: [AJUDA] Data - by [FeK]HigorOliver - 12.11.2010, 11:36
Re: [AJUDA] Data - by zSuYaNw - 12.11.2010, 13:03

Forum Jump:


Users browsing this thread: 3 Guest(s)