kami-blue/README.md

54 lines
2.0 KiB
Markdown
Raw Normal View History

2018-07-21 18:52:29 +00:00
# KAMI
2018-08-12 00:41:53 +00:00
[![Discord](https://img.shields.io/badge/chat-on%20discord-brightgreen.svg)](http://discord.gg/gmBRk2s)
2018-07-21 18:52:29 +00:00
A minecraft 'hacked' client in the form of a forge mod.
See [forgehax](https://github.com/fr1kin/forgehax) for a more polished equivalent. Some features in KAMI may be based on those of forgehax, as I sometimes used it as reference.
This is by no means a finished project and isn't fully ready for release.
2018-07-21 20:00:15 +00:00
## Installing
KAMI is a forge mod. Start by downloading the latest version of [forge](https://files.minecraftforge.net/).
1. Install forge
2. Navigate to your `.minecraft` directory.
* **Windows**: `%appdata%/.minecraft`
* **Linux**: `~/.minecraft`
3. Navigate to the `mods` directory. If it doesn't exist, create it.
4. Obtain the KAMI `.jar` file.
2018-08-10 13:21:57 +00:00
* By **downloading** it: see [releases](../../releases)
2018-08-10 13:23:05 +00:00
* By **building** it: see [building](#building).
5. Place the `.jar` file in your mods directory.
2018-07-21 21:18:45 +00:00
## Troubleshooting
2018-08-10 13:09:56 +00:00
Please reference the main [troubleshooting page](docs/TROUBLESHOOTING.md)
2018-08-10 13:07:49 +00:00
If you experience an issue and it's not listed there, please [open a new issue](../../issues/new) and a contributor will help you further.
2018-07-21 21:18:45 +00:00
2018-07-21 20:00:15 +00:00
## Contributing
You are free to clone, modify KAMI and make pull requests as you wish. To set up your development environment, make use of the following commands:
```
git clone https://github.com/zeroeightysix/KAMI/
cd KAMI
```
2018-08-10 13:06:45 +00:00
On linux, run `chmod +x gradlew` and for the following commands use `./gradlew` instead of `gradlew.bat`
2018-07-21 20:00:15 +00:00
```
2018-08-10 13:06:45 +00:00
gradlew.bat setupDecompWorkspace
2018-07-21 20:00:15 +00:00
```
2018-08-10 13:16:03 +00:00
Import KAMI into your IDE of choice. If you use IntelliJ, import from the `build.gradle` file and run `gradlew.bat genIntellijRuns`
2018-07-21 20:00:15 +00:00
2018-08-10 13:06:45 +00:00
If you do not wish to run from an IDE, use `gradlew.bat runClient` to run KAMI.
2018-07-21 20:00:15 +00:00
2018-07-21 21:18:45 +00:00
### Building
2018-07-21 20:00:15 +00:00
```
2018-08-10 13:06:45 +00:00
gradlew.bat build
2018-07-21 20:00:15 +00:00
cd build/libs
```
In `build/libs` you will find a file `KAMI-<minecraftVersion>-<kamiVersion>-full.jar` which you can copy to the `mods` folder of a minecraft instance that has forge installed.