Created
May 3, 2020 10:05
-
-
Save vaughany/84f2bcca49b3252683f6685d0cb9f0a6 to your computer and use it in GitHub Desktop.
Making circles of [block-type] in Minecraft 1.15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
To use this command in Java 1.13, do this for the first command block: | |
`/execute if entity @e[type=minecraft:armor_stand, name=CircleStand] at @e[type=minecraft:armor_stand, name=CircleStand] run tp @e[type=minecraft:armor_stand, name=CircleStand] ~ ~ ~ ~1 ~` | |
Set to *repeating*. | |
And for the second command block, do this: | |
`execute at @e[type=armor_stand, name=CircleStand] run setblock ^ ^ ^10 gold_block` | |
Set to *repeating*. | |
Then, summon a armor stand on top of the first Command Block using this: | |
/summon minecraft:armor_stand ~ ~ ~ {CustomName:"{\"text\":\"CircleStand\"}",ShowArms:1b,HandItems:[{id:"minecraft:debug_stick", Count:1b},{}]} | |
Place a lever, enjoy! | |
Note: I recommend doing `/gamerule commandBlockOutput false` to prevent all that spam in chat. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment