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.

hariake

Members
  • Joined

  • Last visited

Everything posted by hariake

  1. Doesnt seem to drop the hammer after repairing the struts
  2. hariake replied to Token's topic in Others
    Trial pls?
  3. Great script, running on 4 accs atm, already seeing shit like rune sets and plenty of rune 2h-s/scimmys being picked up
  4. Question, what ever way i do mining. The bot keeps clicking on different ores. How to stop the clicking after bot has started mining and until he has mined the ore?
  5. Ive triple checked all spellings, nothing seems wrong. Are you sure there cant be any other causes, script finds the rocks and cycles throgh them all but never clicking on them. Edit: nvm my bad its actually just "mine" not "mine-from"
  6. import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import java.awt.*; @ScriptManifest(author = "You", info = "My first script", name = "Power Miner", version = 0, logo = "") public class main extends Script { @@OverRideCwalk public void onStart() { log("gonna mine"); } private enum State { MINE, DROP, WAIT }; private State getState() { Entity Rocks = objects.closest("Rocks"); if (!inventory.isEmpty()) return State.DROP; if (Rocks != null) return State.MINE; return State.WAIT; } @@OverRideCwalk public int onLoop() throws InterruptedException { switch (getState()) { case MINE: Entity Rocks = objects.closest("Rocks"); if (Rocks != null) { Rocks.interact("Mine-from"); } break; case DROP: inventory.dropAll(); break; case WAIT: sleep(random(500, 700)); break; } return random(200, 300); } @@OverRideCwalk public void onExit() { log("mining done"); } @@OverRideCwalk public void onPaint(Graphics2D g) { } } only hovers over rocks doesnt actually mine
  7. Trial please?

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.