431: Pointless jumping piston. [Minecraft Map Making]
Membership:
Ep431: I have no idea why I made this, but here is a jumping piston, lol.
00:00 Intro
00:25 Summon
08:05 Controller
Version: 1.21
Commands, builds, hacks and ideas for people making their own Minecraft maps.
Check out my collabs on Coppit's channel:
Join the CoppitCraft server that I play on and the Discord where I hang out.
Server IP: 51.81.176.10:28386
Discord: https://discord.gg/amU84KykEu
The following commands are prefixed with three letters which represent the settings of the command block. E.g IUN: = Impulse Unconditional Needs_Redstone. These prefixes need to be removed if copying the commands.
Since angled brackets are not allowed in YouTube descriptions you will have to replace "greater than" and "less than" with the appropriate angled bracket.
Commands used:
Summon:
IUN: summon slime ~ ~3 ~3 {NoAI:false,Tags:["target"], Silent:true, Size:1, active_effects:[{id:"minecraft:invisibility",amplifier:0,duration:-1,show_particles:0b}]}
CUA: summon block_display ~ ~-0.5 ~2 {Tags:["disguise","body"], block_state:{Name:"piston"}, Silent:true, transformation:{left_rotation:{axis:[1f,0f,0f],angle:4.71},right_rotation:[0f,0f,0f,1f],translation:[-0.5f,0f,0.5f],scale:[1f,1f,1f]}, Passengers:[{Tags:["disguise","leg"], id:"block_display", block_state:{Name:"piston_head"},transformation:{left_rotation:{axis:[1f,0f,0f],angle:4.71},right_rotation:[0f,0f,0f,1f],translation:[-0.5f,-0.5f,0.5f],scale:[1f,1f,1f]}}]}
Kill:
IUN: execute as @e[tag=target] at @s run tp @s ~ ~-2112 ~
CUA: kill @e[tag=disguise]
Controller:
RUA: execute at @e[tag=target] run tp @e[type=block_display, tag=disguise] ~ ~ ~
CUA: execute at @e[type=slime, tag=target, nbt={OnGround:true}] as @e[type=block_display, tag=leg, limit=1, distance=..0.1] run data merge entity @s {block_state:{Name:"air"}}
CUA: execute at @e[type=slime, tag=target, nbt={OnGround:true}] as @e[type=block_display, tag=body, limit=1, distance=..0.1] run data merge entity @s {block_state:{Name:"piston",Properties:{extended:"false"}}}
CUA: execute at @e[type=slime, tag=target, nbt=!{OnGround:true}] as @e[type=block_display, tag=leg, limit=1, distance=..0.1] run data merge entity @s {block_state:{Name:"piston_head"}}
CUA: execute at @e[type=slime, tag=target, nbt=!{OnGround:true}] as @e[type=block_display, tag=body, limit=1, distance=..0.1] run data merge entity @s {block_state:{Name:"piston",Properties:{extended:"true"}}}