Modding Wiki
  • 🏠Home
  • 🫂How to contribute
  • Playing with Mods
    • Discovering Mods
    • Installing Mods
      • On Game Clients
      • For Multiplayer
      • On Dedicated Servers
      • No Console Support
    • Troubleshooting
    • Reporting Bugs
    • Uninstalling Mods
  • Creating Mods
    • Getting Started Modding
      • Setting Up the Modding SDK
      • Testing the Example Mods
      • Viewing Console Logs
    • Modding Limitations
    • Inspecting Other Mods' Code
    • Modding Tools
      • Scripting IDE
      • Unity Explorer
      • Asset Ripper
      • NG Tools Missing Script Recovery
      • DnSpy
      • Attaching a Debugger
    • Common Concepts
      • Unique Names and IDs
    • Modding Libraries
      • CoreLib
    • Modding Examples
      • Items
        • Weapons and Tools
        • Armor
        • Food
      • Obtaining items
        • Adding Crafting Recipe
        • Adding your items to crafters
        • Adding items to Enemy loot
      • Placeables
        • Tiles
      • NPCs and Enemies
      • UI and Interactions
      • Client-Server communications
    • Inspecting Base Game Content
      • Importing Ripped Assets to your Editor
      • Inspecting Assets In-Game
      • Inspecting Game Code
    • Updating your Modding SDK
    • Releasing Mods
      • Create a mod.io Page
      • Mod Files Upload
  • Concepts
    • Important Folder Paths
    • Technologies and Tools
    • Elevated Access
  • Archive
    • General Reference
    • Outdated Unity Setup Guide
    • Outdated IL2CPP Guides
      • Getting started with modding
      • How to view game source code
      • How to setup your Unity project
      • How to install Core Keeper mono version
Powered by GitBook
On this page
  • Using the In-Game mod.io Integration
  • Core Launcher
  • Manual File Management
  • Alternative Entry Point Mods

Was this helpful?

Edit on GitHub
Export as PDF
  1. Playing with Mods
  2. Installing Mods

On Game Clients

Last updated 8 months ago

Was this helpful?

The following approaches are available:


Using the In-Game mod.io Integration

The in-game mod integration can be rather finicky, so you may want to try another approach instead. It has the following problems:

  • Does not show you the list of mod dependencies (mods that must be installed for other mods to function)

  • Sometimes does not automatically install mod dependencies for you

  • Poor UX - for example, in order to scroll the screen, you must click and drag the mouse, as the mouse wheel does nothing

If you still want to use this approach, simply launch the game and access the Mods screen from the main menu. To start using a mod, Subscribe to it. The game should automatically check for and install mod updates every launch.

It is highly suggested that you subscribe to each mod dependency individually to ensure it is downloaded correctly. You will have to view the mod on the mod.io website to see what they are.

For the best results, relaunch your game after installing or removing mods.


Core Launcher

Core Launcher is a 3rd party tool that makes it easy to manage mods. Check out its page on GitHub for further directions.

Once you have installed it and set it up, create a Profile with the + button to start installing mods.


Manual File Management

To do this:

  1. Unsubscribe from all mods you are subscribed to on mod.io to prevent conflicts between the two approaches

    • On a default windows Steam installation, this is:

      C:\Program Files (x86)\Steam\steamapps\common\Core Keeper\
    • If that path doesn't work for you, use the above link to find out where that is on your system

  2. Go to the CoreKeeper_Data\StreamingAssets\Mods subfolder, creating any folders along the way if they do not already exist.

    • On a default windows Steam installation, this is:

      C:\Program Files (x86)\Steam\steamapps\common\Core Keeper\CoreKeeper_Data\StreamingAssets\Mods
  3. Download the mods you want from the mod.io website using the Download File button

  4. Unzip each of the mod zips you downloaded inside the folder so that each mod is in its own subfolder.

    • The name of each mod folder does not matter as long as it is unique, but you probably want it to include the name of the mod for later reference.

  5. Ensure that each mod subfolder has a ModManifest.json file.

  6. Good to go - launch the game and start playing!


Alternative Entry Point Mods

Some mods do not use Core Keeper's modding system to interface with the game and cannot be installed using the means described above. In this case, it is up to the individual mod developer to explain how to install the mod.

Core Launcher has a on the Core Keeper discord.

If you'd rather manage mod files manually, you can download them from the mod's mod.io page and place them in the yourself. Mods installed in this manner will never be automatically updated.

Open your

dedicated discussion thread
LogoGitHub - super-miner/Core-Launcher: A custom launcher for the game CoreKeeperGitHub
mods folder
game installation folder