Hyperium (A Community Client for Hypixel - Not affiliated with Hypixel INC, produced by independent developers)
The Hyperium 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.
- ChromaHUD
- Keystrokes v4
- MouseDelayFix
- NoCloseMyChat
- 1.7 Animations
- Levelhead
- AutoGG
- AutoWho
- ToggleChat
- MemoryFix
- Perspective Mod
- Sidebar Mod
If you don't know how, you shouldn't. Go join our beta in Discord, or wait for release!
We use Google's Java Code style for Hyperium. It would be appreciated if you follow this as well.
Q: Please help, I can't build Hyperium!
A: Wait for a new beta or release!
Q: Release, when?
A: We don't know! However, open beta testing has began at our Discord!
Q: ETA?
A: For beta, now! Join the Discord or visit our website! For release, we don't know!
Q: Is there an addon tutorial?
A: Yes, its at https://www.youtube.com/watch?v=RXTIFdoNA8c.
Q: I found a bug. Where do I report it?
A: Join the Discord and run -new in the commands channel. Then explain your issue!
Q: My game keeps crashing!
A: If you have reported the issue using the automatic promopt, join the Discord and ask a developer to review your issue. If there are none online, please be patient!
Requirement: Built Hyperium, JDK 8+, IDE
Dependency: add Hyperium that you built as dependency for the project
package com.example;
import cc.hyperium.event.*;
import cc.hyperium.internal.addons.IAddon;
import net.minecraft.client.Minecraft;
public class AddonExample implements IAddon {
@Override
public void onLoad() {
EventBus.INSTANCE.register(this);
}
@InvokeEvent
private void onChatMessage(ChatEvent event) {
if (event.getChat().getUnformattedText().contains("secret message!")) {
Minecraft.getMinecraft().toggleFullscreen();
}
}
@Override
public void onClose() {
System.out.println("Closing...");
}
@Override
public void sendDebugInfo() {
}
}addon.json
{
"name": "Addon Example",
"version": "1.0",
"mainClass": "com.example.AddonExample"
}Examples here
YourKit supports open source projects with its full-featured Java Profiler. YourKit, LLC is the creator of YourKit Java Profiler and YourKit .NET Profiler, innovative and intelligent tools for profiling Java and .NET applications.