forked from Wurst-Imperium/Wurst7
-
Notifications
You must be signed in to change notification settings - Fork 10
Wurst Addon API
unknown edited this page Sep 2, 2026
·
4 revisions
This Wurst fork now supports Meteor-style addons through a custom entrypoint using Fabric.
- Entrypoint key:
wurst - Entrypoint class type:
net.wurstclient.addons.WurstAddon - Registration API:
addHack(Hack hack)addCommand(Command command)addOtherFeature(OtherFeature feature)
Minimal example:
public final class MyAddon extends WurstAddon
{
@Override
public void onInitialize()
{
addHack(new MyHack());
addCommand(new MyCommand());
}
}fabric.mod.json entrypoint example:
"entrypoints": {
"wurst": ["com.example.addon.MyAddon"]
}A ready-to-publish starter project is included here: https://github.com/cev-api/Wurst-Addon-Template
Generated from the latest README/source bundle. Features are listed by the date they were added to the client.