Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
FastCommands
PluginMIT

FastCommands

Create custom commands in minutes using a simple and flexible configuration. No coding required - just configure, reload, and you're ready to go.

13
Downloads
0
Followers
4 weeks ago
Updated
📦
2
Versions
utilitypaperpurpur
Download Latestv1.1.0View on Modrinth

📖About FastCommands

logo

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.

⭐ 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.

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

Example:

/core reload

Result:

/essentials reload

Broadcast Command

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

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

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

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

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

Example:

/broadcast Hello everyone!

Output:

Sent from Norbit4!
Hello everyone!

Advanced Routes & Arguments

Create advanced command structures using routes and arguments.

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:

/rank set Steve admin

Executes:

lp user Steve parent set admin

and broadcasts:

Norbit4 set rank of Steve to admin.
/rank remove Steve vip

Executes:

lp user Steve parent remove vip

Placeholders

Plugin includes built-in placeholders that can be used in messages and commands.

Placeholder Description
{player} Name of the player executing the command
{0} First route argument
{1} Second route argument
{2} Third route argument
{3} Fourth route argument
... Additional route arguments

Example configuration:

routes:
  "give <player> <amount>":
    actions:
      action-1:
        type: 'server_command'
        action:
          - 'give {1} minecraft:diamond {2}'

Example command:

/reward give Steve 64

Result:

give Steve minecraft:diamond 64

👥 Team & Contributors

norbit
norbitOwner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
paperpurpur
Minecraft Versions
1.161.16.11.16.21.16.31.16.41.16.51.171.17.1+31 more

🔗 Links

Modrinth Page