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.

Token

Scripter III
  • Joined

  • Last visited

Everything posted by Token

  1. Indeed. I really liked the part where that dude jumped off a bridge.
  2. Just yell Allahu Akbar, and people will flee in terror
  3. someone left 20 cookies in my fridge they disappeared in a few hours im on a strict diet
  4. They may be running slowly but without any background processes maybe. The use of -mem 1024 only applies if your default memory allocation is too low so that's why I asked you what was the default one. This won't change anything if that's not the case.
  5. Token replied to Token's topic in Others
    Nah don't worry, I got some accounts being botted right now Authed
  6. Token replied to Token's topic in Others
    Added some bug fixes for the recent bugs reported on -Gertrude's cat -Demon Slayer -Animal Magnetism Training up some accounts for Shadow of the Storm in a bit
  7. The -allow lowcpu flag is provided at CLI level because it's probably the most common setting we use while botting and the whole point of using CLI is starting a lot faster (support for goldfarming). It has the same effect as the lowcpu checkbox in your settings but access to it is provided from outside the client. -allow lowresource will disable things like debuggers, script and client paint, the window theme which you cannot modify after the client has been started so this is only possible from CLI. @@Globbee If a script is not working in lowresource mode, that has nothing to do with the client or lowresource mode as the only way it can affect scripts is by disabling the paint thread so the onPaint() method is no longer called. If scripters write their script code or their script depends in any way on the paint thread that is just blatantly wrong and you should inform them.
  8. What was the previous memory allocation?
  9. Token replied to Token's topic in Others
    Does it stand at the entrance?
  10. You are most likely running out of memory. You can troubleshoot this by opening a command prompt and starting OSBot with the following command java -jar client.jar -login osbotusername:osbotpassword -mem d It will print an error and the default memory allocation in my case 3616MB Memory allocation not a valid number, using default Setting memory at 3616MB If your default memory allocation is not 4 digit then this is your problem and you can fix it by starting OSBot from command line with the flag -mem 1024 That prevents becoming unresponsive, in order to actually reduce the memory usage your only solution would be using scripts that don't require webwalking at all
  11. Send @Maldesto a PM and he will look into it
  12. Then paypal has not yet processed your payment
  13. Refresh the script selector
  14. Welcome to OSBot If you want to test the client you can do so by starting it without a script running, there's not much to test about the client itself. Client is only relevant to scripters because most of the methods we call in our scripts come from the client, however the way a script communicates with the client classes should not affect you as an end user. However there are free scripts that are actually working such as my first script if you really don't care about ban rates as it's quite a high ban rate activity. I guess everyone has their own personal opinions on mirror mode - what we know for sure is it doesn't increase ban rates. Whether it actually decreases them and how much is hard to tell. You can see all scripts on the SDN page from where you can also check the script's thread for more info. If you feel the need for a larger supply of free mining and woodcutting scripts you are always welcome to publish your own on this site.
  15. Token replied to Globbee's topic in General Help
    That means there is no file called osbot.jar at the current location. Here's a basic tutorial on using the windows command prompt xxx
  16. Token replied to Token's topic in Others
    I'm working on version 2.0 of the script which will allow associating a different gear preset to every quest and saving your own quick start options
  17. Not going to happen. Don't ruin your life by expecting to make money from botting because you won't make a penny. Get a bot running for at least 30 days then consider starting a gold farm otherwise it's quite pointless.
  18. Token replied to Token's topic in Others
    There is one additional step on Plague City quest stages which is kind of extra but the script automatically does it, reading the magic scroll you receive as reward to unlock ardougne teleport so you should do that if you did it manually. If you start the script on a F2P world or use DMM/Debug modes the script won't take teleports so it may not be able to get out of that dungeon because it usually uses a camelot teleport to escape.
  19. The script freezes because the current onLoop iteration ends upon throwing an exception and it never reaches the return statement to tell it how long to sleep until next onLoop iteration, which results in executing code with no sleeps at all taking up to 100% CPU. Catching exceptions like that in onLoop will ensure that your script always sleeps between onLoop iterations and won't ever freeze when throwing exceptions. I use the guava library just to output the exception to OSBot's logger because e.printStackTrace won't send the stacktrace to the logger. You can also do something like this to output the stacktrace in the logger though which may be very similar to the implementation by google in guava public static String getStackTraceAsString(Exception e) { String st = ""; for (StackTraceElement el : e.getStackTrace()) { st += el.toString(); } return st; }
  20. Token replied to Token's topic in Others
    Did you enable the DMM/debug modes on the GUI? Did you hop from a F2P world?

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.