Jump to content
View in the app

A better way to browse. Learn more.

OSBot :: 2007 OSRS Botting

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Walking Paths

Featured Replies

Can somebody show me an example of walking a path - without using web walking - that handles doors or stairs?

I can't really find any good examples or tuts on how these are handled for paths containing multiple objects.

An example path would be from lummy cow pen to top floor bank in lummy.

Thank you all in advanced!

To walk a certain path with walkPath you can use any sort of Position collection, such as an array.

Example of walkPath:

Position[] path = { new Position(0,0,0), new Position(1,1,1) };
getWalking().walkPath(path);

To handle doors and such yourself, you could first check before starting to walk, if you're in a certain area that you'd have to open a door in. If you'd be in such an area; handle the door(s) otherwise walk your path

 

  • Author
9 minutes ago, Eagle Scripts said:

To walk a certain path with walkPath you can use any sort of Position collection, such as an array.

Example of walkPath:

Position[] path = { new Position(0,0,0), new Position(1,1,1) };
getWalking().walkPath(path);

To handle doors and such yourself, you could first check before starting to walk, if you're in a certain area that you'd have to open a door in. If you'd be in such an area; handle the door(s) otherwise walk your path

 

Would I have to separate a path that has two separate stairs into separate paths?

for example would this work:
 

if at first stairs
    handle stairs
    walk to second stair area
else if at second stairs
    handle second stairs
else
    walk path

 

1 hour ago, Eagle Scripts said:

To walk a certain path with walkPath you can use any sort of Position collection, such as an array.

Example of walkPath:

Position[] path = { new Position(0,0,0), new Position(1,1,1) };
getWalking().walkPath(path);

To handle doors and such yourself, you could first check before starting to walk, if you're in a certain area that you'd have to open a door in. If you'd be in such an area; handle the door(s) otherwise walk your path

 

This doesn't work.

You need this:

Position[] path = { new Position(0,0,0), new Position(1,1,1) };
getWalking().walkPath(Arrays.asList(path));

 

Edited by The Undefeated

35 minutes ago, The Undefeated said:

This doesn't work.

You need this:


Position[] path = { new Position(0,0,0), new Position(1,1,1) };
getWalking().walkPath(Arrays.asList(path));

 

Yeah sorry I'm on mobile, thats correct :)

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.