
CommandExtras
Adds additional utility commands to Minecraft that extend capabilities for complex command handling in the game.
What's Inside?
CommandExtras includes two key features: CommandDelay and CommandChain.
CommandDelay - Delayed Command Execution
Allows scheduling command execution with a delay. Instead of instant execution, commands can be set to run after a specified number of in-game ticks.
Usage format:
/commanddelay <ticks> <entity> <x> <y> <z> <command>
- Ticks - number of game ticks delay (20 ticks = 1 second)
- Entity and coordinates - determine the command sender (similar to vanilla
/execute
command)
CommandChain - Command Sequences
Creates sequences of commands that execute one after another from a single input. Supports nested constructions.
Usage format:
/commandchain <entity> <x> <y> <z> <command1> &&0 <command2> &&0 ...
- Separator &&0 - used between commands in the chain
- Nested levels - for nested chains increase the separator number (&&1, &&2, etc.)
Practical Example
Combined usage of both tools:
/commandchain @p ~ ~ ~ gamemode 1 @p &&0 commanddelay 100 @p ~ ~ ~ commandchain @p ~ ~ ~ gamemode 0 @p &&1 weather clear
This construction will first switch the sender to creative mode, then wait 5 seconds (100 ticks), then return to survival mode and set clear weather.
Technical Features
- Mod required only on server side
- Fully compatible with Minecraft's built-in command system
- Optimized for working with all types of commands
Video Demonstration
For better understanding of the mod's capabilities, we recommend watching video reviews on YouTube.