DungeonWarpTimer

Display a warp timer for dungoen warp cooldowns.

Author

Aton

Types

Link copied to clipboard

Functions

Link copied to clipboard
fun addSettings(vararg setArray: Setting<*>)

Adds all settings in the input to the settings field of the module. This is required for saving and loading these settings to / from a file. Keep in mind, that these settings are passed by reference, which will get lost if the original setting is reassigned.

Link copied to clipboard
Link copied to clipboard

Triggers the module initialization.

Link copied to clipboard

Loads self registering elements of the module such as hud elements.

Link copied to clipboard
fun onChat(event: ClientChatReceivedEvent)

Registers the warp through the chat message. Also registers who warped the party.

Link copied to clipboard
open override fun onDisable()

This method is run whenever the module is disabled.

Link copied to clipboard
open fun onEnable()

This method is run whenever the module is enabled.

Link copied to clipboard
open override fun onInitialize()

Register this class to the event bus if trackInBackground is enabled.

Link copied to clipboard
open fun onKeyBind()

This method is run whenever the key-bind for the Module is pressed.

Link copied to clipboard
fun onTick(event: TickEvent.ClientTickEvent)

Updates the cool downs and removes finished cool down from the list. Also plays a sound when the own cool down is over.

Link copied to clipboard
fun <K : Setting<*>> register(setting: K): K

Registers the setting to this Module. This will make the setting appear in the GUI and save to the config. The following is an example of how it can be used to define a setting for a module.

Link copied to clipboard
fun toggle()

Will toggle the module.

Link copied to clipboard
operator fun <K : Setting<*>> K.unaryPlus(): K

Overloads the unaryPlus operator for Setting classes to register them to the module. The following is an example of how it can be used to define a setting for a module.

Properties

Link copied to clipboard
Link copied to clipboard

A description of the module and its usage that is shown in the Advanced GUI.

Link copied to clipboard

Do NOT set this value directly, use toggle() instead!

Link copied to clipboard
Link copied to clipboard

Key code of the corresponding key bind. Mouse binds will be negative: -100 + mouse button. This is the same way as minecraft treats mouse binds.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard