Command Maker Examples

Explore real-world examples and complete system implementations using Command Maker.

Featured Examples

TPA System

Advanced

Create a complete teleport request system with accept/deny functionality. Players can request teleportation with confirmation.

  • Request notifications
  • Accept/Deny commands
  • Multi-parameter syntax
  • Chat feedback
Learn TPA →

Ban System

Intermediate

Implement a ban command system with reasons and logging. Staff can ban players with documented reasons.

  • Ban with reason
  • Kick message
  • Multiple parameters
  • Chat logging
Learn Ban →

Warp System

Intermediate

Create warp points that players can teleport to instantly. Perfect for hub worlds and spawn locations.

  • Set/Go to warps
  • List warps
  • Coordinate storage
  • Player feedback
Learn Warp →

Custom Commands

Beginner

Build your own custom commands without programming knowledge. Simple aliases to powerful multi-parameter systems.

  • Simple aliases
  • Chat commands
  • Custom syntax
  • Variable substitution
Learn Custom →

Quick Examples

Simple Welcome Command

Create a welcome message that includes the player's name:

/cmd add welcome say Welcome to our server, ${player}! Use /help for commands.

Teleport Hub

Create a hub system using aliases:

/cmd add hub tp ${player} 0 100 0
/cmd add spawn tp ${player} -100 64 500

Broadcast with Prefix

Send messages to everyone with a custom prefix:

/cmd add broadcast say [BROADCAST] ${player} says: 

Healing Command

Give items to heal players:

/cmd add heal effect give @s instant_health 1 1

Night Toggle

Toggle between day and night:

/cmd add night time set night
/cmd add day time set day

Player Counter

Count online players using scoreboards:

/cmd add count say Players online: 

Pattern Examples

Single Parameter

Pattern: /tpa <player>

Usage: /tpa Steve → Extracts "Steve" as ${tpa_player}

Two Parameters

Pattern: /ban <player> <reason>

Usage: /ban Hacker Unfair advantage → Extracts "Hacker" and "Unfair advantage"

Three Parameters

Pattern: /msg <player> <color> <message>

Usage: /msg Admin red Alert message → Creates formatted message

Community Examples

Here are some popular examples from the community:

System Complexity Use Case Link
TPA Request Advanced Player-to-player teleport with acceptance View
Ban System Intermediate Moderation with reason logging View
Warp System Intermediate Named teleport locations View
Shop System Advanced NPC-based item trading View
Rank System Advanced Player tier management View
Welcome Script Beginner New player greeting View

Learning Path

If you're new:

  1. Start with Getting Started
  2. Create simple Custom Commands
  3. Learn about Variables
  4. Try TPA System tutorial

If you're experienced:

  1. Review Custom Syntax system
  2. Explore Ban System advanced patterns
  3. Build your own Custom Commands
  4. Share your examples!

Want to Contribute?

Have an awesome example or system? Share it with the community on GitHub or submit it for the docs!