A vanilla WoW addon that exports your currently equipped gear as JSON, compatible with the TurtleAtlasLoot Gear Planner.
- Exports all 17 equipment slots (Head, Neck, Shoulder, Back, Chest, Wrist, Hands, Waist, Legs, Feet, Finger 1 & 2, Trinket 1 & 2, Main Hand, Off Hand, Ranged)
- Outputs JSON in the exact format the Gear Planner expects for import
- Provides a scrollable, copy-friendly text window in-game
- Supports custom set names
- Download or clone this repository
- Copy the
GearExportfolder into yourInterface/AddOns/directory - Restart the game or type
/reload
| Command | Description |
|---|---|
/gearexport |
Export gear with default name (<CharacterName> Gear) |
/ge |
Short alias for /gearexport |
/gearexport My BIS Set |
Export gear with a custom set name |
A window will appear with the JSON output. Use Ctrl+A to select all, then Ctrl+C to copy it to your clipboard.
- Run
/gearexportin-game and copy the JSON - Open the TurtleAtlasLoot Gear Planner
- Use the Import feature and paste the JSON
[
{
"name": "Xii Gear",
"slots": {
"Back": {
"itemId": 70008,
"obtained": true
},
"Chest": {
"itemId": 58030,
"obtained": true
},
"Feet": {
"itemId": 21388,
"obtained": true
}
}
}
]All equipped items are exported with "obtained": true. Empty slots are skipped.
- Client: Vanilla WoW 1.12
- Interface version: 11200