11.08.2011, 10:13
Quote:
Yes, but if I do
Код:
new Float:x, Float:y, Float:z; GetVehiclePos(mycarid, x, y, z); SetVehicleVelocity(mycarid, x, y, z + 50); |
Like:
pawn Код:
new Float:x, Float:y, Float:z;
GetVehicleVelocity(mycarid, x, y, z);
SetVehicleVelocity(mycarid, x, y, z + 50); // Will increase velocity in Z direction by 50