roaddog Posted July 18, 2014 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
MIKI785 Posted July 18, 2014 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).
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