Skip 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.

Flamezzz

Members
  • Joined

  • Last visited

Everything posted by Flamezzz

  1. if (!inventory.isFull()) return State.DROP; You probably want to drop when inventory.isFull() Also, to not drop your axe you can use a filter: inventory.dropAllExcept(item -> item.getName().contains("axe"));
  2. This should work: antiBan.unregisterBehavior(AntiBan.BehaviorType.CAMERA_SHIFT); antiBan.unregisterBehavior(AntiBan.BehaviorType.RANDOM_MOUSE_MOVEMENT); antiBan.unregisterBehavior(AntiBan.BehaviorType.SLIGHT_MOUSE_MOVEMENT);
  3. You could use http://osbot.org/api/org/osbot/rs07/api/util/ExperienceTracker.html Put experienceTracker.startAll(); in onStart()
  4. You could sleep when bot.getRandomExecutor().forEvent(RandomEvent.WELCOME_SOLVER).shouldActivate() == true, assuming the widget is actually visible when this happens.
  5. If you want to keep the keys sorted use a treemap like this: TreeMap<Integer, Integer> map = new TreeMap<>(); map.put(100, 200); map.put(150, 300); map.put(1, 200); map.put(-100, 800); map.put(-50, 8000); map.put(900, 2000); map.put(700, 6000); log("Smallest key: " + map.firstKey() + " -> " + map.get(map.firstKey())); log("Largest key: " + map.lastKey() + " -> " + map.get(map.lastKey())); log("Iterating keys:"); for(int k : map.descendingKeySet()) { log(k); }
  6. I can sell you 5m, $1.8/m. You can find me in the chatbox.
  7. Flamezzz replied to Diabrolic's topic in Accounts
    1.5m
  8. Mhm... I've tried, without success, both overriding the AutoLogin solver and unregistering/registering it
  9. For the latter I think this could help you: client.isLoggedIn() and bot.getRandomExecutor().unregisterHook(RandomEvent.AUTO_LOGIN)
  10. And if that doesn't help you, you could always get some more data points and use some sort of regression / least squares.
  11. Disable resizable mode.
  12. Nothing wrong with the standard client, it's just that lots of players with a similar pattern causes bans.
  13. There's software to minimize applications into the system tray.
  14. Ye well as stated above you need some experience with java, which can take up to a few months to learn... In ~2 weeks, if I graduate uni, I'll have some more time and will create a proper scripting language w/ bindings for the osbot api. That would make it a bit easier for people to start scripting.
  15. breaking bad, dexter, malcolm in the middle, that 70s show, scrubs, psych
  16. I'll buy it for 4m.
  17. Could sell you up to 5m @ 1.9
  18. Ye of course they ran 100% flawlessly, they didn't have to add anything fancy to seem less botlike --> greater complexity --> more bugs.
  19. Bot detection got better, that's it.
  20. Forecast Janna & Big Bad Warwick

Account

Navigation

Search

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.