What's so great about one-command install creations?
Easy to import
Since only one command must be executed by the player, one-command installation is very easy, and only takes a few seconds in total. There is also no need to exit or reload the game, as everything is set up in-game!
Code-like syntax
Writing commands to be compacted into a single command is much more similar to writing actual code, since every command will be run every tick, in the order that you placed them in. This allows for a different way of logic in your creations!
INIT:/scoreboard objectives add Points dummy
# Do particles at players with 5 or more points
/execute @a[score_Points_min=5] ~ ~ ~ particle enchantmenttable ~ ~ ~
# Reset particle score if it's over 15
/scoreboard players reset @a[score_Points_min=15] Points
INIT:/scoreboard objectives add Sheep dummy
# Spawn exactly 30 sheep at the closest player
INIT:/scoreboard players set @p Sheep 30
/execute @a[score_Sheep_min=1] ~ ~ ~ summon Sheep ~ ~ ~
# Remove 1 from their 'Sheep' score every time a sheep is spawned
/scoreboard players remove @a[score_Sheep_min=1] Sheep 1
Can hold amazing things
New creations in the one-command format are released nearly every day, and are often packed with awesome features to spice up any minecraft world!
Get started by creating your own one-command creation with this online generator!
> Command Combiner
Get started
Head over to the main page to browse through some one-command creations, or submit your own!
> Browse submissions
> Submit your own command