12.04.2012, 00:23
Ta ai, boa sorte :
pawn Код:
forward SalvarKm();
public SalvarKm()
{
new arquivo[100];
for(new c=0; c<MAX_VEHICLES; c++)
{
format(arquivo, sizeof(arquivo), "KmRodados/CarID:%s", c);
if(!DOF2_FileExists(arquivo)) return DOF2_CreateFile(arquivo);
DOF2_SetInt(arquivo, "Kms", Gasolina[c]);
}
return 1;
}
forward CarregarKm();
public CarregarKm()
{
new arquivo[100];
for(new c=0; c<MAX_VEHICLES; c++)
{
format(arquivo, sizeof(arquivo), "KmRodados/CarID:%s", c);
Gasolina[c] = (DOF2_GetInt(arquivo, "Kms"));
}
return 1;
}