FastCommands

⭐ — (0 endorsements) 📥 53 downloads 📌 v1.1.0 📅 6/20/2026
🟡 Updated this year

By norbit · paper

⬇ Download Mod Source: Modrinth ↗ 📅 Updated: 6/21/2026 📅 Created: 6/20/2026

🔍 Analysis

  • 🏆 #122 of 278 paper mods in this game by downloads

📋 About This Mod

<div align="center"> !(https://i.imgur.com/JwJq3IR.png) <h1>Fast Commands</h1> <p> FastCommands is a lightweight and highly configurable Minecraft plugin that allows to create custom commands directly from a configuration file. The plugin supports permissions, cooldowns, tab completion, placeholders, command routing, delayed actions, and multiple execution types without requiring any programming knowledge. </p> <p> <a href="https://builtbybit.com/creators/n0rbit.98575/" target="_blank"> <img src="https://img.shields.io/badge/BuiltByBit-0969DA?style=for-the-badge&logo=builtbybit&logoColor=white" alt="BuiltByBit"> </a> <a href="https://modrinth.com/user/norbit" target="_blank"> <img src="https://img.shields.io/badge/Modrinth-00AF5C?style=for-the-badge&logo=modrinth&logoColor=white" alt="Modrinth"> </a> <a href="https://www.spigotmc.org/resources/authors/norbittech.392197/" target="_blank"> <img src="https://img.shields.io/badge/SpigotMC-ED8106?style=for-the-badge&logo=spigotmc&logoColor=white" alt="SpigotMC"> </a> <a href="https://github.com/Norbit4/" target="_blank"> <img src="https://img.shields.io/badge/GitHub-181717?style=for-the-badge&logo=github&logoColor=white" alt="GitHub"> </a> <a href="https://discord.com/invite/DPXqQcDDTs" target="_blank"> <img src="https://img.shields.io/badge/Discord-5865F2?style=for-the-badge&logo=discord&logoColor=white" alt="Discord"> </a> <a href="https://n0rbit.gitbook.io/wiki/resources/fastcommands" target="_blank"> <img src="https://img.shields.io/badge/Docs-181717?style=for-the-badge&logo=gitbook&logoColor=white" alt="Docs"> </a> </p> <i>👆 Click the badges to visit my profiles!</i> </div> <h2 align="left" id="features">⭐ Features</h2> > * Create unlimited custom commands > * Advanced command routes and arguments > * Multiple action types (**Text**, **Broadcast**, **Server Command**, **Player Command**, **Replace Command**) > * Per-command permissions > * Per-command cooldowns > * Tab completion support > * Delayed actions > * Placeholder support > * HEX color support > * Lightweight and optimized > * Easy configuration > * No coding required <h2 align="left" id="commands">🚀 Commands</h2> > All commands and permissions are fully configurable | Command | Default permission | Info | | -------------------------- | ------------------------------- | ----------------------------------------------- | | **/bc reload** | *bettercommands.command.reload* | Reload plugin configuration | <h2 align="left" id="example">✅ Configuration Examples</h2> Examples of what you can create. ### Command Replacement Replace an existing command with another command. ```yaml commands: core: permission: 'player.core' actions: action-1: type: 'replace' action: - 'essentials' ``` **Example:** ```text /core reload ``` **Result:** ```text /essentials reload ``` --- ### Broadcast Command Create a custom broadcast command with arguments, permissions, delayed actions, and placeholders. ```yaml commands: broadcast: permission: 'admin.broadcast' permission-message: '&cYou cannot use this command!' completer: true actions: action-1: type: 'text' action: - '&cUsage: /broadcast <text>' routes: "": actions: action-1: type: 'text' action: - '&#DBC7FFMessage sent to all players!' action-2: type: 'broadcast' delay: 30 action: - '&aSent from {player}!' - '&a{0}' ``` **Example:** ```text /broadcast Hello everyone! ``` **Output:** ```text Sent from Norbit4! Hello everyone! ``` --- ### Advanced Routes & Arguments Create advanced command structures using routes and arguments. ```yaml commands: rank: permission: 'admin.rank' completer: true actions: help: type: 'text' action: - '&6Rank Commands' - '&e/rank set <player> <rank>' - '&e/rank remove <player> <rank>' routes: "set <player> <rank>": actions: action-1: type: 'server_command' action: - 'lp user {1} parent set {2}' action-2: type: 'broadcast' action: - '&6{player} &eset rank of &6{1} &eto &a{2}&e.' "remove <player> <rank>": actions: action-1: type: 'server_command' action: - 'lp user {1} parent remove {2}' ``` **Examples:** ```text /rank set Steve admin ``` Executes: ```text lp user Steve parent set admin ``` and broadcasts: ```text Norbit4 set rank of Steve to admin. ``` ```text /rank remove Steve vip ``` Executes: ```text lp user Steve parent remove vip ``` --- ### Placeholders Plu

!(https://i.imgur.com/JwJq3IR.png)

Fast Commands

FastCommands is a lightweight and highly configurable Minecraft plugin that allows to create custom commands directly from a configuration file. The plugin supports permissions, cooldowns, tab completion, placeholders, command routing, delayed actions, and multiple execution types without requiring any programming knowledge.

BuiltByBit Modrinth SpigotMC GitHub Discord Docs

👆 Click the badges to visit my profiles!

⭐ Features

> Create unlimited custom commands > Advanced command routes and arguments > Multiple action types (Text, Broadcast, Server Command, Player Command, Replace Command) > Per-command permissions > Per-command cooldowns > Tab completion support > Delayed actions > Placeholder support > HEX color support > Lightweight and optimized > Easy configuration > No coding required

🚀 Commands

> All commands and permissions are fully configurable

| Command | Default permission | Info | | -------------------------- | ------------------------------- | ----------------------------------------------- | | /bc reload | bettercommands.command.reload | Reload plugin configuration |

✅ Configuration Examples

Examples of what you can create.

### Command Replacement

Replace an existing command with another command.

```yaml commands: core: permission: 'player.core' actions: action-1: type: 'replace' action: - 'essentials' ```

Example:

```text /core reload ```

Result:

```text /essentials reload ```

### Broadcast Command

Create a custom broadcast command with arguments, permissions, delayed actions, and placeholders.

```yaml commands: broadcast: permission: 'admin.broadcast' permission-message: '&cYou cannot use this command!' completer: true

actions: action-1: type: 'text' action: - '&cUsage: /broadcast '

routes: "": actions: action-1: type: 'text' action: - '&#DBC7FFMessage sent to all players!'

action-2: type: 'broadcast' delay: 30 action: - '&aSent from {player}!' - '&a{0}' ```

Example:

```text /broadcast Hello everyone! ```

Output:

```text Sent from Norbit4! Hello everyone! ```

### Advanced Routes & Arguments

Create advanced command structures using routes and arguments.

```yaml commands: rank: permission: 'admin.rank' completer: true

actions: help: type: 'text' action: - '&6Rank Commands' - '&e/rank set ' - '&e/rank remove '

routes: "set ": actions: action-1: type: 'server_command' action: - 'lp user {1} parent set {2}'

action-2: type: 'broadcast' action: - '&6{player} &eset rank of &6{1} &eto &a{2}&e.'

"remove ": actions: action-1: type: 'server_command' action: - 'lp user {1} parent remove {2}' ```

Examples:

```text /rank set Steve admin ```

```text lp user Steve parent set admin ```

and broadcasts:

```text Norbit4 set rank of Steve to admin. ```

```text /rank remove Steve vip ```

```text lp user Steve parent remove vip ```

### Placeholders

🤖 AI-enhanced — based on mod data

📊 Mod Details

Game
Minecraft Plugins
Author
norbit
Version
1.1.0
Downloads
53
Endorsements
0
Category
paper
Created
6/20/2026
Updated
6/21/2026
Game Versions
1.16, 1.16.1, 1.16.2, 1.16.3, 1.16.4
Tags
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 FastCommands support?

The author lists 1.16, 1.16.1, 1.16.2, 1.16.3, 1.16.4, 1.16.5. Other versions may work but are untested by the author.

What is the latest version of FastCommands?

Version 1.1.0, published 2026-06-21 with 53 downloads recorded at the source.

Keep browsing — more Minecraft Plugins mods await

📋 All Minecraft Plugins Mods 🏆 Top 25 📂 More paper 👤 More by norbit 🔎 Similar Mods 🌐 Best paper (All Games) 🔀 Check Compatibility ⚖️ Compare Mods 🆕 New Mods