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.

Prolax

Members
  • Joined

  • Last visited

Everything posted by Prolax

  1. Brains, maybe in a next life.
  2. It's 2017, everybody should be perfect by now.
  3. Prolax replied to Carti's topic in Runescape
    That's a good way to end your RuneScape carreer.
  4. Great scripter, should be rank II already.
  5. Asked Donald Duck for anal (twice).
  6. Still virgin.
  7. Too late for that, Android and iOS control the market.
  8. Indeed, I noticed the same. Just a random delay or conditional sleep?
  9. Thanks, it works!
  10. Does anyone have a method to hover over next npc for a combat script? Or some advice on how to write my own method for this? Thanks!
  11. For example in your onLoop, you just call the method attackNpc(), no need for states. But that's just how I prefer it. if (gull != null && !gull.isUnderAttack() && !gull.isHitBarVisible()) attackNpc(); } I tried the script, the attacking of the next seagull could be a bit faster. Very nice for your first script though.
  12. Tutorial Island accounts 1 week old at lumbridge are 100k each. Walking to GE can be done in 1 line of code.
  13. Instead of states you could just use methods. I'll test it today.
  14. Nice achievement, you going to continue till 99?
  15. public final class ProlaxAutoFighter extends Script { private NPC seagull; @Override public final int onLoop() throws InterruptedException { seagull = getNpcs().closest(npc -> npc.getName().equals("Seagull")); if (!myPlayer().isInteracting(seagull) && seagull != null && !seagull.isUnderAttack() && seagull.getHealthPercent() > 0 && !getCombat().isFighting()) { attackNpc(); } return random(100,300); } public void attackNpc(){ NPC seagull = getNpcs().closest(npc -> npc.getName().equals("Seagull")); seagull.interact("Attack"); new ConditionalSleep(3000,500) { @Override public boolean condition() { return seagull.getHealthPercent() == 0 || getCombat().isFighting() || seagull == null; } }.sleep(); } } Runs pretty good now. Is there any better way to store the seagull variable once?
  16. Thanks for your amazing advice!
  17. Currently have this stats on an account: 70 att 71 str 70 def I'd like to try and bot it to 99 str. I guess Dharok @ NMZ would be the best option?
  18. Even more retarded as I thought.
  19. "I done this hole my life bro" Haha. Ha. retard.
  20. Too cool for school.
  21. Nice achievement, let us know when you reach it.
  22. States make it messy. But that's my opinion.
  23. You mostly use dharok afking I guess?

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.