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 Predifened path Walking fails

Joined
Sep 4, 2018
Messages
2
So i use predefined path but it fails. Goes to some coordinate and just spamm clicks it. If i help(by hand) to go to another coordinate it spamms that one. Its strange for me becouse i am using same tehniques on other scripts and it works perfect. This is path:
Code:
final Path ruinPath = PredefinedPath.create(new Coordinate(3260, 3428, 0), new Coordinate(3275, 3428, 0), new Coordinate(3284, 3440, 0), new Coordinate(3288, 3456, 0), new Coordinate(3299, 3468, 0));

And this is how i use it:
Code:
if (!isInRuin() && !isInPortal() && !isInAltar() && hasEssence() && hasTalisman()) {
                ruinPath.step();
            }
 
Top