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.

jdx

Members
  • Joined

  • Last visited

  1. The revision is still 41
  2. jdx replied to Maxi's topic in Releases
    Your script probably has a custom setRunning method.
  3. bipush 34 should be bipush 36.
  4. This and the guy above are in the right direction.
  5. I quit botting barrows some time ago so if theres anyone up to the task feel free to use the data below. Tunnel data setting: 452 (used in the picture) Kill data setting: 453 (contains killcount, slain brothers and whether the chest is open or not) package barrows.data; import java.util.ArrayList; import java.util.List; import org.osbot.script.MethodProvider; import task.Resetable; import barrows.pathfinding.Pathfinding; public class BarrowsData implements Resetable { private final MethodProvider methodProvider; private final int tunnelDataSetting; private final int killDataSetting; private final Object lock; private final List<Brother> slainBrothers; private Pathfinding pathFinding; public BarrowsData(MethodProvider methodProvider, int tunnelDataSetting, int killDataSetting) { this.methodProvider = methodProvider; this.tunnelDataSetting = tunnelDataSetting; this.killDataSetting = killDataSetting; this.lock = new Object(); this.slainBrothers = new ArrayList<Brother>(); this.reset(); } @Override public void reset() { synchronized (lock) { pathFinding = new Pathfinding(methodProvider.client.getConfig(tunnelDataSetting)); } slainBrothers.clear(); } public List<Room> getPath() { synchronized (lock) { return pathFinding.createPath(); } } public boolean isPuzzleSolved() { return (methodProvider.client.getConfig(tunnelDataSetting) & 0x80000000) == 0x80000000; } public boolean isRaidCompleted() { return (methodProvider.client.getConfig(tunnelDataSetting) & 0x4000000) == 0x4000000; } public boolean isChestOpen() { return (methodProvider.client.getConfig(killDataSetting) & 0x10000) == 0x10000; } public int getKillCount() { return methodProvider.client.getConfig(killDataSetting) >> 17; } public int getPuzzleChildIndex() { switch (methodProvider.client.getConfig(tunnelDataSetting) >> 29 & 0b011) { case 0: return 6; case 1: return 7; case 2: return 8; default: return -1; } } public Brother getBoss() { final int setting = methodProvider.client.getConfig(tunnelDataSetting); for (final Brother brother : Brother.values()) { final int bitmask = brother.getBossMask(); if ((setting & bitmask) == bitmask) { return brother; } } return null; } public List<Brother> getSlainBrothers() { final int setting = methodProvider.client.getConfig(killDataSetting); for (final Brother brother : Brother.values()) { final int bitmask = brother.getBossMask(); if (!slainBrothers.contains(brother) && (setting & bitmask) == bitmask) { slainBrothers.add(brother); } } return slainBrothers; } } I wont post the dependencies I used but it should give a general idea of whats going on. Some of the naming is bit off i.e. boss actually means the tomb that leads to the tunnels. If theres anything thats unclear just ask away.

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.