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 PredefinedPath Just clicks on o same coordinate

Joined
Aug 7, 2015
Messages
28
So i have this path:
Code:
Path lala = PredefinedPath.create(new Coordinate(2852, 2957, 0), new Coordinate(2844, 2963, 0),  new Coordinate(2832, 2969, 0), new Coordinate(2828, 2987, 0));
lala.step();

It walks 1 coordinate then just starts spamming second one and doesnt go to 3rd one. Where could be the problem?
 
Hexis bots go brrr
Joined
Dec 9, 2016
Messages
4,423
is the second coordinate visible on the minimap or are you already on the coordinate?
 
Joined
Aug 7, 2015
Messages
28
is the second coordinate visible on the minimap or are you already on the coordinate?
I am already standing on coordinate

EDIT: I added way more coords to my path and it started working now.
 
Last edited:
Go check out new bots and give helpful feedback.
Joined
Jan 31, 2016
Messages
5,413
So i have this path:
Code:
Path lala = PredefinedPath.create(new Coordinate(2852, 2957, 0), new Coordinate(2844, 2963, 0),  new Coordinate(2832, 2969, 0), new Coordinate(2828, 2987, 0));
lala.step();

It walks 1 coordinate then just starts spamming second one and doesnt go to 3rd one. Where could be the problem?
Also RegionPath and BresehamPath work well for shorter distances.
 
Top