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.

Botre

Members
  • Joined

  • Last visited

Everything posted by Botre

  1. i'ts all about that little shadow ;)
  2. Botre replied to Botre's topic in Snippets
    ^updated the OP Wrote it rather quickly and didn't test it :p Thanks
  3. If you are into UK / grimey stuff:
  4. Botre posted a topic in Snippets
    package worldhopping.Botrepreneur; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.List; import java.util.Random; import org.osbot.rs07.script.Script; public class WorldHopper { /** * @author Botrepreneur * @Version: 00.10 */ private List<Integer> future = new ArrayList<Integer>(); private List<Integer> past = new ArrayList<Integer>(); private int worldHops = 0; private final Script script; public WorldHopper(final Script script, Collection<World> list) { this.script = script; for (World world : list) { if (world == null) { continue; } this.future.add(world.getWorldNumber()); } } public void toRandomWorldNumber() { int index = new Random().nextInt(future.size()); int world = future.get(index); this.script.log("Hopping to world: " + world); this.script.worldHopper.hop(world); this.worldHops++; this.future.remove(index); this.past.add(world); this.resetList(); } public void toLowestWorldNumber() { int world = Collections.min(future); int index = future.indexOf(world); this.script.log("Hopping to world: " + world); this.script.worldHopper.hop(world); this.worldHops++; this.future.remove(index); this.past.add(world); this.resetList(); } public void toHighestWorldNumber() { int world = Collections.max(future); int index = future.indexOf(world); this.script.log("Hopping to world: " + world); this.script.worldHopper.hop(world); this.worldHops++; this.future.remove(index); this.past.add(world); this.resetList(); } private void resetList() { if (future.isEmpty() && !past.isEmpty()) { List<Integer> temp = this.future; this.future = this.past; this.past = temp; this.past.clear(); } } public int getWorldHops() { return this.worldHops; } public void resetWorldHops() { this.worldHops = 0; } }
  5. http://docs.oracle.com/javase/7/docs/api/java/util/ArrayList.html
  6. Guess it all depends on the location indeed ^^
  7. I don't get your question sorry : / This = ?
  8. He'd have to write a method to check if a tile is walk-able though
  9. I made a tool to generate unique paths from a list of paths. But yeah I used to do lots of walking before I had that tool x)
  10. I make it randomly choose between 100+ predefined paths in my Shrooms script. It's super effective if you are 100% sure the paths are flawless
  11. Lol Michael Bay is that you?
  12. Botre replied to Maxi's topic in Releases
    Thank you for the quick fix !
  13. Free trial: Want to try out a premium herblore script for free? Script's thread: http://osbot.org/forum/topic/48273-aio-herblore-flawless-herblore-training/ Rules: 100+ post count users only for security reason. Leave a comment on this thread. Leave a comment on the script's thread (see link above). Like the script's thread (not required but much appreciated) (see link above). Maximum one 24h trial per user. Maximum 5 trials per 24h.
  14. Lmao Inb4 SOTW rank
  15. Trial started Enjoy! For the people who hate xp waste: you can turn you fungi into super energy potions for massive free herblore XP!
  16. legendary looking forward to your next g&a
  17. legendary looking forward to your next g&a
  18. Because it's illegal. x)
  19. Fake coke for wannabes? I could see this becoming a thing tbh
  20. Meh I'll upload a better pic later, one that doesn't look like I live in a jail cell
  21. @ the people suggesting music: I have been working with ableton live and pro tools for more than 5 years now, recently started writing my own vst plugins. Keep the suggestions coming

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.