SimpleCommands Plugin

A lightweight Minecraft plugin for creating custom commands.

61

Quick challenge

How far can you run before the mobs catch you?

SimpleCommands Plugin

SimpleCommands

A lightweight Minecraft plugin for creating custom commands with modern formatting and flexible action system.

Features

* Built-in Action System - Unregisters old commands and registers new ones with tab completion support * Built-in Action System - Supports modern Built-in Action System formatting * Built-in Action System - Convenient internal action system for command execution

Available Actions

| Action | Syntax | Description | |--------|--------|-------------| | `[MESSAGE]` | `[MESSAGE] <message>` | Sends a message to the command executor | | `[BROADCAST]` | `[BROADCAST] <message>` | Broadcasts a message to all online players | | `[CONSOLE]` | `[CONSOLE] <command>` | Executes a command from the console | | `[PLAYER]` | `[PLAYER] <command>` | Executes a command as the player | | `[EFFECT]` | `[EFFECT] <name;amplifier;duration>` | Applies a potion effect to the player | | `[SOUND]` | `[SOUND] <name;volume;pitch>` | Plays a sound to the player | | `[TITLE]` | `[TITLE] <title;subtitle;fadeIn;stay;fadeOut>` | Displays a title screen |

Example

```yaml heal: aliases: [ "heal", "hp" ] player-only: true actions: - "[MESSAGE] <green>✦ You have been healed!</green>" - "[CONSOLE] effect give %player_name% instant_health 1 10 true" - "[EFFECT] regeneration;1;10" - "[SOUND] entity_player_levelup;1.0;1.5" - "[TITLE] <green><bold>Healed!</bold></green>;<white>Health restored</white>;5;30;5" ```

ADS