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.

Token

Script Officer
  • Joined

  • Last visited

Everything posted by Token

  1. Authed Authed
  2. Authed
  3. Sorry for the delay, I've had some medical emergencies on Monday, but I'm slowly catching up with everything now Make sure you check the client script list, not the one on the website, it won't show up there. The logo is also the same as Stealth Quester because I never had the chance to get a logo done. Authed Authed Authed Authed Authed Authed
  4. Token replied to Token's topic in Combat & Slayer
    Sorry for the delay, I've had some medical emergencies on Monday, but I'm slowly catching up now It should start now
  5. Token replied to Token's topic in Construction
    Sorry for the delay, I've had some medical emergencies on Monday, but I'm slowly catching up with everything now Authed Authed
  6. Token replied to Token's topic in Minigames
    Sorry for the delay, I've had some medical emergencies on Monday, but I'm slowly catching up with everything now It looks like it's a new boss, I'll add it on next update Authed
  7. Token replied to Token's topic in Minigames
    Authed
  8. There is a problem with the SDN right now, it should work again in a bit
  9. Open OSBot client and start the script Authed
  10. Authed
  11. Token replied to Khaleesi's topic in Thieving
    Released
  12. Authed Authed
  13. Token replied to Token's topic in Construction
    Authed
  14. Authed Authed Authed
  15. It's disabled
  16. Authed Authed
  17. Token replied to Token's topic in Minigames
    Try the north position
  18. Authed Authed Authed Authed Authed
  19. Token replied to Token's topic in Construction
    Idk, it's different for everyone
  20. Token replied to Token's topic in Minigames
    You are trying to do something unusual over there if you have 100 GB of RAM, any context would be useful Making sure the client doesn't produce any sound (there may be multiple sound settings to get rid of) should help if you don't have a sound device installed If all else fails, open C:\Users\<USER>\jagexcache\jagexlauncher\oldschool\oldschoo.prm and change -Xmx384m to -Xmx1024m
  21. You will rarely need threads in scripts. I only use async events to correct API errors, e.g. force event termination for WebWalkEvent which used to take seconds to exit years ago. You should consider all possible approaches before resorting to threading. Threads may be justified as an abstraction of a specific task when you want to prioritize it, e.g. eating, which you decide to apply throughout the entire script and want to immediately stop whatever you were doing in order to eat. Background task; execute for as long as the script is executing; do not stop while random solver is executing or when user pauses the script Thread t = new Thread(() -> { while (getBot().getScriptExecutor().isRunning()) { // code try { Thread.sleep(69); } catch (InterruptedException e) { break; } } }); t.start(); Unknown iteration loop on script thread (do not use unless you can justify the need for this); stop when random solver kicks in or user presses pause/stop; the script executor conditions are added in order to make the pause/stop responsive in the case where the code you are executing catches the InterruptedException raised when they press those buttons; this shouldn't happen because that exception is not supposed to be caught, but adding these conditions prevents it from running forever (client buttons will not respond to clicks) if you want to be sure you don't get the client stuck and have to restart while (condition && getBot().getScriptExecutor().isRunning() && !getBot().getScriptExecutor().isPaused() && !getBot().getScriptExecutor().isSuspended()) { // ... }
  22. Token replied to Token's topic in Minigames
    What was the order of options in the menu? Are you using the new mouse?
  23. Authed
  24. Unlock teleport to fossil island and mushtrees first, visit house on the hill Authed Authed Authed Authed Authed
  25. Token replied to Token's topic in Minigames
    You have to set it to 2-2 if you insist on staying at 1 HP, 2-10 means will go up to 9 HP sometimes

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.