Ib: How to Enalbe Mod Support with Python

Step-by-step instructions to unpack the game executable into loose files that can be modded.

 

Introduction

Most RPGMaker MV games are released as loose files in a www folder that contains all of the game’s assets and code. This makes the game trivially easy to mod – all you need to do is encrypt your modded assets and replace the associated file in the www folder.

When the English-language patch for Ib (2022) was released, the game was repacked with Enigma Virtual Box, turning the loose files and folders into a single executable. Why the developers chose to do this is unknown.

This doesn’t spell the end for modding, however – it’s easy to unpack the game back into its original loose files.

A Few Notes Before We Begin
  • I can only provide support for Windows 11 and Windows 10 at the moment.
  • This is NOT a guide for pirating Ib, and unpacking the game does not remove its DRM.
    You will still need to own Ib on Steam and have Steam running to launch the game.
  • You will need to unpack the game again if it receives an update.

Install Python

Download Python

Install Python

  • Run the installer to open the setup window.
  • Check the box Add Python 3.x to PATH at the bottom. This will allow you to run Python in any window, without having to specify the path to python.exe every time.
  • Click Install Now (we need pip) when you’re ready.

Install and Run evbunpack

We will be using the open-source script Enigma Virtual Box Unpacker (evbunpack)[github.com] to unpack the game executable back into loose files.

Install evbunpack
  • Open a Terminal or Command Prompt window.
  • Enter the following command:
pip install evbunpack

This will call pip, the Python package installer, to download and install evbunpack from GitHub.
You will now be able to run evbunpack commands in your Terminal window.

Unpack Ib

Before you continue, make sure you know the path to your Ib game folder.

  • In your Terminal window, enter the following commands.
    Replace “path\to\Ib” with your path to the Ib game folder, keeping it in quotation marks.
cd "path\to\Ib"
python -m evbunpack "Game.exe" extract
  • (The -m flag ensures we are using the packages associated with the PATH python executable.)

This will unpack Game.exe back into its loose files.
You’ll find them in your Ib folder, in a new directory named extract\%DEFAULT FOLDER%.

Load Unpacked Game

All we need to do now is replace the Enigma-fied game with our lovely unpacked one.

Rename Unpacked Folder
  • Rename your Ib game folder to Ib_backup.
  • Open the extract folder in your Ib_backup folder.
  • Rename %DEFAULT FOLDER% to Ib.

Move Unpacked Folder
  • Move your new Ib folder out to your Steam library folder, the same directory your Ib_backup folder is located.

You’re all set!

You can now install mods in your new Ib folder.

Don’t worry about your save data, by the way – it’s backed up to the cloud and will automatically restore the next time you launch the game with Steam.


Thanks to Pixelguin for his great guide, all credit to his effort. you can also read the original guide from Steam Community. enjoy the game.

Related Posts:

About Robins Chew

I'm Robins, who love to play the mobile games from Google Play, I will share the gift codes in this website, if you also love mobile games, come play with me. Besides, I will also play some video games relresed from Steam.

Leave a Comment