Dos2 Item Ids New -
In Diablo 2, each item, whether it's a weapon, armor, potion, or any other object, has a unique identifier known as an Item ID. These IDs are crucial for game developers and modders, as they allow for the identification and manipulation of items within the game's code.
| Captain's Compass (Amulet) | EQ_Amulet_Captain_A_* |
| Captain's Coat | ARM_Captain_Armor_* |
| Captain's Hat | ARM_Captain_Hat_* |
| Captain's Boots | ARM_Captain_Boots_* |
| Captain's Dubloon (Ring) | EQ_Ring_Captain_A_* |
Since new items often use dynamic GUIDs, here is the foolproof method:
Alternatively, extract Data.txt from Shared.pak using ExportTool. Look inside:
Public/Shared/Stats/Generated/Data.txt — search for new item or "Captain".
| Respec Mirror (in Act 1 – Fort Joy) | MIR_Respec_Mirror_* (object, not inventory) | dos2 item ids new
If the Item command fails, use the script extender's debug command. This works 100% of the time for new items:
Osi.TemplateAddTo("path/to/item", 1, GetHostCharacter(), 1)
Wait—that’s wrong. The correct script extender format is:
Osi.TemplateAddTo("TemplatedItemName", 1, GetHostCharacter(), 1) In Diablo 2, each item, whether it's a
Pro Tip: If you cannot find an ID for a specific DLC item, simply spawn the "Unidentifiable Relic" container. It contains all four sets.
These are the holy grail for modders. You cannot get these normally, but they work via console.
| Item Name | Item ID (New) | Who uses it? |
| :--- | :--- | :--- |
| Adramahlihk's Wings |"EQ_FirstWave_Lizard_Wings_83f455d1-c8ad-44ab-a2b5-4beaeb908421"| The Doctor’s unique model. |
| Dallis's Hammer (Broken) |"EQ_DallisHammer_Broken_fdc114a9-29fe-44c9-bb71-ebd5499cd294"| Unusable, but a collector's item. |
| The Red Prince's Crown (NPC) |"EQ_DreamWarrior_Lizard_Helm_B_9ccee01b-4fcf-4f13-8e21-d0b5a6a4a6b5"| Not the same as the craftable crown. |
| Braccus Rex's Soul Jar (Empty) |"EQ_ACT3_Braccus_SoulJar_Empty"| Used for a canceled quest branch. |
Last Updated: [Current Date]
If you’ve ever found yourself stuck in Fort Joy, undergeared in Reaper’s Coast, or simply tired of waiting for that perfect Divine-tier weapon to drop, you’ve likely searched for one thing: dos2 item ids new.
In Divinity: Original Sin 2 (DOS2), Item IDs are the backbone of the game’s developer console and scripting system. With a correct ID, you can spawn any piece of gear, spellbook, rune, or quest item directly into your inventory. But with numerous gift bags, patches, and the sheer volume of items (over 15,000 unique codes), finding working and new IDs can be a nightmare.
This article serves as your complete 2025 reference. We will cover how to find the most recent IDs, the difference between normal and legendary items, how to use the script extender, and provide a master list of the most sought-after new item codes.