Pathfinder: Kingmaker (Steam)

Upload your cheat tables here (No requests)
vitaeexmorte
Expert Cheater
Expert Cheater
Posts: 64
Joined: Sun Oct 15, 2017 4:20 am
Reputation: 19

Re: Pathfinder: Kingmaker (Steam)

Post by vitaeexmorte »

Draco856 wrote:
Tue Oct 02, 2018 7:22 am
The feat "Selective Channeling" makes a clerics aoe channel spells affect only friendlies/enemies depending on the channel, may be worth looking into for disabling AOE damage to friendlies.
With Selective Channeling, Possitive Energy, is seperated in two abilities, one that heals and one that damages undead. So it is not like you cast an politive energy aoe and do both.

Not sure how it was before that feat, but even if it did both I assume it interacted simply with a "Undead" feat similar to the one Jaethal has. As she is still affected by the damaging one even though she is an ally.

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

fireundubh
Expert Cheater
Expert Cheater
Posts: 141
Joined: Sun Sep 24, 2017 1:53 am
Reputation: 31

Re: Pathfinder: Kingmaker (Steam)

Post by fireundubh »

I figured out how to enable debug logging (super useful for making mods and testing CE cheats), unlock "DLC" portraits, disable Steam and GOG achievements, disable Steam Cloud Saves, uncap the allocable attribute point max, allow you to rest anywhere, among other stuff.

All the mods I've made so far: [Link]. No binaries yet, but if you have VS2017 and .NET 4.7.1, you can compile the solution.

FYI: You don't need my logging mod to enable debug logging. Just run the game with "logging" as an argument. No hyphen.

Codetalker
Noobzor
Noobzor
Posts: 8
Joined: Tue Oct 02, 2018 7:15 am
Reputation: 0

Re: Pathfinder: Kingmaker (Steam)

Post by Codetalker »

Request:Adding caster level,spell penetration and concentration modifiers into status 'other' list.

sicwan
Expert Cheater
Expert Cheater
Posts: 111
Joined: Mon Oct 01, 2018 9:55 pm
Reputation: 13

Re: Pathfinder: Kingmaker (Steam)

Post by sicwan »

Niedzielan, Playing an Inquisitor, none of the "infinite Spell/Abilities/Activatable Abilities" are working for me on the Inquisitors judgement abilities.

6.8.1
Win10 Pro
1.0.3 steam

Manual_11_Testing_Save.7z
save to test with
(823.57 KiB) Downloaded 43 times

NukeZen
Expert Cheater
Expert Cheater
Posts: 73
Joined: Thu Mar 02, 2017 11:44 pm
Reputation: 9

Re: Pathfinder: Kingmaker (Steam)

Post by NukeZen »

fireundubh wrote:
Tue Oct 02, 2018 10:16 am
I figured out how to enable debug logging (super useful for making mods and testing CE cheats), unlock "DLC" portraits, disable Steam and GOG achievements, disable Steam Cloud Saves, uncap the allocable attribute point max, allow you to rest anywhere, among other stuff.

All the mods I've made so far: [Link]. No binaries yet, but if you have VS2017 and .NET 4.7.1, you can compile the solution.

FYI: You don't need my logging mod to enable debug logging. Just run the game with "logging" as an argument. No hyphen.
Can you explain how to get this to work? Do i have to put the ini file somewhere and that's it? Or there are some more things to do?

fireundubh
Expert Cheater
Expert Cheater
Posts: 141
Joined: Sun Sep 24, 2017 1:53 am
Reputation: 31

Re: Pathfinder: Kingmaker (Steam)

Post by fireundubh »

vitaeexmorte wrote:
Tue Oct 02, 2018 6:10 am
Not sure that is possible, the game lacks several things that would make me believe that can be done.
First, no difficulty option that generally disables friendly fire, second, no metamagic Selective Spell or Sculp Spell, which would allows a caster to change spells to only target enemies.
In short, there is most likely no funktion in the game code to do it easily. Even the spell Controlled Fireball hits your party, just not as hard as the enemies. Next best thing would be increased damage resistance, saving throws or outright invulnerbility, things you don't seem to want to begin with.
I just added a NoFriendlyFire cheat mod to KingmakerMods.pw.

Spells and abilities have a TargetType property, which is either Enemy, Ally, or Any. AoE spells and abilities use the AbilityTargetsAround component of unit ability logic (UnitLogic.Abilities.Components.AbilityTargetsAround) to select nearby targets.

Disabling friendly fire for AoE attacks was straightforward. I changed this:

Code: Select all

// unchanged
IEnumerable<UnitEntityData> source = GameHelper.GetTargetsAround(anchor.Point, this.m_Radius);

<snip>

// original
// source = source.Where(context.MaybeCaster.IsEnemy);

// new
source = source.Where(context.MaybeCaster.IsEnemy).Where(u => !u.IsPlayerFaction);
I was looking for a solution last night, but I passed out. Reading your post inspired me to look again.

No clue how this would look in assembly.

NukeZen wrote:
Tue Oct 02, 2018 11:08 am
Can you explain how to get this to work? Do i have to put the ini file somewhere and that's it? Or there are some more things to do?
There are no binaries yet. If there were binaries (i.e., if I released them or you compiled them), you would place KingmakerMods.ini and INIFileParser.dll in the root of your game path, and INIFileParser.dll again in the Kingmaker_Data\Managed folder. Then, you would run the PatchworkLauncher, add KingmakerMods.pw.dll as an active mod, and click the big Launch with Mods button.

JTitor
What is cheating?
What is cheating?
Posts: 3
Joined: Tue Oct 02, 2018 11:16 am
Reputation: 1

Re: Pathfinder: Kingmaker (Steam)

Post by JTitor »

Got my map travel time down to 3 minutes in game.
Kingmaker.Controllers.GlobalMap.MapMovementController > GetEncumbranceModifier() and set to 100f or more. Ignore this one, messes stuff up.

I'm an idiot..
Just edit
"SpeedModifier": 0.0,
"KingdomSpeedModifier": 0.0
In player.json
Last edited by JTitor on Tue Oct 02, 2018 12:20 pm, edited 4 times in total.

NukeZen
Expert Cheater
Expert Cheater
Posts: 73
Joined: Thu Mar 02, 2017 11:44 pm
Reputation: 9

Re: Pathfinder: Kingmaker (Steam)

Post by NukeZen »

fireundubh wrote:
Tue Oct 02, 2018 11:11 am
NukeZen wrote:
Tue Oct 02, 2018 11:08 am
Can you explain how to get this to work? Do i have to put the ini file somewhere and that's it? Or there are some more things to do?
There are no binaries yet. If there were binaries (i.e., if I released them or you compiled them), you would place KingmakerMods.ini and INIFileParser.dll in the root of your game path, and INIFileParser.dll again in the Kingmaker_Data\Managed folder. Then, you would run the PatchworkLauncher, add KingmakerMods.pw.dll as an active mod, and click the big Launch with Mods button.
So, it's the first time i download vs2017. What components do i need to get the work done? .Net Framework 4.7.1 and...?

User avatar
Niedzielan
Expert Cheater
Expert Cheater
Posts: 122
Joined: Fri Aug 31, 2018 1:28 pm
Reputation: 169

Re: Pathfinder: Kingmaker (Steam)

Post by Niedzielan »

fireundubh wrote:
Tue Oct 02, 2018 11:11 am
vitaeexmorte wrote:
Tue Oct 02, 2018 6:10 am
Not sure that is possible, the game lacks several things that would make me believe that can be done.
First, no difficulty option that generally disables friendly fire, second, no metamagic Selective Spell or Sculp Spell, which would allows a caster to change spells to only target enemies.
In short, there is most likely no funktion in the game code to do it easily. Even the spell Controlled Fireball hits your party, just not as hard as the enemies. Next best thing would be increased damage resistance, saving throws or outright invulnerbility, things you don't seem to want to begin with.
I just added a NoFriendlyFire cheat mod to KingmakerMods.pw.

Spells and abilities have a TargetType property, which is either Enemy, Ally, or Any. AoE spells and abilities use the AbilityTargetsAround component of unit ability logic (UnitLogic.Abilities.Components.AbilityTargetsAround) to select nearby targets.

Disabling friendly fire for AoE attacks was straightforward. I changed this:

Code: Select all

// unchanged
IEnumerable<UnitEntityData> source = GameHelper.GetTargetsAround(anchor.Point, this.m_Radius);

<snip>

// original
// source = source.Where(context.MaybeCaster.IsEnemy);

// new
source = source.Where(context.MaybeCaster.IsEnemy).Where(u => !u.IsPlayerFaction);
I was looking for a solution last night, but I passed out. Reading your post inspired me to look again.

No clue how this would look in assembly.
Easiest way to do it is to make it think the targettype is enemy instead of all. Plus a check on the MaybeCaster so that enemies still get friendly-fire'd. Already made a script to do that. Now I'm just looking for where non-circular area selections are, which shouldn't take long to find.

JTitor wrote:
Tue Oct 02, 2018 11:19 am
Got my map travel time down to 3 minutes in game.
Kingmaker.Controllers.GlobalMap.MapMovementController > GetEncumbranceModifier() and set to 100f or more. Ignore this one, messes stuff up.

I'm an idiot..
Just edit
"SpeedModifier": 0.0,
"KingdomSpeedModifier": 0.0
In player.json

I've found where these are stored in game, so I'll add them to the table in my next update. Thanks for finding them :)

onyxius
Cheater
Cheater
Posts: 34
Joined: Mon Oct 01, 2018 4:20 pm
Reputation: 1

Re: Pathfinder: Kingmaker (Steam)

Post by onyxius »

Has anyone been able to change the voice of a character they already created? i thought i would like this voice but its quite annoying and would be great if i could change it.

User avatar
Niedzielan
Expert Cheater
Expert Cheater
Posts: 122
Joined: Fri Aug 31, 2018 1:28 pm
Reputation: 169

Re: Pathfinder: Kingmaker (Steam)

Post by Niedzielan »

onyxius wrote:
Tue Oct 02, 2018 1:10 pm
Has anyone been able to change the voice of a character they already created? i thought i would like this voice but its quite annoying and would be great if i could change it.
In the saves it's labelled as "CustomAsks". Create a new character with the voice you want, find the CustomAsks id in the save, copy it to your main character. (e.g. 2b63671451c82094f828817ce94d33e5 for my main)

I could add it to the cheat table, but I'd have to go and find every voice id

tseblade
Novice Cheater
Novice Cheater
Posts: 23
Joined: Sun Sep 30, 2018 4:25 pm
Reputation: 9

Re: Pathfinder: Kingmaker (Steam)

Post by tseblade »

Hey guys,

Another update to the previous feat list JSON file for save editing.
- Added a list at the start of weapons and schools names.
- Changed the feats with multiple choices like Weapon Focus to a single object where you can change the focus yourself from the previous list.
- Filled more of the missing general feats.
- Best part, confirmed normal fighter level up feats work for anyone. :D ( You can give your chars Armor Training, Armor Mastery, Bravery, Weapon Training and Weapon Mastery, imagine a rogue with Rank 4 Weapon Training - Light Weapon and Dagger Weapon Mastery...)
Attachments
Feats_List.zip
(18.29 KiB) Downloaded 41 times

frivolousam
Expert Cheater
Expert Cheater
Posts: 85
Joined: Sat Apr 29, 2017 3:19 pm
Reputation: 5

Re: Pathfinder: Kingmaker (Steam)

Post by frivolousam »

tseblade wrote:
Tue Oct 02, 2018 1:46 pm
Hey guys,

Another update to the previous feat list JSON file for save editing.
- Added a list at the start of weapons and schools names.
- Changed the feats with multiple choices like Weapon Focus to a single object where you can change the focus yourself from the previous list.
- Filled more of the missing general feats.
- Best part, confirmed normal fighter level up feats work for anyone. :D ( You can give your chars Armor Training, Armor Mastery, Bravery, Weapon Training and Weapon Mastery, imagine a rogue with Rank 4 Weapon Training - Light Weapon and Dagger Weapon Mastery...)
Is there a post explaining how to add these to savefile?

onyxius
Cheater
Cheater
Posts: 34
Joined: Mon Oct 01, 2018 4:20 pm
Reputation: 1

Re: Pathfinder: Kingmaker (Steam)

Post by onyxius »

Niedzielan wrote:
Tue Oct 02, 2018 1:24 pm
onyxius wrote:
Tue Oct 02, 2018 1:10 pm
Has anyone been able to change the voice of a character they already created? i thought i would like this voice but its quite annoying and would be great if i could change it.
In the saves it's labelled as "CustomAsks". Create a new character with the voice you want, find the CustomAsks id in the save, copy it to your main character. (e.g. 2b63671451c82094f828817ce94d33e5 for my main)

I could add it to the cheat table, but I'd have to go and find every voice id
Thank you, that worked. For anyone else who is curious, its the party.json file i had to edit and look for my name and the entry for CustomAsks, then copy that number over to the other save you want to change the voice on. Make sure you are out of the game when you do all of this.

User avatar
Niedzielan
Expert Cheater
Expert Cheater
Posts: 122
Joined: Fri Aug 31, 2018 1:28 pm
Reputation: 169

Re: Pathfinder: Kingmaker (Steam)

Post by Niedzielan »

sicwan wrote:
Tue Oct 02, 2018 10:32 am
Niedzielan, Playing an Inquisitor, none of the "infinite Spell/Abilities/Activatable Abilities" are working for me on the Inquisitors judgement abilities.

6.8.1
Win10 Pro
1.0.3 steam


Manual_11_Testing_Save.7z
Done. How many different ability types does this game have? I'll work on combining the ability scripts into one.

Post Reply