Does anyone know attribute name to add lifesteal to a currently equipped weapon.
Example weapon:
Shattered Flail uid: 8a527abd-a2ff-4267-a067-d26bdf6742ee
on that weapon, life steal passive is called Yeenoghu's Gift
Sword of Chaos also has lifesteal. uid e76b0896-dc70-4fb9-b202-cf5efc2de15a
Hey all. So I've looked around and can't seem to find a definitive answer. I just want to add a few skill proficiencies to my paladin, and I tried using the "Add Skill Proficiency" tab under Dice Roll Cheats, but it always resets my skills back to default when I load. All I do is to it before I activate is remove the expertise part, and a few skills before I activate, but it never sticks. Does anyone know how to get them to stick? Here is what the script looks like: {$lua}
if syntaxcheck then return end
[ENABLE]
local skills = {
}
local boost = "ProficiencyBonus(Skill,%s)"
for i = 1, #skills do
local skill = skills[i]
skills[i] = string.format(boost, skill, skill, skill)
end
AddBoostsToPlayer(skills)
[DISABLE]
The script is wrong ProficiencyBonus(Skill,%s) does take one parameter in string.format(<what to format>, <what to use 1>, <what to use 2> ...)
Check for a working version in the latest zanzer table.
Last edited by sanitka on Wed Nov 08, 2023 7:18 pm, edited 1 time in total.
I'm having difficulty getting anything to work since the new patch. I've got the new table (~12 hours ago), and it's just... not doing its thing. I didn't have any difficulties about a week ago, but now I can't edit stats or anything : /
I know very little about this process overall. Let me know if I'm doing something wrong:
1) Start up game
2) Start up CE
3) Point CE to the game .exe
4) Load up the bg3.CT file
5) Quicksave in-game
6) Expect to be able to edit stuff
7) Be disappointed : (
I've tried various combinations of quick- and hard-saving and loading; both in and out of camp; with and without a full party...
Help is appreciated!
after loading bg3.ct you should load a savegame, otherwise the table is useless, ie table works only ingame. When save loaded use any part of the table, but be aware that console part has its own rules (shown in the table).
I accidentally killed a certain recruitable creature when fighting it and its parent. A friend told me about flags, is there any way to revive them and still be able to continue it like normal or just set it to be in camp?
You might to "revive" them, but there is a high possibility of breaking game logic.
I'm having difficulty getting anything to work since the new patch. I've got the new table (~12 hours ago), and it's just... not doing its thing. I didn't have any difficulties about a week ago, but now I can't edit stats or anything : /
I know very little about this process overall. Let me know if I'm doing something wrong:
1) Start up game
2) Start up CE
3) Point CE to the game .exe
4) Load up the bg3.CT file
5) Quicksave in-game
6) Expect to be able to edit stuff
7) Be disappointed : (
I've tried various combinations of quick- and hard-saving and loading; both in and out of camp; with and without a full party...
Help is appreciated!
after loading bg3.ct you should load a savegame, otherwise the table is useless, ie table works only ingame. When save loaded use any part of the table, but be aware that console part has its own rules (shown in the table).
Yeah, as I said I was using it just fine a week ago... turns out I had to restart my PC for some asinine reason. It also does NOT like having Minthara in the party... doesn't display her name correctly, but I was able to adjust her stats and whatnot.
I am trying to give her the Two-Weapon Fighting style, though, and I can't seem to find that either in the CE table or in the list of UUIDs on the sticky at the front of this thread... any advice on where to look for fighting styles?
Hey all. So I've looked around and can't seem to find a definitive answer. I just want to add a few skill proficiencies to my paladin, and I tried using the "Add Skill Proficiency" tab under Dice Roll Cheats, but it always resets my skills back to default when I load. All I do is to it before I activate is remove the expertise part, and a few skills before I activate, but it never sticks. Does anyone know how to get them to stick? Here is what the script looks like: {$lua}
if syntaxcheck then return end
[ENABLE]
local skills = {
}
local boost = "ProficiencyBonus(Skill,%s)"
for i = 1, #skills do
local skill = skills[i]
skills[i] = string.format(boost, skill, skill, skill)
end
AddBoostsToPlayer(skills)
[DISABLE]
The script is wrong ProficiencyBonus(Skill,%s) does take one parameter in string.format(<what to format>, <what to use 1>, <what to use 2> ...)
Check for a working version in the latest zanzer table.
I have exactly the same question/issue, and even after fixing the script to only use the proficiency bonus, and even hardcoding it, the result is the same (e.g. I tried:
I accidentally killed a certain recruitable creature when fighting it and its parent. A friend told me about flags, is there any way to revive them and still be able to continue it like normal or just set it to be in camp?
You might to "revive" them, but there is a high possibility of breaking game logic.
I managed to revive them and their parent (getting it to set itself to temporarily hostile), and even get my relationship with it to be neutral (while also being an enemy) but I can't remove the enemy tag with my character at minimum its always Enemy 1 Allie 0 Neutral 0. I was following a post on https://www.fearlessrevolution.com/bald ... posts&BH=2 from someone who claimed to be able to resurrect Karlach, so I was hopeful (using a mix of SE and CE)
Last edited by sapel on Wed Nov 08, 2023 8:06 pm, edited 1 time in total.
I accidentally killed a certain recruitable creature when fighting it and its parent. A friend told me about flags, is there any way to revive them and still be able to continue it like normal or just set it to be in camp?
You might to "revive" them, but there is a high possibility of breaking game logic.
I managed to revive them and their parent (getting it to set itself to temporarily hostile), and even get my relationship with it to be neutral (while also being an enemy) but I can't remove the enemy tag with my character at minimum its always Enemy 1 Allie 0 Neutral 0. I was following a post on https://www.fearlessrevolution.com/bald ... posts&BH=2 from someone who claimed to be able to resurrect Karlach, so I was hopeful (using a mix of SE and CE)
I am trying to give her the Two-Weapon Fighting style, though, and I can't seem to find that either in the CE table or in the list of UUIDs on the sticky at the front of this thread... any advice on where to look for fighting styles?
Alright... I found it buried elsewhere in this thread. For anyone looking for it, it's
"FightingStyle_TwoWeaponFighting"
And you replace the relevant portion of the "Add Attack Skills" script under "Passive/ Feat Cheats". I'm learning things : )