Joseph Posted May 26, 2014 Posted May 26, 2014 How would i go about getting the rotation of my minimap?
Extreme Scripts Posted May 26, 2014 Posted May 26, 2014 (edited) How would i go about getting the rotation of my minimap? You mean camera angle? That's the only thing that changes as you rotate. Edited May 26, 2014 by Divinity
Joseph Posted May 26, 2014 Author Posted May 26, 2014 You mean camera angle? That's the only thing that changes as you rotate. ya the angle
Extreme Scripts Posted May 26, 2014 Posted May 26, 2014 (edited) ya the angle client.getCameraAngle() <--- Returns camera angle client.rotateCameraAngle(int x); <-- Sets angle client.getCameraPitchAngle() <-- returns pitch angle Edited May 26, 2014 by Divinity 1
Joseph Posted May 26, 2014 Author Posted May 26, 2014 wow legit, i went down the list of client methods and couldnt find it lol. Thank you client.getCameraYawAngle(); is the answer i was looking for 1