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.

Chris

Scripter II
  • Joined

  • Last visited

Everything posted by Chris

  1. public class Timer { private final long start; private final long period; private long end; public Timer(long period) { this.period = period; this.start = System.currentTimeMillis(); this.end = (this.start + period); } public long getElapsed() { return System.currentTimeMillis() - this.start; } public long getRemaining() { if (isRunning()) { return this.end - System.currentTimeMillis(); } return 0L; } public boolean isRunning() { return System.currentTimeMillis() < this.end; } public void reset() { this.end = (System.currentTimeMillis() + this.period); } public long setEndIn(long ms) { this.end = (System.currentTimeMillis() + ms); return this.end; } public String toElapsedString() { return Time.format(getElapsed()); } public String toRemainingString() { return Time.format(getRemaining()); } }
  2. I'll have to take a look at this. Are you using mirror mode or injection?
  3. Asking for banrates is retarded horshshit too tho
  4. dont watch an old video use the API docs http://osbot.org/api
  5. damn jamez making a lot of money ;) he shud be able to pay me back now
  6. done
  7. xc fix ur eyes bro
  8. getSkills.getStatic to get non boosted level getskills.getDynamic to get a skill that is changing (boosted or stas r weakend etc)
  9. done
  10. Buy from vilius/lemons shop 100k ea or 90kea(in bulk 100+)
  11. ?
  12. Chris replied to Dard's topic in Runescape 2007
    u take venmo bro?
  13. done
  14. Chris replied to Rx7xr's topic in Introductions
    pm me ur skype i want quotes
  15. my name is jafar i come from afar i got a bomb in my car allahu akbar :trihard:
  16. TRIHARD CHICKEN TRIHARD CHICKENTRIHARD CHICKEN TRIHARD CHICKENTRIHARD CHICKEN TRIHARD CHICKENTRIHARD CHICKEN TRIHARD CHICKENTRIHARD CHICKEN TRIHARD CHICKENTRIHARD CHICKEN TRIHARD CHICKENTRIHARD CHICKEN TRIHARD CHICKENTRIHARD CHICKEN TRIHARD CHICKENTRIHARD CHICKEN TRIHARD CHICKENTRIHARD CHICKEN TRIHARD CHICKENTRIHARD CHICKEN TRIHARD CHICKENTRIHARD CHICKEN TRIHARD CHICKEN
  17. already gave you one yesterday?
  18. done
  19. it's already there by default done done
  20. Chris replied to whipz's topic in Scripting Help
    something like this public void webToDestination(Position destination){ //log("Walking to " + destination); WebWalkEvent event = new WebWalkEvent(destination); PathPreferenceProfile ppp = new PathPreferenceProfile(); ppp.setAllowTeleports(true); event.setPathPreferenceProfile(ppp); event.prefetchRequirements(getBot().getMethods()); execute(event); }
  21. Chris replied to whipz's topic in Scripting Help
    use WebWalkEvent and PathPreferenceProfile

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.