Has anyone been able to figure out what the uuid for Auntie Ethel's Hair is? It's the item that gives you 1 ability boost if you spare her. I've looked high and low through the shared.pak (shared/stats/generated/data) but even searching in all files for things like "ethel" "hag" "hair", etc have me turning up empty. Help would be appreciated.
The RootTemplates-files tend to be named with the actual UUID. Looking at one of the Story-files, I would think you need to use the MarkerTargetObjectUUID attribute within those files. You could start with trying the RootTemplates-file IDs. (I've highlighted those).
is there a way to duplicate items? or see the item UUIDs in my inventory? i want to make another ring/cloak of protection
I don't know about duplicating or finding UUID from items in inventory. But the items you are asking for are in the csv I posted earlier. Here's what I found though.
Morning, sorry for the dumb question, but i installed the game on steam and i`m to stupid to find the folders everyone is mentioning
could someone please explain where i can find this shared folders for the uuids you are talking about and another question is how can i extract the .lsj files they seem to be binary?
Thanks in advance
The only option not working for me currently in the table is Rest. The script kicks out an error and it does not provide a long rest for the party or, most importantly, reset the Illithid power so it can be used multiple times without going to camp for a long rest.
edit - specifically it says it cannot determine the term Rest
Last edited by MordredSJT on Mon Aug 07, 2023 8:19 am, edited 1 time in total.
Since they're being discussed: does anyone know the uuid of Miri's Dowry Ring? Accidentally sold it to Dammon and he doesn't have it in his inventory in Act 2.
I made this account explicitly to ask this question, because reading through 103 pages of replies (even ctrl+f for key words) was a daunting task by the thirtieth page, but..
Can anyone give me a simple explanation of how the character stat points script works, or tell me the values for 12, 14, and 16? I've been trying to understand it for most of the night.
I've tried to change the values by increments of 2, but it crashes after I try to change values to 7. Along with this, I don't actually SEE any difference in my characters stats after usage, aside from reducing the value to 0 and it taking me to 9 points in a stat.
Are you talking about saved character pointers? like the 2nd option? or the Ability stat option 3rd option?
Whatever the case you need to
1) click the option
2) Alt tab to game
3) Save
4) Alt tab to cheat engine
5) Find the CORRECT character you want to change like (character 1 2 3 4) - my character is 7 since my name is Nel then make the changes
5) Save again and RELOAD to see changes (the stat pointers has like soft cap in an 30 so it even if I put 9500 it goes only to 30)
[Link]
***I think someone made a tiny mod that makes the soft cap to 60
I made a script to reset the long-rest illithid thingie. This only clears one of two flags, the other is commented out but is not needed to regain the dialog option, though it being set will cause the corruption action to happen on long rest.
{$lua}
if syntaxcheck then return end
local uuid = "36d218ea-3eab-481f-fdaa-4ee185e76c25"
--local uuid = "b9d51e70-8963-e27f-a1fe-db5b9cfb3b1d" -- the other flag
local cmdCall = getAddress("cmdCall")
local cmdArgs = getAddress("cmdArgs")
local cmdStr1 = getAddress("cmdStr1")
local cmdStr2 = getAddress("cmdStr2")
PrepareCall("GetHostCharacter")
executeCodeEx(0, nil, cmdCall)
local player = readPointer(cmdArgs + 0x08)
player = readString(player, 256, false)
writeString(cmdStr1, player)
writeBytes(cmdStr1 + #player, 0)
writeString(cmdStr2, uuid)
writeBytes(cmdStr2 + #uuid, 0)
PrepareCall("ClearFlag")
writePointer(cmdArgs + 0x08, cmdStr2)
writePointer(cmdArgs + 0x18, cmdStr1)
local result = executeCodeEx(0, nil, cmdCall)
print(result == 1 and "success" or "failure")
{$asm}
Is there a possibility to change your race? I tried removing the cantrip which breaks my save, but from the looks of it you cannot remove one you get from being high elf... I need a way to either change race, or delete my character entirely, any ideas how?
Is there like a guide online? Or maybe a Youtube video? Or maybe you can send me some sort of link with basic explanation, so I can figure it out on my own
Press that button after you've opened the table in cheat engine, attach it to the baldurs gate 3 process.
Press the checkbox next to console commands, then press the checkbox next to register commands, do the same to permanent cheats. Then rightclick remove spell, and press change script.
The Target_DestroyWater needs to be changed to the cantrips you want to remove, I'll attach a list. Press ok, then toggle the checkbox next to remove spell, then press it again to toggle off, rinse and repeat for every cantrip you need to get rid of.
Cantrips list is from BG3_Spell_UUIDS.txt, I can't remember who posted it earlier in the thread but credit goes to them.