Press "Enter" to skip to content

413: Computer monitor decoration. [Minecraft Map Making]

Membership: https://www.youtube.com/channel/UCBZiIsIp_k6s1_rQoM5jEAw/join
Ep413: Making a simple computer monitor for decoration.

00:00 Intro
01:15 Create monitor Off
05:25 Debug stick
06:20 Create monitor On
08:15 Data merge Off
09:55 Data merge On

Version: 1.21

Requested by: Literally no one

Commands, builds, hacks and ideas for people making their own Minecraft maps.

Check out my collabs on Coppit’s channel: https://www.youtube.com/c/CoppitJ

Join the CoppitCraft server that I play on and the Discord where I hang out.
Server IP: 51.81.246.145:25588
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:

Create Monitor ON:
IUN: summon armor_stand 10059.8 56.7 10109 {Tags:[“monitor”], ShowArms:true, Invisible:true, NoGravity:true,
HandItems:[{id:”minecraft:shield”,count:1,components:{“minecraft:base_color”:”black”}},{}], Pose:{RightArm:[0f,90f,0f]}}

Create Monitor OFF:
IUN: summon armor_stand 10059.8 56.7 10109 {Tags:[“monitor”], ShowArms:true, Invisible:true, NoGravity:true,
HandItems:[{id:”minecraft:shield”, count:1, components:{“minecraft:base_color”:”light_blue”, “minecraft:banner_patterns”:[{color:”green”, pattern:”minecraft:stripe_right”}]}},{}], Pose:{RightArm:[0f,90f,0f]}}

Remove monitor:
IUN: kill @e[type=armor_stand, tag=monitor]

Merge ON:
IUN: data merge entity @e[type=armor_stand, tag=monitor, limit=1]
{HandItems:[{id:”minecraft:shield”, count:1, components:{“minecraft:base_color”:”light_blue”, “minecraft:banner_patterns”:[{color:”green”, pattern:”minecraft:stripe_right”}]}},{}]}

Merge OFF:
IUN: data merge entity @e[type=armor_stand, tag=monitor, limit=1]
{HandItems:[{id:”minecraft:shield”,count:1,components:{“minecraft:base_color”:”black”}},{}]}