Viston Posted July 11, 2017 Share Posted July 11, 2017 (edited) I'm basically trying to get a tile from my current position. E.g 10 Tiles x and 15 tiles y from my current position. I was thinking something like this perhaps? Position pos = s.myPosition().getLocalX() Edited July 11, 2017 by Visty Quote Link to comment Share on other sites More sharing options...
Night Posted July 11, 2017 Share Posted July 11, 2017 .translate on a Position 1 Quote Link to comment Share on other sites More sharing options...
Viston Posted July 11, 2017 Author Share Posted July 11, 2017 1 minute ago, Night said: .translate on a Position Ah, like this? Position pos = s.myPosition().translate(5, 6); Quote Link to comment Share on other sites More sharing options...
Night Posted July 11, 2017 Share Posted July 11, 2017 4 minutes ago, Visty said: Ah, like this? Position pos = s.myPosition().translate(5, 6); Yup that's it, that'll increase X by 5 and Y by 6 1 Quote Link to comment Share on other sites More sharing options...