📡 Download
⭐ Goals
🤖 Features
🤔 How to Use
⚙️ Compiling
🔧 Contributing
Go to the releases page to download a prebuilt binary for Windows, macOS, or Linux.
You can also get bleeding-edge continuous builds here, though these are undocumented and not guaranteed to work correctly.
If command-line tools aren't your thing and you want to use Unplug through a GUI, check out emistro's Unplugger!
(Note that this packages its own Unplug build which may be different from the latest release.)
- Modding: Build a foundation for editing game assets
- Reverse Engineering: Help the community learn more about how the game works
- Self-Contained: Unplug should be the only tool you need to mod the game
- Correctness: What you see is what the game sees
- Built-in support for ISO reading and writing
- Audio export, import, and playback
- Edit objects in stage files
- Export and import cutscene messages
- Change items in the shop
- Edit the global metadata
- Disassemble script bytecode
Stay tuned for more!
You will need an NTSC-U (GGTE01) Chibi-Robo! Plug Into Adventure! ISO to use Unplug. Other versions of the game are not currently supported due to the amount of effort that would be required.
Unplug is a command-line app, so you'll need to open PowerShell/Command Prompt/Terminal to use it. On Windows 10+, you should try downloading Windows Terminal from the Store.
Each function provided by Unplug is a subcommand of the main program. Running Unplug without any
command-line arguments or with help
will display a list of available commands.
Follow the tour guide for examples of how to use each command.
Prerequisites:
- Rust 1.74+
- C compiler (for dependencies)
- CMake (for dependencies)
You can compile with Cargo as usual:
cargo build
cargo run -- arg...
To create a distribution build (i.e. an optimized build to release to others), build with only the
distribution
feature activated. This will strip debugging features from the program:
cargo build --release --no-default-features --features distribution
To build and run the unit tests:
cargo test --lib
To run the full test suite, you will need to point the CHIBI_ISO
environment variable to a
GGTE01 ISO. In PowerShell, you can do that like this:
$Env:CHIBI_ISO="C:\path\to\the.iso"
cargo test
The tests will not modify the ISO, but some will copy it to your temporary directory - this means you will need 1.4 GB of free space.
There are lots of ways you can contribute to the project:
- Submit issue reports
- Open pull requests to fix bugs or add new features
- Help map out unknown structs/opcodes
- Build higher-level tools (e.g. GUIs) on top of Unplug
- Make and share cool mods!
Before implementing a complex feature, you should reach out to Derpky through the community Discord.
Unplug is currently licensed under the MIT license.