Skip to content

HacktheTime/HypixelModAPI

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hypixel Mod API

The Hypixel Mod API is an implementation of custom packets for communicating with the Hypixel Server via plugin messages.

At this time the API is in an early preview state to obtain feedback from the community. The API is subject to change and may be changed or disabled at any time. You can read more about on the announcement forum thread.

Usage

For using the Mod API it is highly recommended to relocate the package net.hypixel to prevent conflicting with other mods and different versions of the Mod API.

You can use this API as a dependency via the public Hypixel maven repo.

Hypixel Maven Repo

<repository>
    <id>Hypixel</id>
    <url>https://repo.hypixel.net/repository/Hypixel/</url>
</repository>

This repo can also be used with Gradle.

repositories {
    maven { url 'https://repo.hypixel.net/repository/Hypixel/' }
}

You can then include the dependency in your project.

<dependency>
    <groupId>net.hypixel</groupId>
    <artifactId>mod-api</artifactId>
    <version>0.3.1</version>
</dependency>
dependencies {
    implementation 'net.hypixel:mod-api:0.3.1'
}

Example Mod Implementation

Modern Fabric (1.20,...): https://github.com/ConnorLinfoot/FabricModAPIExample

About

Hypixel Mod API for interfacting with the Hypixel Server via the Minecraft Plugin Message system.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%