Page 1 of 2
EQ2 Icon Packs
Posted: Wed Jul 08, 2009 9:32 pm
by John Adams
Anyone know how I can get my hands on
individual Icons for EQ2 Items icons, spell icons, etc? I know they are in the UI, but they are not separated (a bunch in 1 file, I think?)
Sorry, heavily medicated and not willing to think, so maybe I should wait to ask this

but do you know what I'm asking for?
Like, item_519.gif =
etc...
Re: EQ2 Icon Packs
Posted: Wed Jul 08, 2009 10:17 pm
by Sentari
You could try the Directx software developers kit (includes a texture editor):
http://msdn.microsoft.com/en-us/library ... S.85).aspx
might be tedious tho =(
Re: EQ2 Icon Packs
Posted: Thu Jul 09, 2009 6:30 am
by Zcoretri
You can get spell icons in .jpg format from eq2players Spells and Abilities pages.
You just have to right->click on each one and save. It just so happens that the name of the .jpg file corresponds to the icon id of the spell
I use the DirectX texture editor all the time to open up the .dds files to look for different icons and such.
Re: EQ2 Icon Packs
Posted: Thu Jul 09, 2009 9:38 am
by John Adams
Zcoretri wrote:You can get spell icons in .jpg format from eq2players Spells and Abilities pages.
Yeah I got the EQ icons by using HTTrack (site archiver) to pull down all the icons from Lucy or somewhere (can't remember where). I should have thought of that

but was hoping there was simply a ZIP somewhere

Re: EQ2 Icon Packs
Posted: Thu Jul 09, 2009 9:50 am
by ZexisStryfe
I actually started breaking the files down manually... its a pain in the ass.
Spell Icon Masterlist
Re: EQ2 Icon Packs
Posted: Thu Jul 09, 2009 11:39 am
by Faraden
This is something I was working on indexing.. I showed you the example I believe.
Re: EQ2 Icon Packs
Posted: Thu Jul 09, 2009 1:01 pm
by John Adams
Yeah but I do not want a palette of images with numbers on them, i want a 50x50 icon, 1 for each separate book, item, race, class etc

Thought I was clear.
I am trying HTTrack again, since I had luck with it before. Just takes some tweaking so I am not sifting through every guild/leaderboard/player profile on eq2players and pulling it down to my local drive
I'll get it, nevermind the request. Had I waited til I was clear in the head, I would have answered my own question. Thanks Z for the reminder!
Re: EQ2 Icon Packs
Posted: Thu Jul 09, 2009 4:11 pm
by Zcoretri
ZexisStryfe wrote:I actually started breaking the files down manually... its a pain in the ass.
Spell Icon Masterlist
Hahaha...you got a long way to go....and thats just spells, look at the total number of item icon .dds files, 106 currently
edit: woot! 500th post LOL....only 3985 posts behind JA

Re: EQ2 Icon Packs
Posted: Thu Jul 09, 2009 4:52 pm
by John Adams
HTTrack running all afternoon, and so far I have 272 icons, mostly spells. That means it hasn't even gotten to the Items pages yet. This program is a beast... not sure how it will get all items except to run query after query and page through them all.
SOE doesn't let you just hit their images/Icons folder, the stingy bastards.
Re: EQ2 Icon Packs
Posted: Thu Jul 09, 2009 5:02 pm
by Faraden
John Adams wrote:I do not want a palette of images with numbers on them, i want a 50x50 icon, 1 for each separate book, item, race, class etc. Thought I was clear.
Fair enough leave you to it.
jeez
Re: EQ2 Icon Packs
Posted: Fri Jul 10, 2009 7:40 am
by John Adams
Faraden, can you stop taking everything I post as some personal afront to you? Seriously.
Now the good news, after all my frettin' about HTTrack and page archiving blah blah... I had an epiphany, a vision if you will, in my sleep. I travelled to a far away land on a vision quest, and discovered a far simpler way to grab shit from a web folder.
Linux + WGET. Wow. Could it have been easier?
Code: Select all
#!/bin/sh
for (( i = 1; i < 800; i++ ))
do
wget http://eq2players.station.sony.com/images/Icons/icon_spell_$i.jpg
done
for (( i = 1; i < 3800; i++ ))
do
wget http://eq2players.station.sony.com/images/Icons/icon_item_$i.jpg
done
I chose those #'s based on the max Icon value in our database. If there are more, at least now I know how to get them.
Link:
EQ2_IconPack.rar by John Adams /dance
Re: EQ2 Icon Packs
Posted: Fri Jul 10, 2009 7:44 am
by Scatman
Give meh now plz!!! I'm tired of calculating the item icons #'s for every damn quest step.
You need to have more epiphany sleeps
Edit:
Oh, that is indeed a link!
Re: EQ2 Icon Packs
Posted: Fri Jul 10, 2009 7:49 am
by John Adams
Now, this is just Items and Spells. I do not know if SOE stores their Quest Icons or anything else, anywhere else.
Hmm, I just realized, I didn't grab the race/class icons. brb!
Re: EQ2 Icon Packs
Posted: Fri Jul 10, 2009 7:52 am
by Scatman
The item icons are the quest icons. They are used for both.
Re: EQ2 Icon Packs
Posted: Fri Jul 10, 2009 8:52 am
by John Adams
Really? I never noticed an item with a beak on it to collect 10 spiroc beaks ~tongue~
But you are the Quest Queen!
Btw, I just updated the IconPack up above with race/class icons from SOE. I'm sure there are tons more icons, but this is all I am interested in atm, so that's all I am getting
Here's my complete shell script I used to fetch the data:
Code: Select all
#!/bin/sh
# Spell Icons
for (( i = 0; i <= 800; i++ ))
do
wget http://eq2players.station.sony.com/images/Icons/icon_spell_$i.jpg
done
# Item Icons
for (( i = 0; i <= 3800; i++ ))
do
wget http://eq2players.station.sony.com/images/Icons/icon_item_$i.jpg
done
# Class Icons (big)
for (( i = 0; i <= 40; i++ ))
do
wget http://eq2players.station.sony.com/images/commonMacros/character/character_icons/$i.gif
done
# Class Icons (small)
mkdir small
cd small
for (( i = 0; i <= 40; i++ ))
do
wget http://eq2players.station.sony.com/images/commonMacros/character/character_icons/small/$i.gif
done
# Race Icons (large)
wget http://everquest2.station.sony.com/images/raceIcons/barbarian_lrg.gif
wget http://everquest2.station.sony.com/images/raceIcons/darkElf_lrg.gif
wget http://everquest2.station.sony.com/images/raceIcons/dwarf_lrg.gif
wget http://everquest2.station.sony.com/images/raceIcons/erudite_lrg.gif
wget http://everquest2.station.sony.com/images/raceIcons/froglok_lrg.gif
wget http://everquest2.station.sony.com/images/raceIcons/gnome_lrg.gif
wget http://everquest2.station.sony.com/images/raceIcons/halfElf_lrg.gif
wget http://everquest2.station.sony.com/images/raceIcons/halfling_lrg.gif
wget http://everquest2.station.sony.com/images/raceIcons/highElf_lrg.gif
wget http://everquest2.station.sony.com/images/raceIcons/human_lrg.gif
wget http://everquest2.station.sony.com/images/raceIcons/iksar_lrg.gif
wget http://everquest2.station.sony.com/images/raceIcons/kerra_lrg.gif
wget http://everquest2.station.sony.com/images/raceIcons/ogre_lrg.gif
wget http://everquest2.station.sony.com/images/raceIcons/ratonga_lrg.gif
wget http://everquest2.station.sony.com/images/raceIcons/troll_lrg.gif
wget http://everquest2.station.sony.com/images/raceIcons/woodElf_lrg.gif
wget http://everquest2.station.sony.com/images/raceIcons/fae_lrg.gif
wget http://everquest2.station.sony.com/images/raceIcons/arasai_lrg.gif
wget http://everquest2.station.sony.com/images/raceIcons/sarnak_lrg.gif
# Race Icons (small, normal)
wget http://everquest2.station.sony.com/images/raceIcons/barbarian_sml_norm.gif
wget http://everquest2.station.sony.com/images/raceIcons/darkElf_sml_norm.gif
wget http://everquest2.station.sony.com/images/raceIcons/dwarf_sml_norm.gif
wget http://everquest2.station.sony.com/images/raceIcons/erudite_sml_norm.gif
wget http://everquest2.station.sony.com/images/raceIcons/froglok_sml_norm.gif
wget http://everquest2.station.sony.com/images/raceIcons/gnome_sml_norm.gif
wget http://everquest2.station.sony.com/images/raceIcons/halfElf_sml_norm.gif
wget http://everquest2.station.sony.com/images/raceIcons/halfling_sml_norm.gif
wget http://everquest2.station.sony.com/images/raceIcons/highElf_sml_norm.gif
wget http://everquest2.station.sony.com/images/raceIcons/human_sml_norm.gif
wget http://everquest2.station.sony.com/images/raceIcons/iksar_sml_norm.gif
wget http://everquest2.station.sony.com/images/raceIcons/kerra_sml_norm.gif
wget http://everquest2.station.sony.com/images/raceIcons/ogre_sml_norm.gif
wget http://everquest2.station.sony.com/images/raceIcons/ratonga_sml_norm.gif
wget http://everquest2.station.sony.com/images/raceIcons/troll_sml_norm.gif
wget http://everquest2.station.sony.com/images/raceIcons/woodElf_sml_norm.gif
wget http://everquest2.station.sony.com/images/raceIcons/fae_sml_norm.gif
wget http://everquest2.station.sony.com/images/raceIcons/arasai_sml_norm.gif
wget http://everquest2.station.sony.com/images/raceIcons/sarnak_sml_norm.gif
# Race Icons (onMouseOver)
wget http://everquest2.station.sony.com/images/raceIcons/barbarian_sml_over.gif
wget http://everquest2.station.sony.com/images/raceIcons/darkElf_sml_over.gif
wget http://everquest2.station.sony.com/images/raceIcons/dwarf_sml_over.gif
wget http://everquest2.station.sony.com/images/raceIcons/erudite_sml_over.gif
wget http://everquest2.station.sony.com/images/raceIcons/froglok_sml_over.gif
wget http://everquest2.station.sony.com/images/raceIcons/gnome_sml_over.gif
wget http://everquest2.station.sony.com/images/raceIcons/halfElf_sml_over.gif
wget http://everquest2.station.sony.com/images/raceIcons/halfling_sml_over.gif
wget http://everquest2.station.sony.com/images/raceIcons/highElf_sml_over.gif
wget http://everquest2.station.sony.com/images/raceIcons/human_sml_over.gif
wget http://everquest2.station.sony.com/images/raceIcons/iksar_sml_over.gif
wget http://everquest2.station.sony.com/images/raceIcons/kerra_sml_over.gif
wget http://everquest2.station.sony.com/images/raceIcons/ogre_sml_over.gif
wget http://everquest2.station.sony.com/images/raceIcons/ratonga_sml_over.gif
wget http://everquest2.station.sony.com/images/raceIcons/troll_sml_over.gif
wget http://everquest2.station.sony.com/images/raceIcons/woodElf_sml_over.gif
wget http://everquest2.station.sony.com/images/raceIcons/fae_sml_over.gif
wget http://everquest2.station.sony.com/images/raceIcons/arasai_sml_over.gif
wget http://everquest2.station.sony.com/images/raceIcons/sarnak_sml_over.gif
Could be fancier, but I don't care. Works for me.