User Tools

Site Tools


modding:dev-tools

This is an old revision of the document!


Disclaimer: This guide assumes that you are already familiar with OMORI mod development, and that you know where some files need to go. You should also already know how to fix your OMORI installation, in case you break it.
Furthermore, some mods might not work in SDK mode.

To get dev tools in OMORI, which can be very helpful in debugging your mod, you need to do a few steps:

  1. Download the SDK edition of the exact same NW.js version that OMORI is using (for OMORI v1.0.8, that's //nwjs-sdk-v0.29.0-win-x64.zip//).
  2. Replace all files in the OMORI folder
  3. Add this code to www/js/main.js to disable SDK mode protection:
    window.navigator.plugins.namedItem = function() {
        return null;
    }
  4. Launch the game and press F12 to open the dev tools.
modding/dev-tools.1631910443.txt.gz · Last modified: 2021/09/17 20:27 by function