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.

Isolate

Java Lifetime Sponsor
  • Joined

  • Last visited

Everything posted by Isolate

  1. use socket/server I find it pretty useful for this kinda thing, also removes the link of being in a fc/saying the same things. Mule is running the server Subs are the sockets/clients (think it only costs like 10mb extra to do this)
  2. Isolate replied to Kaloex's topic in Runescape
    it's something easy to setup and run, low req, not huge cash but if you bust out enough accounts I guess it'd be worth it
  3. Question was deleted
  4. Isn't that what allows you to change the thread name since you're blue. (people with less than 100 post count can't post in accounts)
  5. for(int i = 0; i < arrays.length; i++){ //Here is where I mean } Creates a loop that'll keep looping whilst the value of i is less than the length of the Array arrays. In this case you're declaring a loop that initialises a value of i that starts at zero. i++ means after each loop it'll increase the value of i by 1. in the case of array, i is the index in the array defined above. so on the first loop array would be 1, on the second loop 23, ect. Although I have no idea what ind is or what kind of tutorials you're following. Maybe someone else can clear that up Oh I didn't read the full thing 0.0 I see why it has heaps of underscores now xD
  6. *checks email address activity* son of a b-
  7. Isolate replied to Juggles's topic in Resolved
    If it's VIP related you should get a notification pop up. Could just be memory related. Heard whispers in the chat-box about opening multiple clients instead of tabs.
  8. If you're using getWalking() getLocalWalker() I think you're out of luck but if you're using the snippet, that I believe originates from @Khaleesi but posted by hero (can't tag you for some reason) (feel free to correct me there you two) You could do public void webWalkEvent(final INodeRouteFinder routeFinder, final Position position, final Area area, final MethodProvider script) { WebWalkEvent event = new WebWalkEvent(routeFinder, position); event.setBreakCondition(new Condition() { @Override public boolean evaluate() { return getDialogues().inDialogue(); } }); script.execute(event); } which'd break walking when in dialogue, so you can handle it and it'd continue
  9. Most things are documented pretty well in the API most base calls are pretty straight forward, Think as close as you can to english, but then allow for the fact it's a program Your example in the most basic form in the OSBot api would look like final int PIKE = 351; if(myPlayer().getCurrentHealth() < 5){ getInventory().getItem(PIKE).interact(); } so most things you'd ever need to access are pretty straight foward , eg. myPlayer() getInventory() getBank() getGroundItems() ect. storing stuff is pretty straight foward too Item itemExample = getInventory().getItem("Example name"); GroundItem groundItemExample = getGroundItems().closest("Example Name"); RS2Object objectExample = getObjects().closest("Example name"); ect it's pretty straight forward, if in doubt, search api
  10. This INodeRouteFinder.createAdvanced(); only ever do it once in a script. Like in your onStart
  11. Mr Nobody Hotarubi No Mori E Slumdog millionaire
  12. this was one of the most farmed methods when osrs came out. it's always had a lot of attention on it.
  13. got one-o these badboys up in that b****? @ScriptManifest(author = "Your Name", name = "Example-Name", version = 0.1, info = "This is an Example Manifest", logo = "")
  14. protip: they actually ban accounts when they're not doing 'bot busting' streams.
  15. @Override public void onPaint(Graphics2D g) { super.onPaint(g); }
  16. switch(state) seems legit (maybe I should provide more context) Maybe just a neaten up would help see what's going on here. package Private; import org.osbot.rs07.script.Script; /** * Created by Jordan on 14/03/2016. */ public class States extends Script { @Override public int onLoop() throws InterruptedException { switch (getState()){ case DROP: //drop break; case CHOP: //chop break; } return random(500, 900); } private State getState(){ if(!getInventory().isEmpty()) return State.DROP; else return State.CHOP; } private enum State{ DROP, CHOP } } what's the actual error/output you're getting
  17. Isolate replied to Deceiver's topic in Gallery
    I love me some of that Venom Desgn. But srs it looks really nice :P
  18. 16 for them positive vibes
  19. out of what you have seen in the op which did you enjoy the most
  20. K Project Darker than black Black Butler to name a few.. edit edit: nvm goofed

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.