https://github.com/ewpratten/cursedecompiler
A tool to decompile Minecraft mods straight from CurseForge
https://github.com/ewpratten/cursedecompiler
decompiler deobfuscation jar java minecraft-modding script
Last synced: 22 days ago
JSON representation
A tool to decompile Minecraft mods straight from CurseForge
- Host: GitHub
- URL: https://github.com/ewpratten/cursedecompiler
- Owner: ewpratten
- License: gpl-3.0
- Created: 2020-11-17T22:40:36.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-18T00:20:44.000Z (over 4 years ago)
- Last Synced: 2024-10-30T18:48:35.288Z (6 months ago)
- Topics: decompiler, deobfuscation, jar, java, minecraft-modding, script
- Language: Python
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Curse Decompiler
The Curse Decompiler (`cursed`) is a Linux-only tool that will download any Minecraft mod from [CurseForge](https://www.curseforge.com), and decompile it automatically.
## Installation
Clone this repo, then run:
```sh
python3 setup.py install
```Your system must have the `unzip` and `wget` programs installed.
## Usage
First, you must find the asset ID of a Minecraft mod. When downloading from the CurseForge website, this will be the number at the end of the URL. For example, the ID of the following download URl is `3101936`:
```
https://www.curseforge.com/minecraft/mc-mods/areas/download/3101936
```With this URL, you can run
```sh
python3 -m cursed [mod name] [mod id]
```Extra options can be viewed by running `python3 -m cursed -h`