Jump to content

webWalk: no route found (to second floor)


ECH0

Recommended Posts

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);
}

 

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

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