For the complete documentation index, see llms.txt. This page is also available as Markdown.

Actions

Actions are configurable operations that can be attached to certain modules. When triggered, the plugin executes the configured actions in the order they are defined. Actions can perform various tasks such as sending messages, playing sounds, applying effects, executing commands, modifying player data, and more.


Messaging

[MESSAGE]

Sends a chat message to the player.

actions:
- "[MESSAGE] &aWelcome to the server!"

[BROADCAST]

Sends a message to all online players. (Not visible in the console)

actions:
- "[BROADCAST] &6A special event has started!"

[PRINT]

Sends a global message. (Visible in the console)

actions:
- "[PRINT] <gray>Just a global message."

Debug

[DEBUG]

Writes a message to the console log. You can specify the log level.


Visual

[TITLE]

Displays a title and optional subtitle on the player's screen.

Format: title;subtitle

[ACTION_BAR]

Displays a message in the player's action bar.


Commands

[PLAYER_COMMAND]

Executes a command as the player.

[CONSOLE_COMMAND]

Executes a command from the server console.


World

[SOUND]

Plays a Minecraft sound for the player.

[PARTICLE]

Spawns particles at the player's location.

[TELEPORT]

Teleports the player to a specific location.

Format: world;x;y;z


Inventory

[INVENTORY]

Modifies the player's inventory.

  • ADD

    • Adds items to the player's inventory.

  • REMOVE

    • Removes items from the player's inventory.

  • CHANGE

    • Removes one item and gives another.


Potion Effects

[POTION_EFFECT]

Adds or removes potion effects.

Format: TYPE:duration:amplifier

  • ADD

    • Applies a potion effect.

  • REMOVE

    • Removes a potion effect.

Last updated