KAMI Blue: a continuation of KAMI https://blue.bella.wtf
Go to file
S-B99 66430bb212 add contributing instructions for eclipse 2019-10-21 20:59:55 -04:00
.github add shulker preview in chat to images 2019-10-21 20:51:56 -04:00
docs Move troubleshooting documenation to docs folder 2018-08-10 15:09:43 +02:00
gradle/wrapper Update gradle wrapper 2019-08-09 02:51:27 +02:00
src/main save where new chunks are 2019-09-25 23:37:18 +02:00
.gitignore Update .gitignore to ignore production classes 2018-10-28 13:04:24 +01:00
.travis.yml Update .travis.yml 2019-08-01 23:42:58 +02:00
LICENSE.md Move license to be in markdown form 2018-10-21 20:04:49 +02:00
README.md add contributing instructions for eclipse 2019-10-21 20:59:55 -04:00
autocopy.bat Use xcopy instead of copy 2018-10-21 11:47:55 -04:00
build.gradle update rmOld to work with any kami jars as well 2019-10-18 20:15:35 -04:00
gradle.properties Update mappings 2019-08-08 19:59:04 +02:00
gradlew radar 2018-08-02 17:17:26 +02:00
gradlew.bat Initial commit 2018-07-21 20:47:46 +02:00

README.md

KAMI

Build Status Issues Discord

A minecraft utility mod for anarchy servers.

Development has slowed down considerably. KAMI will likely no longer be updated. Pull requests are still welcome.

See forgehax for a more polished equivalent. Some features in KAMI may be based on those of forgehax, as I sometimes used it as reference.

Please note Baritone is no longer included. Download the standalone jar from here.

Development has slowed down considerably. KAMI will likely no longer be updated. Pull requests are still welcome.

Preview

Click to view images

GUI

ShulkerPreview

CrystalAura

Installing

KAMI is a forge mod. Start by downloading the latest version of 1.12.2 forge.

  1. Install forge
  2. Navigate to your .minecraft directory.
    • Linux: ~/.minecraft
    • Windows: %appdata%/.minecraft
  3. Navigate to the mods directory. If it doesn't exist, create it.
  4. Obtain the KAMI .jar file.
  5. Place the .jar file in your mods directory.

How do I

Open the GUI

Press Y.

Use commands

The default prefix is .. Commands are used through chat, use .commands for a list of commands.

Bind modules

Run .bind <module> <key>.

You can also use .bind modifiers on to change binds to something like ctrl + shift + w or ctrl + c.

Change command prefix

By using the command prefix <prefix> or after having ran KAMI (make sure it's closed), editing your configuration file (find it using config path in-game) and changing the value of commandPrefix to change the prefix.

Change Custom Chat ending

Edit line 19 in kami/src/main/java/me/zeroeightysix/kami/module/modules/misc/CustomChat.java Change the \u23D0 characters to something else you want, use this website to do it. Paste text in the first box and copy the output from the second.

Troubleshooting

Please reference the main troubleshooting page

If you experience an issue and it's not listed there, please open a new issue and a contributor will help you further.

Contributing / Editing the client

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

On GNU/Linux, run chmod +x gradlew and for the following commands use ./gradlew instead of gradlew.bat

Of-course you can also use a Gradle installation if you for some reason want another version of gradle

gradlew.bat setupDecompWorkspace

Import KAMI into your IDE of choice.

If you use IntelliJ, import from the build.gradle file and run gradlew.bat genIntellijRuns

If you use Eclipse run gradlew.bat eclipse

If you do not wish to run from an IDE, use gradlew.bat runClient to run KAMI.

Building

Linux

You can build by running these commands (without the <>) in a terminal.

git clone https://github.com/zeroeightysix/KAMI/
cd KAMI

chmod +x gradlew
./gradlew <args>

Possible arguments:

build
mkdir
rmOld
copy

If you use more than one then it must be in that order.

Build is required, mkdir makes the mods/1.12.2 directory, rmOld removes old versions of KAMI* in that directory, and copy copies the build release to the mods/1.12.2 directory.

*rmOld removes any jars ending in -release.jar, which is the format KAMI uses. If you use any other mod that uses that naming scheme please remove old versions manually.

If you prefer copying it manually, find a file in build/libs called KAMI-<minecraftVersion>-<kamiVersion>-**release**.jar which you can copy to the mods/1.12.2 folder of a minecraft instance that has forge installed.

Note: This assumes your minecraft folder is in the default location under your home folder.

Windows

You can build by running these commands in a terminal with the current directory being KAMI. (EG. cd C:\Users\Username\Downloads\KAMI)

gradlew.bat build

To copy on windows run autocopy.bat

If you prefer copying it manually, find a file in build/libs called KAMI-<minecraftVersion>-<kamiVersion>-**release**.jar which you can copy to the mods\1.12.2 folder of a minecraft instance that has forge installed.

Note: This assumes your minecraft folder is in the default location under your %appdata% folder.

Thank you

ZeroMemes for Alpine

ronmamo for Reflections

The minecraft forge team for forge