roaddog Posted July 18, 2014 Share Posted July 18, 2014 Hello, how to remove decimals from the result? x, y, z = getElementPosition(localPlayer) wang = getDistanceBetweenPoints3D(x,y,z, -2017, 302, 34) my math sucks D: Thank you Link to comment
MIKI785 Posted July 18, 2014 Share Posted July 18, 2014 Using math.ceil will do. x, y, z = getElementPosition(localPlayer) wang = getDistanceBetweenPoints3D(math.ceil(x), math.ceil(y), math.ceil(z), -2017, 302, 34) Or simply just math.ceil(wang). Link to comment
Et-win Posted July 18, 2014 Share Posted July 18, 2014 Or math.floor (For largest, math.ceil for smallest) Link to comment
roaddog Posted July 18, 2014 Author Share Posted July 18, 2014 Alright, Thank you guys Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now