It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
I want to make a few mods, such as classes and gods and such but I have no idea how. I am not that good with code so I need to look at what I am doing for any idea of mine to work as I do it.
No posts in this topic were marked as the solution yet. If you can help, add your reply
The main problem is that the game, like most Unity games, is not supposed to be modded. There is no toolkit for modders, and no way to install mods without resorting to external loaders that trick the executable (e.g., Unity Mod Manager on the Nexus).

As such, tutorials on how to mod Kingmaker default to tutorials on how to mod Unity games, which often means creating a DLL. This means being able to actually code in .NET, at least a little.

You can find the source of a number of mods here:

wiki.fireundubh.com/kingmaker#source-code-repository

And this is the source of a very simple mod included in the bundle, the attribute uncapper:

github.com/fireundubh/KingmakerMods.pw/blob/master/KingmakerMods/Mods/Cheats/Configurables/AttributeUncapper/S tatsDistributionNew.cs

If you understand what it does and how, then you are ready to start looking into modding kingmaker. If you do not, then you should probably follow a C#/Unity programming tutorial or three.

I heartily recommend quill18's programming howtos on youtube:

www.youtube.com/channel/UCPXOQq7PWh5OdCwEO60Y8jQ?&ab_channel=quill18creates

HTH, HAND.