SimpleCommands Plugin
PluginApache-2.0

SimpleCommands Plugin

A lightweight Minecraft plugin for creating custom commands.

32
Downloads
0
Followers
4 months ago
Updated
📦
1
Versions

📖About SimpleCommands Plugin

SimpleCommands

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

Features

  • Runtime Command Updates - Unregisters old commands and registers new ones with tab completion support
  • MiniMessage Format - Supports modern MiniMessage 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

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"