Ok. Approved.
Price Guide V3
Ok. Thanks
Just a friendly word of advice:
An example line is as follows:
T8&Fire Dagger&1 Speed&dagger
Here's what I would do:
Now, you have a map of identifiers and arraylist items.
This helps, because now you can do something like this:
And in
Hope this helps.
An example line is as follows:
T8&Fire Dagger&1 Speed&dagger
Here's what I would do:
Code:
String entireFile = readFile("your ******* url");
String[] lines = entireFile.split("\n");
Map<String, ArrayList<Item>> itemMap = new TreeMap<String, ArrayList<Item>>();
for(int x=1;x<lines.length;x++)
{
String[] segments = lines[x].split("&");//[T8,Fire Dagger,1 Speed,dagger];
String identifier = segments[3];
ArrayList<Item> itemList = null;
if(itemMap.contains(identifier))
{
itemList = itemMap.get(identifier);
}
else
{
itemList = new ArrayList<Item>();
itemMap.put(identifier, itemList);
}
itemList.add(new Item(segments[0], segments[1], segments[2]);
}
This helps, because now you can do something like this:
Code:
for(String key : itemMap.keySet())
{
Button b = new Button(key);
b.addActionListener(this);
}
Code:
actionPerformed(ActionEvent e){
Button b = (Button)e.getSource()l
ArrayList<Item> items = itemMap.get(b.getName());
System.out.println("Printting "+b.getName());
printItemList(items);
}
uhmm... how can i open it, i can't cause its just a java file D:
It's a terrible thing, competing against java. 
I think it's time I delve into learning it.
But I like it. Good job.

I think it's time I delve into learning it.
But I like it. Good job.
Dude, this is amazing.. you need more likes on this download.. :l
how can i open this ?? 

@_eXtremeXTech_
make a text document and paste this in
then save it as a .bat
keep it in the same directory as the .jar guide
make a text document and paste this in
Code:
start javaw -jar PriceGuide.jar
keep it in the same directory as the .jar guide
really cool release, it will come in handy!
lol, very good man, thanks.
Similar Threads
Realm of the Mad God Hacks & CheatsPrice Guide
3 Realm of the Mad God DiscussionsCatrap0's Price Guide This one is updated more often and is easier to read, and has aCA 7 Realm of the Mad God DiscussionsAnyone interested in an external price guide? 12 Realm of the Mad God Hacks & CheatsPrice Guide V1 11 Realm of the Mad God Hacks & CheatsPrice Guide V2 19


