Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 964 Bytes

BUILD.md

File metadata and controls

22 lines (18 loc) · 964 Bytes

Mod development

This quick reference is based on official Forge tutorial

Setup

  1. Open console with current directory set to mod directory (CzikenMod)
  2. Execute gradlew setupDecompWorkspace
  3. You can now setup and import project to your IDE
    • For Eclipse run gradlew eclipse and import generated project to a workspace.
    • For InteliJ there are steps described in official Forge tutorial (link above).

If you encounter any difficulties in setting up the project, go to official tutorial site.

Compilation

  1. Open console with current directory set to mod directory
  2. Execute gradlew build
  3. Output files are located in CzikenMod/build/libs

Mod development for Spigot

  1. Spigot docs
  2. Select Creating a blank plugin for your IDE
  3. Import files
  4. Build using your tools