Home - WittleWolfie/OwlcatModdingWiki GitHub Wiki

Getting Started

Tutorials

Pathfinder: Kingmaker

Start with the Beginner Mod Tutorial. You'll need to write some C# code; if you're unfamiliar the tutorial links to some guides to learn C#.

Pathfinder: Wrath of the Righteous

You have a few choices:

  1. (Recommended) Getting Started with BlueprintCore

    • A library designed to simplify modding in Wrath, including a template project setup and detailed, step-by-step tutorial for adding feats
    • If you are only intending to do changes to the UI this may not be as helpful, but any changes to game mechanics, quests, companions, etc. is easier with this
  2. Beginner Mod Tutorial

    • The same tutorial used for Kingmaker also covers the basics for Wrath
    • Functionally this is the same as option #1, just without the library of utils and step-by-step tutorial
  3. Wrath Modification Template

    • The major benefit is that it allows you to do some mechanical changes to the game with just text editing (JSON)
    • Owlcat support for this has been flaky (it was broken for ~2 months with the release of Enhanced Edition)
    • Most mods do not use this so there are fewer examples and less expertise
    • If you choose to go this route, consider also using Kurufinve's Wrath Modification Tutorial for more guidance
  4. (Recommended) Kurufinve's Wrath Modification Tutorial

    • This tutorial covers creating mods using the Wrath Modification Template without Unity. If you do not want to create a Unity account or write C#, this is the best option.
    • Kurufinve explains in more detail what is and is not possible with the Wrath Modification Template, and generally provides more guidance than Owlcat's documentation, so if even if you use Unity this tutorial is recommended.

I finished the tutorial

  1. Read through other pages of the wiki, especially Modding Resources
    • For Wrath take a look at the [Wrath] Game Structure section in the sidebar
  2. Join Discord and ask for help in the mod-dev-technical channel
  3. Take a look at existing mods to see how they implement changes
    • Many mods start by copying an existing mod's code

Example Mods