13.01.2016, 13:11
PHP код:
stock GetName(playerid)
{
static name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
return name;
}
stock PegarConta(playerid)
{
static arquivo[30];
format(arquivo, sizeof(arquivo), "Vips/%s.sav", GetName(playerid));
return arquivo;
}
stock SalvarConta(playerid)
{
DOF2_SetInt(PegarConta(playerid), "VIP", pVip[playerid][Vip]);
DOF2_SaveFile();
}
stock CarregarConta(playerid)
{
if(DOF2_FileExists(PegarConta(playerid)))
{
pVip[playerid][Vip] = DOF2_GetInt(PegarConta(playerid), "VIP");
}
}