BubbleCommand
๐ก Updated this yearPreview

๐ Analysis
- ๐ #572 of 1317 bukkit mods in this game by downloads
๐ About This Mod
# ๐ฎ BubbleCommand v2.0 <div align="center"> !(https://img.shields.io/badge/version-2.0.0-blue.svg) !(https://img.shields.io/badge/minecraft-1.19+-green.svg) !(https://img.shields.io/badge/license-MIT-yellow.svg) **The Ultimate Custom Command Plugin for Lazy Server Owners! ๐** *Create powerful custom commands in minutes with zero coding knowledge!* </div> --- ## ๐ Overview BubbleCommand is a powerful yet incredibly simple Spigot/Paper/Purpur plugin that lets you create custom commands using just a config file. Perfect for server owners who want to add custom functionality without writing a single line of code! ### โจ Why BubbleCommand? - ๐ฏ **Zero Coding Required** - Everything is done through a simple config file - ๐ **Super Easy to Use** - Copy, paste, edit. Done! - ๐ช **Production Ready** - Battle-tested with comprehensive error handling - ๐ฅ **Feature Rich** - Cooldowns, multi-actions, permissions, placeholders, and more - ๐ **Well Documented** - Tons of examples included in the config - ๐ง **Highly Flexible** - Create any command you can imagine - โก **Performance Optimized** - Minimal server impact - ๐จ **Modern Design** - Beautiful messages with color codes and titles --- ## ๐ Features ### Core Features - โ **Custom Commands** - Create unlimited custom commands - โ **Command Aliases** - Add multiple aliases to any command - โ **Multi-Action Support** - Execute multiple actions per command - โ **Permission System** - Control who can use each command - โ **Cooldown System** - Prevent command spam with per-command cooldowns - โ **Player-Only Option** - Restrict commands to players only - โ **Console Commands** - Run commands with console permissions - โ **Hot Reload** - Reload config without restarting the server ### Action Types - ๐ฎ **Console Commands** - Execute commands as console - ๐ค **Player Commands** - Execute commands as player - ๐ฌ **Messages** - Send colored messages to players - ๐ข **Broadcasts** - Broadcast messages to all online players - ๐ **Sounds** - Play sounds to players - ๐บ **Titles** - Display titles and subtitles - ๐ฑ **Actionbar** - Show actionbar messages ### Placeholders - `%player%` - Player's name - `%displayname%` - Player's display name - `%uuid%` - Player's UUID - `%world%` - Player's current world - `%x%`, `%y%`, `%z%` - Player's coordinates - `%health%` - Player's health - `%food%` - Player's food level - `%level%` - Player's level - `%exp%` - Player's experience - `%gamemode%` - Player's gamemode - `%sender%` - Command sender's name - `%arg0%`, `%arg1%`, etc. - Command arguments - `%args%` - All arguments joined --- ## ๐ฆ Installation ### Requirements - Minecraft Server: 1.19+ (Spigot, Paper, Purpur, or any fork) - Java: 17 or higher ### Steps 1. **Download** the latest `BubbleCommand-x.x.x.jar` 2. **Place** the JAR file in your server's `plugins` folder 3. **Restart** your server 4. **Configure** your custom commands in `plugins/BubbleCommand/config.yml` 5. **Reload** with `/bubblecommand reload` (or restart) That's it! ๐ --- ## ๐ Quick Start ### For the SUPER Lazy (30 seconds setup) 1. Open `plugins/BubbleCommand/config.yml` 2. Find the `heal:` command example 3. Remove the `#` at the start of each line to uncomment it 4. Run `/bubblecommand reload` in-game 5. Use `/heal` command! ### For the Slightly Less Lazy (2 minutes setup) Copy this template and add it to your config: ```yaml custom-commands: mycommand: aliases: description: "My awesome command" permission: "bubblecommand.mycommand" player-only: true cooldown: 60 actions: - "message: &aHello, %player%!" - "sound: ENTITY_PLAYER_LEVELUP" ``` Then: 1. Change `mycommand` to whatever you want 2. Edit the message 3. Save and run `/bubblecommand reload` 4. Use your command! --- ## ๐ Documentation ### Basic Command Structure ```yaml custom-commands: commandname: # The command name (use lowercase) aliases: # Optional command aliases description: "Description" # Command description permission: "perm.node" # Optional permission player-only: true # true = players only, false = anyone cooldown: 60 # Cooldown in seconds (0 = no cooldown) actions: # List of actions to execute - "action1" - "action2" ``` ### Action Types Explained #### 1. Console Commands Run commands with console permissions (bypasses permission checks): ```yaml actions: - "console: give %player% diamond 64" - "console: tp %player% 0 100 0" ``` #### 2. Player Commands Run commands as the player (respects permissions): ```yaml actions: - "player: warp spawn" - "player: home" ``` #### 3. Messages Send colored messages to the player: ```yaml actions: - "message: &a&lSUCCESS! &7You did it!" - "message: &cError: Invalid command!" ``` #### 4. Broadcasts Broadcast to all online players: ```yaml actions: - "broadcast:
# ๐ฎ BubbleCommand v2. 0
!(https://img.shields.io/badge/version-2. 0. 0-blue.svg) !(https://img.shields.io/badge/minecraft-1. 19+-green.svg) !(https://img.shields.io/badge/license-MIT-yellow.svg)
The Ultimate Custom Command Plugin for Lazy Server Owners! ๐
Create powerful custom commands in minutes with zero coding knowledge!
## ๐ Overview
BubbleCommand is a powerful yet incredibly simple Spigot/Paper/Purpur plugin that lets you create custom commands using just a config file. Perfect for server owners who want to add custom functionality without writing a single line of code!
### โจ Why BubbleCommand?
- ๐ฏ Zero Coding Required - Everything is done through a simple config file
- ๐ Super Easy to Use - Copy, paste, edit. Done!
- ๐ช Production Ready - Battle-tested with comprehensive error handling
- ๐ฅ Feature Rich - Cooldowns, multi-actions, permissions, placeholders, and more
- ๐ Well Documented - Tons of examples included in the config
- ๐ง Highly Flexible - Create any command you can imagine
- โก Performance Optimized - Minimal server impact
- ๐จ Modern Design - Beautiful messages with color codes and titles
## ๐ Features
### Core Features - โ Custom Commands - Create unlimited custom commands - โ Command Aliases - Add multiple aliases to any command - โ Multi-Action Support - Execute multiple actions per command - โ Permission System - Control who can use each command - โ Cooldown System - Prevent command spam with per-command cooldowns - โ Player-Only Option - Restrict commands to players only - โ Console Commands - Run commands with console permissions - โ Hot Reload - Reload config without restarting the server
### Action Types - ๐ฎ Console Commands - Execute commands as console - ๐ค Player Commands - Execute commands as player - ๐ฌ Messages - Send colored messages to players - ๐ข Broadcasts - Broadcast messages to all online players - ๐ Sounds - Play sounds to players - ๐บ Titles - Display titles and subtitles - ๐ฑ Actionbar - Show actionbar messages
### Placeholders - `%player%` - Player's name - `%displayname%` - Player's display name - `%uuid%` - Player's UUID - `%world%` - Player's current world - `%x%`, `%y%`, `%z%` - Player's coordinates - `%health%` - Player's health - `%food%` - Player's food level - `%level%` - Player's level - `%exp%` - Player's experience - `%gamemode%` - Player's gamemode - `%sender%` - Command sender's name - `%arg0%`, `%arg1%`, etc. - Command arguments - `%args%` - All arguments joined
## ๐ฆ Installation
### Requirements - Minecraft Server: 1. 19+ (Spigot, Paper, Purpur, or any fork) - Java: 17 or higher
1. Download the latest `BubbleCommand-x.x.x.jar`
2. Place the JAR file in your server's `plugins` folder
3. Restart your server
4. Configure your custom commands in `plugins/BubbleCommand/config.yml`
5. Reload with `/bubblecommand reload` (or restart)
That's it! ๐
## ๐ Quick Start
### For the SUPER Lazy (30 seconds setup)
1. Open `plugins/BubbleCommand/config.yml` 2. Find the `heal:` command example 3. Remove the `#` at the start of each line to uncomment it 4. Run `/bubblecommand reload` in-game 5. Use `/heal` command!
### For the Slightly Less Lazy (2 minutes setup)
Copy this template and add it to your config:
```yaml custom-commands: mycommand: aliases: description: "My awesome command" permission: "bubblecommand.mycommand" player-only: true cooldown: 60 actions: - "message: &aHello, %player%!" - "sound: ENTITY_PLAYER_LEVELUP" ```
Then: 1. Change `mycommand` to whatever you want 2. Edit the message 3. Save and run `/bubblecommand reload` 4. Use your command!
## ๐ Documentation
### Basic Command Structure
```yaml custom-commands: commandname: # The command name (use lowercase) aliases: # Optional command aliases description: "Description" # Command description permission: "perm.node" # Optional permission player-only: true # true = players only, false = anyone cooldown: 60 # Cooldown in seconds (0 = no cooldown) actions: # List of actions to execute - "action1" - "action2" ```
### Action Types Explained
#### 1. Console Commands Run commands with console permissions (bypasses permission checks): ```yaml actions: - "console: give %player% diamond 64" - "console: tp %player% 0 100 0" ```
#### 2. Player Commands Run commands as the player (respects permissions): ```yaml actions: - "player: warp spawn" - "player: home" ```
#### 3. Messages Send colored messages to the player: ```yaml actions: - "message: &a&lSUCCESS! &7You did it!" - "message: &cError: Invalid command!" ```
#### 4. Broadcasts Broadcast to all online players: ```yaml actions: - "broadcast:
๐ Mod Details
- Game
- Minecraft Plugins
- Author
- ethan08921
- Version
- 2.1.3
- Downloads
- 252
- Endorsements
- 1
- Category
- bukkit
- Created
- 12/17/2025
- Updated
- 5/17/2026
- Game Versions
- 26.1.2
- Tags
- technology, utility
๐ง How to Install Minecraft Plugins Mods
Download from Modrinth. Use Prism Launcher or drop into your mods folder.
๐ Full step-by-step install guide for Minecraft Plugins โ
Visit the official mod page for specific installation instructions for this mod.
๐ฎ Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.
โ Frequently Asked Questions
Which Minecraft Plugins versions does BubbleCommand support?
The author lists 26.1.2. Other versions may work but are untested by the author.
What is the latest version of BubbleCommand?
Version 2.1.3, published 2026-05-17 with 252 downloads recorded at the source.
Keep browsing โ more Minecraft Plugins mods await