About this mod
This mod adds an item to your inventory that can be used to create a random dice roll, giving access to the Customize Dice menu without having to find a dice roll in the game. The roll result has no effect.
- Requirements
- Permissions and credits
How to uninstall this mod mid-playthrough:
Made with help from code in Mod Uninstaller.
You can reset the mod this way as well, just follow the instructions and don't disable the mod at the end.
1. Load your save and open the Script Extender Debug Console.
If you don't know how to open the Debug Console, you need to make sure you have this file \steamapps\common\Baldurs Gate 3\bin\ScriptExtenderSettings.json with at least this text in it:
{
"CreateConsole": true
}
If you don't have a ScriptExtenderSettings.json file in that location, you'll need to make one.
Now when you start the game a second window with the Debug Console will appear.
2. In the Debug Console you're going to paste and enter two commands one after the other. You need to hit enter one time before you can run commands, you'll know when it's ready when the console line shows "S >>".
3. First paste and press enter:
entities = Ext.Entity.GetAllEntitiesWithComponent("ServerItem")
Second paste and press enter:
for _, entity in pairs(entities) do if (entity.ServerItem.Template.Name == "DICE_Roller") then _P("Deleted: " .. entity.ServerItem.Template.Name .. " - " .. entity.Uuid.EntityUuid) RequestDelete(entity.Uuid.EntityUuid) end end
4. Next, save your game and quit out. Don't load a save or the item will respawn.
5. Now it's safe to disable and remove the mod.
------------------------------
You need to have an active dice roll open to change the look of your dice. I can never find a dice roll when I need one, and once I do find one, I forget that I was looking for it. This mod adds a Dice Roller item to your inventory when you load a save, and it will check if you already have one. When the item is used, a dice roll is created with a random skill/ability check and a random success number, as well as random advantage/disadvantage. Nothing will happen regardless of the roll result.
In multiplayer, all user-created characters will receive a copy of the item.
Now with a 3d dice model! Thanks OfficiallyKP.
This is my first mod, please put any bug reports in the comments section.