View Single Post
Author Message
CrazY.
Veteran Member
Join Date: May 2015
Location: SP, Brazil
Old 06-21-2018 , 09:51   [ H3LP ] Velocity by angles
Reply With Quote #1

Hello, I'm trying to set velocity by the key the player is pressing. I tried this, it's working but not properly. When I set velocity to sides (left and right) the player moves normally however with a small speed applied down. Basically it's walking diagonally.

Code:
velocityByAngles(Float:vAngles[3], iAngleVector, Float:flSpeed, Float:vVelocity[3]) {     static Float:vVector[3];     angle_vector(vAngles, iAngleVector, vVector);     vVelocity[0] = flSpeed * vVector[0];     vVelocity[1] = flSpeed * vVector[1];     vVelocity[2] = flSpeed * vVector[2]; }
__________________









Last edited by CrazY.; 06-21-2018 at 10:25.
CrazY. is offline