Command Maker Examples
Explore real-world examples and complete system implementations using Command Maker.
Featured Examples
🔄 TPA System
AdvancedCreate 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
🚫 Ban System
IntermediateImplement a ban command system with reasons and logging. Staff can ban players with documented reasons.
- Ban with reason
- Kick message
- Multiple parameters
- Chat logging
🌍 Warp System
IntermediateCreate 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
📝 Custom Commands
BeginnerBuild your own custom commands without programming knowledge. Simple aliases to powerful multi-parameter systems.
- Simple aliases
- Chat commands
- Custom syntax
- Variable substitution
Quick Examples
Simple Welcome Command
Create a welcome message that includes the player's name:
/addcommand add welcome say Welcome to our server, ${player}! Use /help for commands.
Teleport Hub
Create a hub system using aliases:
/addcommand add hub tp ${player} 0 100 0
/addcommand add spawn tp ${player} -100 64 500
Broadcast with Prefix
Send messages to everyone with a custom prefix:
/addcommand add broadcast say [BROADCAST] ${player} says:
Healing Command
Give items to heal players:
/addcommand add heal effect give @s instant_health 1 1
Night Toggle
Toggle between day and night:
/addcommand add night time set night
/addcommand add day time set day
Player Counter
Count online players using scoreboards:
/addcommand 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:
- Start with Getting Started
- Create simple Custom Commands
- Learn about Variables
- Try TPA System tutorial
If you're experienced:
- Review Custom Syntax system
- Explore Ban System advanced patterns
- Build your own Custom Commands
- 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!