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.

Joseph

Trade With Caution
  • Joined

  • Last visited

Everything posted by Joseph

  1. The banner lookers better now.
  2. Enjoy young blood, read the answer.https://www.google.com/url?sa=t&source=web&rct=j&url=http://stackoverflow.com/questions/21957696/how-to-use-joptionpane-with-many-options-java&ved=0CB8QFjABahUKEwifira6ioTIAhUI1YAKHQ1iC-g&usg=AFQjCNFkmJuwSFn2_NzajU6CIp4vTbGfrg&sig2=l9gAukIL1-Hbazld66ryNA
  3. Joseph replied to Vag's topic in Spam/Off Topic
    Wtf am I reading lol
  4. Noob lolThe method above will always return true.
  5. If you are using enum which is the smart way to do things and also using a jframe then you don't really need a default combo box model. You can just set your combo box to your enum. Let's say you only want a person to choose a location based off your enum and no other option. I rather tell you to use a joptionpane. It's pretty much a simple pip up box and depending if it's a yes or no question, or a blank field for someone to type in. Or even better a combo box. It includes a cancel and ok button. It's pretty simple for the basic needs. All you need to do is make the option return the data type you need: string, int, enum variable.
  6. Joseph replied to Chowyy's topic in Botting & Bans
    Who's script?
  7. VIP

    Joseph replied to Zodiac Dev's topic in Archive
    cant you just buy another card and redeem the cash with pp
  8. VIP

    Joseph replied to Zodiac Dev's topic in Archive
    https://www.paypal-cash.com/ buy a card from walmart or somewhere that may have it
  9. i dont like it
  10. Smoke a bit of weed. That shit will not you out on the come-down
  11. you should use an enum for accessing similar datas of different types. The enum allows us to pre-define data. Then we create getter methods to help us grab the type of data we need. All you need to do is return the select enum variable. With that variable you can grab whatever data you need
  12. tbh i didnt like any of those answers. Maybe except for the condition sleep. Personally i would just use a timer. And a simple boolean check to weather it should interaction or keep waiting. private long waitTimer = System.currentTimeMillis(); if (player animtaing) { restart timer } else if (System.currentTimeMillis() - this.waitTimer > 3000){ start interaction } edit: if you dont understand how to make the timer concept. Here a simple timer class. Its been passed around for ages public class Timer { private long period; private long start; public Timer(long period) { this.period = period; this.start = System.currentTimeMillis(); } public long getElapsed() { return System.currentTimeMillis() - this.start; } public long getRemaining() { return this.period - this.getElapsed(); } public boolean isRunning() { return this.getElapsed() <= this.period; } public void setPeriod(long period) { this.period = period; } public void reset() { this.start = System.currentTimeMillis(); } public static String format(long milliSeconds) { long secs = milliSeconds / 1000L; return String.format("%02d:%02d:%02d", new Object[] { Long.valueOf(secs / 3600L), Long.valueOf(secs % 3600L/ 60L), Long.valueOf(secs % 60L) }); } }
  13. i think hes -ing
  14. send him a pm itss better
  15. i guess we all can see it. that fire only :P
  16. Hearing that it's all pvp doesn't really sound good to me. Why would I like to die 2 times before even playing that's sounds retarted
  17. Joseph replied to liverare's topic in Runescape
    did you make it?
  18. I never see drama in there
  19. Joseph replied to liverare's topic in Runescape
    Lol I'm being lazy too about it. On Friday I'm going to work on it until Sunday and see how much I can get done. I will be talking about it in the my thread
  20. Joseph replied to liverare's topic in Runescape
    Ty I made it That's a bummer liverare
  21. Charge someone a dollar lol. I'll pay you a dollar and a logo
  22. You got the ore boolean which works. But the other two methods you are using them wrong. The furnace and bank booth are entitys. You should rather compare the distance between you and the entity that you are Looking for. Use this same logic.
  23. Use both because without one you can't make what you need. I say make a boolean that check both supplies. And use that as one of the conditions.

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.