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. Joseph replied to Joseph's topic in Scripting Help
    thanks :p just gotta learn
  2. Joseph posted a topic in Scripting Help
    i have an Enum i would like to add into my gui combo box. im to lazy to retype them in a array string. i also no if i do this JComboBox<CraftingTable> craftingTableList = new JComboBox(CraftingTable.values()); i will get all my variable in my Enum in the combo box but the only problem is that they all in caps with and underscore and that looks unprofessional. i also no that you could add JComboBox<String> craftingTableList = new JComboBox(arrayString); and they will be in an the combo box. So i thought maybe if i create a String array method with the names of the Enum i could easly add them in my gui. my Method: public static String[] getAll() { List<String> list = new ArrayList<String>(); for (CraftingTable c: values()) if (c!=null) list.add(c.getName()); return (String[]) list.toArray(); } //in my enum this.name = super.name().charAt(0) + super.name().substring(1).toLowerCase().replace("_", " "); my gui: JComboBox<String> craftingTableList = new JComboBox(CraftingTable.getAll()); but it doesnt show anything in my gui. Any way i could do what i want.
  3. without having to use the current mouse position you could have created a rectangle. RectangleDestination supports rectangle argument.
  4. i have enough post count, i could care less. i just want a choas pet
  5. pm me the secret i want one please
  6. ill work all night to try to find a solution if i cant. ill tell you what it is tomorrow, and see if you could help. Also this script hasnt been made on osb yet
  7. So what you could steal my idea Heres a little hint initially i was think about this, but i was just wondering what the OSD would do.
  8. im asking what would you do. if you did something to an RS2Object, and your looking for a change on the RS2Object, but there isnt any. You want to be able to indicate that change so you could chnage the current state of your script.
  9. its hard to explain without blurting out my new project. i would like 2 conditions. One that indicates if the entity has ores.
  10. im just wondering, when your creating a script and there isnt any variable on an entity that will indicate a change. Which i wish there was for my script. Which would help me change my States. What would you normally do. Use a boolean?
  11. just for number two if you right click the setting icon you uncheck mouse debug it removes mouse trail
  12. I was like 13-15 not too sure but I'm 19 right now. After knowing how to wake up from it. It isn't as bad anymore.
  13. Shit I use to get them and they would be really bad experience. I remember the first time I got it, I had a heavy blanket over me, the air conditioner off. So I was sweating hot, I couldn't move, I tried to yell, move, and do anything but I couldn't. But I could see everything around me. I believe my sister was walking near me, I saw her, I was calling her name but nothing. I was about to start crying, I was that scared, please not that was my first time. Another time when I got sleep paralysis, the first though in my head was "NOOOO, Not this shit again". The second after, I had some dark shaded figure rush to me, stared in my eye (like it was looking at my soul lol). Then started to push me down. That shit was pain fool. It felt like I was being squashed. After that happened, I started to do some research because I was scared, I didn't know what was happening. I was a bit happy when I found out that I wasn't the only person who had these same sleep paralysis experiences. They said that, most of the experience that happens to you, all come from your imagination. They said if you keep calm it isn't as bad. So now when I get them I'm just chilling. I also read some nice techniques on how to wake up. What I do is just wiggle my toes until I wake up.
  14. Check the mouse class
  15. Wondering why the prayer class only supports prayer button only?
  16. I like the way the API is looking thanks for the release I will be working on it soon
  17. What does it log? Edit: please start getting use to using a list. List<Position> tree = new ArrayList<Position>();
  18. client.getCurrentRegion.getObjectAtLocal(int id, int localX, int localY, int height):
  19. Joseph replied to mrfabulous7's topic in Scripting Help
    If you have to question it then you know it's true. Osbot is safe
  20. oh well i havent used it so i dont know. So i just decided to create my own. It only took me like a min to type it up.
  21. You need to create your own method because that method is broken Here you go i made you a quick one public boolean dropAllExcept(int... ids) throws InterruptedException { for(Item item: client.getInventory().getItems()) { for (int id: ids) { if (item != null && ids.length > 0) if (item.getId() != id) client.getInventory().dropAll(item.getId()); } } return client.getInventory().isEmptyExcept(ids); }
  22. Joseph replied to Swizzbeat's topic in Archive
    I also took one thank you

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.