Page 140 of 465

Re: z Baldur's Gate 3

Posted: Thu Aug 10, 2023 7:41 am
by AlexLucas92
I'm still looking for name of Weapon Master feat for all weapons if anyone have ? pls ?

Re: z Baldur's Gate 3

Posted: Thu Aug 10, 2023 7:51 am
by ddatker
How to use the Character Tags list? Is it possible to use object spawner under console command to spawn them using uuid?

Re: z Baldur's Gate 3

Posted: Thu Aug 10, 2023 8:12 am
by oilnarak01
Pupsic-3D wrote:
Wed Aug 09, 2023 10:13 pm
BourbieSpeedrun wrote:
Wed Aug 09, 2023 10:07 pm
Slaggy wrote:
Wed Aug 09, 2023 9:52 pm


Thank you, had a brain derp with the search function but still haven't found much.
Did you find out how to get NPCs IDs ?
And what will the NPC call give you? Will they be your partners?
yes there're command in cheat engine that require npc id to make them join your party or follow you

[ENABLE]
{$lua}
if syntaxcheck then return end
local uuid = "S_DEN_CapturedGoblin_783d7572-a846-455f-b686-247a95263ebb"
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)

local cmdStr2 = getAddress("cmdStr2")
writeString(cmdStr2, player)
writeBytes(cmdStr2 + #player, 0)
executeCodeEx(0, nil, cmdCall)
PrepareCall("AddPartyFollower")
writePointer(cmdArgs + 0x18, cmdStr2)
writePointer(cmdArgs + 0x08, cmdStr1)
writeString(cmdStr1, uuid)
writeBytes(cmdStr1 + #uuid, 0)
executeCodeEx(0, nil, cmdCall)
local result = executeCodeEx(0, nil, cmdCall)
print(result == 1 and "success" or "failure")
{$asm}
assert(true)
[DISABLE]




like this

Re: z Baldur's Gate 3

Posted: Thu Aug 10, 2023 8:25 am
by break2bits
nullqat wrote:
Wed Aug 09, 2023 11:13 am
hello @all
please, can anyone help me find the item code for mithral ore? i'm at a loss, can't find it ANYWHERE
The item code for mithral ore is f65292f7-a930-48a3-a803-914da4781056 . I found it by searching the Shared pak files for "UND_MithralOre".

Re: z Baldur's Gate 3

Posted: Thu Aug 10, 2023 8:31 am
by Pols37
AlexLucas92 wrote:
Thu Aug 10, 2023 7:41 am
I'm still looking for name of Weapon Master feat for all weapons if anyone have ? pls ?
If I understand you correctly, then this is what you need. Adds proficiency to all types of weapons.

Code: Select all

[ENABLE]
{$lua}
if syntaxcheck then return end

local values = {
"Proficiency_Battleaxes",
"Proficiency_Clubs",
"Proficiency_Daggers",
"Proficiency_Flails",
"Proficiency_Glaives",
"Proficiency_Greataxe",
"Proficiency_Greatclub",
"Proficiency_Greatswords",
"Proficiency_Halberds",
"Proficiency_HandCrossbows",
"Proficiency_Handaxes",
"Proficiency_HeavyCrossbows",
"Proficiency_Javelins",
"Proficiency_LightCrossbows",
"Proficiency_LightHammers",
"Proficiency_Longbows",
"Proficiency_Longswords",
"Proficiency_Maces",
"Proficiency_Mauls",
"Proficiency_Morningstars",
"Proficiency_Pikes",
"Proficiency_Quarterstaffs",
"Proficiency_Rapiers",
"Proficiency_Scimitars",
"Proficiency_Shortbows",
"Proficiency_Shortswords",
"Proficiency_Sickles",
"Proficiency_Spears",
"Proficiency_Tridents",
"Proficiency_Warhammers",
"Proficiency_Warpicks"
}

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)

for i = 1, #values do
  local value = values[i]
  writeString(cmdStr2, value)
  writeBytes(cmdStr2 + #value, 0)

  PrepareCall("AddPassive")
  writePointer(cmdArgs + 0x08, cmdStr1)
  writePointer(cmdArgs + 0x18, cmdStr2)
  writeQword(cmdArgs + 0x28, 0)
  writeQword(cmdArgs + 0x38, 0)
  executeCodeEx(0, nil, cmdCall)
end

{$asm}

[DISABLE]

Re: z Baldur's Gate 3

Posted: Thu Aug 10, 2023 9:00 am
by FlickCharlie
what are spell UIDS for Dethrone and Curricullum of strategy:artistry of war and passive/feat/talent that allows wizards to learn spells from scrolls?

Re: z Baldur's Gate 3

Posted: Thu Aug 10, 2023 9:00 am
by caraifaudes9565
is there any usable ability / spell to levitate like the mind flayers do (and I don't mean fly) ?

Re: z Baldur's Gate 3

Posted: Thu Aug 10, 2023 9:18 am
by ChrisMck67
Shar's spear of evening 61f31bf6-47ec-41e1-9385-2f6c26facc87
Selune's spear of night 2eeabe97-8f29-4f4f-827e-6cfcd8fd1779
Moonlight Glaive 24f276e7-f08f-44f1-ab97-3df34fd52add

Re: z Baldur's Gate 3

Posted: Thu Aug 10, 2023 9:30 am
by Sakuryu45
oilnarak01 wrote:
Thu Aug 10, 2023 8:12 am
Pupsic-3D wrote:
Wed Aug 09, 2023 10:13 pm
BourbieSpeedrun wrote:
Wed Aug 09, 2023 10:07 pm


Did you find out how to get NPCs IDs ?
And what will the NPC call give you? Will they be your partners?
yes there're command in cheat engine that require npc id to make them join your party or follow you

[ENABLE]
{$lua}
if syntaxcheck then return end
local uuid = "S_DEN_CapturedGoblin_783d7572-a846-455f-b686-247a95263ebb"
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)

local cmdStr2 = getAddress("cmdStr2")
writeString(cmdStr2, player)
writeBytes(cmdStr2 + #player, 0)
executeCodeEx(0, nil, cmdCall)
PrepareCall("AddPartyFollower")
writePointer(cmdArgs + 0x18, cmdStr2)
writePointer(cmdArgs + 0x08, cmdStr1)
writeString(cmdStr1, uuid)
writeBytes(cmdStr1 + #uuid, 0)
executeCodeEx(0, nil, cmdCall)
local result = executeCodeEx(0, nil, cmdCall)
print(result == 1 and "success" or "failure")
{$asm}
assert(true)
[DISABLE]




like this
Can this be used to force Minthara to the Moonrise tower cutscene or trigger her as a companion?

Re: z Baldur's Gate 3

Posted: Thu Aug 10, 2023 9:52 am
by oilnarak01
Sakuryu45 wrote:
Thu Aug 10, 2023 9:30 am
oilnarak01 wrote:
Thu Aug 10, 2023 8:12 am
Pupsic-3D wrote:
Wed Aug 09, 2023 10:13 pm


And what will the NPC call give you? Will they be your partners?
yes there're command in cheat engine that require npc id to make them join your party or follow you

[ENABLE]
{$lua}
if syntaxcheck then return end
local uuid = "S_DEN_CapturedGoblin_783d7572-a846-455f-b686-247a95263ebb"
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)

local cmdStr2 = getAddress("cmdStr2")
writeString(cmdStr2, player)
writeBytes(cmdStr2 + #player, 0)
executeCodeEx(0, nil, cmdCall)
PrepareCall("AddPartyFollower")
writePointer(cmdArgs + 0x18, cmdStr2)
writePointer(cmdArgs + 0x08, cmdStr1)
writeString(cmdStr1, uuid)
writeBytes(cmdStr1 + #uuid, 0)
executeCodeEx(0, nil, cmdCall)
local result = executeCodeEx(0, nil, cmdCall)
print(result == 1 and "success" or "failure")
{$asm}
assert(true)
[DISABLE]




like this
Can this be used to force Minthara to the Moonrise tower cutscene or trigger her as a companion?
i don't know need to find her uuid first but i think it will work

Re: z Baldur's Gate 3

Posted: Thu Aug 10, 2023 9:54 am
by sevy0815
Anyone know if it would be possible to change gender with this?
Not Character model gender, but the gender the game thinks your character is.

I accidently picked female gender but male body and now everyone is calling me "she" and all the male characters are constantly hitting on me.

Re: z Baldur's Gate 3

Posted: Thu Aug 10, 2023 10:40 am
by Tear
Has anyone ever gotten the "Restore Health" and "Rest Characters" on demand cheats working since the full release?

Regarding the "Add Saving Throw Proficiency Bonus" The local variables are commented out with the exception of Charisma. Is it possible I can put all of them into the same local boost variable and have it work?

This is current:
--local boost = "ProficiencyBonus(SavingThrow,Strength)"
--local boost = "ProficiencyBonus(SavingThrow,Dexterity)"
--local boost = "ProficiencyBonus(SavingThrow,Constitution)"
--local boost = "ProficiencyBonus(SavingThrow,Intelligence)"
--local boost = "ProficiencyBonus(SavingThrow,Wisdom)"
local boost = "ProficiencyBonus(SavingThrow,Charisma)"


This is what I want to change it to:
local boost = "ProficiencyBonus(SavingThrow,Strength);ProficiencyBonus(SavingThrow,Dexterity);ProficiencyBonus(SavingThrow,Constitution);ProficiencyBonus(SavingThrow,Intelligence);ProficiencyBonus(SavingThrow,Wisdom);ProficiencyBonus(SavingThrow,Charisma)"

Re: z Baldur's Gate 3

Posted: Thu Aug 10, 2023 10:48 am
by Chugalug
Anyone know the ID for the "Awakened" passive that lets your illithid powers be used as bonus actions instead of actions?

edit: I found it if anyone else is looking for it: "CRE_GithInfirmary_Awakened"

Re: z Baldur's Gate 3

Posted: Thu Aug 10, 2023 10:53 am
by BourbieSpeedrun
oilnarak01 wrote:
Thu Aug 10, 2023 9:52 am
Sakuryu45 wrote:
Thu Aug 10, 2023 9:30 am
oilnarak01 wrote:
Thu Aug 10, 2023 8:12 am


yes there're command in cheat engine that require npc id to make them join your party or follow you

[ENABLE]
{$lua}
if syntaxcheck then return end
local uuid = "S_DEN_CapturedGoblin_783d7572-a846-455f-b686-247a95263ebb"
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)

local cmdStr2 = getAddress("cmdStr2")
writeString(cmdStr2, player)
writeBytes(cmdStr2 + #player, 0)
executeCodeEx(0, nil, cmdCall)
PrepareCall("AddPartyFollower")
writePointer(cmdArgs + 0x18, cmdStr2)
writePointer(cmdArgs + 0x08, cmdStr1)
writeString(cmdStr1, uuid)
writeBytes(cmdStr1 + #uuid, 0)
executeCodeEx(0, nil, cmdCall)
local result = executeCodeEx(0, nil, cmdCall)
print(result == 1 and "success" or "failure")
{$asm}
assert(true)
[DISABLE]




like this
Can this be used to force Minthara to the Moonrise tower cutscene or trigger her as a companion?
i don't know need to find her uuid first but i think it will work
Do you know how can I access thoses UUID I want the Ketheric one

Re: z Baldur's Gate 3

Posted: Thu Aug 10, 2023 11:03 am
by coldcell
Anyone knows if it's possible to add just feat points? Then using that feat points in level up screen as if you have them.