Description
A Hytale server plugin that dumps all item IDs from the game to a text file.
1.1.0
ItemDumper automatically extracts and exports all item IDs available in your Hytale server to a sorted, easy-to-read text file. This is useful for:
- Plugin development
- Server configuration
- Creating custom loot tables
- Debugging item-related issues
- Understanding available game content
- Copy
ItemDumper-1.0.0.jarto your server'smods/directory - Start or restart your Hytale server
- The plugin will automatically run on startup
The plugin generates a file at:
<server-directory>/data/plugins/ItemDumper/all_item_ids.txt
The file contains:
- A header with generation information
- Total count of items
- Alphabetically sorted list of all item IDs
- Translation keys for each item (if available)
Each item in the output is prefixed with a type indicator:
- [BLOCK] - Placeable blocks that can be placed in the world (e.g., rocks, wood, furniture, decorations)
- [ITEM] - Inventory-only items that cannot be placed as blocks (e.g., armor, weapons, tools, food, potions)
Placeable items ([BLOCK]) include:
- Building blocks (Rock_, Wood_, Soil_*)
- Furniture and decorations (Furniture_, Deco_)
- Plants and vegetation (Plant_, Flower_)
- Benches and containers (Bench_, Container_)
Non-placeable items ([ITEM]) include:
- Armor pieces (Armor_*)
- Weapons (Weapon_*)
- Tools (Tool_*)
- Food and potions (Food_, Potion_)
- Crafting ingredients (Ingredient_*)
- Fish items (Fish_*)
================================================================================
ALL ITEM IDS IN HYTALE SERVER
Generated by ItemDumper v1.1.0
Total Items: 3011
- Placeable Blocks: 2275
- Inventory Only: 736
================================================================================
1. [BLOCK] *Container_Bucket_State_Filled_Milk [server.items.Container_Bucket_Milk.name]
2. [BLOCK] *Container_Bucket_State_Filled_Mosshorn_Milk [server.items.Container_Bucket_Mosshorn_Milk.name]
3. [BLOCK] *Container_Bucket_State_Filled_Water [server.items.Container_Bucket_Water.name]
4. [BLOCK] *Deco_Bucket_State_Filled_Milk [server.items.Deco_Bucket_Milk.name]
5. [BLOCK] *Deco_Bucket_State_Filled_Mosshorn_Milk [server.items.Deco_Bucket_Mosshorn_Milk.name]
6. [BLOCK] *Deco_Bucket_State_Filled_Water [server.items.Deco_Bucket_Water.name]
7. [BLOCK] *Deco_Mug_State_Filled_Water [server.items.Deco_Mug_Water.name]
8. [BLOCK] *Deco_Tankard_State_Filled_Water [server.items.Deco_Tankard_Water.name]
9. [ITEM] *Fish_Bluegill_Item_State_Epic [server.npcRoles.Bluegill.name]
10. [ITEM] *Fish_Bluegill_Item_State_Legendary [server.npcRoles.Bluegill.name]
11. [ITEM] *Fish_Bluegill_Item_State_Rare [server.npcRoles.Bluegill.name]
12. [ITEM] *Fish_Bluegill_Item_State_Uncommon [server.npcRoles.Bluegill.name]
13. [ITEM] *Fish_Catfish_Item_State_Epic [server.npcRoles.Catfish.name]
14. [ITEM] *Fish_Catfish_Item_State_Legendary [server.npcRoles.Catfish.name]
15. [ITEM] *Fish_Catfish_Item_State_Rare [server.npcRoles.Catfish.name]
16. [ITEM] *Fish_Catfish_Item_State_Uncommon [server.npcRoles.Catfish.name]
17. [ITEM] *Fish_Clownfish_Item_State_Epic [server.npcRoles.Clownfish.name]
18. [ITEM] *Fish_Clownfish_Item_State_Legendary [server.npcRoles.Clownfish.name]
...
When building prefabs or selecting blocks for world editing:
- ✅ Use items marked with [BLOCK] - these will work in prefabs
- ❌ Avoid items marked with [ITEM] - these are inventory-only and will cause errors if used in prefabs


