06.03.2015, 16:34
Quote:
PHP код:
D:\da\filterscripts\Copy (3) of car.pwn(158) : warning 203: symbol is never used: "LoadVehicles"
D:\da\filterscripts\Copy (3) of car.pwn(158) : warning 203: symbol is never used: "SaveVehicles"
PHP код:
SaveVehicles()
{
new filestring[125];
new File: vfile = fopen("vehicles.txt", io_write);
for(new vehicleid = 1;vehicleid<MAX_VEH;vehicleid++)
{
if(cInfo[vehicleid][Car1Model] != 0)
{
format(filestring, sizeof(filestring), "%i,%f\n", // ... continue
cInfo[vehicleid][Car1Model],
cInfo[vehicleid][CarX1] // float
);
fwrite(vfile, filestring);
}
}
fclose(vfile);
}
LoadVehicles()
{
if(fexist("vehicles.txt"))
{
new string[125];
new SplitDiv[40][32];
new filestring[275];
new File: file = fopen(VEHICLE_FILE_, io_read);
if (file)
{
for(new vehicleid = 1;vehicleid<MAX_VEH;vehicleid++)
{
fread(file, filestring);
split(filestring, SplitDiv, ',');
cInfo[vehicleid][Car1Model] = strval(SplitDiv[0]);
cInfo[vehicleid][CarX1] = floatstr(SplitDiv[1]);
}
}
fclose(file);
}
}