Skip to content

Plugin Events

Package: com.hypixel.hytale.server.core.plugin.event

Events related to plugin lifecycle.


Abstract base class for plugin events, keyed by plugin class.

Class: com.hypixel.hytale.server.core.plugin.event.PluginEvent

PropertyValue
ImplementsIEvent<Class<? extends PluginBase>>
AbstractYes
KeyTypeClass<? extends PluginBase>
MethodReturn TypeDescription
getPlugin()PluginBaseReturns the plugin associated with this event.

Fired when a plugin enters its setup phase.

Class: com.hypixel.hytale.server.core.plugin.event.PluginSetupEvent

PropertyValue
ExtendsPluginEvent
AsyncNo
CancellableNo
KeyTypeClass<? extends PluginBase>

Fired when a plugin’s setup() method is about to be called. Keyed by plugin class, allowing integration with specific plugins.

Inherits all methods from PluginEvent.