Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ank1036official/game_exporter
A game decryption tool, for extracting things like images, code, sound, etc from lots of different common game types.
https://github.com/ank1036official/game_exporter
electronjs extractor games rpgmakermv unity unity3d
Last synced: about 2 months ago
JSON representation
A game decryption tool, for extracting things like images, code, sound, etc from lots of different common game types.
- Host: GitHub
- URL: https://github.com/ank1036official/game_exporter
- Owner: ANK1036Official
- Created: 2023-10-25T22:44:16.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-26T05:02:46.000Z (about 1 year ago)
- Last Synced: 2023-10-26T23:34:08.093Z (about 1 year ago)
- Topics: electronjs, extractor, games, rpgmakermv, unity, unity3d
- Language: Python
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Introduction
`game_exporter` is a game decryption tool designed for extracting assets such as images, code, sound, and more from various common game types.Currently, this is `Linux only`, but there are future plans to add Windows support.
## Installation
Instructions for how to install the tool.```bash
# First install asar
npm install -g asar
# Then download the repo.
git clone https://github.com/yourusername/game_exporter.git
cd game_exporter
# Lastly, install the requirements.txt dependencies
pip install -r requirements.txt
```## Usage
```bash
# Check the help
python3 main.py --help# Do the thing
python3 main.py -d ./some_game/ -o decrypt --type type_here
```## Supported Game Types
- [x] RPGMaker MV
- [x] Electron based games
- [x] RenPy
- [x] Unity
- [ ] Unreal Engine 3
- [ ] Unreal Engine 4
- [ ] Unreal Engine 5
- [ ] Wolf RPG## Roadmap
- Add support for Unreal Engine (versions 3, 4, 5)
- Add support for Wolf RPG
- (???)
- Add Windows support.## Acknowledgments
The RPGMaker code in this project is based off of Petschko's RPG Maker Decryption tool.