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.

Kenneh

Members
  • Joined

  • Last visited

Everything posted by Kenneh

  1. Kenneh replied to Th3's topic in Archive
    That's not so hard.
  2. Plural enums really bother me. I just think they look weird.
  3. Enums shouldn't be plural. Number.FIVE vs Numbers.FIVE
  4. I just noticed in your example enum, you've capitalized Ten, but not the rest of the numbers. my OCD is killing me.
  5. Ahhh, thanks for the estimation
  6. I'm not too sure. I'm requesting a pc to get a pretty good idea of what it's worth :P
  7. http://www.elophant.com/league-of-legends/summoner/na/21788303/skins <- Complete skin list. Notable ones (Skins that are no longer available by standard means, or expensive skins) Franken Tibbers Annie Dark Candy Fiddlesticks Judgement Kayle Badger Teemo Toy Soldier Gangplank Slay Belle Katarina Zombie Brand (Legendary) Bewitching Nidalee Spirit Guard Udyr (Ultimate) TPA Ezreal Championship Riven (Very Expensive) Dragonblade Riven Account statistics Has most good runes
  8. Kenneh replied to Joseph's topic in Snippets
    harrynoob is the best
  9. Kenneh replied to Joseph's topic in Snippets
    I try. Like, I really try sometimes. I considered coming to osb and making scripts but every time I do, I remember that the API just terrible and I literally have to re-write everything myself. I get about halfway done with writing some usable API I realize that it's just not worth it and trash my project. Who are one and two? I shall kill them!
  10. Kenneh replied to Joseph's topic in Snippets
    You're calling me an ungrateful prick for something I'm never going to use. I help people out on this forum from time to time but it's hardly worth it. This community isn't really advancing so why bother.
  11. Kenneh replied to Joseph's topic in Snippets
    code looks shitty as fuck. btw what's a looting bag and how do you get one?
  12. The speaker on the first one looks like you just threw it in there. The second one is okay I guess but looks really plain and something that you could make in gimp in like 2 minutes.
  13. No problem ;)
  14. On the model.
  15. I meant the model. To add your model to the list, do List list = new List(listModel);
  16. It's list.addElement(object);
  17. Kenneh replied to Joseph's topic in Snippets
    I'm just trying to help. Here's a little example. import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.ArrayList; import java.util.Arrays; import java.util.List; /** * Created by Kenneth on 3/22/14. */ public class HerbGUI extends JFrame { public JComboBox<Herb> comboBox = new JComboBox<>(Herb.values()); public JButton startButton = new JButton("Start"); public Herb singleHerb; public HerbGUI() { getContentPane().setLayout(new FlowLayout()); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); getContentPane().add(comboBox); getContentPane().add(startButton); startButton.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { singleHerb = (Herb) comboBox.getSelectedItem(); System.out.println(singleHerb.getIdLevel()); System.out.println(singleHerb.getName()); System.out.println(singleHerb.getNotedGrimyId()); } }); pack(); setVisible(true); } public static void main(String[] args) { new HerbGUI(); } }
  18. Kenneh replied to Joseph's topic in Snippets
    Comboboxes have getSelectedItem() and getSelectedItemList() though.
  19. You use enums correctly here, but wrong in your own snippet xD
  20. Kenneh replied to Joseph's topic in Snippets
    Okay, first before you read the rest of this, I want to say thanks for providing all the IDs. But, you're using an enum wrong. ftfy
  21. Who are you?
  22. Kenneh replied to Novak's topic in Archive
    Death walking? You should never die.
  23. It's the max displayed in the inventory for some given reason. If you were to drop the stack on the ground you'd realize that it was the full amount.

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.