Everything posted by Kenneh
-
Swizzbeat's Fight Caves - The Ultimate Fire Cape Script
Don't get your hopes up.
- Need script suggestions
-
What's an Enum [Part-One]
Plural enums really bother me. I just think they look weird.
-
What's an Enum [Part-One]
Enums shouldn't be plural. Number.FIVE vs Numbers.FIVE
-
What's an Enum [Part-One]
I just noticed in your example enum, you've capitalized Ten, but not the rest of the numbers. my OCD is killing me.
-
[PC] Level 30 LoL Account - NA - Gold IV - RARE SKINS
Ahhh, thanks for the estimation
-
[PC] Level 30 LoL Account - NA - Gold IV - RARE SKINS
I'm not too sure. I'm requesting a pc to get a pretty good idea of what it's worth :P
-
[PC] Level 30 LoL Account - NA - Gold IV - RARE SKINS
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
- Looting Bag
-
Looting Bag
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!
-
Looting Bag
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.
-
Looting Bag
code looks shitty as fuck. btw what's a looting bag and how do you get one?
-
Need Constructive Criticism
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.
- DefaultListModel
- DefaultListModel
-
DefaultListModel
I meant the model. To add your model to the list, do List list = new List(listModel);
-
DefaultListModel
It's list.addElement(object);
-
Herb Snippet
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(); } }
-
Herb Snippet
Comboboxes have getSelectedItem() and getSelectedItemList() though.
-
What's an Enum [Part-One]
You use enums correctly here, but wrong in your own snippet xD
-
Herb Snippet
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
- Timekeepers AMAA
-
W7Tuner - Run more bots with the click of a button!
Lame.
-
Auto Blue Dragons!
Death walking? You should never die.
-
Question about ID's from coins
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.