All Mods
Cmdibuzz

Cmdibuzz

Featured

Server-side Fabric mod for custom commands, event triggers, and a lightweight economy — all through JSON configuration

v2.0.0|utility|fabric|July 20, 2026

Overview

Cmdibuzz is a server-side Fabric mod that lets you create custom commands, automate tasks with event triggers, and manage a lightweight economy — all through JSON configuration files. Inspired by the Bukkit plugin MyCommand.

Features

  • Custom Commands — Create any command using simple JSON files
  • Event Triggers — Bind commands to player join, death, chat, block interactions, and more
  • Scripting — If/elif/else conditionals for advanced logic
  • Economy — Money and item costs with Impactor or built-in SQLite
  • Cooldowns — Per-player cooldowns persisted across restarts
  • Custom Variables — PlayerData system for tracking custom values
  • Item Commands — Attach commands directly to items via NBT
  • Roulette — Weighted random command selection

Quick Start

  1. Install Fabric Loader 0.15.11+ and Fabric API 0.118.0+
  2. Drop Cmdibuzz.jar into your mods/ folder
  3. Start the server — a default config will be generated
  4. Edit config/cmdibuzz/config.json and run /cmdibuzz reload

Configuration

Cmdibuzz uses a simple JSON configuration structure:

config/cmdibuzz/
├── config.json              # Main settings, economy, database
└── commands/                # One .json file per command
    ├── my_command.json
    └── another_command.json

Learn More

Check out the wiki for detailed documentation on all features.