06.08.2013, 21:16
Yep. I don't really get the second part of your post, though.
That's where the print function is
pawn Код:
LoadVehicle(v, file[])
{
INI_ParseFile(file, "vehicle_load_%s", .bExtra = true, .extra = v);
CreateSystemVehicle(vInfo[v][model], vInfo[v][x], vInfo[v][y], vInfo[v][z], vInfo[v][a], vInfo[v][col1], vInfo[v][col2], vInfo[v][owner]);
ChangeVehiclePaintjob(vInfo[v][id], vPaintjob[v]);
printf("%d | %d | %d | %d | %d", v, vInfo[v][panel] , vInfo[v][door] , vInfo[v][light], vInfo[v][tire] );
UpdateVehicleDamageStatus(vInfo[v][id], vInfo[v][panel], vInfo[v][door] ,vInfo[v][light], vInfo[v][tire]);
for(new i = 0; i < 14; i++) AddVehicleComponent(vInfo[v][id], vInfo[v][comps][i]);
}