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.

dreameo

Scripter II
  • Joined

  • Last visited

Everything posted by dreameo

  1. Only thing that could be considered slow is finding a path to FM. Everything else should be fair game.
  2. Based off your script, it seems like the spell is selected while waiting which is good. What you can do next is make the cursor hover over the area where the wine gets spawned. On top of that, you could save the time when the wine was last available and then take that time + spawn rate time + 50 ms and just click in that area. (Try it, not sure how well it works) Edit: Look at my post for an explanation on conditional sleep https://osbot.org/forum/topic/142349-how-do-i-stopprevent-an-action/?tab=comments#comment-1659505
  3. You need to realize that most interactions are booleans. You need to take advantage of that. getInventory().interact("Use", "Green dragon leather") This should be an if statement where the code inside the block would be a conditional sleep. A conditional sleep looks like this: new ConditionalSleep(5000) { @Override public boolean condition() throws InterruptedException { return !getInventory().contains("Coins"); } }.sleep(); 5000 <-- Timeout threshold in ms If the condition: getInventory().contains("Coins") is not met, then after 5 seconds, your program continues executing. However if the condition is met, then the program continues to execute. You would want to use, 'return my player is animating'. There's a lot of random stuff that you're doing. If you want to continue writing gibberish go ahead, else read up on some beginner java or just programming in general. Basics overlap in all languages.
  4. Meh, at least you got the decency to say that your gonna use it. It's meant to be public anyhow.
  5. Here you can use this: https://pastebin.com/5TWTBqNh Usage would be: ItemData.get("Cannonball","ID") You can include another level of cache via map if you want but, the way it's now is fine. Other properties can also be retrieved, check inside the code.
  6. Only problem with that is it will constantly' open and close the site' to read from. Most likely would notice some slowness.
  7. Testing each part is a great way to go. Good habit too.
  8. Hmm no. If anything, I could do an AIO FM that lets you FM anywhere (nothing anytime soon).
  9. Haha what's with all the newbies lately. Learn some basic Java first and then try to script. Not the other way around, it doesn't work to well regardless of the outcome.
  10. "Anti-bans" are meant to mimic human interactions. Problem is, a lot of anti-ban is similar. However, human interactions vary greatly across different people. Perhaps the idea of "anti-ban" is fine however, how it's being implemented is poor. The idea is to create anti-ban that could resemble an instance of a person, instead of a few generic actions. Alek mentions not to play more then x amount of hours daily and y hours weekly but, many real players exceed those hours and aren't falsely banned. Their actions/interactions are being identified as a human. Jagex looks at a large number of factors and uses these (I believe) in neural networks. The NN decide if all the actions you've done is bot like or not. The longer you play, the more data it has and easier it's to make a decision.
  11. you don't need the filter, just "Bank booth" is fine.
  12. https://imgur.com/a/R4nUFP7 Grats man!
  13. Bruh you should look into some java tutorials. Then you would know that walkPath accepts a list of positions and not an array.
  14. haha i only tried it once before and someone said extending it wont work.
  15. He's getting a null pointer exception xD You can't extend MP. You need to keep an active reference of MP across all classes and then do exchangeContext. I believe this is the only way. extending MP would be great but don't think it can be done.
  16. You should have 2 levels of cache. First one pulls all the prices and you store it in some data structure. The second one would be this ^. You don't want to make an x number of GET requests while botting.
  17. Have you tried it outside of onStart? I read before the gc methods should be avoided? null referencing should be fine
  18. hmm you can try this: create a webwalkevent and use setsourcepos(Position p) <-- I believe this sets the starting pos? then do prefretchreq on event and true/false should let you know if it's reachable.
  19. yes guys be careful, as soon as you hit start, you will get banned.
  20. neural networks have been trained to decide a bot vs a person, this is why they've only been getting better - said from someone can't recall. ^ Makes sense though and is very realistic
  21. List<java.lang.String> getMessages(Chatbox.MessageType messageType) try that (chatbox class)
  22. dis nonsense
  23. it's still the same idea.... void thisIsDumb(){ if(Main.badDesign){ ... } } If u wanna share, just use get/set(multiple class). If u wanna make something public static, make sure it's immutable. If it's just within the same class.. public anything will do l0l btw-- I c what u mean, i don messed up. But uh yea, no point having static if it's within the same class and if not then^

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.