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.

Gunman

Super Moderator
  • Joined

  • Last visited

Everything posted by Gunman

  1. Gunman replied to CoinMan's topic in Botting & Bans
    I get 10%
  2. @thattada https://www.youtube.com/watch?v=ROmiCpoBeDQ
  3. onGameTick isn't supported in Mirror Mode. I think MGI said he won't be adding support either because of detection or something, I don't really know why. https://osbot.org/api/org/osbot/rs07/event/interaction/MouseMoveProfile.html getBot().getMouseMoveProfile().setSpeedBaseTime(0); // What controls how fast the mouse is. Lower is faster getBot().getMouseMoveProfile().getSpeedBaseTime(); //Get also get the value so you can see the base settings. getBot().setMouseMoveProfile(new MouseMoveProfile() .setNoise(0) .setDeviation(0) .setOvershoots(0) .setSpeedBaseTime(0) .setFlowSpeedModifier(0) .setMinOvershootDistance(0) .setFlowVariety(MouseMoveProfile.FlowVariety.MEDIUM) .setOvershoots(0) ); New mouse has to be enabled to use this ^
  4. Always try to keep it 1 interaction per cycle of the onLoop. So to do that here you can do as the guy said above by reversing the order. if (getInventory().contains("Jug")) { log("Dropping"); if (getInventory().dropAll("Jug")) { ConditionalSleep2.sleep(1200, ()-> !getInventory().contains("Jug")); } } else if (getInventory().contains("Jug of wine") && myPlayer().getHealthPercent() <= 60) { log("Drinking"); if (getInventory().interact("Drink", "Jug of wine")) { //Depends on your needs but you can sleep or not here ConditionalSleep2.sleep(1200, ()-> myPlayer().getHealthPercent() > 60); } } But if you want it purely done after drinking then you will have to do it Heiz way or put the check and dropping of "Jug" at the top of your onLoop. P.S. Reason it ignores the Jug btw is because every game tick is ~600ms, so when you drank the wine you were also checking for Jug on the same game tick. It would take a game tick for the game to make the wine go from Jug of wine to Jug.
  5. Don't forget to take in account for mouse speed
  6. Gunman replied to Khaleesi's topic in Others
    No, it does not. No script on the SDN does this.
  7. The only client that's recommend to hook with mirror is Jagex's client. Only other client that officially gained any support was Rune lite, but isn't recommended. Only added because of over whelming demand
  8. Either it works or it doesn't. Rune lite support is extremely buggy. Doesn't work for most people from what I have heard and seen around the forums.
  9. Gunman replied to Dogcube's topic in Combat & Prayer
    @Dogcube Hid your reposts. Methods like this private boolean needToHeal(){ int healPercent = 45; if(healPercent > getHpPercent()){ return true; }else{ return false; } } Can be simplified to this private boolean needToHeal() { int healPercent = 45; return healPercent > getHpPercent(); } And make sure you use braces ( these -> {} ) on your if statements. Scripting tutorial linked below. https://osbot.org/forum/topic/115124-explvs-scripting-101/
  10. Make an account creator scrub
  11. @GameDance Can you please confirm if this transaction was complete or not?
  12. Try running jar fix. https://johann.loefflmann.net/en/software/jarfix/index.html
  13. There is not.
  14. Gunman replied to Eagle Scripts's topic in Minigames
    Some of the settings widget ids changed last update, might be why it's stuck. I don't know what it might be trying to turn on or off or change Might help Eagle if you provide if this is on Mirror or injection and if it only happens on Mirror if it is. @Eagle Scripts ^
  15. If you don't have java 8 installed, go to java.com and install java 8. Then open it as a jar file. May need to click look for another app on this pc and navigate to the folder.
  16. @Steven Jay Me boi @Elliott sells US proxies for RS. He's gone on vacation atm so he won't be selling for like another week. (They're like $4 each but are high quality is why. Not really needed for 1 account btw since you need to buy a min of 3.) Also for the first couple bans you generally can quash them for hijacking if you use a proxy on them.
  17. @Mikasa Use the bump button smh
  18. Not allowed to sell accounts with TWC.
  19. @Malcolm User has been banned. @Fratem If that is you in the screenshots above, check them UIDs please. Dispute closed.
  20. @GuguBhai Account name is in the picture. And it's something with hardware acceleration I think? Don't remember. @Patrick Any update on this? Look at picture hidden below.
  21. Gunman replied to BazzR's topic in Spam/Off Topic
    Sorry boomers but I am a PS2 and N64 kid smh.
  22. Why'd you leak the mod test
  23. Cancel the subscription through PayPal. Tutorial below, and OSBot should be listed as Meire & Brito Automation. https://www.youtube.com/watch?v=PqjBueILt60
  24. @SmaTTeR Read #6 here https://osbot.org/forum/topic/115124-explvs-scripting-101/
  25. You need to define the area. And make sure it's the OSBot Area import and not the Java Area import.

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.