https://github.com/seppukudevelopment/seppuku
Lightweight, dependency-free Minecraft 1.12.2 hack
https://github.com/seppukudevelopment/seppuku
forge forge-mod gradle hack java minecraft minecraft-forge minecraft-forge-mod minecraft-mod seppuku utility-mod
Last synced: 7 months ago
JSON representation
Lightweight, dependency-free Minecraft 1.12.2 hack
- Host: GitHub
- URL: https://github.com/seppukudevelopment/seppuku
- Owner: seppukudevelopment
- License: gpl-3.0
- Created: 2019-10-27T15:44:18.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-09-26T01:00:33.000Z (about 2 years ago)
- Last Synced: 2025-03-24T13:04:33.729Z (7 months ago)
- Topics: forge, forge-mod, gradle, hack, java, minecraft, minecraft-forge, minecraft-forge-mod, minecraft-mod, seppuku, utility-mod
- Language: Java
- Homepage: http://seppuku.pw/
- Size: 2.83 MB
- Stars: 278
- Watchers: 15
- Forks: 60
- Open Issues: 7
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
#  
[](https://seppuku.pw)
[](https://discord.gg/kfqVQPpmCx)
[](https://github.com/seppukudevelopment/seppuku/blob/master/LICENSE)
[](https://github.com/seppukudevelopment/seppuku/releases/latest)
[](https://github.com/seppukudevelopment/seppuku/graphs/contributors)

[](https://github.com/seppukudevelopment/seppuku/releases/latest)
Seppuku is a free, open-source and lightweight Minecraft 1.12.2 [Forge](https://files.minecraftforge.net/) mod, and soon to be for more recent versions.
Originally oriented towards the 9B9T and 2B2T anarchy servers; it is a fully featured client-side mod with an external plugin system, unique exploits, and a [solid Discord community](https://discord.gg/kfqVQPpmCx).
Checkout the [guide](https://seppuku.pw/guide.html) for help.
*A special thanks to JetBrains, they've kindly provided our team with Open Source development licenses! Check out more [here](https://jb.gg/OpenSourceSupport).*
# Requirements
- **JDK 8** ([Corretto](https://aws.amazon.com/corretto/) or [Adoptium](https://adoptium.net/?variant=openjdk8) is recommended)
- **[Git](https://git-scm.com)** (optional)
# Building
### IntelliJ and Eclipse
**Using an IDE like IntelliJ or Eclipse is strongly recommended**
1. Download either [IntelliJ](https://www.jetbrains.com/idea/) or [Eclipse](https://www.eclipse.org/)
2. Clone (or download) the repository: `git clone https://github.com/seppukudevelopment/seppuku`
3. Import the project (steps for [IntelliJ](https://www.jetbrains.com/help/idea/gradle.html#gradle_import_project_start) and [Eclipse](https://stackoverflow.com/questions/10722773/import-existing-gradle-git-project-into-eclipse))
4. Run the Gradle task `clean` via your IDE
5. Run the Gradle task `setupDecompWorkspace` via your IDE
6. Edit `build.gradle` and change the field `buildmode` to `RELEASE` (e.g. `def buildmode = "RELEASE"`)
7. Run the Gradle task `build` via your IDE
The newly built jar file can be found in `build/libs/`.
### Linux, Unix and Mac
1. Clone (or download) the repository: `git clone https://github.com/seppukudevelopment/seppuku`
2. Run `./gradlew clean`
3. Run `./gradlew setupDecompWorkspace`
4. Edit `build.gradle` and change the field `buildmode` to `RELEASE` (e.g. `def buildmode = "RELEASE"`)
5. Run `./gradlew build`
The newly built jar file can be found in `build/libs/`.
### Windows
1. Clone (or download) the repository: `git clone https://github.com/seppukudevelopment/seppuku`
2. Run `./gradlew.bat clean`
3. Run `./gradlew.bat setupDecompWorkspace`
4. Edit `build.gradle` and change the field `buildmode` to `RELEASE` (e.g. `def buildmode = "RELEASE"`)
5. Run `./gradlew.bat build`
The newly built jar file can be found in `build/libs/`.
# Debugging
- Use the JVM argument `-Dfml.coreMods.load=me.rigamortis.seppuku.impl.fml.core.SeppukuLoadingPlugin`
- Ensure the field `buildmode` in `build.gradle` is set to `IDE` (e.g `def buildmode = "IDE"`)
- If any error occurs try running the Gradle task `clean` (see steps under aformentioned building section), if the error persists feel free to ask for help in the [Discord support channel](https://discord.gg/tTu72JEQUm)