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. Off topic: In my quests everyone is called ROMEO ot: Nice ^_^ this area would be pretty popular now?
  2. Do you have a weekly reminder to make these? http://osbot.org/forum/topic/78201-i-love-maldesto/ http://osbot.org/forum/topic/77547-i-love-maldesto/ http://osbot.org/forum/topic/76940-i-love-maldesto/ http://osbot.org/forum/topic/74256-i-love-maldesto/
  3. Client must be working well.
  4. > white was was around accept >still hovered over decline
  5. my debugger told me 335, 16 0.0
  6. Started doing this but somehow got the wrong widgets
  7. Casual Information. I attempted the task from scratch. had a working example, but for no explainable reason it randomly decides to start spazzing over "Decline" when you call .acceptTrade(). No error, No logging error, just fails once then until you reload client persists to fail.
  8. case BANK: if(bank.isOpen()){ bank.withdrawAll(1739); //sleep }else{ bank.Open(); //sleep } forgot the break;... eh...
  9. Isolate replied to chad0ck's topic in Archive
    got a video of the process?
  10. Isolate replied to Czar's topic in Spam/Off Topic
    Honestly if we need any emote it's
  11. no AIO fighters will do the trick..?
  12. Project was discontinued like a year ago
  13. Note: If they have an inventory of polypore staff 99.99% they switched to a yellow/orange kiteshield as you challenged them
  14. Steal 1 Drop 1 Is more efficient. This might never steal tea because it looks like you put all the stuff in !Area contains so when you're in that area nothing'll happen.
  15. I still use logic loops, for everything
  16. If you wan't to keep your sanity for as long as possible I recommend going with the Enum/State skeleton/style Example: public class Enum extends Script { boolean dropping = false; private enum State{ DROP, CHOP } @Override public int onLoop() throws InterruptedException { switch(getState()){ case DROP: drop(); break; case CHOP: chop(); break; } return random(100, 250); } private void drop(){ //do dropping stuff } private void chop(){ //do chopping stuff } State getState(){ if(inventory.isFull() || dropping){ return State.DROP; }else{ return State.CHOP; } } } Sure it has more base framework than the Logic loop style public class LogicLoop extends Script { boolean dropping = false; @Override public int onLoop() throws InterruptedException { if(inventory.isFull() || dropping){ //do dropping stuff }else{ //do chopping stuff } return random(100,250); } } But depending on the length/complexity of your script the logic loop method can get quite messy and the Enum/State method retains neatness and easy readability.
  17. Isolate replied to Omicron's topic in Archive
    Ooo the more you know 0.0 But still adding the client as an external library should solve your problem?
  18. Isolate replied to Omicron's topic in Archive
    The client is the documentation. Add it as an external library in your IDE to access the api functions.
  19. 1. The moment you leave monster area you'll stop walking. 2. if(bank.isOpen(){ //do banking }else{ bank.open(); } is prolly more secure should end this if (!inventory.contains("Lobster")&&MONSTER_AREA.contains(myPlayer())){ with an else like if (!inventory.contains("Lobster")){ //bank cheecks //walk to bank //bank ect }else{ //fighting checks //walk to fight //fight ect }
  20. depends on if it has a renew price. If it doesn't, life time of script. If it does you'll pay the init price then the renew fee monthly
  21. Well, If i hadn't missread it as "Grim fasply it" maybe I'd have a decent response.
  22. Shotput, but dunno the requirements to get there

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.