Skip to content

Wurst Addon API

cev-api edited this page Apr 12, 2026 · 1 revision

Wurst Addon API

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



Parent: Wurst Client v7.53.1 (MC26.1.1) - Modified by CevAPI

Navigation

Clone this wiki locally