[DiscordArchive] are there any addons that work with 3.3.5 to show item type / item subtype?
[DiscordArchive] are there any addons that work with 3.3.5 to show item type / item subtype?
Archived author: Dr.Dewf • Posted: 2025-08-13T00:53:41.955000+00:00
Original source
are there any addons that work with 3.3.5 to show item type / item subtype?
Archived author: Spargel • Posted: 2025-08-13T01:18:02.767000+00:00
Original source
Not that I'm aware of, though you could look them up in the item_template table. If it's for what I'm guessing it is and doing something with that junk-to-gold fork, you could use a query like this and probably cover all the fields you're looking for:
```
Select entry,name,class,subclass
From item_template
Where name = 'Item Name';
```