WoWEquip is sadly out of date... does anyone know of a replacement?
Alternatively, is there somewhere I could down a CSV with a complete item database? I'd like to, at a minimum, weigh stats and then look through all the items quickly to see which items weigh highest for each slot. As a stretch goal, being able to dump it into Excel and use Solver would be amazing.
How do people search for the best gear combinations now a days? Going through Wowhead or thottbot item by item seems really painful to me.
Wow, if there was a page with a complete item database, that is downloadable, I'd be *very* interested in it as well.
Because entering every single item manually is very tedious, time consuming and error prone (which is why I didn't even start on warrior gear yet).
You can do an advanced item search on wow.allakhazam.com, and give each stat a "weight" the helps you calculate your own "score" for an item. Its really neat.
You can do an advanced item search on wow.allakhazam.com, and give each stat a "weight" the helps you calculate your own "score" for an item. Its really neat.
That unfortunately only allows 3 stats to be weighed, and I'd like to weigh by more than that (str, sta, hitr, critr, agi, armor, attack power, resilience). There is, stat-sorting, but as I understand it, it'll just sort ties in weights in order of the stat-sort, which isn't quite what I'm looking for.
The wowequip author has stated on his forums that he's working on a new version for BC. You can still import items from Alla if you want to.
Unfortunately I know of nothing that works with sockets which makes playing dress up kind of hard. Unless you're just going to assume +12 sta in every socket.
The wowequip author has stated on his forums that he's working on a new version for BC. You can still import items from Alla if you want to.
Unfortunately I know of nothing that works with sockets which makes playing dress up kind of hard. Unless you're just going to assume +12 sta in every socket.
The current WoWEquip has an item editor, you can edit in sockets as "Bonuses" as a placeholder for Sockets.
The raw XML of an imported Warbringer Greathelm:
<?xml version="1.0"?>
<!--Item XML created by Danya's WoW Template Designer-->
<Item Slot="Head">
<Name>Warbringer Battle-Helm</Name>
<URL>http://wow.allakhazam.com/db/item.html?witem=29021</URL>
<Icon>INV_Helmet_58.tga</Icon>
<Rarity>Epic</Rarity>
<BOP>true</BOP>
<Type>Plate</Type>
<Armor>1080</Armor>
<ClassFlags>256</ClassFlags>
<RaceFlags>254</RaceFlags>
<RequiredLevel>70</RequiredLevel>
<Set>Warbringer Battlegear</Set>
<Stats>
<Stat Value="40">Strength</Stat>
<Stat Value="39">Stamina</Stat>
</Stats>
<Bonuses>
<Bonus Type="Equip" Value="10">Increases your hit rating by #.</Bonus>
<Bonus Type="Equip" Value="20">Increases your critical strike rating by #.</Bonus>
</Bonuses>
</Item>
The raw XML of my "socketed" Warbringer Greathelm:
<?xml version="1.0"?>
<!--Item XML created by Danya's WoW Template Designer-->
<Item Slot="Head">
<Name>Warbringer Greathelm [Socketed]</Name>
<URL>http://wow.allakhazam.com/db/item.html?witem=29011</URL>
<Icon>INV_Helmet_58.tga</Icon>
<Rarity>Epic</Rarity>
<BOP>true</BOP>
<Type>Plate</Type>
<Armor>1080</Armor>
<ClassFlags>256</ClassFlags>
<RaceFlags>254</RaceFlags>
<RequiredLevel>70</RequiredLevel>
<ItemLevel>100</ItemLevel>
<Set>Warbringer Armor</Set>
<Stats>
<Stat Value="13">Strength</Stat>
<Stat Value="14">Agility</Stat>
<Stat Value="77">Stamina</Stat>
</Stats>
<Bonuses>
<Bonus Type="Equip" Value="21">Increases defense rating by #.</Bonus>
<Bonus Type="Equip" Value="15">Increases your block rating by #.</Bonus>
<Bonus Type="Equip" Value="33">Increases the block value of your shield by #.</Bonus>
<Bonus Type="Equip" Value="1">[Solid Star of Elune]x# - +12 Stamina per socket.</Bonus>
<Bonus Type="Equip" Value="1">[Powerful Earthstorm Diamond]x# - +18 Stamina per socket.</Bonus>
</Bonuses>
</Item>
A crude work-around at best, but you can still see the total number of gems needed for a certain setup. There are also other minor details - such as socket bonuses - that can't really be "hacked" like this. I ended up just adding the +Stamina and +Defense ratings to the base stats/item totals.
You could always download http://wow.allakhazam.com/itemlist.xml and parse out the names, pulling the pages individually and converting to the item id. This is what itemstats does.
You could always download http://wow.allakhazam.com/itemlist.xml and parse out the names, pulling the pages individually and converting to the item id. This is what itemstats does.
You could always download http://wow.allakhazam.com/itemlist.xml and parse out the names, pulling the pages individually and converting to the item id. This is what itemstats does.
Ah, that's very nice -- I didn't know about itemlist.xml and had scripts for parsing individual allakahzam items, but there was the bottleneck of having to get itemIDs...
I was just able to load the itemlist in IE, but not Firefox. I had the same problem when I originally posted it, but it did eventually load in Firefox. The file is somewhere between "huge" and "frickin huge" so take proper precautions in your code when you try to retrieve it.
I used to use wowequip all the time, but it's seriously taking whoever made it way too long to update it to work with sockets. Same with ctprofiles. Doing it manually with wowequip's create item and edit item features are pretty tedious and crude as mentioned.
I'm really close to the point of sitting down and figuring out how to code an excel spreadsheet or coding an access dbase app for personal use, because going without it really sucks.
Hopefully someone will beat me to it, because i'm thinking the best way would be an access dbase app, but that's a lot of work to start it from scratch
Well I have a list with warrior and rogue equipment (link).
The problem is, while I have somewhat updated the list for rogues, my warrior is currently still sitting at level 61 and I did not found enough time to enter items for warriors.
Moreover, since patch 2.0 hit with the introduction of the rating system, I have not updated all values of the old items. Additionally the armor values did increase a bit with the patch, they are as well on their old values so far.
The problem is I have to enter each item manually as I currently have no real idea on how to do this via XML parsing or similar.
Therefore if anybody wants to help expand the list, I would be grateful, as you know this is a hell of a work to manage.
You can find the database structure in the excel spreadsheet I posted below, there are some examples in it.
If somebody is bored and wants to do some stupid copy&paste, feel free to do so.
Ho hum, I know it's taking a while, but sockets are coming to WowEquip. Basic support is in, but I've introduced a really horrible bug in the item loading code so I can't release anything at present. I'll try to get it all sorted out this week.
Ho hum, I know it's taking a while, but sockets are coming to WowEquip. Basic support is in, but I've introduced a really horrible bug in the item loading code so I can't release anything at present. I'll try to get it all sorted out this week.
Great news! Thanks so much for your work on it and good luck fixing that bug!
I've been experimenting with itemlist.xml and itemstats, and before I embark on writing a complete parser for the item_html (the tooltip, basically), has anyone already written one I can borrow?
I know there's xml information available for each item from allakhazam, but its format seems rather 'heavy' -- e.g. crit rating links to a different spell for each amount of crit rating, which then would need to be parsed to see how much crit rating it gives... it seems a lot simpler to just parse the tooltip.
Have you tried to pull the data directly from the armory? The format seems to be rather elegant. Do "View Source" to see the xml. And you don't need to go start parsing html.
Have you tried to pull the data directly from the armory? The format seems to be rather elegant. Do "View Source" to see the xml. And you don't need to go start parsing html.
In any case, using some creative scripting, I put together a sample spreadsheet of plate chestpieces and their relevant warrior stats.
This version just has chestpieces, but I'd like to share it with others in hopes of getting feedback in terms of what folks like, what folks don't like and what people would like to see: http://spreadsheets.google.com/pub?k...YH7vcvhA_j4pLQ
Known Shortcomings
- No Socket Bonus
- Block Rating isn't showing up (this is a bug with allakhazam)
Did you ever make a simple item database or item database creator? I want to work on one for various projects, but my knowledge of how to parse webpages is nonexistent.
yah, it is conceptually very easy to get everything in the armory that way Copernicus. I'm not sure if I want to commit to spending the time to do so (easy doesnt mean quick :p ). I'll think about it.
I have posted a new thread in the "class mechanics" forum, due to the fact that I think the people there will have an over all greater use for this than the small subset of us who write mods and the like. I hope i dont make gurg or kaubel angry by doing so, but it makes more sense in my mind to have it there.
Dunno if anyone is still interested in this, but I've just uploaded a new version of WowEquip with full jewelcrafting support.
It also has a "DKP calc" which allows you to assign weights to each stat and will then rank items by their weighting. It can do this for up to 50 different stats on a per class basis.
This is kinda old, but I am about halfway through downloading all XMLs from armory for equippable items (it takes 1-2 days so that I don't get IP banned), I wonder if anyone could be interested in those.
Edit: done, items.zip (3170 K), contains data for 20758 equippable items (not including ammo/bags/quivers)
Contains 208 item0001.xml-item0208.xml files with 100 items each; each file has a root element <items> and for every item has an element <item> which has as children <itemTooltip> node from wowarmory/item-tooltip.xml and <item> node from wowarmory/item-info.xml.
Additionally, I have included an index.txt file which contains a list of all included items, their ID and the file they can be found in, along with position in that file.
Also, if you find an equippable item that can be found in armory but is not in my list, I would be very interested in it.
Edit2: so far I only found "Mark of the Spider" (id 35666).