Jump to content

webWalk: no route found (to second floor)


Recommended Posts

Posted

Hello, I'm trying to make a bot to walk to a position, which is on the second floor on the map, but with the webWalk it doesn't find the route. Any help?

Code snippet to walk there (it first walks to an area nearby, then attempts walk ladder up, but it doesnt move from that area and in debugger it writes, that no rout found to destination)

else if(chaosTemplate.contains(myPlayer())) {
    	getWalking().webWalk(stealerPosition);
}

 

Posted
3 hours ago, ECH0 said:

Hello, I'm trying to make a bot to walk to a position, which is on the second floor on the map, but with the webWalk it doesn't find the route. Any help?

Code snippet to walk there (it first walks to an area nearby, then attempts walk ladder up, but it doesnt move from that area and in debugger it writes, that no rout found to destination)


else if(chaosTemplate.contains(myPlayer())) {
    	getWalking().webWalk(stealerPosition);
}

 

 

2 hours ago, ECH0 said:

Fixed it with this:


else if(chaosTemplate.contains(myPlayer())) {
    RS2Object ladder = objects.closest("Ladder");
    ladder.interact("Climb");
}

 

That's because the second floor of the chaos temple is not in webwalking. I learned this when I made a telegrabber.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...