12.05.2014, 17:04
hy, i want to save the vehicle's travel in km.. but its not the best. i am go to down ant left, its go to negative.. any system for this?
PHP код:
new
Float:d,
Float:x1,
Float:y1,
Float:z1,
Float:x2,
Float:y2,
Float:z2;
x1 = x2;
y1 = y2;
z1 = z2;
GetVehiclePos(vehicleid, x2, y2, z2);
x1 -= x2;
y1 -= y2;
z1 -= z2;
d += floatsqroot((x1*x1)+(y1*y1)+(z1*z1)) / 1000.0;
VehicleInfo[vehicleid][vMegtettUt] = d;