Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- Check my Pastebin profile for the initialization command.
- Do Nothing: Air / " " (Space)
- Increment Pointer: Stone / !
- Decrement Pointer: Cobblestone / "
- Increment Cell: Diamond Block / #
- Decrement Cell: Obsidian / $
- Output Ascii Cell: Piston / %
- Get Input (Blocking): Sticky Piston / &
- Go to matching Sandstone if cell is zero: Quartz Block // Doesn't work across turns/direction changes. Like honestly never use it. / '
- Go back to matching Quartz Block if cell is not zero: Sandstone // Doesn't work across turns/direction changes. Like honestly never use it. / (
- Move +X: Gold Ore / )
- Move +Z: Iron Ore / *
- Move -X: Coal Ore / +
- Move -Z: Lapis Ore / ,
- Move +Y: Diamond Ore / -
- Move -Y: Redstone Ore / .
- Return To Start: Redstone Block / /
- Add Surrounding Cells: Netherrack / 0
- Subtract Surrounding Cells: End Stone / 1
- Multiply Surrounding Cells: Brick Block / 2
- Divide Surrounding Cells: Sponge / 3
- Set Cell to Equal Cell to the Left: Bookshelf / 4
- Swap Cell Left to Cell Right: Nether Brick / 5
- Set Cell to Cell Left if Less Than Cell Left: Iron Block / 6
- Set Cell to Cell Left if Greater Than Cell Left: Gold Block / 7
- Modulo on Cell Left and Cell Right: Clay / 8
- Set Cell to Equal Cell to the Right: Melon Block / 9
- Set Cell to Cell Right if Less than Cell Right: Lapis Block / :
- Set Cell to Cell Right if Greater than Cell Right: Coal Block / ;
- If Cell is Zero: Planks // Conditionals will only run the next block if evaluated to true. / <
- If Cell is Non-Zero: Log / =
- If Cell Equals Cell Left: Red Sandstone / >
- If Cell Equals Cell Right: Log2 / ?
- If Cell < Cell Left: Snow / @
- If Cell < Cell Right: Packed Ice / A
- If Cell > Cell Left: Nether Wart Block / B
- If Cell > Cell Right: Red Nether Brick / C
- Playsound of Pitch Cell: Mossy Cobblestone / D
- 80-char (Cell,Cell+1,Cell+2,Etc.) Output: Stonebrick / E
- Set Cell to Zero: Glass / F
- Write Cell to Hard Drive: Hay Block / G
- Write Hard Drive to Cell: Bone Block / H
- Move Hard Drive Needle +1: Prismarine / I
- Move Hard Drive Needle -1: Hardened Clay / J
- Move Memory Pointer +1: Magma / K
- Move Memory Pointer -1: End Bricks / L
- Write Memory to Cell: Slime / M
- Write Cell to Memory: Quartz Ore / N
- Create operation/block of type C1, at ~C2 ~C3 ~C4: Crafting Table / O
- Non-Blocking Input: Dirt / P
- Create Marker: Wool / Q
- Delete Marker: Stained Hardened Clay / R
- Go to Marker: Sea Lantern / S
- Set Needle Pos: Purpur Block / T
- Set Memory Pointer Pos: Purpur Pillar / U
- Set Pointer Pos: Emerald Ore / V
- Set Cursor Pos (Cell,Cell+1,Cell+2): Stained Glass / W
- Write Block (C,C+1,C+2) to Cell: Leaves / X
- Relative Set Cursor Pos (C,C+1,C+2): Leaves2 / Y
- Get Pointer Pos: Stone Slab / Z
- Get Memp Pos: Wooden Slab / [
- Get Needle Pos: Purpur Slab / \
- */
- @Main
- scoreboard players set @e[type=armor_stand,tag=pointer] pointer_cache_a 0
- scoreboard players set @e[type=armor_stand,tag=pointer] pointer_cache_b 0
- scoreboard players set @e[type=armor_stand,tag=pointer] pointer_cache_c 0
- scoreboard players enable @a cursor_nio
- scoreboard players add @a cursor_nio 0
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:gold_ore -1 scoreboard players set @e[tag=cursor,c=1] cursor_direction 1
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:iron_ore -1 scoreboard players set @e[tag=cursor,c=1] cursor_direction 2
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:coal_ore -1 scoreboard players set @e[tag=cursor,c=1] cursor_direction 3
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:lapis_ore -1 scoreboard players set @e[tag=cursor,c=1] cursor_direction 4
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:diamond_ore -1 scoreboard players set @e[tag=cursor,c=1] cursor_direction 5
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_ore -1 scoreboard players set @e[tag=cursor,c=1] cursor_direction 6
- tp @e[type=armor_stand,tag=cursor,score_cursor_direction_min=1,score_cursor_direction=1] ~1 ~ ~
- tp @e[type=armor_stand,tag=cursor,score_cursor_direction_min=2,score_cursor_direction=2] ~ ~ ~1
- tp @e[type=armor_stand,tag=cursor,score_cursor_direction_min=3,score_cursor_direction=3] ~-1 ~ ~
- tp @e[type=armor_stand,tag=cursor,score_cursor_direction_min=4,score_cursor_direction=4] ~ ~ ~-1
- tp @e[type=armor_stand,tag=cursor,score_cursor_direction_min=5,score_cursor_direction=5] ~ ~1 ~
- tp @e[type=armor_stand,tag=cursor,score_cursor_direction_min=6,score_cursor_direction=6] ~ ~-1 ~
- tp @e[type=armor_stand,tag=cursor_skip,score_cursor_direction_min=1,score_cursor_direction=1] ~1 ~ ~
- tp @e[type=armor_stand,tag=cursor_skip,score_cursor_direction_min=2,score_cursor_direction=2] ~ ~ ~1
- tp @e[type=armor_stand,tag=cursor_skip,score_cursor_direction_min=3,score_cursor_direction=3] ~-1 ~ ~
- tp @e[type=armor_stand,tag=cursor_skip,score_cursor_direction_min=4,score_cursor_direction=4] ~ ~ ~-1
- tp @e[type=armor_stand,tag=cursor_skip,score_cursor_direction_min=5,score_cursor_direction=5] ~ ~1 ~
- tp @e[type=armor_stand,tag=cursor_skip,score_cursor_direction_min=6,score_cursor_direction=6] ~ ~-1 ~
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ spreadplayers ~ ~ 0 1 false @e[type=area_effect_cloud,tag=chunkloader]
- execute @e[type=armor_stand,tag=cursor_skip] ~ ~ ~ spreadplayers ~ ~ 0 1 false @e[type=area_effect_cloud,tag=chunkloader]
- execute @e[type=armor_stand,tag=cursor_wait] ~ ~ ~ spreadplayers ~ ~ 0 1 false @e[type=area_effect_cloud,tag=chunkloader]
- execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ spreadplayers ~ ~ 0 1 false @e[type=area_effect_cloud,tag=chunkloader]
- scoreboard players tag @e[type=armor_stand,tag=cursor_skipped] remove cursor_skip
- scoreboard players tag @e[type=armor_stand,tag=cursor_skipped] add cursor
- scoreboard players tag @e[type=armor_stand,tag=cursor_skipped] remove cursor_skipped
- scoreboard players tag @e[type=armor_stand,tag=cursor_skip] add cursor_skipped
- execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ minecraft:gold_ore -1 scoreboard players set @e[tag=cursor,c=1] cursor_direction 1
- execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ minecraft:iron_ore -1 scoreboard players set @e[tag=cursor,c=1] cursor_direction 2
- execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ minecraft:coal_ore -1 scoreboard players set @e[tag=cursor,c=1] cursor_direction 3
- execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ minecraft:lapis_ore -1 scoreboard players set @e[tag=cursor,c=1] cursor_direction 4
- execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ minecraft:diamond_ore -1 scoreboard players set @e[tag=cursor,c=1] cursor_direction 5
- execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_ore -1 scoreboard players set @e[tag=cursor,c=1] cursor_direction 6
- tp @e[type=armor_stand,tag=cursor_find,score_cursor_direction_min=1,score_cursor_direction=1] ~-1 ~ ~
- tp @e[type=armor_stand,tag=cursor_find,score_cursor_direction_min=2,score_cursor_direction=2] ~ ~ ~-1
- tp @e[type=armor_stand,tag=cursor_find,score_cursor_direction_min=3,score_cursor_direction=3] ~1 ~ ~
- tp @e[type=armor_stand,tag=cursor_find,score_cursor_direction_min=4,score_cursor_direction=4] ~ ~ ~1
- tp @e[type=armor_stand,tag=cursor_find,score_cursor_direction_min=5,score_cursor_direction=5] ~ ~-1 ~
- tp @e[type=armor_stand,tag=cursor_find,score_cursor_direction_min=6,score_cursor_direction=6] ~ ~1 ~
- execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ quartz_block -1 scoreboard players add @e[type=armor_stand,tag=cursor_find] cursor_jfind 1
- execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ sandstone -1 scoreboard players remove @e[type=armor_stand,tag=cursor_find] cursor_jfind 1
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=cursor] cursor_direction 1
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=pointer] pointer_pos 0
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=memp] memp_pos 0
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=needle] needle_pos 0
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[type=area_effect_cloud,tag=cell] cell_value 0
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[type=area_effect_cloud,tag=mem] mem_value 0
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 tp @e[type=armor_stand,tag=pointer] @e[c=1,type=area_effect_cloud,tag=pointer_start]
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 tp @e[type=armor_stand,tag=needle] @e[c=1,type=area_effect_cloud,tag=needle_start]
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 tp @e[type=armor_stand,tag=memp] @e[c=1,type=area_effect_cloud,tag=memp_start]
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 kill @e[tag=cmarker]
- execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 kill @e[tag=cmarker]
- execute @e[type=armor_stand,tag=cursor_wait] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 kill @e[tag=cmarker]
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 tp @e[type=armor_stand,tag=cursor,c=1] @e[tag=cursor_start]
- execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=cursor_find] cursor_direction 1
- execute @e[type=armor_stand,tag=cursor_wait] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[type=area_effect_cloud,tag=cell] cell_value 0
- execute @e[type=armor_stand,tag=cursor_wait] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[type=area_effect_cloud,tag=mem] mem_value 0
- execute @e[type=armor_stand,tag=cursor_wait] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=pointer] pointer_pos 0
- execute @e[type=armor_stand,tag=cursor_wait] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=memp] memp_pos 0
- execute @e[type=armor_stand,tag=cursor_wait] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=needle] needle_pos 0
- execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=pointer] pointer_pos 0
- execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=memp] memp_pos 0
- execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=needle] needle_pos 0
- execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players tag @e[tag=cursor_find] add cursor
- execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=cursor_find] cursor_jfind 0
- execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players tag @e[tag=cursor_find] remove cursor_find
- execute @e[type=armor_stand,tag=cursor_wait] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 tp @e[type=armor_stand,tag=pointer] @e[c=1,type=area_effect_cloud,tag=pointer_start]
- execute @e[type=armor_stand,tag=cursor_wait] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 tp @e[type=armor_stand,tag=needle] @e[c=1,type=area_effect_cloud,tag=needle_start]
- execute @e[type=armor_stand,tag=cursor_wait] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 tp @e[type=armor_stand,tag=memp] @e[c=1,type=area_effect_cloud,tag=memp_start]
- execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 tp @e[type=armor_stand,tag=cursor_find,c=1] @e[tag=cursor_start]
- @op stone
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:stone -1 tp @e[type=armor_stand,tag=pointer] ~1 ~ ~
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:stone -1 scoreboard players add @e[type=armor_stand,tag=pointer] pointer_pos 1
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:stone -1 scoreboard players set @e[type=armor_stand,tag=pointer] pointer_found 0
- execute @e[type=armor_stand,tag=pointer,score_pointer_found_min=0,score_pointer_found=0] ~ ~ ~ execute @e[type=area_effect_cloud,tag=cell,r=0] ~ ~ ~ scoreboard players set @e[type=armor_stand,tag=pointer] pointer_found 1
- execute @e[type=armor_stand,tag=pointer,score_pointer_found_min=0,score_pointer_found=0] ~ ~ ~ summon area_effect_cloud ~ ~ ~ {Duration:2000000000,Tags:["new_cell","cell"]}
- scoreboard players set @e[type=area_effect_cloud,tag=new_cell] cell_value 0
- scoreboard players tag @e[type=area_effect_cloud,tag=new_cell] remove new_cell
- scoreboard players set @e[type=armor_stand,tag=pointer,score_pointer_found_min=0] pointer_found -1
- @op cobblestone
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:cobblestone -1 tp @e[type=armor_stand,tag=pointer] ~-1 ~ ~
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:cobblestone -1 scoreboard players remove @e[type=armor_stand,tag=pointer] pointer_pos 1
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:cobblestone -1 scoreboard players set @e[type=armor_stand,tag=pointer] pointer_found 0
- execute @e[type=armor_stand,tag=pointer,score_pointer_found_min=0,score_pointer_found=0] ~ ~ ~ execute @e[type=area_effect_cloud,tag=cell,r=0] ~ ~ ~ scoreboard players set @e[type=armor_stand,tag=pointer] pointer_found 1
- execute @e[type=armor_stand,tag=pointer,score_pointer_found_min=0,score_pointer_found=0] ~ ~ ~ summon area_effect_cloud ~ ~ ~ {Duration:2000000000,Tags:["new_cell","cell"]}
- scoreboard players set @e[type=area_effect_cloud,tag=new_cell] cell_value 0
- scoreboard players tag @e[type=area_effect_cloud,tag=new_cell] remove new_cell
- scoreboard players set @e[type=armor_stand,tag=pointer,score_pointer_found_min=0] pointer_found -1
- @op diamond_block
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:diamond_block -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players add @e[type=area_effect_cloud,tag=cell,c=1] cell_value 1
- @op obsidian
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:obsidian -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players remove @e[type=area_effect_cloud,tag=cell,c=1] cell_value 1
- @op piston
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:piston -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players set @e[type=area_effect_cloud,tag=cell,c=1] cell_output 1
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=32,score_cell_value=32,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":" "}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=33,score_cell_value=33,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"!"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=34,score_cell_value=34,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"""}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=35,score_cell_value=35,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"#"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=36,score_cell_value=36,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"$"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=37,score_cell_value=37,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"%"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=38,score_cell_value=38,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"&"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=39,score_cell_value=39,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"'"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=40,score_cell_value=40,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"("}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=41,score_cell_value=41,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":")"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=42,score_cell_value=42,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"*"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=43,score_cell_value=43,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"+"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=44,score_cell_value=44,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":","}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=45,score_cell_value=45,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"-"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=46,score_cell_value=46,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"."}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=47,score_cell_value=47,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"/"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=48,score_cell_value=48,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"0"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=49,score_cell_value=49,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"1"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=50,score_cell_value=50,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"2"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=51,score_cell_value=51,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"3"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=52,score_cell_value=52,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"4"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=53,score_cell_value=53,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"5"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=54,score_cell_value=54,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"6"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=55,score_cell_value=55,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"7"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=56,score_cell_value=56,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"8"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=57,score_cell_value=57,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"9"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=58,score_cell_value=58,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":":"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=59,score_cell_value=59,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":";"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=60,score_cell_value=60,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"<"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=61,score_cell_value=61,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"="}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=62,score_cell_value=62,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":">"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=63,score_cell_value=63,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"?"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=64,score_cell_value=64,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"@"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=65,score_cell_value=65,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"A"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=66,score_cell_value=66,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"B"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=67,score_cell_value=67,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"C"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=68,score_cell_value=68,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"D"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=69,score_cell_value=69,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"E"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=70,score_cell_value=70,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"F"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=71,score_cell_value=71,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"G"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=72,score_cell_value=72,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"H"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=73,score_cell_value=73,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"I"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=74,score_cell_value=74,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"J"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=75,score_cell_value=75,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"K"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=76,score_cell_value=76,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"L"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=77,score_cell_value=77,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"M"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=78,score_cell_value=78,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"N"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=79,score_cell_value=79,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"O"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=80,score_cell_value=80,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"P"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=81,score_cell_value=81,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"Q"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=82,score_cell_value=82,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"R"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=83,score_cell_value=83,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"S"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=84,score_cell_value=84,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"T"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=85,score_cell_value=85,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"U"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=86,score_cell_value=86,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"V"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=87,score_cell_value=87,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"W"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=88,score_cell_value=88,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"X"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=89,score_cell_value=89,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"Y"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=90,score_cell_value=90,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"Z"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=91,score_cell_value=91,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"["}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=92,score_cell_value=92,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"\\"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=93,score_cell_value=93,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"]"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=94,score_cell_value=94,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"^"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=95,score_cell_value=95,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"_"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=96,score_cell_value=96,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"`"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=97,score_cell_value=97,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"a"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=98,score_cell_value=98,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"b"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=99,score_cell_value=99,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"c"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=100,score_cell_value=100,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"d"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=101,score_cell_value=101,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"e"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=102,score_cell_value=102,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"f"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=103,score_cell_value=103,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"g"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=104,score_cell_value=104,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"h"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=105,score_cell_value=105,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"i"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=106,score_cell_value=106,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"j"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=107,score_cell_value=107,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"k"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=108,score_cell_value=108,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"l"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=109,score_cell_value=109,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"m"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=110,score_cell_value=110,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"n"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=111,score_cell_value=111,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"o"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=112,score_cell_value=112,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"p"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=113,score_cell_value=113,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"q"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=114,score_cell_value=114,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"r"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=115,score_cell_value=115,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"s"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=116,score_cell_value=116,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"t"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=117,score_cell_value=117,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"u"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=118,score_cell_value=118,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"v"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=119,score_cell_value=119,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"w"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=120,score_cell_value=120,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"x"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=121,score_cell_value=121,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"y"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=122,score_cell_value=122,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"z"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=123,score_cell_value=123,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"{"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=124,score_cell_value=124,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"|"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=125,score_cell_value=125,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"}"}]
- execute @e[type=area_effect_cloud,tag=cell,score_cell_value_min=126,score_cell_value=126,score_cell_output_min=1] ~ ~ ~ tellraw @a [{"text":"~"}]
- scoreboard players set @e[type=area_effect_cloud,tag=cell,score_cell_output_min=1] cell_output 0
- @op sticky_piston
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:sticky_piston -1 scoreboard players tag @e[type=armor_stand,tag=cursor] add cursor_wait
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:sticky_piston -1 scoreboard players reset * cursor_io
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:sticky_piston -1 scoreboard players tag @e[type=armor_stand,tag=cursor] remove cursor
- execute @a[score_cursor_io_min=1] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[tag=cell,c=1] cell_value = @a[score_cursor_io_min=1] cursor_io
- execute @a[score_cursor_io=-1] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[tag=cell,c=1] cell_value = @a[score_cursor_io=-1] cursor_io
- execute @a[score_cursor_io_min=1] ~ ~ ~ scoreboard players tag @e[type=armor_stand,tag=cursor_wait] add cursor
- execute @a[score_cursor_io=-1] ~ ~ ~ scoreboard players tag @e[type=armor_stand,tag=cursor_wait] add cursor
- execute @a[score_cursor_io_min=1] ~ ~ ~ scoreboard players tag @e[type=armor_stand,tag=cursor_wait] remove cursor_wait
- execute @a[score_cursor_io=-1] ~ ~ ~ scoreboard players tag @e[type=armor_stand,tag=cursor_wait] remove cursor_wait
- execute @e[type=armor_stand,tag=cursor_wait] ~ ~ ~ scoreboard players enable @a cursor_io
- execute @a[score_cursor_io_min=1] ~ ~ ~ scoreboard players set @a[score_cursor_io_min=1] cursor_io 0
- execute @a[score_cursor_io=-1] ~ ~ ~ scoreboard players set @a[score_cursor_io=-1] cursor_io 0
- @op quartz_block
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:quartz_block -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ execute @e[type=area_effect_cloud,tag=cell,r=0,score_cell_value_min=0,score_cell_value=0] ~ ~ ~ scoreboard players set @e[type=armor_stand,tag=cursor] cursor_jfind 1
- scoreboard players tag @e[type=armor_stand,tag=cursor,score_cursor_jfind_min=1] add cursor_find
- scoreboard players tag @e[type=armor_stand,tag=cursor,score_cursor_jfind=-1] add cursor_find
- scoreboard players tag @e[type=armor_stand,tag=cursor_find] remove cursor
- scoreboard players tag @e[type=armor_stand,tag=cursor_find,score_cursor_jfind_min=0,score_cursor_jfind=0] add cursor
- scoreboard players tag @e[type=armor_stand,tag=cursor_find,score_cursor_jfind_min=0,score_cursor_jfind=0] remove cursor_find
- @op sandstone
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:sandstone -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ execute @e[type=area_effect_cloud,tag=cell,r=0,score_cell_value_min=1] ~ ~ ~ scoreboard players set @e[type=armor_stand,tag=cursor] cursor_jfind -1
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:sandstone -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ execute @e[type=area_effect_cloud,tag=cell,r=0,score_cell_value=-1] ~ ~ ~ scoreboard players set @e[type=armor_stand,tag=cursor] cursor_jfind -1
- scoreboard players tag @e[type=armor_stand,tag=cursor,score_cursor_jfind_min=1] add cursor_find
- scoreboard players tag @e[type=armor_stand,tag=cursor,score_cursor_jfind=-1] add cursor_find
- scoreboard players tag @e[type=armor_stand,tag=cursor_find] remove cursor
- scoreboard players tag @e[type=armor_stand,tag=cursor_find,score_cursor_jfind_min=0,score_cursor_jfind=0] add cursor
- scoreboard players tag @e[type=armor_stand,tag=cursor_find,score_cursor_jfind_min=0,score_cursor_jfind=0] remove cursor_find
- @op netherrack
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:netherrack -1 execute @e[type=armor_stand,tag=pointer] ~-1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:netherrack -1 execute @e[type=armor_stand,tag=pointer] ~1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:netherrack -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a += @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:netherrack -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=area_effect_cloud,tag=cell,c=1] cell_value = @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a
- @op end_stone
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:end_stone -1 execute @e[type=armor_stand,tag=pointer] ~-1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:end_stone -1 execute @e[type=armor_stand,tag=pointer] ~1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:end_stone -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a -= @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:end_stone -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=area_effect_cloud,tag=cell,c=1] cell_value = @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a
- @op brick_block
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:brick_block -1 execute @e[type=armor_stand,tag=pointer] ~-1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:brick_block -1 execute @e[type=armor_stand,tag=pointer] ~1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:brick_block -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a *= @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:brick_block -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=area_effect_cloud,tag=cell,c=1] cell_value = @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a
- @op sponge
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:sponge -1 execute @e[type=armor_stand,tag=pointer] ~-1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:sponge -1 execute @e[type=armor_stand,tag=pointer] ~1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:sponge -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a /= @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:sponge -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=area_effect_cloud,tag=cell,c=1] cell_value = @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a
- @op clay
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:clay -1 execute @e[type=armor_stand,tag=pointer] ~-1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:clay -1 execute @e[type=armor_stand,tag=pointer] ~1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:clay -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a %= @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:clay -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=area_effect_cloud,tag=cell,c=1] cell_value = @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a
- @op bookshelf
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:bookshelf -1 execute @e[type=armor_stand,tag=pointer] ~-1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:bookshelf -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b = @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:bookshelf -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=area_effect_cloud,tag=cell,c=1] cell_value = @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b
- @op nether_brick
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:nether_brick -1 execute @e[type=armor_stand,tag=pointer] ~-1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:nether_brick -1 execute @e[type=armor_stand,tag=pointer] ~1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:nether_brick -1 execute @e[type=armor_stand,tag=pointer] ~-1 ~ ~ scoreboard players operation @e[type=area_effect_cloud,tag=cell,c=1] cell_value = @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:nether_brick -1 execute @e[type=armor_stand,tag=pointer] ~1 ~ ~ scoreboard players operation @e[type=area_effect_cloud,tag=cell,c=1] cell_value = @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a
- @op iron_block
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:iron_block -1 execute @e[type=armor_stand,tag=pointer] ~-1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:iron_block -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=area_effect_cloud,tag=cell,c=1] cell_value > @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a
- @op gold_block
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:gold_block -1 execute @e[type=armor_stand,tag=pointer] ~-1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:gold_block -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=area_effect_cloud,tag=cell,c=1] cell_value < @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a
- @op melon_block
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:melon_block -1 execute @e[type=armor_stand,tag=pointer] ~1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:melon_block -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b = @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:melon_block -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=area_effect_cloud,tag=cell,c=1] cell_value = @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b
- @op lapis_block
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:lapis_block -1 execute @e[type=armor_stand,tag=pointer] ~1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:lapis_block -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=area_effect_cloud,tag=cell,c=1] cell_value > @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a
- @op coal_block
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:coal_block -1 execute @e[type=armor_stand,tag=pointer] ~1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:coal_block -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=area_effect_cloud,tag=cell,c=1] cell_value < @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a
- @op planks
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:planks -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ execute @e[type=area_effect_cloud,tag=cell,r=0,score_cell_value_min=1] ~ ~ ~ scoreboard players tag @e[type=armor_stand,tag=cursor] add add_cskip
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:planks -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ execute @e[type=area_effect_cloud,tag=cell,r=0,score_cell_value=-1] ~ ~ ~ scoreboard players tag @e[type=armor_stand,tag=cursor] add add_cskip
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove cursor
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] add cursor_skip
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove add_cskip
- @op log
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:log -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ execute @e[type=area_effect_cloud,tag=cell,r=0,score_cell_value_min=0,score_cell_value=0] ~ ~ ~ scoreboard players tag @e[type=armor_stand,tag=cursor] add add_cskip
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove cursor
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] add cursor_skip
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove add_cskip
- @op red_sandstone
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:red_sandstone -1 execute @e[type=armor_stand,tag=pointer] ~-1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:red_sandstone -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:red_sandstone -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a -= @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:red_sandstone -1 execute @e[type=armor_stand,tag=pointer,score_pointer_cache_a_min=1] ~ ~ ~ scoreboard players tag @e[type=armor_stand,tag=cursor] add add_cskip
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:red_sandstone -1 execute @e[type=armor_stand,tag=pointer,score_pointer_cache_a=-1] ~ ~ ~ scoreboard players tag @e[type=armor_stand,tag=cursor] add add_cskip
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove cursor
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] add cursor_skip
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove add_cskip
- @op log2
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:log2 -1 execute @e[type=armor_stand,tag=pointer] ~1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:log2 -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:log2 -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a -= @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:log2 -1 execute @e[type=armor_stand,tag=pointer,score_pointer_cache_a_min=1] ~ ~ ~ scoreboard players tag @e[type=armor_stand,tag=cursor] add add_cskip
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:log2 -1 execute @e[type=armor_stand,tag=pointer,score_pointer_cache_a=-1] ~ ~ ~ scoreboard players tag @e[type=armor_stand,tag=cursor] add add_cskip
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove cursor
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] add cursor_skip
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove add_cskip
- @op snow
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:snow -1 execute @e[type=armor_stand,tag=pointer] ~-1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:snow -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:snow -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a -= @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:snow -1 execute @e[type=armor_stand,tag=pointer,score_pointer_cache_a=0] ~ ~ ~ scoreboard players tag @e[type=armor_stand,tag=cursor] add add_cskip
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove cursor
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] add cursor_skip
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove add_cskip
- @op packed_ice
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:packed_ice -1 execute @e[type=armor_stand,tag=pointer] ~1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:packed_ice -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:packed_ice -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a -= @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:packed_ice -1 execute @e[type=armor_stand,tag=pointer,score_pointer_cache_a=0] ~ ~ ~ scoreboard players tag @e[type=armor_stand,tag=cursor] add add_cskip
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove cursor
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] add cursor_skip
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove add_cskip
- @op nether_wart_block
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:nether_wart_block -1 execute @e[type=armor_stand,tag=pointer] ~-1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:nether_wart_block -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:nether_wart_block -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a -= @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:nether_wart_block -1 execute @e[type=armor_stand,tag=pointer,score_pointer_cache_a_min=1] ~ ~ ~ scoreboard players tag @e[type=armor_stand,tag=cursor] add add_cskip
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove cursor
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] add cursor_skip
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove add_cskip
- @op red_nether_brick
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:red_nether_brick -1 execute @e[type=armor_stand,tag=pointer] ~1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:red_nether_brick -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:red_nether_brick -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer,c=1] pointer_cache_a -= @e[type=armor_stand,tag=pointer,c=1] pointer_cache_b
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:red_nether_brick -1 execute @e[type=armor_stand,tag=pointer,score_pointer_cache_a_min=1] ~ ~ ~ scoreboard players tag @e[type=armor_stand,tag=cursor] add add_cskip
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove cursor
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] add cursor_skip
- scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove add_cskip
- @op mossy_cobblestone
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:mossy_cobblestone -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players tag @e[type=area_effect_cloud,tag=cell,c=1] add play_note
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=0,score_cell_value=0] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 0.5
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=1,score_cell_value=1] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 0.5333
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=2,score_cell_value=2] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 0.5666
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=3,score_cell_value=3] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 0.6
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=4,score_cell_value=4] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 0.6333
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=5,score_cell_value=5] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 0.6666
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=6,score_cell_value=6] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 0.7
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=7,score_cell_value=7] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 0.75
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=8,score_cell_value=8] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 0.8
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=9,score_cell_value=9] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 0.85
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=10,score_cell_value=10] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 0.9
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=11,score_cell_value=11] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 0.95
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=12,score_cell_value=12] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 1.0
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=13,score_cell_value=13] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 1.05
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=14,score_cell_value=14] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 1.1
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=15,score_cell_value=15] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 1.2
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=16,score_cell_value=16] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 1.25
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=17,score_cell_value=17] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 1.333
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=18,score_cell_value=18] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 1.4
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=19,score_cell_value=19] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 1.5
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=20,score_cell_value=20] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 1.6
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=21,score_cell_value=21] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 1.7
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=22,score_cell_value=22] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 1.8
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=23,score_cell_value=23] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 1.9
- execute @e[type=area_effect_cloud,tag=play_note,score_cell_value_min=24,score_cell_value=24] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ playsound minecraft:block.note.harp block @a ~ ~ ~ 5 2.0
- scoreboard players tag @e[type=area_effect_cloud,tag=play_note] remove play_note
- @op stonebrick
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:stonebrick -1 scoreboard players tag @e[type=armor_stand,tag=cursor] add cursor_longprint
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[tag=btext_a] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~1 ~ ~ scoreboard players operation @e[tag=btext_b] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~2 ~ ~ scoreboard players operation @e[tag=btext_c] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~3 ~ ~ scoreboard players operation @e[tag=btext_d] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~4 ~ ~ scoreboard players operation @e[tag=btext_e] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~5 ~ ~ scoreboard players operation @e[tag=btext_f] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~6 ~ ~ scoreboard players operation @e[tag=btext_g] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~7 ~ ~ scoreboard players operation @e[tag=btext_h] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~8 ~ ~ scoreboard players operation @e[tag=btext_i] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~9 ~ ~ scoreboard players operation @e[tag=btext_j] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~10 ~ ~ scoreboard players operation @e[tag=btext_k] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~11 ~ ~ scoreboard players operation @e[tag=btext_l] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~12 ~ ~ scoreboard players operation @e[tag=btext_m] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~13 ~ ~ scoreboard players operation @e[tag=btext_n] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~14 ~ ~ scoreboard players operation @e[tag=btext_o] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~15 ~ ~ scoreboard players operation @e[tag=btext_p] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~16 ~ ~ scoreboard players operation @e[tag=btext_q] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~17 ~ ~ scoreboard players operation @e[tag=btext_r] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~18 ~ ~ scoreboard players operation @e[tag=btext_s] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~19 ~ ~ scoreboard players operation @e[tag=btext_t] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~20 ~ ~ scoreboard players operation @e[tag=btext_u] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~21 ~ ~ scoreboard players operation @e[tag=btext_v] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~22 ~ ~ scoreboard players operation @e[tag=btext_w] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~23 ~ ~ scoreboard players operation @e[tag=btext_x] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~24 ~ ~ scoreboard players operation @e[tag=btext_y] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~25 ~ ~ scoreboard players operation @e[tag=btext_z] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~26 ~ ~ scoreboard players operation @e[tag=btext_aa] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~27 ~ ~ scoreboard players operation @e[tag=btext_ab] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~28 ~ ~ scoreboard players operation @e[tag=btext_ac] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~29 ~ ~ scoreboard players operation @e[tag=btext_ad] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~30 ~ ~ scoreboard players operation @e[tag=btext_ae] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~31 ~ ~ scoreboard players operation @e[tag=btext_af] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~32 ~ ~ scoreboard players operation @e[tag=btext_ag] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~33 ~ ~ scoreboard players operation @e[tag=btext_ah] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~34 ~ ~ scoreboard players operation @e[tag=btext_ai] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~35 ~ ~ scoreboard players operation @e[tag=btext_aj] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~36 ~ ~ scoreboard players operation @e[tag=btext_ak] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~37 ~ ~ scoreboard players operation @e[tag=btext_al] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~38 ~ ~ scoreboard players operation @e[tag=btext_am] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~39 ~ ~ scoreboard players operation @e[tag=btext_an] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~40 ~ ~ scoreboard players operation @e[tag=btext_ao] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~41 ~ ~ scoreboard players operation @e[tag=btext_ap] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~42 ~ ~ scoreboard players operation @e[tag=btext_aq] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~43 ~ ~ scoreboard players operation @e[tag=btext_ar] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~44 ~ ~ scoreboard players operation @e[tag=btext_as] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~45 ~ ~ scoreboard players operation @e[tag=btext_at] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~46 ~ ~ scoreboard players operation @e[tag=btext_au] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~47 ~ ~ scoreboard players operation @e[tag=btext_av] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~48 ~ ~ scoreboard players operation @e[tag=btext_aw] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~49 ~ ~ scoreboard players operation @e[tag=btext_ax] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~50 ~ ~ scoreboard players operation @e[tag=btext_ay] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~51 ~ ~ scoreboard players operation @e[tag=btext_az] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~52 ~ ~ scoreboard players operation @e[tag=btext_ba] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~53 ~ ~ scoreboard players operation @e[tag=btext_bb] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~54 ~ ~ scoreboard players operation @e[tag=btext_bc] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~55 ~ ~ scoreboard players operation @e[tag=btext_bd] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~56 ~ ~ scoreboard players operation @e[tag=btext_be] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~57 ~ ~ scoreboard players operation @e[tag=btext_bf] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~58 ~ ~ scoreboard players operation @e[tag=btext_bg] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~59 ~ ~ scoreboard players operation @e[tag=btext_bh] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~60 ~ ~ scoreboard players operation @e[tag=btext_bi] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~61 ~ ~ scoreboard players operation @e[tag=btext_bj] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~62 ~ ~ scoreboard players operation @e[tag=btext_bk] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~63 ~ ~ scoreboard players operation @e[tag=btext_bl] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~64 ~ ~ scoreboard players operation @e[tag=btext_bm] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~65 ~ ~ scoreboard players operation @e[tag=btext_bn] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~66 ~ ~ scoreboard players operation @e[tag=btext_bo] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~67 ~ ~ scoreboard players operation @e[tag=btext_bp] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~68 ~ ~ scoreboard players operation @e[tag=btext_bq] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~69 ~ ~ scoreboard players operation @e[tag=btext_br] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~70 ~ ~ scoreboard players operation @e[tag=btext_bs] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~71 ~ ~ scoreboard players operation @e[tag=btext_bt] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~72 ~ ~ scoreboard players operation @e[tag=btext_bu] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~73 ~ ~ scoreboard players operation @e[tag=btext_bv] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~74 ~ ~ scoreboard players operation @e[tag=btext_bw] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~75 ~ ~ scoreboard players operation @e[tag=btext_bx] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~76 ~ ~ scoreboard players operation @e[tag=btext_by] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~77 ~ ~ scoreboard players operation @e[tag=btext_bz] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~78 ~ ~ scoreboard players operation @e[tag=btext_ca] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~79 ~ ~ scoreboard players operation @e[tag=btext_cb] text_value = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext] {CustomName:" "}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=33,score_text_value=33] {CustomName:"!"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=34,score_text_value=34] {CustomName:"""}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=35,score_text_value=35] {CustomName:"#"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=36,score_text_value=36] {CustomName:"$"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=37,score_text_value=37] {CustomName:"%"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=38,score_text_value=38] {CustomName:"&"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=39,score_text_value=39] {CustomName:"'"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=40,score_text_value=40] {CustomName:"("}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=41,score_text_value=41] {CustomName:")"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=42,score_text_value=42] {CustomName:"*"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=43,score_text_value=43] {CustomName:"+"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=44,score_text_value=44] {CustomName:","}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=45,score_text_value=45] {CustomName:"-"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=46,score_text_value=46] {CustomName:"."}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=47,score_text_value=47] {CustomName:"/"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=48,score_text_value=48] {CustomName:"0"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=49,score_text_value=49] {CustomName:"1"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=50,score_text_value=50] {CustomName:"2"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=51,score_text_value=51] {CustomName:"3"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=52,score_text_value=52] {CustomName:"4"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=53,score_text_value=53] {CustomName:"5"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=54,score_text_value=54] {CustomName:"6"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=55,score_text_value=55] {CustomName:"7"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=56,score_text_value=56] {CustomName:"8"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=57,score_text_value=57] {CustomName:"9"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=58,score_text_value=58] {CustomName:":"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=59,score_text_value=59] {CustomName:";"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=60,score_text_value=60] {CustomName:"<"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=61,score_text_value=61] {CustomName:"="}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=62,score_text_value=62] {CustomName:">"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=63,score_text_value=63] {CustomName:"?"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=64,score_text_value=64] {CustomName:"@"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=65,score_text_value=65] {CustomName:"A"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=66,score_text_value=66] {CustomName:"B"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=67,score_text_value=67] {CustomName:"C"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=68,score_text_value=68] {CustomName:"D"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=69,score_text_value=69] {CustomName:"E"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=70,score_text_value=70] {CustomName:"F"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=71,score_text_value=71] {CustomName:"G"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=72,score_text_value=72] {CustomName:"H"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=73,score_text_value=73] {CustomName:"I"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=74,score_text_value=74] {CustomName:"J"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=75,score_text_value=75] {CustomName:"K"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=76,score_text_value=76] {CustomName:"L"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=77,score_text_value=77] {CustomName:"M"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=78,score_text_value=78] {CustomName:"N"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=79,score_text_value=79] {CustomName:"O"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=80,score_text_value=80] {CustomName:"P"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=81,score_text_value=81] {CustomName:"Q"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=82,score_text_value=82] {CustomName:"R"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=83,score_text_value=83] {CustomName:"S"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=84,score_text_value=84] {CustomName:"T"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=85,score_text_value=85] {CustomName:"U"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=86,score_text_value=86] {CustomName:"V"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=87,score_text_value=87] {CustomName:"W"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=88,score_text_value=88] {CustomName:"X"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=89,score_text_value=89] {CustomName:"Y"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=90,score_text_value=90] {CustomName:"Z"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=91,score_text_value=91] {CustomName:"["}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=92,score_text_value=92] {CustomName:"\\"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=93,score_text_value=93] {CustomName:"]"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=94,score_text_value=94] {CustomName:"^"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=95,score_text_value=95] {CustomName:"_"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=96,score_text_value=96] {CustomName:"`"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=97,score_text_value=97] {CustomName:"a"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=98,score_text_value=98] {CustomName:"b"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=99,score_text_value=99] {CustomName:"c"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=100,score_text_value=100] {CustomName:"d"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=101,score_text_value=101] {CustomName:"e"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=102,score_text_value=102] {CustomName:"f"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=103,score_text_value=103] {CustomName:"g"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=104,score_text_value=104] {CustomName:"h"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=105,score_text_value=105] {CustomName:"i"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=106,score_text_value=106] {CustomName:"j"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=107,score_text_value=107] {CustomName:"k"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=108,score_text_value=108] {CustomName:"l"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=109,score_text_value=109] {CustomName:"m"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=110,score_text_value=110] {CustomName:"n"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=111,score_text_value=111] {CustomName:"o"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=112,score_text_value=112] {CustomName:"p"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=113,score_text_value=113] {CustomName:"q"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=114,score_text_value=114] {CustomName:"r"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=115,score_text_value=115] {CustomName:"s"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=116,score_text_value=116] {CustomName:"t"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=117,score_text_value=117] {CustomName:"u"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=118,score_text_value=118] {CustomName:"v"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=119,score_text_value=119] {CustomName:"w"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=120,score_text_value=120] {CustomName:"x"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=121,score_text_value=121] {CustomName:"y"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=122,score_text_value=122] {CustomName:"z"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=123,score_text_value=123] {CustomName:"{"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=124,score_text_value=124] {CustomName:"|"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=125,score_text_value=125] {CustomName:"}"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=126,score_text_value=126] {CustomName:"~"}
- execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ tellraw @a ["",{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_a]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_b]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_c]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_d]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_e]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_f]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_g]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_h]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_i]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_j]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_k]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_l]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_m]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_n]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_o]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_p]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_q]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_r]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_s]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_t]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_u]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_v]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_w]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_x]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_y]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_z]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_aa]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_ab]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_ac]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_ad]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_ae]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_af]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_ag]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_ah]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_ai]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_aj]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_ak]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_al]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_am]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_an]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_ao]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_ap]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_aq]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_ar]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_as]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_at]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_au]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_av]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_aw]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_ax]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_ay]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_az]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_ba]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_bb]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_bc]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_bd]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_be]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_bf]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_bg]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_bh]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_bi]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_bj]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_bk]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_bl]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_bm]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_bn]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_bo]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_bp]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_bq]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_br]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_bs]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_bt]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_bu]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_bv]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_bw]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_bx]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_by"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_bz]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_ca]"},{"selector":"@e[score_text_value_min=32,score_text_value=126,tag=btext_cb]"}]
- scoreboard players tag @e[type=armor_stand,tag=cursor_longprint] remove cursor_longprint
- @op glass
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:glass -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players set @e[type=area_effect_cloud,tag=cell,c=1] cell_value 0
- @op hay_block
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:hay_block -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players tag @e[type=area_effect_cloud,tag=cell,c=1] add cell_write
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:hay_block -1 execute @e[type=armor_stand,tag=needle] ~ ~ ~ scoreboard players tag @e[type=area_effect_cloud,tag=drive,c=1] add drive_receive
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:hay_block -1 scoreboard players operation @e[type=area_effect_cloud,tag=drive_receive] drive_value = @e[type=area_effect_cloud,tag=cell_write] cell_value
- scoreboard players tag @e[tag=cell_write] remove cell_write
- scoreboard players tag @e[tag=drive_receive] remove drive_receive
- @op bone_block
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:bone_block -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players tag @e[type=area_effect_cloud,tag=cell,c=1] add cell_receive
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:bone_block -1 execute @e[type=armor_stand,tag=needle] ~ ~ ~ scoreboard players tag @e[type=area_effect_cloud,tag=drive,c=1] add drive_write
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:bone_block -1 scoreboard players operation @e[type=area_effect_cloud,tag=cell_receive] cell_value = @e[type=area_effect_cloud,tag=drive_write] drive_value
- scoreboard players tag @e[tag=drive_write] remove drive_write
- scoreboard players tag @e[tag=cell_receive] remove cell_receive
- @op prismarine
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:prismarine -1 tp @e[type=armor_stand,tag=needle] ~1 ~ ~
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:prismarine -1 scoreboard players add @e[type=armor_stand,tag=needle] needle_pos 1
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:prismarine -1 scoreboard players set @e[type=armor_stand,tag=needle] needle_found 0
- execute @e[type=armor_stand,tag=needle,score_needle_found_min=0,score_needle_found=0] ~ ~ ~ execute @e[type=area_effect_cloud,tag=drive,r=0] ~ ~ ~ scoreboard players set @e[type=armor_stand,tag=needle] needle_found 1
- execute @e[type=armor_stand,tag=needle,score_needle_found_min=0,score_needle_found=0] ~ ~ ~ summon area_effect_cloud ~ ~ ~ {Duration:2000000000,Tags:["new_drive","drive"]}
- scoreboard players set @e[type=area_effect_cloud,tag=new_drive] drive_value 0
- scoreboard players tag @e[type=area_effect_cloud,tag=new_drive] remove new_drive
- scoreboard players set @e[type=armor_stand,tag=needle,score_needle_found_min=0] needle_found -1
- @op hardened_clay
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:hardened_clay -1 tp @e[type=armor_stand,tag=needle] ~-1 ~ ~
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:hardened_clay -1 scoreboard players remove @e[type=armor_stand,tag=needle] needle_pos 1
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:hardened_clay -1 scoreboard players set @e[type=armor_stand,tag=needle] needle_found 0
- execute @e[type=armor_stand,tag=needle,score_needle_found_min=0,score_needle_found=0] ~ ~ ~ execute @e[type=area_effect_cloud,tag=drive,r=0] ~ ~ ~ scoreboard players set @e[type=armor_stand,tag=needle] needle_found 1
- execute @e[type=armor_stand,tag=needle,score_needle_found_min=0,score_needle_found=0] ~ ~ ~ summon area_effect_cloud ~ ~ ~ {Duration:2000000000,Tags:["new_drive","drive"]}
- scoreboard players set @e[type=area_effect_cloud,tag=new_drive] drive_value 0
- scoreboard players tag @e[type=area_effect_cloud,tag=new_drive] remove new_drive
- scoreboard players set @e[type=armor_stand,tag=needle,score_needle_found_min=0] needle_found -1
- @op quartz_ore
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:quartz_ore -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players tag @e[type=area_effect_cloud,tag=cell,c=1] add cell_write
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:quartz_ore -1 execute @e[type=armor_stand,tag=memp] ~ ~ ~ scoreboard players tag @e[type=area_effect_cloud,tag=mem,c=1] add mem_receive
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:quartz_ore -1 scoreboard players operation @e[type=area_effect_cloud,tag=mem_receive] mem_value = @e[type=area_effect_cloud,tag=cell_write] cell_value
- scoreboard players tag @e[tag=cell_write] remove cell_write
- scoreboard players tag @e[tag=mem_receive] remove mem_receive
- @op slime
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:slime -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players tag @e[type=area_effect_cloud,tag=cell,c=1] add cell_receive
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:slime -1 execute @e[type=armor_stand,tag=memp] ~ ~ ~ scoreboard players tag @e[type=area_effect_cloud,tag=mem,c=1] add mem_write
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:slime -1 scoreboard players operation @e[type=area_effect_cloud,tag=cell_receive] cell_value = @e[type=area_effect_cloud,tag=mem_write] mem_value
- scoreboard players tag @e[tag=mem_write] remove mem_write
- scoreboard players tag @e[tag=cell_receive] remove cell_receive
- @op magma
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:magma -1 tp @e[type=armor_stand,tag=memp] ~1 ~ ~
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:magma -1 scoreboard players add @e[type=armor_stand,tag=memp] memp_pos 1
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:magma -1 scoreboard players set @e[type=armor_stand,tag=memp] memp_found 0
- execute @e[type=armor_stand,tag=memp,score_memp_found_min=0,score_memp_found=0] ~ ~ ~ execute @e[type=area_effect_cloud,tag=mem,r=0] ~ ~ ~ scoreboard players set @e[type=armor_stand,tag=memp] memp_found 1
- execute @e[type=armor_stand,tag=memp,score_memp_found_min=0,score_memp_found=0] ~ ~ ~ summon area_effect_cloud ~ ~ ~ {Duration:2000000000,Tags:["new_mem","mem"]}
- scoreboard players set @e[type=area_effect_cloud,tag=new_mem] mem_value 0
- scoreboard players tag @e[type=area_effect_cloud,tag=new_mem] remove new_mem
- scoreboard players set @e[type=armor_stand,tag=memp,score_memp_found_min=0] memp_found -1
- @op end_bricks
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:end_bricks -1 tp @e[type=armor_stand,tag=memp] ~-1 ~ ~
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:end_bricks -1 scoreboard players remove @e[type=armor_stand,tag=memp] memp_pos 1
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:end_bricks -1 scoreboard players set @e[type=armor_stand,tag=memp] memp_found 0
- execute @e[type=armor_stand,tag=memp,score_memp_found_min=0,score_memp_found=0] ~ ~ ~ execute @e[type=area_effect_cloud,tag=mem,r=0] ~ ~ ~ scoreboard players set @e[type=armor_stand,tag=memp] memp_found 1
- execute @e[type=armor_stand,tag=memp,score_memp_found_min=0,score_memp_found=0] ~ ~ ~ summon area_effect_cloud ~ ~ ~ {Duration:2000000000,Tags:["new_mem","mem"]}
- scoreboard players set @e[type=area_effect_cloud,tag=new_mem] mem_value 0
- scoreboard players tag @e[type=area_effect_cloud,tag=new_mem] remove new_mem
- scoreboard players set @e[type=armor_stand,tag=memp,score_memp_found_min=0] memp_found -1
- @op crafting_table
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:crafting_table -1 summon armor_stand ~ ~ ~ {Marker:1b,Invisible:1b,Invulnerable:1b,NoGravity:1b,CustomName:"Block Placer",CustomNameVisible:1b,Tags:["block_placer"]}
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:crafting_table -1 scoreboard players tag @e[type=armor_stand,tag=pointer] add do_blockplace
- execute @e[type=armor_stand,tag=do_blockplace] ~1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=block_placer] block_cache_x = @e[type=area_effect_cloud,tag=cell,r=0]
- execute @e[type=armor_stand,tag=do_blockplace] ~2 ~ ~ scoreboard players operation @e[type=armor_stand,tag=block_placer] block_cache_y = @e[type=area_effect_cloud,tag=cell,r=0]
- execute @e[type=armor_stand,tag=do_blockplace] ~3 ~ ~ scoreboard players operation @e[type=armor_stand,tag=block_placer] block_cache_z = @e[type=area_effect_cloud,tag=cell,r=0]
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=33554432] ~33554432 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=33554432] block_cache_x 33554432
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=16777216] ~16777216 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=16777216] block_cache_x 16777216
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=8388608] ~8388608 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=8388608] block_cache_x 8388608
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=4194304] ~4194304 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=4194304] block_cache_x 4194304
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=2097152] ~2097152 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=2097152] block_cache_x 2097152
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=1048576] ~1048576 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=1048576] block_cache_x 1048576
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=524288] ~524288 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=524288] block_cache_x 524288
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=262144] ~262144 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=262144] block_cache_x 262144
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=131072] ~131072 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=131072] block_cache_x 131072
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=65536] ~65536 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=65536] block_cache_x 65536
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=32768] ~32768 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=32768] block_cache_x 32768
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=16384] ~16384 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=16384] block_cache_x 16384
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=8192] ~8192 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=8192] block_cache_x 8192
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=4096] ~4096 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=4096] block_cache_x 4096
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=2048] ~2048 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=2048] block_cache_x 2048
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=1024] ~1024 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=1024] block_cache_x 1024
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=512] ~512 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=512] block_cache_x 512
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=256] ~256 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=256] block_cache_x 256
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=128] ~128 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=128] block_cache_x 128
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=64] ~64 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=64] block_cache_x 64
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=32] ~32 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=32] block_cache_x 32
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=16] ~16 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=16] block_cache_x 16
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=8] ~8 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=8] block_cache_x 8
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=4] ~4 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=4] block_cache_x 4
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=2] ~2 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=2] block_cache_x 2
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=1] ~1 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=1] block_cache_x 1
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-33554432] ~-33554432 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-33554432] block_cache_x 33554432
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-16777216] ~-16777216 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-16777216] block_cache_x 16777216
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-8388608] ~-8388608 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-8388608] block_cache_x 8388608
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-4194304] ~-4194304 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-4194304] block_cache_x 4194304
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-2097152] ~-2097152 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-2097152] block_cache_x 2097152
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-1048576] ~-1048576 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-1048576] block_cache_x 1048576
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-524288] ~-524288 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-524288] block_cache_x 524288
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-262144] ~-262144 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-262144] block_cache_x 262144
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-131072] ~-131072 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-131072] block_cache_x 131072
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-65536] ~-65536 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-65536] block_cache_x 65536
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-32768] ~-32768 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-32768] block_cache_x 32768
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-16384] ~-16384 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-16384] block_cache_x 16384
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-8192] ~-8192 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-8192] block_cache_x 8192
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-4096] ~-4096 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-4096] block_cache_x 4096
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-2048] ~-2048 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-2048] block_cache_x 2048
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-1024] ~-1024 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-1024] block_cache_x 1024
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-512] ~-512 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-512] block_cache_x 512
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-256] ~-256 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-256] block_cache_x 256
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-128] ~-128 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-128] block_cache_x 128
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-64] ~-64 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-64] block_cache_x 64
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-32] ~-32 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-32] block_cache_x 32
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-16] ~-16 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-16] block_cache_x 16
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-8] ~-8 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-8] block_cache_x 8
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-4] ~-4 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-4] block_cache_x 4
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-2] ~-2 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-2] block_cache_x 2
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-1] ~-1 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-1] block_cache_x 1
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=8192] ~ ~8192 ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=8192] block_cache_y 8192
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=4096] ~ ~4096 ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=4096] block_cache_y 4096
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=2048] ~ ~2048 ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=2048] block_cache_y 2048
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=1024] ~ ~1024 ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=1024] block_cache_y 1024
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=512] ~ ~512 ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=512] block_cache_y 512
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=256] ~ ~256 ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=256] block_cache_y 256
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=128] ~ ~128 ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=128] block_cache_y 128
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=64] ~ ~64 ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=64] block_cache_y 64
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=32] ~ ~32 ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=32] block_cache_y 32
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=16] ~ ~16 ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=16] block_cache_y 16
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=8] ~ ~8 ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=8] block_cache_y 8
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=4] ~ ~4 ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=4] block_cache_y 4
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=2] ~ ~2 ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=2] block_cache_y 2
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=1] ~ ~1 ~
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=1] block_cache_y 1
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-8192] ~ ~-8192 ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-8192] block_cache_y 8192
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-4096] ~ ~-4096 ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-4096] block_cache_y 4096
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-2048] ~ ~-2048 ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-2048] block_cache_y 2048
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-1024] ~ ~-1024 ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-1024] block_cache_y 1024
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-512] ~ ~-512 ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-512] block_cache_y 512
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-256] ~ ~-256 ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-256] block_cache_y 256
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-128] ~ ~-128 ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-128] block_cache_y 128
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-64] ~ ~-64 ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-64] block_cache_y 64
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-32] ~ ~-32 ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-32] block_cache_y 32
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-16] ~ ~-16 ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-16] block_cache_y 16
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-8] ~ ~-8 ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-8] block_cache_y 8
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-4] ~ ~-4 ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-4] block_cache_y 4
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-2] ~ ~-2 ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-2] block_cache_y 2
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-1] ~ ~-1 ~
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-1] block_cache_y 1
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=33554432] ~ ~ ~33554432
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=33554432] block_cache_z 33554432
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=16777216] ~ ~ ~16777216
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=16777216] block_cache_z 16777216
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=8388608] ~ ~ ~8388608
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=8388608] block_cache_z 8388608
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=4194304] ~ ~ ~4194304
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=4194304] block_cache_z 4194304
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=2097152] ~ ~ ~2097152
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=2097152] block_cache_z 2097152
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=1048576] ~ ~ ~1048576
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=1048576] block_cache_z 1048576
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=524288] ~ ~ ~524288
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=524288] block_cache_z 524288
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=262144] ~ ~ ~262144
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=262144] block_cache_z 262144
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=131072] ~ ~ ~131072
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=131072] block_cache_z 131072
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=65536] ~ ~ ~65536
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=65536] block_cache_z 65536
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=32768] ~ ~ ~32768
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=32768] block_cache_z 32768
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=16384] ~ ~ ~16384
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=16384] block_cache_z 16384
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=8192] ~ ~ ~8192
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=8192] block_cache_z 8192
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=4096] ~ ~ ~4096
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=4096] block_cache_z 4096
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=2048] ~ ~ ~2048
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=2048] block_cache_z 2048
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=1024] ~ ~ ~1024
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=1024] block_cache_z 1024
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=512] ~ ~ ~512
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=512] block_cache_z 512
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=256] ~ ~ ~256
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=256] block_cache_z 256
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=128] ~ ~ ~128
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=128] block_cache_z 128
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=64] ~ ~ ~64
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=64] block_cache_z 64
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=32] ~ ~ ~32
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=32] block_cache_z 32
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=16] ~ ~ ~16
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=16] block_cache_z 16
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=8] ~ ~ ~8
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=8] block_cache_z 8
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=4] ~ ~ ~4
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=4] block_cache_z 4
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=2] ~ ~ ~2
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=2] block_cache_z 2
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=1] ~ ~ ~1
- scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=1] block_cache_z 1
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-33554432] ~ ~ ~-33554432
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-33554432] block_cache_z 33554432
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-16777216] ~ ~ ~-16777216
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-16777216] block_cache_z 16777216
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-8388608] ~ ~ ~-8388608
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-8388608] block_cache_z 8388608
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-4194304] ~ ~ ~-4194304
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-4194304] block_cache_z 4194304
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-2097152] ~ ~ ~-2097152
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-2097152] block_cache_z 2097152
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-1048576] ~ ~ ~-1048576
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-1048576] block_cache_z 1048576
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-524288] ~ ~ ~-524288
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-524288] block_cache_z 524288
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-262144] ~ ~ ~-262144
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-262144] block_cache_z 262144
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-131072] ~ ~ ~-131072
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-131072] block_cache_z 131072
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-65536] ~ ~ ~-65536
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-65536] block_cache_z 65536
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-32768] ~ ~ ~-32768
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-32768] block_cache_z 32768
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-16384] ~ ~ ~-16384
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-16384] block_cache_z 16384
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-8192] ~ ~ ~-8192
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-8192] block_cache_z 8192
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-4096] ~ ~ ~-4096
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-4096] block_cache_z 4096
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-2048] ~ ~ ~-2048
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-2048] block_cache_z 2048
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-1024] ~ ~ ~-1024
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-1024] block_cache_z 1024
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-512] ~ ~ ~-512
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-512] block_cache_z 512
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-256] ~ ~ ~-256
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-256] block_cache_z 256
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-128] ~ ~ ~-128
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-128] block_cache_z 128
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-64] ~ ~ ~-64
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-64] block_cache_z 64
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-32] ~ ~ ~-32
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-32] block_cache_z 32
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-16] ~ ~ ~-16
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-16] block_cache_z 16
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-8] ~ ~ ~-8
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-8] block_cache_z 8
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-4] ~ ~ ~-4
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-4] block_cache_z 4
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-2] ~ ~ ~-2
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-2] block_cache_z 2
- tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-1] ~ ~ ~-1
- scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-1] block_cache_z 1
- execute @e[type=armor_stand,tag=do_blockplace] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=block_placer] block_cache_b = @e[type=area_effect_cloud,tag=cell,c=1] cell_value
- execute @e[type=armor_stand,tag=block_placer] ~ ~ ~ execute @e[type=armor_stand,tag=cursor] ~ ~ ~ summon area_effect_cloud ~ ~ ~ {Duration:2000000000,Age:-2000000000,Particle:take,Tags:["b_chunkloader"]}
- execute @e[type=armor_stand,tag=block_placer] ~ ~ ~ spreadplayers ~ ~ 0 1 false @e[type=area_effect_cloud,tag=b_chunkloader]
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=0,score_block_cache_b=0] ~ ~ ~ setblock ~ ~ ~ air 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=1,score_block_cache_b=1] ~ ~ ~ setblock ~ ~ ~ stone 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=2,score_block_cache_b=3] ~ ~ ~ setblock ~ ~ ~ cobblestone 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=3,score_block_cache_b=3] ~ ~ ~ setblock ~ ~ ~ diamond_block 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=4,score_block_cache_b=4] ~ ~ ~ setblock ~ ~ ~ obsidian 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=5,score_block_cache_b=5] ~ ~ ~ setblock ~ ~ ~ piston 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=6,score_block_cache_b=6] ~ ~ ~ setblock ~ ~ ~ sticky_piston 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=7,score_block_cache_b=7] ~ ~ ~ setblock ~ ~ ~ quartz_block 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=8,score_block_cache_b=8] ~ ~ ~ setblock ~ ~ ~ sandstone 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=9,score_block_cache_b=9] ~ ~ ~ setblock ~ ~ ~ gold_ore 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=10,score_block_cache_b=10] ~ ~ ~ setblock ~ ~ ~ iron_ore 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=11,score_block_cache_b=11] ~ ~ ~ setblock ~ ~ ~ coal_ore 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=12,score_block_cache_b=12] ~ ~ ~ setblock ~ ~ ~ lapis_ore 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=13,score_block_cache_b=13] ~ ~ ~ setblock ~ ~ ~ diamond_ore 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=14,score_block_cache_b=14] ~ ~ ~ setblock ~ ~ ~ redstone_ore 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=15,score_block_cache_b=15] ~ ~ ~ setblock ~ ~ ~ redstone_block 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=16,score_block_cache_b=16] ~ ~ ~ setblock ~ ~ ~ netherrack 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=17,score_block_cache_b=17] ~ ~ ~ setblock ~ ~ ~ end_stone 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=18,score_block_cache_b=18] ~ ~ ~ setblock ~ ~ ~ brick_block 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=19,score_block_cache_b=19] ~ ~ ~ setblock ~ ~ ~ sponge 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=20,score_block_cache_b=20] ~ ~ ~ setblock ~ ~ ~ bookshelf 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=21,score_block_cache_b=21] ~ ~ ~ setblock ~ ~ ~ nether_brick 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=22,score_block_cache_b=22] ~ ~ ~ setblock ~ ~ ~ iron_block 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=23,score_block_cache_b=23] ~ ~ ~ setblock ~ ~ ~ gold_block 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=24,score_block_cache_b=24] ~ ~ ~ setblock ~ ~ ~ clay 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=25,score_block_cache_b=25] ~ ~ ~ setblock ~ ~ ~ melon_block 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=26,score_block_cache_b=26] ~ ~ ~ setblock ~ ~ ~ coal_block 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=27,score_block_cache_b=27] ~ ~ ~ setblock ~ ~ ~ lapis_block 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=28,score_block_cache_b=28] ~ ~ ~ setblock ~ ~ ~ planks 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=29,score_block_cache_b=29] ~ ~ ~ setblock ~ ~ ~ log 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=30,score_block_cache_b=30] ~ ~ ~ setblock ~ ~ ~ red_sandstone 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=31,score_block_cache_b=31] ~ ~ ~ setblock ~ ~ ~ log2 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=32,score_block_cache_b=32] ~ ~ ~ setblock ~ ~ ~ snow 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=33,score_block_cache_b=33] ~ ~ ~ setblock ~ ~ ~ packed_ice 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=34,score_block_cache_b=34] ~ ~ ~ setblock ~ ~ ~ nether_wart_block 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=35,score_block_cache_b=35] ~ ~ ~ setblock ~ ~ ~ red_nether_brick 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=36,score_block_cache_b=36] ~ ~ ~ setblock ~ ~ ~ mossy_cobblestone 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=37,score_block_cache_b=37] ~ ~ ~ setblock ~ ~ ~ stonebrick 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=38,score_block_cache_b=38] ~ ~ ~ setblock ~ ~ ~ glass 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=39,score_block_cache_b=39] ~ ~ ~ setblock ~ ~ ~ hay_block 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=40,score_block_cache_b=40] ~ ~ ~ setblock ~ ~ ~ bone_block 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=41,score_block_cache_b=41] ~ ~ ~ setblock ~ ~ ~ prismarine 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=42,score_block_cache_b=42] ~ ~ ~ setblock ~ ~ ~ hardened_clay 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=43,score_block_cache_b=43] ~ ~ ~ setblock ~ ~ ~ magma 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=44,score_block_cache_b=44] ~ ~ ~ setblock ~ ~ ~ end_bricks 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=45,score_block_cache_b=45] ~ ~ ~ setblock ~ ~ ~ slime 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=46,score_block_cache_b=46] ~ ~ ~ setblock ~ ~ ~ quartz_ore 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=47,score_block_cache_b=47] ~ ~ ~ setblock ~ ~ ~ crafting_table 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=48,score_block_cache_b=48] ~ ~ ~ setblock ~ ~ ~ dirt 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=49,score_block_cache_b=49] ~ ~ ~ setblock ~ ~ ~ wool 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=50,score_block_cache_b=50] ~ ~ ~ setblock ~ ~ ~ stained_hardened_clay 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=51,score_block_cache_b=51] ~ ~ ~ setblock ~ ~ ~ sea_lantern 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=52,score_block_cache_b=52] ~ ~ ~ setblock ~ ~ ~ purpur_block 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=53,score_block_cache_b=53] ~ ~ ~ setblock ~ ~ ~ purpur_pillar 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=54,score_block_cache_b=54] ~ ~ ~ setblock ~ ~ ~ emerald_ore 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=55,score_block_cache_b=55] ~ ~ ~ setblock ~ ~ ~ stained_glass 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=56,score_block_cache_b=56] ~ ~ ~ setblock ~ ~ ~ leaves 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=56,score_block_cache_b=56] ~ ~ ~ setblock ~ ~ ~ leaves2 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=56,score_block_cache_b=56] ~ ~ ~ setblock ~ ~ ~ stone_slab 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=56,score_block_cache_b=56] ~ ~ ~ setblock ~ ~ ~ wooden_slab 0 replace
- execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=56,score_block_cache_b=56] ~ ~ ~ setblock ~ ~ ~ purpur_slab 0 replace
- kill @e[tag=block_placer]
- kill @e[tag=b_chunkloader]
- scoreboard players tag @e[tag=do_blockplace] remove do_blockplace
- @op dirt
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:dirt -1 execute @e[tag=pointer,type=armor_stand] ~ ~ ~ scoreboard players operation @e[tag=cell,type=area_effect_cloud,c=1] cell_value = @r cursor_nio
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:dirt -1 execute @e[tag=pointer,type=armor_stand] ~ ~ ~ scoreboard players operation @e[tag=cell,type=area_effect_cloud,c=1] cell_value = @r[score_cursor_nio_min=1] cursor_nio
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:dirt -1 execute @e[tag=pointer,type=armor_stand] ~ ~ ~ scoreboard players operation @e[tag=cell,type=area_effect_cloud,c=1] cell_value = @r[score_cursor_nio=-1] cursor_nio
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:dirt -1 scoreboard players reset * cursor_nio
- @op wool
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:wool -1 scoreboard players add @e[type=area_effect_cloud,tag=cmarker] cmarker_index 1
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:wool -1 summon area_effect_cloud ~ ~ ~ {Duration:2000000000,Age:-2000000000,Particle:take,Tags:["cmarker","new_cmarker"]}
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:wool -1 scoreboard players set @e[type=area_effect_cloud,tag=new_cmarker] cmarker_index 0
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:wool -1 scoreboard players operation @e[type=area_effect_cloud,tag=new_cmarker] cmarker_dir = @e[type=armor_stand,tag=cursor] cursor_direction
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:wool -1 scoreboard players tag @e[type=area_effect_cloud,tag=new_cmarker] remove new_cmarker
- @op stained_hardened_clay
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:stained_hardened_clay -1 kill @e[type=area_effect_cloud,tag=cmarker,score_cmarker_index_min=0,score_cmarker_index=0]
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:stained_hardened_clay -1 scoreboard players remove @e[type=area_effect_cloud,tag=cmarker] cmarker_index 1
- @op sea_lantern
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:sea_lantern -1 scoreboard players operation @e[type=armor_stand,tag=cursor] cursor_direction = @e[type=area_effect_cloud,tag=cmarker,score_cmarker_index_min=0,score_cmarker_index=0] cmarker_dir
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:sea_lantern -1 tp @e[type=armor_stand,tag=cursor] @e[type=area_effect_cloud,tag=cmarker,score_cmarker_index_min=0,score_cmarker_index=0]
- kill @e[type=area_effect_cloud,tag=cmarker,score_cmarker_index_min=0,score_cmarker_index=0]
- scoreboard players remove @e[type=area_effect_cloud,tag=cmarker] cmarker_index 1
- @op purpur_block
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:purpur_block -1 scoreboard players tag @e[type=armor_stand,tag=needle] add needle_tp
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:purpur_block -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=needle_tp] block_cache_x = @e[type=area_effect_cloud,tag=cell,r=0] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:purpur_block -1 scoreboard players operation @e[type=armor_stand,tag=needle] needle_pos = @e[type=armor_stand,tag=needle] block_cache_x
- tp @e[type=armor_stand,tag=needle_tp] @e[c=1,type=area_effect_cloud,tag=needle_start]
- tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=1024] ~1024 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=1024] block_cache_x 1024
- tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=512] ~512 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=512] block_cache_x 512
- tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=256] ~256 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=256] block_cache_x 256
- tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=128] ~128 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=128] block_cache_x 128
- tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=64] ~64 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=64] block_cache_x 64
- tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=32] ~32 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=32] block_cache_x 32
- tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=16] ~16 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=16] block_cache_x 16
- tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=8] ~8 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=8] block_cache_x 8
- tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=4] ~4 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=4] block_cache_x 4
- tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=2] ~2 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=2] block_cache_x 2
- tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=1] ~1 ~ ~
- tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-1024] ~-1024 ~ ~
- scoreboard players add @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-1024] block_cache_x 1024
- tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-512] ~-512 ~ ~
- scoreboard players add @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-512] block_cache_x 512
- tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-256] ~-256 ~ ~
- scoreboard players add @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-256] block_cache_x 256
- tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-128] ~-128 ~ ~
- scoreboard players add @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-128] block_cache_x 128
- tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-64] ~-64 ~ ~
- scoreboard players add @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-64] block_cache_x 64
- tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-32] ~-32 ~ ~
- scoreboard players add @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-32] block_cache_x 32
- tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-16] ~-16 ~ ~
- scoreboard players add @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-16] block_cache_x 16
- tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-8] ~-8 ~ ~
- scoreboard players add @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-8] block_cache_x 8
- tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-4] ~-4 ~ ~
- scoreboard players add @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-4] block_cache_x 4
- tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-2] ~-2 ~ ~
- scoreboard players add @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-2] block_cache_x 2
- tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-1] ~-1 ~ ~
- scoreboard players add @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-1] block_cache_x 1
- scoreboard players reset @e[tag=needle_tp] block_cache_x
- scoreboard players tag @e[type=armor_stand,tag=needle_tp] remove needle_tp
- @op purpur_pillar
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:purpur_pillar -1 scoreboard players tag @e[type=armor_stand,tag=memp] add memp_tp
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:purpur_pillar -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=memp_tp] block_cache_x = @e[type=area_effect_cloud,tag=cell,r=0] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:purpur_pillar -1 scoreboard players operation @e[type=armor_stand,tag=memp] memp_pos = @e[type=armor_stand,tag=memp] block_cache_x
- tp @e[type=armor_stand,tag=memp_tp] @e[c=1,type=area_effect_cloud,tag=memp_start]
- tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=1024] ~1024 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=1024] block_cache_x 1024
- tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=512] ~512 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=512] block_cache_x 512
- tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=256] ~256 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=256] block_cache_x 256
- tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=128] ~128 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=128] block_cache_x 128
- tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=64] ~64 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=64] block_cache_x 64
- tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=32] ~32 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=32] block_cache_x 32
- tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=16] ~16 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=16] block_cache_x 16
- tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=8] ~8 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=8] block_cache_x 8
- tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=4] ~4 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=4] block_cache_x 4
- tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=2] ~2 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=2] block_cache_x 2
- tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=1] ~1 ~ ~
- tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-1024] ~-1024 ~ ~
- scoreboard players add @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-1024] block_cache_x 1024
- tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-512] ~-512 ~ ~
- scoreboard players add @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-512] block_cache_x 512
- tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-256] ~-256 ~ ~
- scoreboard players add @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-256] block_cache_x 256
- tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-128] ~-128 ~ ~
- scoreboard players add @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-128] block_cache_x 128
- tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-64] ~-64 ~ ~
- scoreboard players add @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-64] block_cache_x 64
- tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-32] ~-32 ~ ~
- scoreboard players add @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-32] block_cache_x 32
- tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-16] ~-16 ~ ~
- scoreboard players add @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-16] block_cache_x 16
- tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-8] ~-8 ~ ~
- scoreboard players add @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-8] block_cache_x 8
- tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-4] ~-4 ~ ~
- scoreboard players add @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-4] block_cache_x 4
- tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-2] ~-2 ~ ~
- scoreboard players add @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-2] block_cache_x 2
- tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-1] ~-1 ~ ~
- scoreboard players add @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-1] block_cache_x 1
- scoreboard players reset @e[tag=memp_tp] block_cache_x
- scoreboard players tag @e[type=armor_stand,tag=memp_tp] remove memp_tp
- @op emerald_ore
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:emerald_ore -1 scoreboard players tag @e[type=armor_stand,tag=pointer] add pointer_tp
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:emerald_ore -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=pointer_tp] block_cache_x = @e[type=area_effect_cloud,tag=cell,r=0] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:emerald_ore -1 scoreboard players operation @e[type=armor_stand,tag=pointer] pointer_pos = @e[type=armor_stand,tag=pointer] block_cache_x
- tp @e[type=armor_stand,tag=pointer_tp] @e[c=1,type=area_effect_cloud,tag=pointer_start]
- tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=1024] ~1024 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=1024] block_cache_x 1024
- tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=512] ~512 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=512] block_cache_x 512
- tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=256] ~256 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=256] block_cache_x 256
- tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=128] ~128 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=128] block_cache_x 128
- tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=64] ~64 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=64] block_cache_x 64
- tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=32] ~32 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=32] block_cache_x 32
- tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=16] ~16 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=16] block_cache_x 16
- tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=8] ~8 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=8] block_cache_x 8
- tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=4] ~4 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=4] block_cache_x 4
- tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=2] ~2 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=2] block_cache_x 2
- tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=1] ~1 ~ ~
- tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-1024] ~-1024 ~ ~
- scoreboard players add @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-1024] block_cache_x 1024
- tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-512] ~-512 ~ ~
- scoreboard players add @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-512] block_cache_x 512
- tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-256] ~-256 ~ ~
- scoreboard players add @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-256] block_cache_x 256
- tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-128] ~-128 ~ ~
- scoreboard players add @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-128] block_cache_x 128
- tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-64] ~-64 ~ ~
- scoreboard players add @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-64] block_cache_x 64
- tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-32] ~-32 ~ ~
- scoreboard players add @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-32] block_cache_x 32
- tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-16] ~-16 ~ ~
- scoreboard players add @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-16] block_cache_x 16
- tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-8] ~-8 ~ ~
- scoreboard players add @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-8] block_cache_x 8
- tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-4] ~-4 ~ ~
- scoreboard players add @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-4] block_cache_x 4
- tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-2] ~-2 ~ ~
- scoreboard players add @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-2] block_cache_x 2
- tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-1] ~-1 ~ ~
- scoreboard players add @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-1] block_cache_x 1
- scoreboard players reset @e[tag=pointer_tp] block_cache_x
- scoreboard players tag @e[type=armor_stand,tag=pointer_tp] remove pointer_tp
- @op stained_glass
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:stained_glass -1 scoreboard players tag @e[type=armor_stand,tag=cursor] add cursor_tp
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:stained_glass -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=cursor_tp] block_cache_x = @e[type=area_effect_cloud,tag=cell,r=0] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:stained_glass -1 execute @e[type=armor_stand,tag=pointer] ~1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=cursor_tp] block_cache_y = @e[type=area_effect_cloud,tag=cell,r=0] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:stained_glass -1 execute @e[type=armor_stand,tag=pointer] ~2 ~ ~ scoreboard players operation @e[type=armor_stand,tag=cursor_tp] block_cache_z = @e[type=area_effect_cloud,tag=cell,r=0] cell_value
- tp @e[type=armor_stand,tag=cursor_tp] 0 0 0
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=33554432] ~33554432 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=33554432] block_cache_x 33554432
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16777216] ~16777216 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16777216] block_cache_x 16777216
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8388608] ~8388608 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8388608] block_cache_x 8388608
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4194304] ~4194304 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4194304] block_cache_x 4194304
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2097152] ~2097152 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2097152] block_cache_x 2097152
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1048576] ~1048576 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1048576] block_cache_x 1048576
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=524288] ~524288 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=524288] block_cache_x 524288
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=262144] ~262144 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=262144] block_cache_x 262144
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=131072] ~131072 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=131072] block_cache_x 131072
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=65536] ~65536 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=65536] block_cache_x 65536
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=32768] ~32768 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=32768] block_cache_x 32768
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16384] ~16384 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16384] block_cache_x 16384
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8192] ~8192 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8192] block_cache_x 8192
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4096] ~4096 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4096] block_cache_x 4096
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2048] ~2048 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2048] block_cache_x 2048
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1024] ~1024 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1024] block_cache_x 1024
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=512] ~512 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=512] block_cache_x 512
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=256] ~256 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=256] block_cache_x 256
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=128] ~128 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=128] block_cache_x 128
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=64] ~64 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=64] block_cache_x 64
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=32] ~32 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=32] block_cache_x 32
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16] ~16 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16] block_cache_x 16
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8] ~8 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8] block_cache_x 8
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4] ~4 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4] block_cache_x 4
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2] ~2 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2] block_cache_x 2
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1] ~1 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1] block_cache_x 1
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-33554432] ~-33554432 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-33554432] block_cache_x 33554432
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16777216] ~-16777216 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16777216] block_cache_x 16777216
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8388608] ~-8388608 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8388608] block_cache_x 8388608
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4194304] ~-4194304 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4194304] block_cache_x 4194304
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2097152] ~-2097152 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2097152] block_cache_x 2097152
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1048576] ~-1048576 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1048576] block_cache_x 1048576
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-524288] ~-524288 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-524288] block_cache_x 524288
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-262144] ~-262144 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-262144] block_cache_x 262144
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-131072] ~-131072 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-131072] block_cache_x 131072
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-65536] ~-65536 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-65536] block_cache_x 65536
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-32768] ~-32768 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-32768] block_cache_x 32768
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16384] ~-16384 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16384] block_cache_x 16384
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8192] ~-8192 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8192] block_cache_x 8192
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4096] ~-4096 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4096] block_cache_x 4096
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2048] ~-2048 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2048] block_cache_x 2048
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1024] ~-1024 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1024] block_cache_x 1024
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-512] ~-512 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-512] block_cache_x 512
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-256] ~-256 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-256] block_cache_x 256
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-128] ~-128 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-128] block_cache_x 128
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-64] ~-64 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-64] block_cache_x 64
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-32] ~-32 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-32] block_cache_x 32
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16] ~-16 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16] block_cache_x 16
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8] ~-8 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8] block_cache_x 8
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4] ~-4 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4] block_cache_x 4
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2] ~-2 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2] block_cache_x 2
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1] ~-1 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1] block_cache_x 1
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=8192] ~ ~8192 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=8192] block_cache_y 8192
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=4096] ~ ~4096 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=4096] block_cache_y 4096
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=2048] ~ ~2048 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=2048] block_cache_y 2048
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=1024] ~ ~1024 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=1024] block_cache_y 1024
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=512] ~ ~512 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=512] block_cache_y 512
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=256] ~ ~256 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=256] block_cache_y 256
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=128] ~ ~128 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=128] block_cache_y 128
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=64] ~ ~64 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=64] block_cache_y 64
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=32] ~ ~32 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=32] block_cache_y 32
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=16] ~ ~16 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=16] block_cache_y 16
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=8] ~ ~8 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=8] block_cache_y 8
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=4] ~ ~4 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=4] block_cache_y 4
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=2] ~ ~2 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=2] block_cache_y 2
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=1] ~ ~1 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=1] block_cache_y 1
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-8192] ~ ~-8192 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-8192] block_cache_y 8192
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-4096] ~ ~-4096 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-4096] block_cache_y 4096
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-2048] ~ ~-2048 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-2048] block_cache_y 2048
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-1024] ~ ~-1024 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-1024] block_cache_y 1024
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-512] ~ ~-512 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-512] block_cache_y 512
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-256] ~ ~-256 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-256] block_cache_y 256
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-128] ~ ~-128 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-128] block_cache_y 128
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-64] ~ ~-64 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-64] block_cache_y 64
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-32] ~ ~-32 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-32] block_cache_y 32
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-16] ~ ~-16 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-16] block_cache_y 16
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-8] ~ ~-8 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-8] block_cache_y 8
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-4] ~ ~-4 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-4] block_cache_y 4
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-2] ~ ~-2 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-2] block_cache_y 2
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-1] ~ ~-1 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-1] block_cache_y 1
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=33554432] ~ ~ ~33554432
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=33554432] block_cache_z 33554432
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16777216] ~ ~ ~16777216
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16777216] block_cache_z 16777216
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8388608] ~ ~ ~8388608
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8388608] block_cache_z 8388608
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4194304] ~ ~ ~4194304
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4194304] block_cache_z 4194304
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2097152] ~ ~ ~2097152
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2097152] block_cache_z 2097152
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1048576] ~ ~ ~1048576
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1048576] block_cache_z 1048576
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=524288] ~ ~ ~524288
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=524288] block_cache_z 524288
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=262144] ~ ~ ~262144
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=262144] block_cache_z 262144
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=131072] ~ ~ ~131072
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=131072] block_cache_z 131072
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=65536] ~ ~ ~65536
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=65536] block_cache_z 65536
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=32768] ~ ~ ~32768
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=32768] block_cache_z 32768
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16384] ~ ~ ~16384
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16384] block_cache_z 16384
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8192] ~ ~ ~8192
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8192] block_cache_z 8192
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4096] ~ ~ ~4096
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4096] block_cache_z 4096
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2048] ~ ~ ~2048
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2048] block_cache_z 2048
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1024] ~ ~ ~1024
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1024] block_cache_z 1024
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=512] ~ ~ ~512
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=512] block_cache_z 512
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=256] ~ ~ ~256
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=256] block_cache_z 256
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=128] ~ ~ ~128
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=128] block_cache_z 128
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=64] ~ ~ ~64
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=64] block_cache_z 64
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=32] ~ ~ ~32
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=32] block_cache_z 32
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16] ~ ~ ~16
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16] block_cache_z 16
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8] ~ ~ ~8
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8] block_cache_z 8
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4] ~ ~ ~4
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4] block_cache_z 4
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2] ~ ~ ~2
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2] block_cache_z 2
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1] ~ ~ ~1
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1] block_cache_z 1
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-33554432] ~ ~ ~-33554432
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-33554432] block_cache_z 33554432
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16777216] ~ ~ ~-16777216
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16777216] block_cache_z 16777216
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8388608] ~ ~ ~-8388608
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8388608] block_cache_z 8388608
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4194304] ~ ~ ~-4194304
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4194304] block_cache_z 4194304
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2097152] ~ ~ ~-2097152
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2097152] block_cache_z 2097152
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1048576] ~ ~ ~-1048576
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1048576] block_cache_z 1048576
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-524288] ~ ~ ~-524288
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-524288] block_cache_z 524288
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-262144] ~ ~ ~-262144
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-262144] block_cache_z 262144
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-131072] ~ ~ ~-131072
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-131072] block_cache_z 131072
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-65536] ~ ~ ~-65536
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-65536] block_cache_z 65536
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-32768] ~ ~ ~-32768
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-32768] block_cache_z 32768
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16384] ~ ~ ~-16384
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16384] block_cache_z 16384
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8192] ~ ~ ~-8192
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8192] block_cache_z 8192
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4096] ~ ~ ~-4096
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4096] block_cache_z 4096
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2048] ~ ~ ~-2048
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2048] block_cache_z 2048
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1024] ~ ~ ~-1024
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1024] block_cache_z 1024
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-512] ~ ~ ~-512
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-512] block_cache_z 512
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-256] ~ ~ ~-256
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-256] block_cache_z 256
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-128] ~ ~ ~-128
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-128] block_cache_z 128
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-64] ~ ~ ~-64
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-64] block_cache_z 64
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-32] ~ ~ ~-32
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-32] block_cache_z 32
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16] ~ ~ ~-16
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16] block_cache_z 16
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8] ~ ~ ~-8
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8] block_cache_z 8
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4] ~ ~ ~-4
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4] block_cache_z 4
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2] ~ ~ ~-2
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2] block_cache_z 2
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1] ~ ~ ~-1
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1] block_cache_z 1
- scoreboard players reset @e[tag=cursor_tp] block_cache_x
- scoreboard players reset @e[tag=cursor_tp] block_cache_z
- scoreboard players reset @e[tag=cursor_tp] block_cache_y
- scoreboard players tag @e[type=armor_stand,tag=cursor_tp] remove cursor_tp
- @op leaves
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:leaves -1 summon armor_stand ~ ~ ~ {Marker:1b,Invisible:1b,Invulnerable:1b,NoGravity:1b,CustomName:"Block Getter",CustomNameVisible:1b,Tags:["block_getter"]}
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:leaves -1 scoreboard players tag @e[type=armor_stand,tag=pointer] add do_blockget
- execute @e[type=armor_stand,tag=do_blockget] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=block_getter] block_cache_x = @e[type=area_effect_cloud,tag=cell,r=0]
- execute @e[type=armor_stand,tag=do_blockget] ~1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=block_getter] block_cache_y = @e[type=area_effect_cloud,tag=cell,r=0]
- execute @e[type=armor_stand,tag=do_blockget] ~2 ~ ~ scoreboard players operation @e[type=armor_stand,tag=block_getter] block_cache_z = @e[type=area_effect_cloud,tag=cell,r=0]
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=33554432] ~33554432 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=33554432] block_cache_x 33554432
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=16777216] ~16777216 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=16777216] block_cache_x 16777216
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=8388608] ~8388608 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=8388608] block_cache_x 8388608
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=4194304] ~4194304 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=4194304] block_cache_x 4194304
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=2097152] ~2097152 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=2097152] block_cache_x 2097152
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=1048576] ~1048576 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=1048576] block_cache_x 1048576
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=524288] ~524288 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=524288] block_cache_x 524288
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=262144] ~262144 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=262144] block_cache_x 262144
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=131072] ~131072 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=131072] block_cache_x 131072
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=65536] ~65536 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=65536] block_cache_x 65536
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=32768] ~32768 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=32768] block_cache_x 32768
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=16384] ~16384 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=16384] block_cache_x 16384
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=8192] ~8192 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=8192] block_cache_x 8192
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=4096] ~4096 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=4096] block_cache_x 4096
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=2048] ~2048 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=2048] block_cache_x 2048
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=1024] ~1024 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=1024] block_cache_x 1024
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=512] ~512 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=512] block_cache_x 512
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=256] ~256 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=256] block_cache_x 256
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=128] ~128 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=128] block_cache_x 128
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=64] ~64 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=64] block_cache_x 64
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=32] ~32 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=32] block_cache_x 32
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=16] ~16 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=16] block_cache_x 16
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=8] ~8 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=8] block_cache_x 8
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=4] ~4 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=4] block_cache_x 4
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=2] ~2 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=2] block_cache_x 2
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=1] ~1 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=1] block_cache_x 1
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-33554432] ~-33554432 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-33554432] block_cache_x 33554432
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-16777216] ~-16777216 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-16777216] block_cache_x 16777216
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-8388608] ~-8388608 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-8388608] block_cache_x 8388608
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-4194304] ~-4194304 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-4194304] block_cache_x 4194304
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-2097152] ~-2097152 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-2097152] block_cache_x 2097152
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-1048576] ~-1048576 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-1048576] block_cache_x 1048576
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-524288] ~-524288 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-524288] block_cache_x 524288
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-262144] ~-262144 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-262144] block_cache_x 262144
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-131072] ~-131072 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-131072] block_cache_x 131072
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-65536] ~-65536 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-65536] block_cache_x 65536
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-32768] ~-32768 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-32768] block_cache_x 32768
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-16384] ~-16384 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-16384] block_cache_x 16384
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-8192] ~-8192 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-8192] block_cache_x 8192
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-4096] ~-4096 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-4096] block_cache_x 4096
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-2048] ~-2048 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-2048] block_cache_x 2048
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-1024] ~-1024 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-1024] block_cache_x 1024
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-512] ~-512 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-512] block_cache_x 512
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-256] ~-256 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-256] block_cache_x 256
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-128] ~-128 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-128] block_cache_x 128
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-64] ~-64 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-64] block_cache_x 64
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-32] ~-32 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-32] block_cache_x 32
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-16] ~-16 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-16] block_cache_x 16
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-8] ~-8 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-8] block_cache_x 8
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-4] ~-4 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-4] block_cache_x 4
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-2] ~-2 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-2] block_cache_x 2
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-1] ~-1 ~ ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-1] block_cache_x 1
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=8192] ~ ~8192 ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=8192] block_cache_y 8192
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=4096] ~ ~4096 ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=4096] block_cache_y 4096
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=2048] ~ ~2048 ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=2048] block_cache_y 2048
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=1024] ~ ~1024 ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=1024] block_cache_y 1024
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=512] ~ ~512 ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=512] block_cache_y 512
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=256] ~ ~256 ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=256] block_cache_y 256
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=128] ~ ~128 ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=128] block_cache_y 128
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=64] ~ ~64 ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=64] block_cache_y 64
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=32] ~ ~32 ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=32] block_cache_y 32
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=16] ~ ~16 ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=16] block_cache_y 16
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=8] ~ ~8 ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=8] block_cache_y 8
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=4] ~ ~4 ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=4] block_cache_y 4
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=2] ~ ~2 ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=2] block_cache_y 2
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=1] ~ ~1 ~
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=1] block_cache_y 1
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-8192] ~ ~-8192 ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-8192] block_cache_y 8192
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-4096] ~ ~-4096 ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-4096] block_cache_y 4096
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-2048] ~ ~-2048 ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-2048] block_cache_y 2048
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-1024] ~ ~-1024 ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-1024] block_cache_y 1024
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-512] ~ ~-512 ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-512] block_cache_y 512
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-256] ~ ~-256 ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-256] block_cache_y 256
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-128] ~ ~-128 ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-128] block_cache_y 128
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-64] ~ ~-64 ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-64] block_cache_y 64
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-32] ~ ~-32 ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-32] block_cache_y 32
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-16] ~ ~-16 ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-16] block_cache_y 16
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-8] ~ ~-8 ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-8] block_cache_y 8
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-4] ~ ~-4 ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-4] block_cache_y 4
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-2] ~ ~-2 ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-2] block_cache_y 2
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-1] ~ ~-1 ~
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-1] block_cache_y 1
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=33554432] ~ ~ ~33554432
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=33554432] block_cache_z 33554432
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=16777216] ~ ~ ~16777216
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=16777216] block_cache_z 16777216
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=8388608] ~ ~ ~8388608
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=8388608] block_cache_z 8388608
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=4194304] ~ ~ ~4194304
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=4194304] block_cache_z 4194304
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=2097152] ~ ~ ~2097152
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=2097152] block_cache_z 2097152
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=1048576] ~ ~ ~1048576
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=1048576] block_cache_z 1048576
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=524288] ~ ~ ~524288
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=524288] block_cache_z 524288
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=262144] ~ ~ ~262144
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=262144] block_cache_z 262144
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=131072] ~ ~ ~131072
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=131072] block_cache_z 131072
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=65536] ~ ~ ~65536
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=65536] block_cache_z 65536
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=32768] ~ ~ ~32768
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=32768] block_cache_z 32768
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=16384] ~ ~ ~16384
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=16384] block_cache_z 16384
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=8192] ~ ~ ~8192
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=8192] block_cache_z 8192
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=4096] ~ ~ ~4096
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=4096] block_cache_z 4096
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=2048] ~ ~ ~2048
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=2048] block_cache_z 2048
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=1024] ~ ~ ~1024
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=1024] block_cache_z 1024
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=512] ~ ~ ~512
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=512] block_cache_z 512
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=256] ~ ~ ~256
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=256] block_cache_z 256
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=128] ~ ~ ~128
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=128] block_cache_z 128
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=64] ~ ~ ~64
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=64] block_cache_z 64
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=32] ~ ~ ~32
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=32] block_cache_z 32
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=16] ~ ~ ~16
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=16] block_cache_z 16
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=8] ~ ~ ~8
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=8] block_cache_z 8
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=4] ~ ~ ~4
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=4] block_cache_z 4
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=2] ~ ~ ~2
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=2] block_cache_z 2
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=1] ~ ~ ~1
- scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=1] block_cache_z 1
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-33554432] ~ ~ ~-33554432
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-33554432] block_cache_z 33554432
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-16777216] ~ ~ ~-16777216
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-16777216] block_cache_z 16777216
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-8388608] ~ ~ ~-8388608
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-8388608] block_cache_z 8388608
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-4194304] ~ ~ ~-4194304
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-4194304] block_cache_z 4194304
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-2097152] ~ ~ ~-2097152
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-2097152] block_cache_z 2097152
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-1048576] ~ ~ ~-1048576
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-1048576] block_cache_z 1048576
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-524288] ~ ~ ~-524288
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-524288] block_cache_z 524288
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-262144] ~ ~ ~-262144
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-262144] block_cache_z 262144
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-131072] ~ ~ ~-131072
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-131072] block_cache_z 131072
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-65536] ~ ~ ~-65536
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-65536] block_cache_z 65536
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-32768] ~ ~ ~-32768
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-32768] block_cache_z 32768
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-16384] ~ ~ ~-16384
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-16384] block_cache_z 16384
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-8192] ~ ~ ~-8192
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-8192] block_cache_z 8192
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-4096] ~ ~ ~-4096
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-4096] block_cache_z 4096
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-2048] ~ ~ ~-2048
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-2048] block_cache_z 2048
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-1024] ~ ~ ~-1024
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-1024] block_cache_z 1024
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-512] ~ ~ ~-512
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-512] block_cache_z 512
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-256] ~ ~ ~-256
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-256] block_cache_z 256
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-128] ~ ~ ~-128
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-128] block_cache_z 128
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-64] ~ ~ ~-64
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-64] block_cache_z 64
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-32] ~ ~ ~-32
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-32] block_cache_z 32
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-16] ~ ~ ~-16
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-16] block_cache_z 16
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-8] ~ ~ ~-8
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-8] block_cache_z 8
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-4] ~ ~ ~-4
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-4] block_cache_z 4
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-2] ~ ~ ~-2
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-2] block_cache_z 2
- tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-1] ~ ~ ~-1
- scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-1] block_cache_z 1
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ air -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 0
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ stone -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 1
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ cobblestone -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 2
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ diamond_block -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 3
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ obsidian -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 4
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ piston -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 5
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ sticky_piston -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 6
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ quartz_block -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 7
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ sandstone -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 8
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ gold_ore -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 9
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ iron_ore -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 10
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ coal_ore -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 11
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ lapis_ore -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 12
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ diamond_ore -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 13
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ redstone_ore -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 14
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ redstone_block -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 15
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ netherrack -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 16
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ end_stone -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 17
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ brick_block -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 18
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ sponge -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 19
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ bookshelf -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 20
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ nether_brick -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 21
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ iron_block -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 22
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ gold_block -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 23
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ clay -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 24
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ melon_block -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 25
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ coal_block -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 26
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ lapis_block -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 27
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ planks -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 28
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ log -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 29
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ red_sandstone -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 30
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ log2 -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 31
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ snow -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 32
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ packed_ice -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 33
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ nether_wart_block -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 34
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ red_nether_brick -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 35
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ mossy_cobblestone -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 36
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ stonebrick -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 37
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ glass -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 38
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ hay_block -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 39
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ bone_block -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 40
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ prismarine -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 41
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ hardened_clay -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 42
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ magma -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 43
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ end_bricks -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 44
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ slime -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 45
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ quartz_ore -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 46
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ crafting_table -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 47
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ dirt -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 48
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ wool -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 49
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ stained_hardened_clay -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 50
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ sea_lantern -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 51
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ purpur_block -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 52
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ purpur_pillar -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 53
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ emerald_ore -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 54
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ stained_glass -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 55
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ leaves -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 56
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ leaves2 -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 57
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ stone_slab -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 58
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ wooden_slab -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 59
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ purpur_slab -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 60
- execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=area_effect_cloud,tag=cell,c=1] cell_value = @e[type=armor_stand,tag=pointer] block_cache_b
- scoreboard players reset @e[type=armor_stand,tag=pointer] block_cache_b
- kill @e[tag=block_getter]
- scoreboard players tag @e[tag=do_blockget] remove do_blockget
- @op leaves2
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:leaves2 -1 scoreboard players tag @e[type=armor_stand,tag=cursor] add cursor_tp
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:leaves2 -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=armor_stand,tag=cursor_tp] block_cache_x = @e[type=area_effect_cloud,tag=cell,r=0] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:leaves2 -1 execute @e[type=armor_stand,tag=pointer] ~1 ~ ~ scoreboard players operation @e[type=armor_stand,tag=cursor_tp] block_cache_y = @e[type=area_effect_cloud,tag=cell,r=0] cell_value
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:leaves2 -1 execute @e[type=armor_stand,tag=pointer] ~2 ~ ~ scoreboard players operation @e[type=armor_stand,tag=cursor_tp] block_cache_z = @e[type=area_effect_cloud,tag=cell,r=0] cell_value
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=33554432] ~33554432 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=33554432] block_cache_x 33554432
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16777216] ~16777216 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16777216] block_cache_x 16777216
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8388608] ~8388608 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8388608] block_cache_x 8388608
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4194304] ~4194304 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4194304] block_cache_x 4194304
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2097152] ~2097152 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2097152] block_cache_x 2097152
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1048576] ~1048576 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1048576] block_cache_x 1048576
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=524288] ~524288 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=524288] block_cache_x 524288
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=262144] ~262144 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=262144] block_cache_x 262144
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=131072] ~131072 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=131072] block_cache_x 131072
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=65536] ~65536 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=65536] block_cache_x 65536
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=32768] ~32768 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=32768] block_cache_x 32768
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16384] ~16384 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16384] block_cache_x 16384
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8192] ~8192 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8192] block_cache_x 8192
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4096] ~4096 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4096] block_cache_x 4096
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2048] ~2048 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2048] block_cache_x 2048
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1024] ~1024 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1024] block_cache_x 1024
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=512] ~512 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=512] block_cache_x 512
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=256] ~256 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=256] block_cache_x 256
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=128] ~128 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=128] block_cache_x 128
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=64] ~64 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=64] block_cache_x 64
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=32] ~32 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=32] block_cache_x 32
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16] ~16 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16] block_cache_x 16
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8] ~8 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8] block_cache_x 8
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4] ~4 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4] block_cache_x 4
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2] ~2 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2] block_cache_x 2
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1] ~1 ~ ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1] block_cache_x 1
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-33554432] ~-33554432 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-33554432] block_cache_x 33554432
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16777216] ~-16777216 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16777216] block_cache_x 16777216
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8388608] ~-8388608 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8388608] block_cache_x 8388608
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4194304] ~-4194304 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4194304] block_cache_x 4194304
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2097152] ~-2097152 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2097152] block_cache_x 2097152
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1048576] ~-1048576 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1048576] block_cache_x 1048576
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-524288] ~-524288 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-524288] block_cache_x 524288
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-262144] ~-262144 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-262144] block_cache_x 262144
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-131072] ~-131072 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-131072] block_cache_x 131072
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-65536] ~-65536 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-65536] block_cache_x 65536
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-32768] ~-32768 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-32768] block_cache_x 32768
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16384] ~-16384 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16384] block_cache_x 16384
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8192] ~-8192 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8192] block_cache_x 8192
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4096] ~-4096 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4096] block_cache_x 4096
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2048] ~-2048 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2048] block_cache_x 2048
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1024] ~-1024 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1024] block_cache_x 1024
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-512] ~-512 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-512] block_cache_x 512
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-256] ~-256 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-256] block_cache_x 256
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-128] ~-128 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-128] block_cache_x 128
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-64] ~-64 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-64] block_cache_x 64
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-32] ~-32 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-32] block_cache_x 32
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16] ~-16 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16] block_cache_x 16
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8] ~-8 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8] block_cache_x 8
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4] ~-4 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4] block_cache_x 4
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2] ~-2 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2] block_cache_x 2
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1] ~-1 ~ ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1] block_cache_x 1
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=8192] ~ ~8192 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=8192] block_cache_y 8192
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=4096] ~ ~4096 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=4096] block_cache_y 4096
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=2048] ~ ~2048 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=2048] block_cache_y 2048
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=1024] ~ ~1024 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=1024] block_cache_y 1024
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=512] ~ ~512 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=512] block_cache_y 512
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=256] ~ ~256 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=256] block_cache_y 256
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=128] ~ ~128 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=128] block_cache_y 128
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=64] ~ ~64 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=64] block_cache_y 64
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=32] ~ ~32 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=32] block_cache_y 32
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=16] ~ ~16 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=16] block_cache_y 16
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=8] ~ ~8 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=8] block_cache_y 8
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=4] ~ ~4 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=4] block_cache_y 4
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=2] ~ ~2 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=2] block_cache_y 2
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=1] ~ ~1 ~
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=1] block_cache_y 1
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-8192] ~ ~-8192 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-8192] block_cache_y 8192
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-4096] ~ ~-4096 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-4096] block_cache_y 4096
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-2048] ~ ~-2048 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-2048] block_cache_y 2048
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-1024] ~ ~-1024 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-1024] block_cache_y 1024
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-512] ~ ~-512 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-512] block_cache_y 512
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-256] ~ ~-256 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-256] block_cache_y 256
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-128] ~ ~-128 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-128] block_cache_y 128
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-64] ~ ~-64 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-64] block_cache_y 64
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-32] ~ ~-32 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-32] block_cache_y 32
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-16] ~ ~-16 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-16] block_cache_y 16
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-8] ~ ~-8 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-8] block_cache_y 8
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-4] ~ ~-4 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-4] block_cache_y 4
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-2] ~ ~-2 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-2] block_cache_y 2
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-1] ~ ~-1 ~
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-1] block_cache_y 1
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=33554432] ~ ~ ~33554432
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=33554432] block_cache_z 33554432
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16777216] ~ ~ ~16777216
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16777216] block_cache_z 16777216
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8388608] ~ ~ ~8388608
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8388608] block_cache_z 8388608
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4194304] ~ ~ ~4194304
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4194304] block_cache_z 4194304
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2097152] ~ ~ ~2097152
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2097152] block_cache_z 2097152
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1048576] ~ ~ ~1048576
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1048576] block_cache_z 1048576
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=524288] ~ ~ ~524288
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=524288] block_cache_z 524288
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=262144] ~ ~ ~262144
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=262144] block_cache_z 262144
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=131072] ~ ~ ~131072
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=131072] block_cache_z 131072
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=65536] ~ ~ ~65536
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=65536] block_cache_z 65536
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=32768] ~ ~ ~32768
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=32768] block_cache_z 32768
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16384] ~ ~ ~16384
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16384] block_cache_z 16384
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8192] ~ ~ ~8192
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8192] block_cache_z 8192
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4096] ~ ~ ~4096
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4096] block_cache_z 4096
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2048] ~ ~ ~2048
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2048] block_cache_z 2048
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1024] ~ ~ ~1024
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1024] block_cache_z 1024
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=512] ~ ~ ~512
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=512] block_cache_z 512
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=256] ~ ~ ~256
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=256] block_cache_z 256
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=128] ~ ~ ~128
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=128] block_cache_z 128
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=64] ~ ~ ~64
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=64] block_cache_z 64
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=32] ~ ~ ~32
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=32] block_cache_z 32
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16] ~ ~ ~16
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16] block_cache_z 16
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8] ~ ~ ~8
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8] block_cache_z 8
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4] ~ ~ ~4
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4] block_cache_z 4
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2] ~ ~ ~2
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2] block_cache_z 2
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1] ~ ~ ~1
- scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1] block_cache_z 1
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-33554432] ~ ~ ~-33554432
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-33554432] block_cache_z 33554432
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16777216] ~ ~ ~-16777216
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16777216] block_cache_z 16777216
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8388608] ~ ~ ~-8388608
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8388608] block_cache_z 8388608
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4194304] ~ ~ ~-4194304
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4194304] block_cache_z 4194304
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2097152] ~ ~ ~-2097152
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2097152] block_cache_z 2097152
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1048576] ~ ~ ~-1048576
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1048576] block_cache_z 1048576
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-524288] ~ ~ ~-524288
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-524288] block_cache_z 524288
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-262144] ~ ~ ~-262144
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-262144] block_cache_z 262144
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-131072] ~ ~ ~-131072
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-131072] block_cache_z 131072
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-65536] ~ ~ ~-65536
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-65536] block_cache_z 65536
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-32768] ~ ~ ~-32768
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-32768] block_cache_z 32768
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16384] ~ ~ ~-16384
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16384] block_cache_z 16384
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8192] ~ ~ ~-8192
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8192] block_cache_z 8192
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4096] ~ ~ ~-4096
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4096] block_cache_z 4096
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2048] ~ ~ ~-2048
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2048] block_cache_z 2048
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1024] ~ ~ ~-1024
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1024] block_cache_z 1024
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-512] ~ ~ ~-512
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-512] block_cache_z 512
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-256] ~ ~ ~-256
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-256] block_cache_z 256
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-128] ~ ~ ~-128
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-128] block_cache_z 128
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-64] ~ ~ ~-64
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-64] block_cache_z 64
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-32] ~ ~ ~-32
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-32] block_cache_z 32
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16] ~ ~ ~-16
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16] block_cache_z 16
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8] ~ ~ ~-8
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8] block_cache_z 8
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4] ~ ~ ~-4
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4] block_cache_z 4
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2] ~ ~ ~-2
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2] block_cache_z 2
- tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1] ~ ~ ~-1
- scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1] block_cache_z 1
- scoreboard players reset @e[tag=cursor_tp] block_cache_x
- scoreboard players reset @e[tag=cursor_tp] block_cache_z
- scoreboard players reset @e[tag=cursor_tp] block_cache_y
- scoreboard players tag @e[type=armor_stand,tag=cursor_tp] remove cursor_tp
- @op stone_slab
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:stone_slab -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=area_effect_cloud,tag=cell,r=0] cell_value = @e[type=armor_stand,tag=pointer] pointer_pos
- @op wooden_slab
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:wooden_slab -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=area_effect_cloud,tag=cell,r=0] cell_value = @e[type=armor_stand,tag=memp] memp_pos
- @op purpur_slab
- execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:purpur_slab -1 execute @e[type=armor_stand,tag=pointer] ~ ~ ~ scoreboard players operation @e[type=area_effect_cloud,tag=cell,r=0] cell_value = @e[type=armor_stand,tag=needle] needle_pos
Advertisement
Add Comment
Please, Sign In to add comment