KibbleCommands
KibbleCommands lets you create custom command aliases on your Minecraft server or proxy. You can map simple shortcuts to long or complex commands, chain multiple commands together, set up command cooldowns, and run actions as console or player.
Works natively across single servers (Paper/Spigot/Folia/Sponge) and proxy networks (Velocity/BungeeCord).
Features
- Custom Aliases: Turn long commands into short, easy-to-remember shortcuts.
- Command Chaining: Run multiple commands sequentially from a single alias trigger.
- Random Execution Mode: Pick a random command from a list (great for random rewards, teleports, or broadcasts).
- Console Execution: Force aliases to execute from console even if run by a player.
- Proxy Server Transfers: Connect players between servers on Velocity or BungeeCord using
server:servernametargets. - Cooldown Support: Set per-alias cooldowns with database persistence (SQLite & MySQL).
- Permission Locks: Require specific permissions per alias or toggle global permission checks.
- Dynamic Tab Completion: Automatically syncs new or updated commands to player client suggestions without restarting.
⚙️ Example Configuration (config.yml)
message-prefix: "&8[&bKibbleCommands&8] "
require-use-permission: false
send-action-messages: true
database:
type: "sqlite" # sqlite or mysql
host: "localhost"
port: 3306
database: "kibblecommands"
username: "root"
password: ""
aliases:
lobby:
description: "Send player to lobby server"
permission: "kibblecommands.alias.lobby"
permission-message: "&cYou do not have permission to go to lobby."
cooldown: 5
player-only: true
console-exec: false
random-mode: false
action-message: "&aSending you to the lobby..."
commands:
- "server:lobby"
discord:
description: "Display discord link"
permission: ""
cooldown: 0
commands:
- "tellraw {player} {\"text\":\"Join our Discord: https://discord.gg/example\",\"color\":\"blue\"}"
starterpack:
description: "Give starter kit and message"
permission: "kibblecommands.alias.starterpack"
cooldown: 86400
player-only: true
console-exec: true
commands:
- "give {player} iron_sword 1"
- "give {player} cooked_beef 16"
- "msg {player} Enjoy your starter kit!"

