Search results

  1. SaphireFalcon

    Gameplay Contract Manager v0.1.0

    Contract Manager This mod has as a goal to provide an easy way to create, manage and complete contracts in KSA. It allows players to take on various contracts, complete objectives, and earn rewards. For modders, it provides a flexible API to create custom contracts and objectives. Current...
  2. SaphireFalcon

    Loading save-game encounters exception

    Game Version `v2025.12.33.3123` Operating System [Windows 10] What Happened Load a safe file (just created) and then the game encountered an exception. `KSA.PartTree.AddTankStatesAndStaticMasses()` -> `An item with the same key has already been added. Key: 77` What Was Expected Not crashing...
  3. SaphireFalcon

    Save/Load mod data

    This is a small explanation how I got loading and saving data for my mods working with the in-game save/load button. 1. Create `public` data class that has XML serializable fields. 2. Have this data stored like `public static ModDataType data = new ModDataType();` in you mod main class, e.g. the...