I wanted to show how to check who has old gear, or who is missing stuff. Is there a better way to do this?
Start by downloading cygwin (linux command line), windows power shell may have something similar.
/dga /outputfile inventory
Open up Cygwin and go to your EQ directory. On my computer I get there by typing this
Use case 1, who has missing / old stuff in a specific slot, Shoulders in this case
Everyone that has specific gear name in a slot, like "Defiant" or "Icicle Drape"
If you just want to see what everyone has sorted by slot (so that you know what to camp), you can do this
Or if you want to check the augmentation slots for a specific character.
Start by downloading cygwin (linux command line), windows power shell may have something similar.
/dga /outputfile inventory
Open up Cygwin and go to your EQ directory. On my computer I get there by typing this
INI:
~
$ cd D:
/cygdrive/d
$ cd Users/Public/Daybreak\ Game\ Company/Installed\ Games/EverQuest/
Use case 1, who has missing / old stuff in a specific slot, Shoulders in this case
INI:
grep -v Bank *_cazic-Inventory.txt | grep -v General | grep Shoulders | grep -v Slot
AAAA_cazic-Inventory.txt:Shoulders Icicle Drape 163123 1 6
BBBB_cazic-Inventory.txt:Shoulders Mantle of the Sorrowful Spirit 163125 1 6
CCCC_cazic-Inventory.txt:Shoulders Drape of the Ape 120017 1 6
DDDD_cazic-Inventory.txt:Shoulders Elegant Combatant's Pauldrons 50447 1 6
Everyone that has specific gear name in a slot, like "Defiant" or "Icicle Drape"
INI:
$ grep -v Bank *_cazic-Inventory.txt | grep -v General | grep Defiant
XXXX_cazic-Inventory.txt:Head Elaborate Defiant Chain Coif 50192 1 6
XXXX_cazic-Inventory.txt:Arms Elaborate Defiant Chain Sleeves 50193 1 6
XXXX_cazic-Inventory.txt:Wrist Elaborate Defiant Chain Bracer 50188 1 6
XXXX_cazic-Inventory.txt:Wrist Elaborate Defiant Chain Bracer 50188 1 6
XXXX_cazic-Inventory.txt:Range Elaborate Defiant Recurve Bow 50614 1 6
XXXX_cazic-Inventory.txt:Hands Elaborate Defiant Chain Gauntlets 50190 1 6
If you just want to see what everyone has sorted by slot (so that you know what to camp), you can do this
INI:
grep -v Bank *_cazic-Inventory.txt | grep -v General | grep -v Slot | sed -e "s@:@ @g" | awk '{ print $2 "\t" $1 "\t" $3 " " $4 " " $5}' | sort
Ammo AAAA_cazic-Inventory.txt Ethereal Arrow 121336
Ammo BBBB_cazic-Inventory.txt Small Glowing Stone
Ammo CCCC_cazic-Inventory.txt Very Small Stone
Ammo DDDD_cazic-Inventory.txt Mystical Bolt 95070
Arms AAAA_cazic-Inventory.txt Snowbound Legionnaire Vambraces
Arms BBBB_cazic-Inventory.txt Snowbound Frostfire Sleeves
Arms CCCC_cazic-Inventory.txt Snowbound Illuminator Vambraces
Arms DDDD_cazic-Inventory.txt Snowbound Mindlock Sleeves
Back AAAA_cazic-Inventory.txt Frigid Fur Stole
Back BBBB_cazic-Inventory.txt Prismatic Drape 163126
Back CCCC_cazic-Inventory.txt Direwolf Impelled Cloak
Back DDDD_cazic-Inventory.txt Prismatic Drape 163126
Charm AAAA_cazic-Inventory.txt Totem of Riggbit's
Charm BBBB_cazic-Inventory.txt Charmed Incisor 151142
Charm CCCC_cazic-Inventory.txt Charmed Incisor 151142
Charm DDDD_cazic-Inventory.txt Heroic Seal of
Chest AAAA_cazic-Inventory.txt Snowbound Legionnaire Breastplate
Chest BBBB_cazic-Inventory.txt Snowbound Frostfire Robe
Chest CCCC_cazic-Inventory.txt Snowbound Illuminator Breastplate
Chest DDDD_cazic-Inventory.txt Snowbound Mindlock Robe
Ear AAAA_cazic-Inventory.txt Servant's Restless Bauble
Ear AAAA_cazic-Inventory.txt Tiny Medicine Pouch
Ear BBBB_cazic-Inventory.txt Servant's Restless Bauble
Ear BBBB_cazic-Inventory.txt Tiny Medicine Pouch
Ear CCCC_cazic-Inventory.txt Chilling Stud 163115
Ear CCCC_cazic-Inventory.txt Tiny Medicine Pouch
Ear DDDD_cazic-Inventory.txt Servant's Restless Bauble
Ear DDDD_cazic-Inventory.txt Tiny Medicine Pouch
Face AAAA_cazic-Inventory.txt Maniacal Demon Mask
Face BBBB_cazic-Inventory.txt Dripstone Mask 163119
Face CCCC_cazic-Inventory.txt Dripstone Mask 163119
...
Range BBBB_cazic-Inventory.txt Scepter of the
Range CCCC_cazic-Inventory.txt Lost Stein of
Range DDDD_cazic-Inventory.txt Scepter of the
Secondary AAAA_cazic-Inventory.txt Scintillating Escutcheon 163141
Secondary BBBB_cazic-Inventory.txt Empty 0 0
Secondary CCCC_cazic-Inventory.txt Shield of Restless
Secondary DDDD_cazic-Inventory.txt Empty 0 0
Shoulders AAAA_cazic-Inventory.txt Icicle Drape 163123
Shoulders BBBB_cazic-Inventory.txt Mantle of the
Shoulders CCCC_cazic-Inventory.txt Mantle of the
Shoulders DDDD_cazic-Inventory.txt Mantle of the
Waist AAAA_cazic-Inventory.txt Inspector's Belt 163135
Waist BBBB_cazic-Inventory.txt Narandi's Cummerbund of
Waist CCCC_cazic-Inventory.txt Windchill Hide Belt
Waist DDDD_cazic-Inventory.txt Narandi's Cummerbund of
Wrist AAAA_cazic-Inventory.txt Snowbound Legionnaire Bracer
Wrist AAAA_cazic-Inventory.txt Snowbound Legionnaire Bracer
Wrist BBBB_cazic-Inventory.txt Snowbound Frostfire Wristguard
Wrist BBBB_cazic-Inventory.txt Snowbound Frostfire Wristguard
Wrist CCCC_cazic-Inventory.txt Snowbound Illuminator Bracer
Wrist CCCC_cazic-Inventory.txt Snowbound Illuminator Bracer
Wrist DDDD_cazic-Inventory.txt Snowbound Mindlock Wristguard
Wrist DDDD_cazic-Inventory.txt Snowbound Mindlock Wristguard
Or if you want to check the augmentation slots for a specific character.
INI:
cat XXXXX_cazic-Inventory.txt | grep -v Bank | grep -v General | grep Slot
Location Name ID Count Slots
Charm-Slot1 Empty 0 0 0
Charm-Slot2 Empty 0 0 0
Ear-Slot1 Empty 0 0 0
Ear-Slot2 Empty 0 0 0
Ear-Slot3 Empty 0 0 0
Head-Slot1 Empty 0 0 0
Head-Slot2 Avarice 147237 1 6
Head-Slot3 Empty 0 0 0
Head-Slot4 Empty 0 0 0
Face-Slot1 Empty 0 0 0
Face-Slot2 Empty 0 0 0
Face-Slot3 Eclipsed Bloodflower Ornament 151172 1 6
Ear-Slot1 Empty 0 0 0
Ear-Slot2 Empty 0 0 0
Ear-Slot3 Empty 0 0 0
Neck-Slot1 Empty 0 0 0
Neck-Slot2 Aluminum Coil Spring 160668 1 6
Neck-Slot3 Calculating Differential Gear 160659 1 6
Shoulders-Slot1 Empty 0 0 0
Shoulders-Slot2 Empty 0 0 0
Shoulders-Slot3 Empty 0 0 0
Arms-Slot1 Empty 0 0 0
Arms-Slot2 Empty 0 0 0
Arms-Slot3 Empty 0 0 0
Arms-Slot4 Empty 0 0 0
Back-Slot1 Empty 0 0 0
Back-Slot2 Empty 0 0 0
Back-Slot3 Empty 0 0 0
Wrist-Slot1 Empty 0 0 0
Wrist-Slot2 Empty 0 0 0
Wrist-Slot3 Empty 0 0 0
Wrist-Slot4 Empty 0 0 0
Wrist-Slot1 Empty 0 0 0
Wrist-Slot2 Empty 0 0 0
Wrist-Slot3 Empty 0 0 0
Wrist-Slot4 Empty 0 0 0
Range-Slot1 Empty 0 0 0
Range-Slot2 Empty 0 0 0
Range-Slot3 Empty 0 0 0
Range-Slot4 Empty 0 0 0
Range-Slot5 Empty 0 0 0
Hands-Slot1 Empty 0 0 0
Hands-Slot2 Empty 0 0 0
Hands-Slot3 Empty 0 0 0
Hands-Slot4 Empty 0 0 0
Primary-Slot1 Empty 0 0 0
Primary-Slot2 Empty 0 0 0
Secondary-Slot1 Empty 0 0 0
Secondary-Slot2 Empty 0 0 0
Secondary-Slot3 Empty 0 0 0
Secondary-Slot4 Empty 0 0 0
Fingers-Slot1 Empty 0 0 0
Fingers-Slot2 Empty 0 0 0
Fingers-Slot3 Empty 0 0 0
Fingers-Slot1 Empty 0 0 0
Fingers-Slot2 Empty 0 0 0
Fingers-Slot3 Empty 0 0 0
Chest-Slot1 Bolstering Spring 160664 1 6
Chest-Slot2 Marquise Cut Ruby Ornament 151171 1 6
Chest-Slot3 Empty 0 0 0
Chest-Slot4 Empty 0 0 0
Legs-Slot1 Empty 0 0 0
Legs-Slot2 Empty 0 0 0
Legs-Slot3 Empty 0 0 0
Legs-Slot4 Empty 0 0 0
Feet-Slot1 Empty 0 0 0
Feet-Slot2 Empty 0 0 0
Feet-Slot3 Empty 0 0 0
Feet-Slot4 Empty 0 0 0
Waist-Slot1 Empty 0 0 0
Waist-Slot2 Empty 0 0 0
Waist-Slot3 Empty 0 0 0
Last edited: