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.

CAPTWINGO

Members
  • Joined

  • Last visited

  1. Fixed it thank you
  2. I am trying to chop oak logs at east varack and i just stand there calculating. The script says theres a error in script executor.
  3. Thank you. I'm going to try it.
  4. I am using Apaecs guide, but added wood cutting instead of thieving tea from stalls. I am trying to bank the oak logs that I have chopped. Any ideas? package sixshots2; import org.osbot.rs07.api.Bank; import org.osbot.rs07.api.*; import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import java.awt.*; @ScriptManifest(author = "CaptWingo", info = "My first script", name = "OakCutting", version = 1.01, logo = "") public class sixshots extends Script { @Override public void onStart() { } private enum State { Chop, Wait, Bank }; private State getState() { Entity Oak = objects.closest("Oak"); if (!inventory.isEmpty()) return State.Bank; if (Oak != null) return State.Chop; return State.Wait; } @Override public int onLoop() throws InterruptedException { switch (getState()) { case Chop: Entity Oak = objects.closest("Oak"); if (Oak != null) { Oak.interact("Chop-down"); } break; case Bank: inventory.store.Deposit(OakLogs); break; case Wait: sleep(random(500, 700)); break; } return random(200, 300); } @Override public void onExit() { } @Override public void onPaint(Graphics2D g) { } }

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.