Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Question Navigation to specific coordinate on minimap

Joined
Feb 9, 2019
Messages
44
I am writing to a script atm and have ran into a navigation issue when I create a BresenhamPath. Specifiically I generate the path to a specific Coordinate and it obviously creates a point between where my player is and the point is, though always clicks outside the target room on the first click. I can see the point on the minimap and instead of making a bresman path, I would like to simply click the location on the map instead. Is this possible?

I have seen that I can use the Coordinate.click() method, but that only works in viewpath instead of on the MiniMap.
 
Joined
Dec 9, 2016
Messages
3,930
If it's a specific path, just go along the PredefinedPath route. You can control it easily that way.
 
Joined
Feb 9, 2019
Messages
44
For anyone that finds this in the future, im a bit of a peanut...


Coordinate c = new Coordinate(3267, 3232, 0);
c.minimap().click();
 
Top