19.04.2012, 17:22
you are getting the vehicle velocity
so you must store the values in order to print them somewhere.
eg:
edit: too late xD
so you must store the values in order to print them somewhere.
eg:
pawn Код:
new Float:Value[3], string[150];
GetVehicleVelocity(GetPlayerVehicleID(playerid), Value[0], Value[1], Value[2]);
format(string, sizeof(string), "Velocity: X%f Y%f Z%f ", Value[0], Value[1], Value[2]);
SendClientMessage(playerid, -1, string);