z Baldur's Gate 3

Upload your cheat tables here (No requests)
AlexLucas92
Expert Cheater
Expert Cheater
Posts: 52
Joined: Sun Jul 09, 2023 5:33 pm
Reputation: 2

Re: z Baldur's Gate 3

Post by AlexLucas92 »

I'm still looking for name of Weapon Master feat for all weapons if anyone have ? pls ?

How to use this cheat table?
  1. Install Cheat Engine
  2. Double-click the .CT file in order to open it.
  3. Click the PC icon in Cheat Engine in order to select the game process.
  4. Keep the list.
  5. Activate the trainer options by checking boxes or setting values from 0 to 1

ddatker
What is cheating?
What is cheating?
Posts: 3
Joined: Tue Aug 08, 2023 7:54 am
Reputation: 1

Re: z Baldur's Gate 3

Post by ddatker »

How to use the Character Tags list? Is it possible to use object spawner under console command to spawn them using uuid?

oilnarak01
Cheater
Cheater
Posts: 48
Joined: Sun Feb 26, 2023 4:39 pm
Reputation: 11

Re: z Baldur's Gate 3

Post 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

break2bits
What is cheating?
What is cheating?
Posts: 1
Joined: Thu Aug 10, 2023 8:23 am
Reputation: 0

Re: z Baldur's Gate 3

Post 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".

Pols37
What is cheating?
What is cheating?
Posts: 1
Joined: Thu Aug 10, 2023 8:25 am
Reputation: 1

Re: z Baldur's Gate 3

Post 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]

FlickCharlie
Noobzor
Noobzor
Posts: 6
Joined: Mon Aug 07, 2023 9:47 pm
Reputation: 0

Re: z Baldur's Gate 3

Post 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?

caraifaudes9565
Novice Cheater
Novice Cheater
Posts: 18
Joined: Wed Jun 09, 2021 12:07 pm
Reputation: 0

Re: z Baldur's Gate 3

Post by caraifaudes9565 »

is there any usable ability / spell to levitate like the mind flayers do (and I don't mean fly) ?

ChrisMck67
Noobzor
Noobzor
Posts: 12
Joined: Sun Mar 13, 2022 1:05 am
Reputation: 0

Re: z Baldur's Gate 3

Post 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

Sakuryu45
Expert Cheater
Expert Cheater
Posts: 57
Joined: Fri Jul 15, 2022 2:08 pm
Reputation: 3

Re: z Baldur's Gate 3

Post 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?

oilnarak01
Cheater
Cheater
Posts: 48
Joined: Sun Feb 26, 2023 4:39 pm
Reputation: 11

Re: z Baldur's Gate 3

Post 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

sevy0815
What is cheating?
What is cheating?
Posts: 1
Joined: Thu Aug 10, 2023 9:52 am
Reputation: 0

Re: z Baldur's Gate 3

Post 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.

Tear
What is cheating?
What is cheating?
Posts: 1
Joined: Thu Aug 10, 2023 10:35 am
Reputation: 0

Re: z Baldur's Gate 3

Post 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)"
Last edited by Tear on Thu Aug 10, 2023 10:52 am, edited 2 times in total.

Chugalug
What is cheating?
What is cheating?
Posts: 1
Joined: Thu Aug 10, 2023 10:46 am
Reputation: 0

Re: z Baldur's Gate 3

Post 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"
Last edited by Chugalug on Thu Aug 10, 2023 11:18 am, edited 1 time in total.

BourbieSpeedrun
Cheater
Cheater
Posts: 30
Joined: Mon Aug 30, 2021 2:04 am
Reputation: 0

Re: z Baldur's Gate 3

Post 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

coldcell
Cheater
Cheater
Posts: 30
Joined: Mon May 08, 2017 12:46 pm
Reputation: 10

Re: z Baldur's Gate 3

Post 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.

Post Reply

Who is online

Users browsing this forum: AhrefsBot, Alex_Merzer007, Azmador, Google Adsense [Bot], Jetadawoot, KaiserAlucard, khanhnguyen, PhoenixFlare