/HCC

Hypixel Community Client

Primary LanguageJavaGNU Affero General Public License v3.0AGPL-3.0

Discord

HCC (Hypixel Community Client - Not affiliated with Hypixel INC, produced by independent developers)

What is HCC?

The HCC is a Minecraft modification in development. It will combine many popular features in addition to suggestions and ideas from the community to provide a unique experience designed for Hypixel.

Features

Contributing

Building

Step #1: Cloning the repo

git clone https://github.com/HypixelCommunityClient/HCC

Step #2: Open the repository you cloned using IDE (We prefer IntelliJ) Step #3: Import as gradle project, use the project's wrapper Step #4: Run Tasks > forgeGradle > setupDecompWorkspace Step #5: Run Tasks > forgeGradle > genIntellijRuns (for IntelliJ) Step #6: Build project

Addons

Requirement: Built HCC, JDK 8+, IDE

Dependency: add HCC that you built as dependency for the project

package me.cubxity;

@Addon(modid = "TestMod", version = "1.0 BETA")
public class TestMod {
    @InvokeEvent
    public void init(InitilizationEvent event) {
        System.out.println("Started!");
    }
}

addon.json

{
  "name":"MaiCuteAddon",
  "version":"1.0",
  "main":"me.cubxity.TestMod"
}

Developers