Alyssa

BrainCraft Interpreter

Jan 4th, 2017
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 236.26 KB | None | 0 0
  1. /*
  2. Check my Pastebin profile for the initialization command.
  3. Do Nothing: Air / " " (Space)
  4. Increment Pointer: Stone / !
  5. Decrement Pointer: Cobblestone / "
  6. Increment Cell: Diamond Block / #
  7. Decrement Cell: Obsidian / $
  8. Output Ascii Cell: Piston / %
  9. Get Input (Blocking): Sticky Piston / &
  10. Go to matching Sandstone if cell is zero: Quartz Block // Doesn't work across turns/direction changes. Like honestly never use it. / '
  11. Go back to matching Quartz Block if cell is not zero: Sandstone // Doesn't work across turns/direction changes. Like honestly never use it. / (
  12. Move +X: Gold Ore / )
  13. Move +Z: Iron Ore / *
  14. Move -X: Coal Ore / +
  15. Move -Z: Lapis Ore / ,
  16. Move +Y: Diamond Ore / -
  17. Move -Y: Redstone Ore / .
  18. Return To Start: Redstone Block / /
  19. Add Surrounding Cells: Netherrack / 0
  20. Subtract Surrounding Cells: End Stone / 1
  21. Multiply Surrounding Cells: Brick Block / 2
  22. Divide Surrounding Cells: Sponge / 3
  23. Set Cell to Equal Cell to the Left: Bookshelf / 4
  24. Swap Cell Left to Cell Right: Nether Brick / 5
  25. Set Cell to Cell Left if Less Than Cell Left: Iron Block / 6
  26. Set Cell to Cell Left if Greater Than Cell Left: Gold Block / 7
  27. Modulo on Cell Left and Cell Right: Clay / 8
  28. Set Cell to Equal Cell to the Right: Melon Block / 9
  29. Set Cell to Cell Right if Less than Cell Right: Lapis Block / :
  30. Set Cell to Cell Right if Greater than Cell Right: Coal Block / ;
  31. If Cell is Zero: Planks // Conditionals will only run the next block if evaluated to true. / <
  32. If Cell is Non-Zero: Log / =
  33. If Cell Equals Cell Left: Red Sandstone / >
  34. If Cell Equals Cell Right: Log2 / ?
  35. If Cell < Cell Left: Snow / @
  36. If Cell < Cell Right: Packed Ice / A
  37. If Cell > Cell Left: Nether Wart Block / B
  38. If Cell > Cell Right: Red Nether Brick / C
  39. Playsound of Pitch Cell: Mossy Cobblestone / D
  40. 80-char (Cell,Cell+1,Cell+2,Etc.) Output: Stonebrick / E
  41. Set Cell to Zero: Glass / F
  42. Write Cell to Hard Drive: Hay Block / G
  43. Write Hard Drive to Cell: Bone Block / H
  44. Move Hard Drive Needle +1: Prismarine / I
  45. Move Hard Drive Needle -1: Hardened Clay / J
  46. Move Memory Pointer +1: Magma / K
  47. Move Memory Pointer -1: End Bricks / L
  48. Write Memory to Cell: Slime / M
  49. Write Cell to Memory: Quartz Ore / N
  50. Create operation/block of type C1, at ~C2 ~C3 ~C4: Crafting Table / O
  51. Non-Blocking Input: Dirt / P
  52. Create Marker: Wool / Q
  53. Delete Marker: Stained Hardened Clay / R
  54. Go to Marker: Sea Lantern / S
  55. Set Needle Pos: Purpur Block / T
  56. Set Memory Pointer Pos: Purpur Pillar / U
  57. Set Pointer Pos: Emerald Ore / V
  58. Set Cursor Pos (Cell,Cell+1,Cell+2): Stained Glass / W
  59. Write Block (C,C+1,C+2) to Cell: Leaves / X
  60. Relative Set Cursor Pos (C,C+1,C+2): Leaves2 / Y
  61. Get Pointer Pos: Stone Slab / Z
  62. Get Memp Pos: Wooden Slab / [
  63. Get Needle Pos: Purpur Slab / \
  64. */
  65. @Main
  66. scoreboard players set @e[type=armor_stand,tag=pointer] pointer_cache_a 0
  67. scoreboard players set @e[type=armor_stand,tag=pointer] pointer_cache_b 0
  68. scoreboard players set @e[type=armor_stand,tag=pointer] pointer_cache_c 0
  69. scoreboard players enable @a cursor_nio
  70. scoreboard players add @a cursor_nio 0
  71. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:gold_ore -1 scoreboard players set @e[tag=cursor,c=1] cursor_direction 1
  72. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:iron_ore -1 scoreboard players set @e[tag=cursor,c=1] cursor_direction 2
  73. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:coal_ore -1 scoreboard players set @e[tag=cursor,c=1] cursor_direction 3
  74. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:lapis_ore -1 scoreboard players set @e[tag=cursor,c=1] cursor_direction 4
  75. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:diamond_ore -1 scoreboard players set @e[tag=cursor,c=1] cursor_direction 5
  76. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_ore -1 scoreboard players set @e[tag=cursor,c=1] cursor_direction 6
  77. tp @e[type=armor_stand,tag=cursor,score_cursor_direction_min=1,score_cursor_direction=1] ~1 ~ ~
  78. tp @e[type=armor_stand,tag=cursor,score_cursor_direction_min=2,score_cursor_direction=2] ~ ~ ~1
  79. tp @e[type=armor_stand,tag=cursor,score_cursor_direction_min=3,score_cursor_direction=3] ~-1 ~ ~
  80. tp @e[type=armor_stand,tag=cursor,score_cursor_direction_min=4,score_cursor_direction=4] ~ ~ ~-1
  81. tp @e[type=armor_stand,tag=cursor,score_cursor_direction_min=5,score_cursor_direction=5] ~ ~1 ~
  82. tp @e[type=armor_stand,tag=cursor,score_cursor_direction_min=6,score_cursor_direction=6] ~ ~-1 ~
  83. tp @e[type=armor_stand,tag=cursor_skip,score_cursor_direction_min=1,score_cursor_direction=1] ~1 ~ ~
  84. tp @e[type=armor_stand,tag=cursor_skip,score_cursor_direction_min=2,score_cursor_direction=2] ~ ~ ~1
  85. tp @e[type=armor_stand,tag=cursor_skip,score_cursor_direction_min=3,score_cursor_direction=3] ~-1 ~ ~
  86. tp @e[type=armor_stand,tag=cursor_skip,score_cursor_direction_min=4,score_cursor_direction=4] ~ ~ ~-1
  87. tp @e[type=armor_stand,tag=cursor_skip,score_cursor_direction_min=5,score_cursor_direction=5] ~ ~1 ~
  88. tp @e[type=armor_stand,tag=cursor_skip,score_cursor_direction_min=6,score_cursor_direction=6] ~ ~-1 ~
  89. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ spreadplayers ~ ~ 0 1 false @e[type=area_effect_cloud,tag=chunkloader]
  90. execute @e[type=armor_stand,tag=cursor_skip] ~ ~ ~ spreadplayers ~ ~ 0 1 false @e[type=area_effect_cloud,tag=chunkloader]
  91. execute @e[type=armor_stand,tag=cursor_wait] ~ ~ ~ spreadplayers ~ ~ 0 1 false @e[type=area_effect_cloud,tag=chunkloader]
  92. execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ spreadplayers ~ ~ 0 1 false @e[type=area_effect_cloud,tag=chunkloader]
  93. scoreboard players tag @e[type=armor_stand,tag=cursor_skipped] remove cursor_skip
  94. scoreboard players tag @e[type=armor_stand,tag=cursor_skipped] add cursor
  95. scoreboard players tag @e[type=armor_stand,tag=cursor_skipped] remove cursor_skipped
  96. scoreboard players tag @e[type=armor_stand,tag=cursor_skip] add cursor_skipped
  97. 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
  98. 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
  99. 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
  100. 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
  101. 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
  102. 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
  103. tp @e[type=armor_stand,tag=cursor_find,score_cursor_direction_min=1,score_cursor_direction=1] ~-1 ~ ~
  104. tp @e[type=armor_stand,tag=cursor_find,score_cursor_direction_min=2,score_cursor_direction=2] ~ ~ ~-1
  105. tp @e[type=armor_stand,tag=cursor_find,score_cursor_direction_min=3,score_cursor_direction=3] ~1 ~ ~
  106. tp @e[type=armor_stand,tag=cursor_find,score_cursor_direction_min=4,score_cursor_direction=4] ~ ~ ~1
  107. tp @e[type=armor_stand,tag=cursor_find,score_cursor_direction_min=5,score_cursor_direction=5] ~ ~-1 ~
  108. tp @e[type=armor_stand,tag=cursor_find,score_cursor_direction_min=6,score_cursor_direction=6] ~ ~1 ~
  109. 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
  110. 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
  111. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=cursor] cursor_direction 1
  112. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=pointer] pointer_pos 0
  113. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=memp] memp_pos 0
  114. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=needle] needle_pos 0
  115. 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
  116. 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
  117. 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]
  118. 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]
  119. 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]
  120. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 kill @e[tag=cmarker]
  121. execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 kill @e[tag=cmarker]
  122. execute @e[type=armor_stand,tag=cursor_wait] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 kill @e[tag=cmarker]
  123. 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]
  124. execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=cursor_find] cursor_direction 1
  125. 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
  126. 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
  127. execute @e[type=armor_stand,tag=cursor_wait] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=pointer] pointer_pos 0
  128. execute @e[type=armor_stand,tag=cursor_wait] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=memp] memp_pos 0
  129. execute @e[type=armor_stand,tag=cursor_wait] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=needle] needle_pos 0
  130. execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=pointer] pointer_pos 0
  131. execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=memp] memp_pos 0
  132. execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=needle] needle_pos 0
  133. execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players tag @e[tag=cursor_find] add cursor
  134. execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players set @e[tag=cursor_find] cursor_jfind 0
  135. execute @e[type=armor_stand,tag=cursor_find] ~ ~ ~ detect ~ ~-1 ~ minecraft:redstone_block -1 scoreboard players tag @e[tag=cursor_find] remove cursor_find
  136. 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]
  137. 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]
  138. 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]
  139. 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]
  140. @op stone
  141. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:stone -1 tp @e[type=armor_stand,tag=pointer] ~1 ~ ~
  142. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:stone -1 scoreboard players add @e[type=armor_stand,tag=pointer] pointer_pos 1
  143. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:stone -1 scoreboard players set @e[type=armor_stand,tag=pointer] pointer_found 0
  144. 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
  145. 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"]}
  146. scoreboard players set @e[type=area_effect_cloud,tag=new_cell] cell_value 0
  147. scoreboard players tag @e[type=area_effect_cloud,tag=new_cell] remove new_cell
  148. scoreboard players set @e[type=armor_stand,tag=pointer,score_pointer_found_min=0] pointer_found -1
  149. @op cobblestone
  150. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:cobblestone -1 tp @e[type=armor_stand,tag=pointer] ~-1 ~ ~
  151. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:cobblestone -1 scoreboard players remove @e[type=armor_stand,tag=pointer] pointer_pos 1
  152. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:cobblestone -1 scoreboard players set @e[type=armor_stand,tag=pointer] pointer_found 0
  153. 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
  154. 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"]}
  155. scoreboard players set @e[type=area_effect_cloud,tag=new_cell] cell_value 0
  156. scoreboard players tag @e[type=area_effect_cloud,tag=new_cell] remove new_cell
  157. scoreboard players set @e[type=armor_stand,tag=pointer,score_pointer_found_min=0] pointer_found -1
  158. @op diamond_block
  159. 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
  160. @op obsidian
  161. 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
  162. @op piston
  163. 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
  164. 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":" "}]
  165. 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":"!"}]
  166. 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":"""}]
  167. 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":"#"}]
  168. 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":"$"}]
  169. 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":"%"}]
  170. 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":"&"}]
  171. 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":"'"}]
  172. 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":"("}]
  173. 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":")"}]
  174. 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":"*"}]
  175. 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":"+"}]
  176. 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":","}]
  177. 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":"-"}]
  178. 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":"."}]
  179. 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":"/"}]
  180. 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"}]
  181. 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"}]
  182. 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"}]
  183. 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"}]
  184. 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"}]
  185. 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"}]
  186. 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"}]
  187. 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"}]
  188. 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"}]
  189. 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"}]
  190. 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":":"}]
  191. 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":";"}]
  192. 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":"<"}]
  193. 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":"="}]
  194. 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":">"}]
  195. 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":"?"}]
  196. 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":"@"}]
  197. 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"}]
  198. 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"}]
  199. 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"}]
  200. 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"}]
  201. 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"}]
  202. 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"}]
  203. 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"}]
  204. 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"}]
  205. 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"}]
  206. 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"}]
  207. 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"}]
  208. 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"}]
  209. 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"}]
  210. 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"}]
  211. 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"}]
  212. 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"}]
  213. 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"}]
  214. 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"}]
  215. 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"}]
  216. 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"}]
  217. 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"}]
  218. 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"}]
  219. 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"}]
  220. 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"}]
  221. 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"}]
  222. 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"}]
  223. 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":"["}]
  224. 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":"\\"}]
  225. 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":"]"}]
  226. 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":"^"}]
  227. 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":"_"}]
  228. 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":"`"}]
  229. 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"}]
  230. 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"}]
  231. 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"}]
  232. 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"}]
  233. 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"}]
  234. 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"}]
  235. 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"}]
  236. 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"}]
  237. 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"}]
  238. 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"}]
  239. 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"}]
  240. 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"}]
  241. 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"}]
  242. 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"}]
  243. 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"}]
  244. 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"}]
  245. 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"}]
  246. 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"}]
  247. 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"}]
  248. 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"}]
  249. 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"}]
  250. 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"}]
  251. 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"}]
  252. 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"}]
  253. 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"}]
  254. 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"}]
  255. 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":"{"}]
  256. 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":"|"}]
  257. 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":"}"}]
  258. 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":"~"}]
  259. scoreboard players set @e[type=area_effect_cloud,tag=cell,score_cell_output_min=1] cell_output 0
  260. @op sticky_piston
  261. 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
  262. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:sticky_piston -1 scoreboard players reset * cursor_io
  263. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:sticky_piston -1 scoreboard players tag @e[type=armor_stand,tag=cursor] remove cursor
  264. 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
  265. 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
  266. execute @a[score_cursor_io_min=1] ~ ~ ~ scoreboard players tag @e[type=armor_stand,tag=cursor_wait] add cursor
  267. execute @a[score_cursor_io=-1] ~ ~ ~ scoreboard players tag @e[type=armor_stand,tag=cursor_wait] add cursor
  268. execute @a[score_cursor_io_min=1] ~ ~ ~ scoreboard players tag @e[type=armor_stand,tag=cursor_wait] remove cursor_wait
  269. execute @a[score_cursor_io=-1] ~ ~ ~ scoreboard players tag @e[type=armor_stand,tag=cursor_wait] remove cursor_wait
  270. execute @e[type=armor_stand,tag=cursor_wait] ~ ~ ~ scoreboard players enable @a cursor_io
  271. execute @a[score_cursor_io_min=1] ~ ~ ~ scoreboard players set @a[score_cursor_io_min=1] cursor_io 0
  272. execute @a[score_cursor_io=-1] ~ ~ ~ scoreboard players set @a[score_cursor_io=-1] cursor_io 0
  273. @op quartz_block
  274. 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
  275. scoreboard players tag @e[type=armor_stand,tag=cursor,score_cursor_jfind_min=1] add cursor_find
  276. scoreboard players tag @e[type=armor_stand,tag=cursor,score_cursor_jfind=-1] add cursor_find
  277. scoreboard players tag @e[type=armor_stand,tag=cursor_find] remove cursor
  278. scoreboard players tag @e[type=armor_stand,tag=cursor_find,score_cursor_jfind_min=0,score_cursor_jfind=0] add cursor
  279. scoreboard players tag @e[type=armor_stand,tag=cursor_find,score_cursor_jfind_min=0,score_cursor_jfind=0] remove cursor_find
  280. @op sandstone
  281. 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
  282. 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
  283. scoreboard players tag @e[type=armor_stand,tag=cursor,score_cursor_jfind_min=1] add cursor_find
  284. scoreboard players tag @e[type=armor_stand,tag=cursor,score_cursor_jfind=-1] add cursor_find
  285. scoreboard players tag @e[type=armor_stand,tag=cursor_find] remove cursor
  286. scoreboard players tag @e[type=armor_stand,tag=cursor_find,score_cursor_jfind_min=0,score_cursor_jfind=0] add cursor
  287. scoreboard players tag @e[type=armor_stand,tag=cursor_find,score_cursor_jfind_min=0,score_cursor_jfind=0] remove cursor_find
  288. @op netherrack
  289. 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
  290. 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
  291. 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
  292. 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
  293. @op end_stone
  294. 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
  295. 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
  296. 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
  297. 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
  298. @op brick_block
  299. 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
  300. 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
  301. 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
  302. 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
  303. @op sponge
  304. 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
  305. 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
  306. 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
  307. 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
  308. @op clay
  309. 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
  310. 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
  311. 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
  312. 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
  313. @op bookshelf
  314. 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
  315. 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
  316. 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
  317. @op nether_brick
  318. 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
  319. 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
  320. 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
  321. 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
  322. @op iron_block
  323. 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
  324. 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
  325. @op gold_block
  326. 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
  327. 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
  328. @op melon_block
  329. 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
  330. 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
  331. 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
  332. @op lapis_block
  333. 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
  334. 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
  335. @op coal_block
  336. 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
  337. 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
  338. @op planks
  339. 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
  340. 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
  341. scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove cursor
  342. scoreboard players tag @e[type=armor_stand,tag=add_cskip] add cursor_skip
  343. scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove add_cskip
  344. @op log
  345. 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
  346. scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove cursor
  347. scoreboard players tag @e[type=armor_stand,tag=add_cskip] add cursor_skip
  348. scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove add_cskip
  349. @op red_sandstone
  350. 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
  351. 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
  352. 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
  353. 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
  354. 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
  355. scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove cursor
  356. scoreboard players tag @e[type=armor_stand,tag=add_cskip] add cursor_skip
  357. scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove add_cskip
  358. @op log2
  359. 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
  360. 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
  361. 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
  362. 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
  363. 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
  364. scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove cursor
  365. scoreboard players tag @e[type=armor_stand,tag=add_cskip] add cursor_skip
  366. scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove add_cskip
  367. @op snow
  368. 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
  369. 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
  370. 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
  371. 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
  372. scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove cursor
  373. scoreboard players tag @e[type=armor_stand,tag=add_cskip] add cursor_skip
  374. scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove add_cskip
  375. @op packed_ice
  376. 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
  377. 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
  378. 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
  379. 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
  380. scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove cursor
  381. scoreboard players tag @e[type=armor_stand,tag=add_cskip] add cursor_skip
  382. scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove add_cskip
  383. @op nether_wart_block
  384. 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
  385. 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
  386. 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
  387. 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
  388. scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove cursor
  389. scoreboard players tag @e[type=armor_stand,tag=add_cskip] add cursor_skip
  390. scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove add_cskip
  391. @op red_nether_brick
  392. 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
  393. 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
  394. 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
  395. 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
  396. scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove cursor
  397. scoreboard players tag @e[type=armor_stand,tag=add_cskip] add cursor_skip
  398. scoreboard players tag @e[type=armor_stand,tag=add_cskip] remove add_cskip
  399. @op mossy_cobblestone
  400. 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
  401. 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
  402. 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
  403. 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
  404. 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
  405. 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
  406. 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
  407. 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
  408. 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
  409. 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
  410. 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
  411. 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
  412. 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
  413. 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
  414. 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
  415. 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
  416. 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
  417. 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
  418. 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
  419. 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
  420. 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
  421. 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
  422. 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
  423. 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
  424. 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
  425. 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
  426. scoreboard players tag @e[type=area_effect_cloud,tag=play_note] remove play_note
  427. @op stonebrick
  428. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:stonebrick -1 scoreboard players tag @e[type=armor_stand,tag=cursor] add cursor_longprint
  429. 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
  430. 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
  431. 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
  432. 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
  433. 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
  434. 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
  435. 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
  436. 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
  437. 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
  438. 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
  439. 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
  440. 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
  441. 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
  442. 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
  443. 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
  444. 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
  445. 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
  446. 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
  447. 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
  448. 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
  449. 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
  450. 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
  451. 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
  452. 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
  453. 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
  454. 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
  455. 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
  456. 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
  457. 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
  458. 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
  459. 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
  460. 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
  461. 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
  462. 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
  463. 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
  464. 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
  465. 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
  466. 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
  467. 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
  468. 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
  469. 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
  470. 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
  471. 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
  472. 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
  473. 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
  474. 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
  475. 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
  476. 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
  477. 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
  478. 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
  479. 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
  480. 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
  481. 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
  482. 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
  483. 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
  484. 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
  485. 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
  486. 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
  487. 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
  488. 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
  489. 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
  490. 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
  491. 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
  492. 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
  493. 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
  494. 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
  495. 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
  496. 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
  497. 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
  498. 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
  499. 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
  500. 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
  501. 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
  502. 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
  503. 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
  504. 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
  505. 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
  506. 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
  507. 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
  508. 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
  509. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext] {CustomName:" "}
  510. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=33,score_text_value=33] {CustomName:"!"}
  511. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=34,score_text_value=34] {CustomName:"""}
  512. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=35,score_text_value=35] {CustomName:"#"}
  513. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=36,score_text_value=36] {CustomName:"$"}
  514. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=37,score_text_value=37] {CustomName:"%"}
  515. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=38,score_text_value=38] {CustomName:"&"}
  516. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=39,score_text_value=39] {CustomName:"'"}
  517. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=40,score_text_value=40] {CustomName:"("}
  518. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=41,score_text_value=41] {CustomName:")"}
  519. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=42,score_text_value=42] {CustomName:"*"}
  520. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=43,score_text_value=43] {CustomName:"+"}
  521. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=44,score_text_value=44] {CustomName:","}
  522. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=45,score_text_value=45] {CustomName:"-"}
  523. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=46,score_text_value=46] {CustomName:"."}
  524. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=47,score_text_value=47] {CustomName:"/"}
  525. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=48,score_text_value=48] {CustomName:"0"}
  526. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=49,score_text_value=49] {CustomName:"1"}
  527. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=50,score_text_value=50] {CustomName:"2"}
  528. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=51,score_text_value=51] {CustomName:"3"}
  529. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=52,score_text_value=52] {CustomName:"4"}
  530. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=53,score_text_value=53] {CustomName:"5"}
  531. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=54,score_text_value=54] {CustomName:"6"}
  532. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=55,score_text_value=55] {CustomName:"7"}
  533. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=56,score_text_value=56] {CustomName:"8"}
  534. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=57,score_text_value=57] {CustomName:"9"}
  535. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=58,score_text_value=58] {CustomName:":"}
  536. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=59,score_text_value=59] {CustomName:";"}
  537. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=60,score_text_value=60] {CustomName:"<"}
  538. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=61,score_text_value=61] {CustomName:"="}
  539. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=62,score_text_value=62] {CustomName:">"}
  540. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=63,score_text_value=63] {CustomName:"?"}
  541. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=64,score_text_value=64] {CustomName:"@"}
  542. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=65,score_text_value=65] {CustomName:"A"}
  543. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=66,score_text_value=66] {CustomName:"B"}
  544. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=67,score_text_value=67] {CustomName:"C"}
  545. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=68,score_text_value=68] {CustomName:"D"}
  546. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=69,score_text_value=69] {CustomName:"E"}
  547. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=70,score_text_value=70] {CustomName:"F"}
  548. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=71,score_text_value=71] {CustomName:"G"}
  549. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=72,score_text_value=72] {CustomName:"H"}
  550. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=73,score_text_value=73] {CustomName:"I"}
  551. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=74,score_text_value=74] {CustomName:"J"}
  552. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=75,score_text_value=75] {CustomName:"K"}
  553. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=76,score_text_value=76] {CustomName:"L"}
  554. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=77,score_text_value=77] {CustomName:"M"}
  555. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=78,score_text_value=78] {CustomName:"N"}
  556. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=79,score_text_value=79] {CustomName:"O"}
  557. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=80,score_text_value=80] {CustomName:"P"}
  558. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=81,score_text_value=81] {CustomName:"Q"}
  559. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=82,score_text_value=82] {CustomName:"R"}
  560. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=83,score_text_value=83] {CustomName:"S"}
  561. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=84,score_text_value=84] {CustomName:"T"}
  562. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=85,score_text_value=85] {CustomName:"U"}
  563. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=86,score_text_value=86] {CustomName:"V"}
  564. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=87,score_text_value=87] {CustomName:"W"}
  565. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=88,score_text_value=88] {CustomName:"X"}
  566. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=89,score_text_value=89] {CustomName:"Y"}
  567. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=90,score_text_value=90] {CustomName:"Z"}
  568. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=91,score_text_value=91] {CustomName:"["}
  569. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=92,score_text_value=92] {CustomName:"\\"}
  570. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=93,score_text_value=93] {CustomName:"]"}
  571. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=94,score_text_value=94] {CustomName:"^"}
  572. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=95,score_text_value=95] {CustomName:"_"}
  573. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=96,score_text_value=96] {CustomName:"`"}
  574. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=97,score_text_value=97] {CustomName:"a"}
  575. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=98,score_text_value=98] {CustomName:"b"}
  576. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=99,score_text_value=99] {CustomName:"c"}
  577. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=100,score_text_value=100] {CustomName:"d"}
  578. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=101,score_text_value=101] {CustomName:"e"}
  579. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=102,score_text_value=102] {CustomName:"f"}
  580. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=103,score_text_value=103] {CustomName:"g"}
  581. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=104,score_text_value=104] {CustomName:"h"}
  582. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=105,score_text_value=105] {CustomName:"i"}
  583. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=106,score_text_value=106] {CustomName:"j"}
  584. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=107,score_text_value=107] {CustomName:"k"}
  585. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=108,score_text_value=108] {CustomName:"l"}
  586. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=109,score_text_value=109] {CustomName:"m"}
  587. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=110,score_text_value=110] {CustomName:"n"}
  588. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=111,score_text_value=111] {CustomName:"o"}
  589. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=112,score_text_value=112] {CustomName:"p"}
  590. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=113,score_text_value=113] {CustomName:"q"}
  591. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=114,score_text_value=114] {CustomName:"r"}
  592. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=115,score_text_value=115] {CustomName:"s"}
  593. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=116,score_text_value=116] {CustomName:"t"}
  594. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=117,score_text_value=117] {CustomName:"u"}
  595. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=118,score_text_value=118] {CustomName:"v"}
  596. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=119,score_text_value=119] {CustomName:"w"}
  597. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=120,score_text_value=120] {CustomName:"x"}
  598. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=121,score_text_value=121] {CustomName:"y"}
  599. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=122,score_text_value=122] {CustomName:"z"}
  600. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=123,score_text_value=123] {CustomName:"{"}
  601. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=124,score_text_value=124] {CustomName:"|"}
  602. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=125,score_text_value=125] {CustomName:"}"}
  603. execute @e[type=armor_stand,tag=cursor_longprint] ~ ~ ~ entitydata @e[tag=btext,score_text_value_min=126,score_text_value=126] {CustomName:"~"}
  604. 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]"}]
  605. scoreboard players tag @e[type=armor_stand,tag=cursor_longprint] remove cursor_longprint
  606. @op glass
  607. 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
  608. @op hay_block
  609. 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
  610. 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
  611. 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
  612. scoreboard players tag @e[tag=cell_write] remove cell_write
  613. scoreboard players tag @e[tag=drive_receive] remove drive_receive
  614. @op bone_block
  615. 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
  616. 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
  617. 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
  618. scoreboard players tag @e[tag=drive_write] remove drive_write
  619. scoreboard players tag @e[tag=cell_receive] remove cell_receive
  620. @op prismarine
  621. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:prismarine -1 tp @e[type=armor_stand,tag=needle] ~1 ~ ~
  622. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:prismarine -1 scoreboard players add @e[type=armor_stand,tag=needle] needle_pos 1
  623. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:prismarine -1 scoreboard players set @e[type=armor_stand,tag=needle] needle_found 0
  624. 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
  625. 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"]}
  626. scoreboard players set @e[type=area_effect_cloud,tag=new_drive] drive_value 0
  627. scoreboard players tag @e[type=area_effect_cloud,tag=new_drive] remove new_drive
  628. scoreboard players set @e[type=armor_stand,tag=needle,score_needle_found_min=0] needle_found -1
  629. @op hardened_clay
  630. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:hardened_clay -1 tp @e[type=armor_stand,tag=needle] ~-1 ~ ~
  631. 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
  632. 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
  633. 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
  634. 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"]}
  635. scoreboard players set @e[type=area_effect_cloud,tag=new_drive] drive_value 0
  636. scoreboard players tag @e[type=area_effect_cloud,tag=new_drive] remove new_drive
  637. scoreboard players set @e[type=armor_stand,tag=needle,score_needle_found_min=0] needle_found -1
  638. @op quartz_ore
  639. 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
  640. 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
  641. 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
  642. scoreboard players tag @e[tag=cell_write] remove cell_write
  643. scoreboard players tag @e[tag=mem_receive] remove mem_receive
  644. @op slime
  645. 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
  646. 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
  647. 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
  648. scoreboard players tag @e[tag=mem_write] remove mem_write
  649. scoreboard players tag @e[tag=cell_receive] remove cell_receive
  650. @op magma
  651. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:magma -1 tp @e[type=armor_stand,tag=memp] ~1 ~ ~
  652. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:magma -1 scoreboard players add @e[type=armor_stand,tag=memp] memp_pos 1
  653. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:magma -1 scoreboard players set @e[type=armor_stand,tag=memp] memp_found 0
  654. 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
  655. 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"]}
  656. scoreboard players set @e[type=area_effect_cloud,tag=new_mem] mem_value 0
  657. scoreboard players tag @e[type=area_effect_cloud,tag=new_mem] remove new_mem
  658. scoreboard players set @e[type=armor_stand,tag=memp,score_memp_found_min=0] memp_found -1
  659. @op end_bricks
  660. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:end_bricks -1 tp @e[type=armor_stand,tag=memp] ~-1 ~ ~
  661. 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
  662. 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
  663. 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
  664. 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"]}
  665. scoreboard players set @e[type=area_effect_cloud,tag=new_mem] mem_value 0
  666. scoreboard players tag @e[type=area_effect_cloud,tag=new_mem] remove new_mem
  667. scoreboard players set @e[type=armor_stand,tag=memp,score_memp_found_min=0] memp_found -1
  668. @op crafting_table
  669. 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"]}
  670. 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
  671. 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]
  672. 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]
  673. 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]
  674. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=33554432] ~33554432 ~ ~
  675. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=33554432] block_cache_x 33554432
  676. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=16777216] ~16777216 ~ ~
  677. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=16777216] block_cache_x 16777216
  678. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=8388608] ~8388608 ~ ~
  679. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=8388608] block_cache_x 8388608
  680. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=4194304] ~4194304 ~ ~
  681. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=4194304] block_cache_x 4194304
  682. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=2097152] ~2097152 ~ ~
  683. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=2097152] block_cache_x 2097152
  684. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=1048576] ~1048576 ~ ~
  685. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=1048576] block_cache_x 1048576
  686. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=524288] ~524288 ~ ~
  687. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=524288] block_cache_x 524288
  688. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=262144] ~262144 ~ ~
  689. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=262144] block_cache_x 262144
  690. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=131072] ~131072 ~ ~
  691. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=131072] block_cache_x 131072
  692. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=65536] ~65536 ~ ~
  693. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=65536] block_cache_x 65536
  694. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=32768] ~32768 ~ ~
  695. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=32768] block_cache_x 32768
  696. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=16384] ~16384 ~ ~
  697. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=16384] block_cache_x 16384
  698. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=8192] ~8192 ~ ~
  699. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=8192] block_cache_x 8192
  700. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=4096] ~4096 ~ ~
  701. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=4096] block_cache_x 4096
  702. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=2048] ~2048 ~ ~
  703. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=2048] block_cache_x 2048
  704. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=1024] ~1024 ~ ~
  705. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=1024] block_cache_x 1024
  706. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=512] ~512 ~ ~
  707. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=512] block_cache_x 512
  708. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=256] ~256 ~ ~
  709. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=256] block_cache_x 256
  710. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=128] ~128 ~ ~
  711. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=128] block_cache_x 128
  712. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=64] ~64 ~ ~
  713. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=64] block_cache_x 64
  714. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=32] ~32 ~ ~
  715. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=32] block_cache_x 32
  716. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=16] ~16 ~ ~
  717. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=16] block_cache_x 16
  718. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=8] ~8 ~ ~
  719. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=8] block_cache_x 8
  720. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=4] ~4 ~ ~
  721. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=4] block_cache_x 4
  722. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=2] ~2 ~ ~
  723. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=2] block_cache_x 2
  724. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=1] ~1 ~ ~
  725. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_x_min=1] block_cache_x 1
  726. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-33554432] ~-33554432 ~ ~
  727. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-33554432] block_cache_x 33554432
  728. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-16777216] ~-16777216 ~ ~
  729. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-16777216] block_cache_x 16777216
  730. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-8388608] ~-8388608 ~ ~
  731. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-8388608] block_cache_x 8388608
  732. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-4194304] ~-4194304 ~ ~
  733. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-4194304] block_cache_x 4194304
  734. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-2097152] ~-2097152 ~ ~
  735. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-2097152] block_cache_x 2097152
  736. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-1048576] ~-1048576 ~ ~
  737. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-1048576] block_cache_x 1048576
  738. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-524288] ~-524288 ~ ~
  739. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-524288] block_cache_x 524288
  740. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-262144] ~-262144 ~ ~
  741. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-262144] block_cache_x 262144
  742. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-131072] ~-131072 ~ ~
  743. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-131072] block_cache_x 131072
  744. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-65536] ~-65536 ~ ~
  745. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-65536] block_cache_x 65536
  746. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-32768] ~-32768 ~ ~
  747. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-32768] block_cache_x 32768
  748. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-16384] ~-16384 ~ ~
  749. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-16384] block_cache_x 16384
  750. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-8192] ~-8192 ~ ~
  751. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-8192] block_cache_x 8192
  752. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-4096] ~-4096 ~ ~
  753. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-4096] block_cache_x 4096
  754. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-2048] ~-2048 ~ ~
  755. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-2048] block_cache_x 2048
  756. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-1024] ~-1024 ~ ~
  757. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-1024] block_cache_x 1024
  758. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-512] ~-512 ~ ~
  759. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-512] block_cache_x 512
  760. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-256] ~-256 ~ ~
  761. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-256] block_cache_x 256
  762. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-128] ~-128 ~ ~
  763. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-128] block_cache_x 128
  764. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-64] ~-64 ~ ~
  765. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-64] block_cache_x 64
  766. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-32] ~-32 ~ ~
  767. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-32] block_cache_x 32
  768. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-16] ~-16 ~ ~
  769. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-16] block_cache_x 16
  770. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-8] ~-8 ~ ~
  771. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-8] block_cache_x 8
  772. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-4] ~-4 ~ ~
  773. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-4] block_cache_x 4
  774. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-2] ~-2 ~ ~
  775. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-2] block_cache_x 2
  776. tp @e[type=armor_stand,tag=block_placer,score_block_cache_x=-1] ~-1 ~ ~
  777. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_x=-1] block_cache_x 1
  778. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=8192] ~ ~8192 ~
  779. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=8192] block_cache_y 8192
  780. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=4096] ~ ~4096 ~
  781. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=4096] block_cache_y 4096
  782. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=2048] ~ ~2048 ~
  783. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=2048] block_cache_y 2048
  784. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=1024] ~ ~1024 ~
  785. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=1024] block_cache_y 1024
  786. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=512] ~ ~512 ~
  787. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=512] block_cache_y 512
  788. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=256] ~ ~256 ~
  789. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=256] block_cache_y 256
  790. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=128] ~ ~128 ~
  791. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=128] block_cache_y 128
  792. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=64] ~ ~64 ~
  793. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=64] block_cache_y 64
  794. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=32] ~ ~32 ~
  795. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=32] block_cache_y 32
  796. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=16] ~ ~16 ~
  797. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=16] block_cache_y 16
  798. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=8] ~ ~8 ~
  799. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=8] block_cache_y 8
  800. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=4] ~ ~4 ~
  801. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=4] block_cache_y 4
  802. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=2] ~ ~2 ~
  803. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=2] block_cache_y 2
  804. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=1] ~ ~1 ~
  805. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_y_min=1] block_cache_y 1
  806. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-8192] ~ ~-8192 ~
  807. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-8192] block_cache_y 8192
  808. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-4096] ~ ~-4096 ~
  809. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-4096] block_cache_y 4096
  810. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-2048] ~ ~-2048 ~
  811. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-2048] block_cache_y 2048
  812. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-1024] ~ ~-1024 ~
  813. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-1024] block_cache_y 1024
  814. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-512] ~ ~-512 ~
  815. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-512] block_cache_y 512
  816. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-256] ~ ~-256 ~
  817. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-256] block_cache_y 256
  818. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-128] ~ ~-128 ~
  819. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-128] block_cache_y 128
  820. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-64] ~ ~-64 ~
  821. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-64] block_cache_y 64
  822. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-32] ~ ~-32 ~
  823. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-32] block_cache_y 32
  824. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-16] ~ ~-16 ~
  825. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-16] block_cache_y 16
  826. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-8] ~ ~-8 ~
  827. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-8] block_cache_y 8
  828. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-4] ~ ~-4 ~
  829. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-4] block_cache_y 4
  830. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-2] ~ ~-2 ~
  831. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-2] block_cache_y 2
  832. tp @e[type=armor_stand,tag=block_placer,score_block_cache_y=-1] ~ ~-1 ~
  833. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_y=-1] block_cache_y 1
  834. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=33554432] ~ ~ ~33554432
  835. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=33554432] block_cache_z 33554432
  836. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=16777216] ~ ~ ~16777216
  837. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=16777216] block_cache_z 16777216
  838. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=8388608] ~ ~ ~8388608
  839. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=8388608] block_cache_z 8388608
  840. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=4194304] ~ ~ ~4194304
  841. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=4194304] block_cache_z 4194304
  842. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=2097152] ~ ~ ~2097152
  843. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=2097152] block_cache_z 2097152
  844. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=1048576] ~ ~ ~1048576
  845. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=1048576] block_cache_z 1048576
  846. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=524288] ~ ~ ~524288
  847. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=524288] block_cache_z 524288
  848. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=262144] ~ ~ ~262144
  849. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=262144] block_cache_z 262144
  850. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=131072] ~ ~ ~131072
  851. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=131072] block_cache_z 131072
  852. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=65536] ~ ~ ~65536
  853. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=65536] block_cache_z 65536
  854. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=32768] ~ ~ ~32768
  855. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=32768] block_cache_z 32768
  856. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=16384] ~ ~ ~16384
  857. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=16384] block_cache_z 16384
  858. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=8192] ~ ~ ~8192
  859. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=8192] block_cache_z 8192
  860. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=4096] ~ ~ ~4096
  861. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=4096] block_cache_z 4096
  862. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=2048] ~ ~ ~2048
  863. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=2048] block_cache_z 2048
  864. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=1024] ~ ~ ~1024
  865. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=1024] block_cache_z 1024
  866. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=512] ~ ~ ~512
  867. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=512] block_cache_z 512
  868. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=256] ~ ~ ~256
  869. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=256] block_cache_z 256
  870. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=128] ~ ~ ~128
  871. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=128] block_cache_z 128
  872. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=64] ~ ~ ~64
  873. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=64] block_cache_z 64
  874. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=32] ~ ~ ~32
  875. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=32] block_cache_z 32
  876. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=16] ~ ~ ~16
  877. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=16] block_cache_z 16
  878. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=8] ~ ~ ~8
  879. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=8] block_cache_z 8
  880. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=4] ~ ~ ~4
  881. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=4] block_cache_z 4
  882. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=2] ~ ~ ~2
  883. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=2] block_cache_z 2
  884. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=1] ~ ~ ~1
  885. scoreboard players remove @e[type=armor_stand,tag=block_placer,score_block_cache_z_min=1] block_cache_z 1
  886. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-33554432] ~ ~ ~-33554432
  887. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-33554432] block_cache_z 33554432
  888. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-16777216] ~ ~ ~-16777216
  889. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-16777216] block_cache_z 16777216
  890. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-8388608] ~ ~ ~-8388608
  891. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-8388608] block_cache_z 8388608
  892. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-4194304] ~ ~ ~-4194304
  893. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-4194304] block_cache_z 4194304
  894. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-2097152] ~ ~ ~-2097152
  895. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-2097152] block_cache_z 2097152
  896. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-1048576] ~ ~ ~-1048576
  897. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-1048576] block_cache_z 1048576
  898. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-524288] ~ ~ ~-524288
  899. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-524288] block_cache_z 524288
  900. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-262144] ~ ~ ~-262144
  901. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-262144] block_cache_z 262144
  902. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-131072] ~ ~ ~-131072
  903. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-131072] block_cache_z 131072
  904. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-65536] ~ ~ ~-65536
  905. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-65536] block_cache_z 65536
  906. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-32768] ~ ~ ~-32768
  907. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-32768] block_cache_z 32768
  908. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-16384] ~ ~ ~-16384
  909. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-16384] block_cache_z 16384
  910. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-8192] ~ ~ ~-8192
  911. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-8192] block_cache_z 8192
  912. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-4096] ~ ~ ~-4096
  913. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-4096] block_cache_z 4096
  914. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-2048] ~ ~ ~-2048
  915. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-2048] block_cache_z 2048
  916. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-1024] ~ ~ ~-1024
  917. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-1024] block_cache_z 1024
  918. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-512] ~ ~ ~-512
  919. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-512] block_cache_z 512
  920. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-256] ~ ~ ~-256
  921. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-256] block_cache_z 256
  922. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-128] ~ ~ ~-128
  923. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-128] block_cache_z 128
  924. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-64] ~ ~ ~-64
  925. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-64] block_cache_z 64
  926. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-32] ~ ~ ~-32
  927. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-32] block_cache_z 32
  928. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-16] ~ ~ ~-16
  929. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-16] block_cache_z 16
  930. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-8] ~ ~ ~-8
  931. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-8] block_cache_z 8
  932. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-4] ~ ~ ~-4
  933. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-4] block_cache_z 4
  934. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-2] ~ ~ ~-2
  935. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-2] block_cache_z 2
  936. tp @e[type=armor_stand,tag=block_placer,score_block_cache_z=-1] ~ ~ ~-1
  937. scoreboard players add @e[type=armor_stand,tag=block_placer,score_block_cache_z=-1] block_cache_z 1
  938. 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
  939. 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"]}
  940. execute @e[type=armor_stand,tag=block_placer] ~ ~ ~ spreadplayers ~ ~ 0 1 false @e[type=area_effect_cloud,tag=b_chunkloader]
  941. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=0,score_block_cache_b=0] ~ ~ ~ setblock ~ ~ ~ air 0 replace
  942. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=1,score_block_cache_b=1] ~ ~ ~ setblock ~ ~ ~ stone 0 replace
  943. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=2,score_block_cache_b=3] ~ ~ ~ setblock ~ ~ ~ cobblestone 0 replace
  944. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=3,score_block_cache_b=3] ~ ~ ~ setblock ~ ~ ~ diamond_block 0 replace
  945. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=4,score_block_cache_b=4] ~ ~ ~ setblock ~ ~ ~ obsidian 0 replace
  946. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=5,score_block_cache_b=5] ~ ~ ~ setblock ~ ~ ~ piston 0 replace
  947. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=6,score_block_cache_b=6] ~ ~ ~ setblock ~ ~ ~ sticky_piston 0 replace
  948. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=7,score_block_cache_b=7] ~ ~ ~ setblock ~ ~ ~ quartz_block 0 replace
  949. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=8,score_block_cache_b=8] ~ ~ ~ setblock ~ ~ ~ sandstone 0 replace
  950. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=9,score_block_cache_b=9] ~ ~ ~ setblock ~ ~ ~ gold_ore 0 replace
  951. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=10,score_block_cache_b=10] ~ ~ ~ setblock ~ ~ ~ iron_ore 0 replace
  952. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=11,score_block_cache_b=11] ~ ~ ~ setblock ~ ~ ~ coal_ore 0 replace
  953. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=12,score_block_cache_b=12] ~ ~ ~ setblock ~ ~ ~ lapis_ore 0 replace
  954. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=13,score_block_cache_b=13] ~ ~ ~ setblock ~ ~ ~ diamond_ore 0 replace
  955. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=14,score_block_cache_b=14] ~ ~ ~ setblock ~ ~ ~ redstone_ore 0 replace
  956. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=15,score_block_cache_b=15] ~ ~ ~ setblock ~ ~ ~ redstone_block 0 replace
  957. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=16,score_block_cache_b=16] ~ ~ ~ setblock ~ ~ ~ netherrack 0 replace
  958. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=17,score_block_cache_b=17] ~ ~ ~ setblock ~ ~ ~ end_stone 0 replace
  959. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=18,score_block_cache_b=18] ~ ~ ~ setblock ~ ~ ~ brick_block 0 replace
  960. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=19,score_block_cache_b=19] ~ ~ ~ setblock ~ ~ ~ sponge 0 replace
  961. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=20,score_block_cache_b=20] ~ ~ ~ setblock ~ ~ ~ bookshelf 0 replace
  962. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=21,score_block_cache_b=21] ~ ~ ~ setblock ~ ~ ~ nether_brick 0 replace
  963. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=22,score_block_cache_b=22] ~ ~ ~ setblock ~ ~ ~ iron_block 0 replace
  964. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=23,score_block_cache_b=23] ~ ~ ~ setblock ~ ~ ~ gold_block 0 replace
  965. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=24,score_block_cache_b=24] ~ ~ ~ setblock ~ ~ ~ clay 0 replace
  966. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=25,score_block_cache_b=25] ~ ~ ~ setblock ~ ~ ~ melon_block 0 replace
  967. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=26,score_block_cache_b=26] ~ ~ ~ setblock ~ ~ ~ coal_block 0 replace
  968. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=27,score_block_cache_b=27] ~ ~ ~ setblock ~ ~ ~ lapis_block 0 replace
  969. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=28,score_block_cache_b=28] ~ ~ ~ setblock ~ ~ ~ planks 0 replace
  970. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=29,score_block_cache_b=29] ~ ~ ~ setblock ~ ~ ~ log 0 replace
  971. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=30,score_block_cache_b=30] ~ ~ ~ setblock ~ ~ ~ red_sandstone 0 replace
  972. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=31,score_block_cache_b=31] ~ ~ ~ setblock ~ ~ ~ log2 0 replace
  973. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=32,score_block_cache_b=32] ~ ~ ~ setblock ~ ~ ~ snow 0 replace
  974. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=33,score_block_cache_b=33] ~ ~ ~ setblock ~ ~ ~ packed_ice 0 replace
  975. 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
  976. 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
  977. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=36,score_block_cache_b=36] ~ ~ ~ setblock ~ ~ ~ mossy_cobblestone 0 replace
  978. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=37,score_block_cache_b=37] ~ ~ ~ setblock ~ ~ ~ stonebrick 0 replace
  979. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=38,score_block_cache_b=38] ~ ~ ~ setblock ~ ~ ~ glass 0 replace
  980. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=39,score_block_cache_b=39] ~ ~ ~ setblock ~ ~ ~ hay_block 0 replace
  981. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=40,score_block_cache_b=40] ~ ~ ~ setblock ~ ~ ~ bone_block 0 replace
  982. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=41,score_block_cache_b=41] ~ ~ ~ setblock ~ ~ ~ prismarine 0 replace
  983. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=42,score_block_cache_b=42] ~ ~ ~ setblock ~ ~ ~ hardened_clay 0 replace
  984. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=43,score_block_cache_b=43] ~ ~ ~ setblock ~ ~ ~ magma 0 replace
  985. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=44,score_block_cache_b=44] ~ ~ ~ setblock ~ ~ ~ end_bricks 0 replace
  986. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=45,score_block_cache_b=45] ~ ~ ~ setblock ~ ~ ~ slime 0 replace
  987. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=46,score_block_cache_b=46] ~ ~ ~ setblock ~ ~ ~ quartz_ore 0 replace
  988. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=47,score_block_cache_b=47] ~ ~ ~ setblock ~ ~ ~ crafting_table 0 replace
  989. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=48,score_block_cache_b=48] ~ ~ ~ setblock ~ ~ ~ dirt 0 replace
  990. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=49,score_block_cache_b=49] ~ ~ ~ setblock ~ ~ ~ wool 0 replace
  991. 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
  992. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=51,score_block_cache_b=51] ~ ~ ~ setblock ~ ~ ~ sea_lantern 0 replace
  993. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=52,score_block_cache_b=52] ~ ~ ~ setblock ~ ~ ~ purpur_block 0 replace
  994. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=53,score_block_cache_b=53] ~ ~ ~ setblock ~ ~ ~ purpur_pillar 0 replace
  995. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=54,score_block_cache_b=54] ~ ~ ~ setblock ~ ~ ~ emerald_ore 0 replace
  996. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=55,score_block_cache_b=55] ~ ~ ~ setblock ~ ~ ~ stained_glass 0 replace
  997. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=56,score_block_cache_b=56] ~ ~ ~ setblock ~ ~ ~ leaves 0 replace
  998. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=56,score_block_cache_b=56] ~ ~ ~ setblock ~ ~ ~ leaves2 0 replace
  999. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=56,score_block_cache_b=56] ~ ~ ~ setblock ~ ~ ~ stone_slab 0 replace
  1000. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=56,score_block_cache_b=56] ~ ~ ~ setblock ~ ~ ~ wooden_slab 0 replace
  1001. execute @e[type=armor_stand,tag=block_placer,score_block_cache_b_min=56,score_block_cache_b=56] ~ ~ ~ setblock ~ ~ ~ purpur_slab 0 replace
  1002. kill @e[tag=block_placer]
  1003. kill @e[tag=b_chunkloader]
  1004. scoreboard players tag @e[tag=do_blockplace] remove do_blockplace
  1005. @op dirt
  1006. 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
  1007. 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
  1008. 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
  1009. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:dirt -1 scoreboard players reset * cursor_nio
  1010. @op wool
  1011. 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
  1012. 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"]}
  1013. 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
  1014. 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
  1015. 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
  1016. @op stained_hardened_clay
  1017. 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]
  1018. 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
  1019. @op sea_lantern
  1020. 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
  1021. 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]
  1022. kill @e[type=area_effect_cloud,tag=cmarker,score_cmarker_index_min=0,score_cmarker_index=0]
  1023. scoreboard players remove @e[type=area_effect_cloud,tag=cmarker] cmarker_index 1
  1024. @op purpur_block
  1025. 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
  1026. 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
  1027. 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
  1028. tp @e[type=armor_stand,tag=needle_tp] @e[c=1,type=area_effect_cloud,tag=needle_start]
  1029. tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=1024] ~1024 ~ ~
  1030. scoreboard players remove @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=1024] block_cache_x 1024
  1031. tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=512] ~512 ~ ~
  1032. scoreboard players remove @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=512] block_cache_x 512
  1033. tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=256] ~256 ~ ~
  1034. scoreboard players remove @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=256] block_cache_x 256
  1035. tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=128] ~128 ~ ~
  1036. scoreboard players remove @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=128] block_cache_x 128
  1037. tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=64] ~64 ~ ~
  1038. scoreboard players remove @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=64] block_cache_x 64
  1039. tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=32] ~32 ~ ~
  1040. scoreboard players remove @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=32] block_cache_x 32
  1041. tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=16] ~16 ~ ~
  1042. scoreboard players remove @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=16] block_cache_x 16
  1043. tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=8] ~8 ~ ~
  1044. scoreboard players remove @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=8] block_cache_x 8
  1045. tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=4] ~4 ~ ~
  1046. scoreboard players remove @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=4] block_cache_x 4
  1047. tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=2] ~2 ~ ~
  1048. scoreboard players remove @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=2] block_cache_x 2
  1049. tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x_min=1] ~1 ~ ~
  1050. tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-1024] ~-1024 ~ ~
  1051. scoreboard players add @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-1024] block_cache_x 1024
  1052. tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-512] ~-512 ~ ~
  1053. scoreboard players add @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-512] block_cache_x 512
  1054. tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-256] ~-256 ~ ~
  1055. scoreboard players add @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-256] block_cache_x 256
  1056. tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-128] ~-128 ~ ~
  1057. scoreboard players add @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-128] block_cache_x 128
  1058. tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-64] ~-64 ~ ~
  1059. scoreboard players add @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-64] block_cache_x 64
  1060. tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-32] ~-32 ~ ~
  1061. scoreboard players add @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-32] block_cache_x 32
  1062. tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-16] ~-16 ~ ~
  1063. scoreboard players add @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-16] block_cache_x 16
  1064. tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-8] ~-8 ~ ~
  1065. scoreboard players add @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-8] block_cache_x 8
  1066. tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-4] ~-4 ~ ~
  1067. scoreboard players add @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-4] block_cache_x 4
  1068. tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-2] ~-2 ~ ~
  1069. scoreboard players add @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-2] block_cache_x 2
  1070. tp @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-1] ~-1 ~ ~
  1071. scoreboard players add @e[type=armor_stand,tag=needle_tp,score_block_cache_x=-1] block_cache_x 1
  1072. scoreboard players reset @e[tag=needle_tp] block_cache_x
  1073. scoreboard players tag @e[type=armor_stand,tag=needle_tp] remove needle_tp
  1074. @op purpur_pillar
  1075. 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
  1076. 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
  1077. 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
  1078. tp @e[type=armor_stand,tag=memp_tp] @e[c=1,type=area_effect_cloud,tag=memp_start]
  1079. tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=1024] ~1024 ~ ~
  1080. scoreboard players remove @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=1024] block_cache_x 1024
  1081. tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=512] ~512 ~ ~
  1082. scoreboard players remove @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=512] block_cache_x 512
  1083. tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=256] ~256 ~ ~
  1084. scoreboard players remove @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=256] block_cache_x 256
  1085. tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=128] ~128 ~ ~
  1086. scoreboard players remove @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=128] block_cache_x 128
  1087. tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=64] ~64 ~ ~
  1088. scoreboard players remove @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=64] block_cache_x 64
  1089. tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=32] ~32 ~ ~
  1090. scoreboard players remove @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=32] block_cache_x 32
  1091. tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=16] ~16 ~ ~
  1092. scoreboard players remove @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=16] block_cache_x 16
  1093. tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=8] ~8 ~ ~
  1094. scoreboard players remove @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=8] block_cache_x 8
  1095. tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=4] ~4 ~ ~
  1096. scoreboard players remove @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=4] block_cache_x 4
  1097. tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=2] ~2 ~ ~
  1098. scoreboard players remove @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=2] block_cache_x 2
  1099. tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x_min=1] ~1 ~ ~
  1100. tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-1024] ~-1024 ~ ~
  1101. scoreboard players add @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-1024] block_cache_x 1024
  1102. tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-512] ~-512 ~ ~
  1103. scoreboard players add @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-512] block_cache_x 512
  1104. tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-256] ~-256 ~ ~
  1105. scoreboard players add @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-256] block_cache_x 256
  1106. tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-128] ~-128 ~ ~
  1107. scoreboard players add @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-128] block_cache_x 128
  1108. tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-64] ~-64 ~ ~
  1109. scoreboard players add @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-64] block_cache_x 64
  1110. tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-32] ~-32 ~ ~
  1111. scoreboard players add @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-32] block_cache_x 32
  1112. tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-16] ~-16 ~ ~
  1113. scoreboard players add @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-16] block_cache_x 16
  1114. tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-8] ~-8 ~ ~
  1115. scoreboard players add @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-8] block_cache_x 8
  1116. tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-4] ~-4 ~ ~
  1117. scoreboard players add @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-4] block_cache_x 4
  1118. tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-2] ~-2 ~ ~
  1119. scoreboard players add @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-2] block_cache_x 2
  1120. tp @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-1] ~-1 ~ ~
  1121. scoreboard players add @e[type=armor_stand,tag=memp_tp,score_block_cache_x=-1] block_cache_x 1
  1122. scoreboard players reset @e[tag=memp_tp] block_cache_x
  1123. scoreboard players tag @e[type=armor_stand,tag=memp_tp] remove memp_tp
  1124. @op emerald_ore
  1125. 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
  1126. 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
  1127. 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
  1128. tp @e[type=armor_stand,tag=pointer_tp] @e[c=1,type=area_effect_cloud,tag=pointer_start]
  1129. tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=1024] ~1024 ~ ~
  1130. scoreboard players remove @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=1024] block_cache_x 1024
  1131. tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=512] ~512 ~ ~
  1132. scoreboard players remove @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=512] block_cache_x 512
  1133. tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=256] ~256 ~ ~
  1134. scoreboard players remove @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=256] block_cache_x 256
  1135. tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=128] ~128 ~ ~
  1136. scoreboard players remove @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=128] block_cache_x 128
  1137. tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=64] ~64 ~ ~
  1138. scoreboard players remove @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=64] block_cache_x 64
  1139. tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=32] ~32 ~ ~
  1140. scoreboard players remove @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=32] block_cache_x 32
  1141. tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=16] ~16 ~ ~
  1142. scoreboard players remove @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=16] block_cache_x 16
  1143. tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=8] ~8 ~ ~
  1144. scoreboard players remove @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=8] block_cache_x 8
  1145. tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=4] ~4 ~ ~
  1146. scoreboard players remove @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=4] block_cache_x 4
  1147. tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=2] ~2 ~ ~
  1148. scoreboard players remove @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=2] block_cache_x 2
  1149. tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x_min=1] ~1 ~ ~
  1150. tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-1024] ~-1024 ~ ~
  1151. scoreboard players add @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-1024] block_cache_x 1024
  1152. tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-512] ~-512 ~ ~
  1153. scoreboard players add @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-512] block_cache_x 512
  1154. tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-256] ~-256 ~ ~
  1155. scoreboard players add @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-256] block_cache_x 256
  1156. tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-128] ~-128 ~ ~
  1157. scoreboard players add @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-128] block_cache_x 128
  1158. tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-64] ~-64 ~ ~
  1159. scoreboard players add @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-64] block_cache_x 64
  1160. tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-32] ~-32 ~ ~
  1161. scoreboard players add @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-32] block_cache_x 32
  1162. tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-16] ~-16 ~ ~
  1163. scoreboard players add @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-16] block_cache_x 16
  1164. tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-8] ~-8 ~ ~
  1165. scoreboard players add @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-8] block_cache_x 8
  1166. tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-4] ~-4 ~ ~
  1167. scoreboard players add @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-4] block_cache_x 4
  1168. tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-2] ~-2 ~ ~
  1169. scoreboard players add @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-2] block_cache_x 2
  1170. tp @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-1] ~-1 ~ ~
  1171. scoreboard players add @e[type=armor_stand,tag=pointer_tp,score_block_cache_x=-1] block_cache_x 1
  1172. scoreboard players reset @e[tag=pointer_tp] block_cache_x
  1173. scoreboard players tag @e[type=armor_stand,tag=pointer_tp] remove pointer_tp
  1174. @op stained_glass
  1175. 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
  1176. 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
  1177. 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
  1178. 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
  1179. tp @e[type=armor_stand,tag=cursor_tp] 0 0 0
  1180. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=33554432] ~33554432 ~ ~
  1181. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=33554432] block_cache_x 33554432
  1182. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16777216] ~16777216 ~ ~
  1183. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16777216] block_cache_x 16777216
  1184. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8388608] ~8388608 ~ ~
  1185. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8388608] block_cache_x 8388608
  1186. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4194304] ~4194304 ~ ~
  1187. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4194304] block_cache_x 4194304
  1188. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2097152] ~2097152 ~ ~
  1189. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2097152] block_cache_x 2097152
  1190. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1048576] ~1048576 ~ ~
  1191. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1048576] block_cache_x 1048576
  1192. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=524288] ~524288 ~ ~
  1193. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=524288] block_cache_x 524288
  1194. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=262144] ~262144 ~ ~
  1195. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=262144] block_cache_x 262144
  1196. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=131072] ~131072 ~ ~
  1197. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=131072] block_cache_x 131072
  1198. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=65536] ~65536 ~ ~
  1199. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=65536] block_cache_x 65536
  1200. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=32768] ~32768 ~ ~
  1201. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=32768] block_cache_x 32768
  1202. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16384] ~16384 ~ ~
  1203. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16384] block_cache_x 16384
  1204. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8192] ~8192 ~ ~
  1205. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8192] block_cache_x 8192
  1206. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4096] ~4096 ~ ~
  1207. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4096] block_cache_x 4096
  1208. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2048] ~2048 ~ ~
  1209. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2048] block_cache_x 2048
  1210. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1024] ~1024 ~ ~
  1211. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1024] block_cache_x 1024
  1212. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=512] ~512 ~ ~
  1213. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=512] block_cache_x 512
  1214. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=256] ~256 ~ ~
  1215. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=256] block_cache_x 256
  1216. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=128] ~128 ~ ~
  1217. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=128] block_cache_x 128
  1218. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=64] ~64 ~ ~
  1219. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=64] block_cache_x 64
  1220. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=32] ~32 ~ ~
  1221. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=32] block_cache_x 32
  1222. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16] ~16 ~ ~
  1223. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16] block_cache_x 16
  1224. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8] ~8 ~ ~
  1225. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8] block_cache_x 8
  1226. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4] ~4 ~ ~
  1227. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4] block_cache_x 4
  1228. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2] ~2 ~ ~
  1229. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2] block_cache_x 2
  1230. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1] ~1 ~ ~
  1231. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1] block_cache_x 1
  1232. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-33554432] ~-33554432 ~ ~
  1233. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-33554432] block_cache_x 33554432
  1234. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16777216] ~-16777216 ~ ~
  1235. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16777216] block_cache_x 16777216
  1236. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8388608] ~-8388608 ~ ~
  1237. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8388608] block_cache_x 8388608
  1238. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4194304] ~-4194304 ~ ~
  1239. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4194304] block_cache_x 4194304
  1240. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2097152] ~-2097152 ~ ~
  1241. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2097152] block_cache_x 2097152
  1242. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1048576] ~-1048576 ~ ~
  1243. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1048576] block_cache_x 1048576
  1244. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-524288] ~-524288 ~ ~
  1245. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-524288] block_cache_x 524288
  1246. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-262144] ~-262144 ~ ~
  1247. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-262144] block_cache_x 262144
  1248. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-131072] ~-131072 ~ ~
  1249. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-131072] block_cache_x 131072
  1250. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-65536] ~-65536 ~ ~
  1251. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-65536] block_cache_x 65536
  1252. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-32768] ~-32768 ~ ~
  1253. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-32768] block_cache_x 32768
  1254. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16384] ~-16384 ~ ~
  1255. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16384] block_cache_x 16384
  1256. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8192] ~-8192 ~ ~
  1257. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8192] block_cache_x 8192
  1258. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4096] ~-4096 ~ ~
  1259. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4096] block_cache_x 4096
  1260. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2048] ~-2048 ~ ~
  1261. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2048] block_cache_x 2048
  1262. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1024] ~-1024 ~ ~
  1263. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1024] block_cache_x 1024
  1264. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-512] ~-512 ~ ~
  1265. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-512] block_cache_x 512
  1266. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-256] ~-256 ~ ~
  1267. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-256] block_cache_x 256
  1268. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-128] ~-128 ~ ~
  1269. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-128] block_cache_x 128
  1270. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-64] ~-64 ~ ~
  1271. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-64] block_cache_x 64
  1272. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-32] ~-32 ~ ~
  1273. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-32] block_cache_x 32
  1274. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16] ~-16 ~ ~
  1275. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16] block_cache_x 16
  1276. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8] ~-8 ~ ~
  1277. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8] block_cache_x 8
  1278. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4] ~-4 ~ ~
  1279. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4] block_cache_x 4
  1280. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2] ~-2 ~ ~
  1281. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2] block_cache_x 2
  1282. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1] ~-1 ~ ~
  1283. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1] block_cache_x 1
  1284. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=8192] ~ ~8192 ~
  1285. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=8192] block_cache_y 8192
  1286. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=4096] ~ ~4096 ~
  1287. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=4096] block_cache_y 4096
  1288. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=2048] ~ ~2048 ~
  1289. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=2048] block_cache_y 2048
  1290. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=1024] ~ ~1024 ~
  1291. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=1024] block_cache_y 1024
  1292. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=512] ~ ~512 ~
  1293. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=512] block_cache_y 512
  1294. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=256] ~ ~256 ~
  1295. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=256] block_cache_y 256
  1296. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=128] ~ ~128 ~
  1297. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=128] block_cache_y 128
  1298. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=64] ~ ~64 ~
  1299. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=64] block_cache_y 64
  1300. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=32] ~ ~32 ~
  1301. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=32] block_cache_y 32
  1302. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=16] ~ ~16 ~
  1303. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=16] block_cache_y 16
  1304. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=8] ~ ~8 ~
  1305. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=8] block_cache_y 8
  1306. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=4] ~ ~4 ~
  1307. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=4] block_cache_y 4
  1308. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=2] ~ ~2 ~
  1309. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=2] block_cache_y 2
  1310. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=1] ~ ~1 ~
  1311. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=1] block_cache_y 1
  1312. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-8192] ~ ~-8192 ~
  1313. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-8192] block_cache_y 8192
  1314. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-4096] ~ ~-4096 ~
  1315. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-4096] block_cache_y 4096
  1316. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-2048] ~ ~-2048 ~
  1317. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-2048] block_cache_y 2048
  1318. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-1024] ~ ~-1024 ~
  1319. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-1024] block_cache_y 1024
  1320. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-512] ~ ~-512 ~
  1321. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-512] block_cache_y 512
  1322. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-256] ~ ~-256 ~
  1323. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-256] block_cache_y 256
  1324. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-128] ~ ~-128 ~
  1325. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-128] block_cache_y 128
  1326. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-64] ~ ~-64 ~
  1327. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-64] block_cache_y 64
  1328. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-32] ~ ~-32 ~
  1329. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-32] block_cache_y 32
  1330. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-16] ~ ~-16 ~
  1331. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-16] block_cache_y 16
  1332. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-8] ~ ~-8 ~
  1333. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-8] block_cache_y 8
  1334. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-4] ~ ~-4 ~
  1335. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-4] block_cache_y 4
  1336. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-2] ~ ~-2 ~
  1337. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-2] block_cache_y 2
  1338. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-1] ~ ~-1 ~
  1339. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-1] block_cache_y 1
  1340. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=33554432] ~ ~ ~33554432
  1341. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=33554432] block_cache_z 33554432
  1342. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16777216] ~ ~ ~16777216
  1343. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16777216] block_cache_z 16777216
  1344. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8388608] ~ ~ ~8388608
  1345. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8388608] block_cache_z 8388608
  1346. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4194304] ~ ~ ~4194304
  1347. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4194304] block_cache_z 4194304
  1348. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2097152] ~ ~ ~2097152
  1349. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2097152] block_cache_z 2097152
  1350. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1048576] ~ ~ ~1048576
  1351. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1048576] block_cache_z 1048576
  1352. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=524288] ~ ~ ~524288
  1353. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=524288] block_cache_z 524288
  1354. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=262144] ~ ~ ~262144
  1355. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=262144] block_cache_z 262144
  1356. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=131072] ~ ~ ~131072
  1357. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=131072] block_cache_z 131072
  1358. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=65536] ~ ~ ~65536
  1359. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=65536] block_cache_z 65536
  1360. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=32768] ~ ~ ~32768
  1361. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=32768] block_cache_z 32768
  1362. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16384] ~ ~ ~16384
  1363. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16384] block_cache_z 16384
  1364. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8192] ~ ~ ~8192
  1365. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8192] block_cache_z 8192
  1366. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4096] ~ ~ ~4096
  1367. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4096] block_cache_z 4096
  1368. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2048] ~ ~ ~2048
  1369. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2048] block_cache_z 2048
  1370. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1024] ~ ~ ~1024
  1371. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1024] block_cache_z 1024
  1372. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=512] ~ ~ ~512
  1373. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=512] block_cache_z 512
  1374. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=256] ~ ~ ~256
  1375. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=256] block_cache_z 256
  1376. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=128] ~ ~ ~128
  1377. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=128] block_cache_z 128
  1378. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=64] ~ ~ ~64
  1379. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=64] block_cache_z 64
  1380. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=32] ~ ~ ~32
  1381. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=32] block_cache_z 32
  1382. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16] ~ ~ ~16
  1383. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16] block_cache_z 16
  1384. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8] ~ ~ ~8
  1385. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8] block_cache_z 8
  1386. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4] ~ ~ ~4
  1387. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4] block_cache_z 4
  1388. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2] ~ ~ ~2
  1389. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2] block_cache_z 2
  1390. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1] ~ ~ ~1
  1391. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1] block_cache_z 1
  1392. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-33554432] ~ ~ ~-33554432
  1393. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-33554432] block_cache_z 33554432
  1394. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16777216] ~ ~ ~-16777216
  1395. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16777216] block_cache_z 16777216
  1396. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8388608] ~ ~ ~-8388608
  1397. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8388608] block_cache_z 8388608
  1398. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4194304] ~ ~ ~-4194304
  1399. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4194304] block_cache_z 4194304
  1400. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2097152] ~ ~ ~-2097152
  1401. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2097152] block_cache_z 2097152
  1402. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1048576] ~ ~ ~-1048576
  1403. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1048576] block_cache_z 1048576
  1404. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-524288] ~ ~ ~-524288
  1405. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-524288] block_cache_z 524288
  1406. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-262144] ~ ~ ~-262144
  1407. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-262144] block_cache_z 262144
  1408. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-131072] ~ ~ ~-131072
  1409. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-131072] block_cache_z 131072
  1410. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-65536] ~ ~ ~-65536
  1411. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-65536] block_cache_z 65536
  1412. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-32768] ~ ~ ~-32768
  1413. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-32768] block_cache_z 32768
  1414. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16384] ~ ~ ~-16384
  1415. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16384] block_cache_z 16384
  1416. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8192] ~ ~ ~-8192
  1417. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8192] block_cache_z 8192
  1418. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4096] ~ ~ ~-4096
  1419. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4096] block_cache_z 4096
  1420. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2048] ~ ~ ~-2048
  1421. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2048] block_cache_z 2048
  1422. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1024] ~ ~ ~-1024
  1423. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1024] block_cache_z 1024
  1424. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-512] ~ ~ ~-512
  1425. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-512] block_cache_z 512
  1426. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-256] ~ ~ ~-256
  1427. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-256] block_cache_z 256
  1428. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-128] ~ ~ ~-128
  1429. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-128] block_cache_z 128
  1430. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-64] ~ ~ ~-64
  1431. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-64] block_cache_z 64
  1432. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-32] ~ ~ ~-32
  1433. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-32] block_cache_z 32
  1434. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16] ~ ~ ~-16
  1435. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16] block_cache_z 16
  1436. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8] ~ ~ ~-8
  1437. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8] block_cache_z 8
  1438. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4] ~ ~ ~-4
  1439. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4] block_cache_z 4
  1440. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2] ~ ~ ~-2
  1441. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2] block_cache_z 2
  1442. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1] ~ ~ ~-1
  1443. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1] block_cache_z 1
  1444. scoreboard players reset @e[tag=cursor_tp] block_cache_x
  1445. scoreboard players reset @e[tag=cursor_tp] block_cache_z
  1446. scoreboard players reset @e[tag=cursor_tp] block_cache_y
  1447. scoreboard players tag @e[type=armor_stand,tag=cursor_tp] remove cursor_tp
  1448. @op leaves
  1449. 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"]}
  1450. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:leaves -1 scoreboard players tag @e[type=armor_stand,tag=pointer] add do_blockget
  1451. 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]
  1452. 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]
  1453. 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]
  1454. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=33554432] ~33554432 ~ ~
  1455. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=33554432] block_cache_x 33554432
  1456. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=16777216] ~16777216 ~ ~
  1457. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=16777216] block_cache_x 16777216
  1458. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=8388608] ~8388608 ~ ~
  1459. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=8388608] block_cache_x 8388608
  1460. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=4194304] ~4194304 ~ ~
  1461. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=4194304] block_cache_x 4194304
  1462. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=2097152] ~2097152 ~ ~
  1463. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=2097152] block_cache_x 2097152
  1464. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=1048576] ~1048576 ~ ~
  1465. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=1048576] block_cache_x 1048576
  1466. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=524288] ~524288 ~ ~
  1467. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=524288] block_cache_x 524288
  1468. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=262144] ~262144 ~ ~
  1469. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=262144] block_cache_x 262144
  1470. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=131072] ~131072 ~ ~
  1471. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=131072] block_cache_x 131072
  1472. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=65536] ~65536 ~ ~
  1473. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=65536] block_cache_x 65536
  1474. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=32768] ~32768 ~ ~
  1475. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=32768] block_cache_x 32768
  1476. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=16384] ~16384 ~ ~
  1477. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=16384] block_cache_x 16384
  1478. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=8192] ~8192 ~ ~
  1479. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=8192] block_cache_x 8192
  1480. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=4096] ~4096 ~ ~
  1481. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=4096] block_cache_x 4096
  1482. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=2048] ~2048 ~ ~
  1483. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=2048] block_cache_x 2048
  1484. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=1024] ~1024 ~ ~
  1485. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=1024] block_cache_x 1024
  1486. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=512] ~512 ~ ~
  1487. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=512] block_cache_x 512
  1488. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=256] ~256 ~ ~
  1489. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=256] block_cache_x 256
  1490. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=128] ~128 ~ ~
  1491. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=128] block_cache_x 128
  1492. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=64] ~64 ~ ~
  1493. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=64] block_cache_x 64
  1494. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=32] ~32 ~ ~
  1495. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=32] block_cache_x 32
  1496. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=16] ~16 ~ ~
  1497. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=16] block_cache_x 16
  1498. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=8] ~8 ~ ~
  1499. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=8] block_cache_x 8
  1500. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=4] ~4 ~ ~
  1501. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=4] block_cache_x 4
  1502. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=2] ~2 ~ ~
  1503. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=2] block_cache_x 2
  1504. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=1] ~1 ~ ~
  1505. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_x_min=1] block_cache_x 1
  1506. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-33554432] ~-33554432 ~ ~
  1507. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-33554432] block_cache_x 33554432
  1508. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-16777216] ~-16777216 ~ ~
  1509. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-16777216] block_cache_x 16777216
  1510. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-8388608] ~-8388608 ~ ~
  1511. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-8388608] block_cache_x 8388608
  1512. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-4194304] ~-4194304 ~ ~
  1513. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-4194304] block_cache_x 4194304
  1514. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-2097152] ~-2097152 ~ ~
  1515. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-2097152] block_cache_x 2097152
  1516. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-1048576] ~-1048576 ~ ~
  1517. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-1048576] block_cache_x 1048576
  1518. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-524288] ~-524288 ~ ~
  1519. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-524288] block_cache_x 524288
  1520. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-262144] ~-262144 ~ ~
  1521. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-262144] block_cache_x 262144
  1522. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-131072] ~-131072 ~ ~
  1523. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-131072] block_cache_x 131072
  1524. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-65536] ~-65536 ~ ~
  1525. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-65536] block_cache_x 65536
  1526. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-32768] ~-32768 ~ ~
  1527. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-32768] block_cache_x 32768
  1528. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-16384] ~-16384 ~ ~
  1529. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-16384] block_cache_x 16384
  1530. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-8192] ~-8192 ~ ~
  1531. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-8192] block_cache_x 8192
  1532. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-4096] ~-4096 ~ ~
  1533. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-4096] block_cache_x 4096
  1534. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-2048] ~-2048 ~ ~
  1535. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-2048] block_cache_x 2048
  1536. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-1024] ~-1024 ~ ~
  1537. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-1024] block_cache_x 1024
  1538. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-512] ~-512 ~ ~
  1539. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-512] block_cache_x 512
  1540. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-256] ~-256 ~ ~
  1541. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-256] block_cache_x 256
  1542. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-128] ~-128 ~ ~
  1543. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-128] block_cache_x 128
  1544. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-64] ~-64 ~ ~
  1545. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-64] block_cache_x 64
  1546. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-32] ~-32 ~ ~
  1547. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-32] block_cache_x 32
  1548. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-16] ~-16 ~ ~
  1549. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-16] block_cache_x 16
  1550. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-8] ~-8 ~ ~
  1551. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-8] block_cache_x 8
  1552. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-4] ~-4 ~ ~
  1553. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-4] block_cache_x 4
  1554. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-2] ~-2 ~ ~
  1555. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-2] block_cache_x 2
  1556. tp @e[type=armor_stand,tag=block_getter,score_block_cache_x=-1] ~-1 ~ ~
  1557. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_x=-1] block_cache_x 1
  1558. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=8192] ~ ~8192 ~
  1559. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=8192] block_cache_y 8192
  1560. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=4096] ~ ~4096 ~
  1561. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=4096] block_cache_y 4096
  1562. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=2048] ~ ~2048 ~
  1563. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=2048] block_cache_y 2048
  1564. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=1024] ~ ~1024 ~
  1565. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=1024] block_cache_y 1024
  1566. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=512] ~ ~512 ~
  1567. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=512] block_cache_y 512
  1568. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=256] ~ ~256 ~
  1569. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=256] block_cache_y 256
  1570. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=128] ~ ~128 ~
  1571. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=128] block_cache_y 128
  1572. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=64] ~ ~64 ~
  1573. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=64] block_cache_y 64
  1574. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=32] ~ ~32 ~
  1575. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=32] block_cache_y 32
  1576. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=16] ~ ~16 ~
  1577. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=16] block_cache_y 16
  1578. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=8] ~ ~8 ~
  1579. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=8] block_cache_y 8
  1580. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=4] ~ ~4 ~
  1581. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=4] block_cache_y 4
  1582. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=2] ~ ~2 ~
  1583. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=2] block_cache_y 2
  1584. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=1] ~ ~1 ~
  1585. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_y_min=1] block_cache_y 1
  1586. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-8192] ~ ~-8192 ~
  1587. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-8192] block_cache_y 8192
  1588. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-4096] ~ ~-4096 ~
  1589. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-4096] block_cache_y 4096
  1590. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-2048] ~ ~-2048 ~
  1591. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-2048] block_cache_y 2048
  1592. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-1024] ~ ~-1024 ~
  1593. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-1024] block_cache_y 1024
  1594. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-512] ~ ~-512 ~
  1595. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-512] block_cache_y 512
  1596. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-256] ~ ~-256 ~
  1597. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-256] block_cache_y 256
  1598. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-128] ~ ~-128 ~
  1599. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-128] block_cache_y 128
  1600. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-64] ~ ~-64 ~
  1601. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-64] block_cache_y 64
  1602. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-32] ~ ~-32 ~
  1603. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-32] block_cache_y 32
  1604. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-16] ~ ~-16 ~
  1605. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-16] block_cache_y 16
  1606. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-8] ~ ~-8 ~
  1607. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-8] block_cache_y 8
  1608. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-4] ~ ~-4 ~
  1609. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-4] block_cache_y 4
  1610. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-2] ~ ~-2 ~
  1611. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-2] block_cache_y 2
  1612. tp @e[type=armor_stand,tag=block_getter,score_block_cache_y=-1] ~ ~-1 ~
  1613. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_y=-1] block_cache_y 1
  1614. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=33554432] ~ ~ ~33554432
  1615. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=33554432] block_cache_z 33554432
  1616. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=16777216] ~ ~ ~16777216
  1617. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=16777216] block_cache_z 16777216
  1618. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=8388608] ~ ~ ~8388608
  1619. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=8388608] block_cache_z 8388608
  1620. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=4194304] ~ ~ ~4194304
  1621. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=4194304] block_cache_z 4194304
  1622. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=2097152] ~ ~ ~2097152
  1623. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=2097152] block_cache_z 2097152
  1624. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=1048576] ~ ~ ~1048576
  1625. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=1048576] block_cache_z 1048576
  1626. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=524288] ~ ~ ~524288
  1627. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=524288] block_cache_z 524288
  1628. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=262144] ~ ~ ~262144
  1629. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=262144] block_cache_z 262144
  1630. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=131072] ~ ~ ~131072
  1631. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=131072] block_cache_z 131072
  1632. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=65536] ~ ~ ~65536
  1633. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=65536] block_cache_z 65536
  1634. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=32768] ~ ~ ~32768
  1635. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=32768] block_cache_z 32768
  1636. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=16384] ~ ~ ~16384
  1637. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=16384] block_cache_z 16384
  1638. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=8192] ~ ~ ~8192
  1639. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=8192] block_cache_z 8192
  1640. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=4096] ~ ~ ~4096
  1641. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=4096] block_cache_z 4096
  1642. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=2048] ~ ~ ~2048
  1643. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=2048] block_cache_z 2048
  1644. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=1024] ~ ~ ~1024
  1645. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=1024] block_cache_z 1024
  1646. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=512] ~ ~ ~512
  1647. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=512] block_cache_z 512
  1648. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=256] ~ ~ ~256
  1649. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=256] block_cache_z 256
  1650. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=128] ~ ~ ~128
  1651. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=128] block_cache_z 128
  1652. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=64] ~ ~ ~64
  1653. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=64] block_cache_z 64
  1654. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=32] ~ ~ ~32
  1655. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=32] block_cache_z 32
  1656. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=16] ~ ~ ~16
  1657. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=16] block_cache_z 16
  1658. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=8] ~ ~ ~8
  1659. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=8] block_cache_z 8
  1660. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=4] ~ ~ ~4
  1661. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=4] block_cache_z 4
  1662. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=2] ~ ~ ~2
  1663. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=2] block_cache_z 2
  1664. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=1] ~ ~ ~1
  1665. scoreboard players remove @e[type=armor_stand,tag=block_getter,score_block_cache_z_min=1] block_cache_z 1
  1666. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-33554432] ~ ~ ~-33554432
  1667. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-33554432] block_cache_z 33554432
  1668. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-16777216] ~ ~ ~-16777216
  1669. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-16777216] block_cache_z 16777216
  1670. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-8388608] ~ ~ ~-8388608
  1671. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-8388608] block_cache_z 8388608
  1672. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-4194304] ~ ~ ~-4194304
  1673. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-4194304] block_cache_z 4194304
  1674. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-2097152] ~ ~ ~-2097152
  1675. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-2097152] block_cache_z 2097152
  1676. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-1048576] ~ ~ ~-1048576
  1677. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-1048576] block_cache_z 1048576
  1678. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-524288] ~ ~ ~-524288
  1679. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-524288] block_cache_z 524288
  1680. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-262144] ~ ~ ~-262144
  1681. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-262144] block_cache_z 262144
  1682. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-131072] ~ ~ ~-131072
  1683. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-131072] block_cache_z 131072
  1684. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-65536] ~ ~ ~-65536
  1685. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-65536] block_cache_z 65536
  1686. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-32768] ~ ~ ~-32768
  1687. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-32768] block_cache_z 32768
  1688. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-16384] ~ ~ ~-16384
  1689. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-16384] block_cache_z 16384
  1690. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-8192] ~ ~ ~-8192
  1691. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-8192] block_cache_z 8192
  1692. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-4096] ~ ~ ~-4096
  1693. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-4096] block_cache_z 4096
  1694. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-2048] ~ ~ ~-2048
  1695. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-2048] block_cache_z 2048
  1696. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-1024] ~ ~ ~-1024
  1697. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-1024] block_cache_z 1024
  1698. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-512] ~ ~ ~-512
  1699. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-512] block_cache_z 512
  1700. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-256] ~ ~ ~-256
  1701. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-256] block_cache_z 256
  1702. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-128] ~ ~ ~-128
  1703. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-128] block_cache_z 128
  1704. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-64] ~ ~ ~-64
  1705. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-64] block_cache_z 64
  1706. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-32] ~ ~ ~-32
  1707. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-32] block_cache_z 32
  1708. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-16] ~ ~ ~-16
  1709. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-16] block_cache_z 16
  1710. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-8] ~ ~ ~-8
  1711. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-8] block_cache_z 8
  1712. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-4] ~ ~ ~-4
  1713. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-4] block_cache_z 4
  1714. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-2] ~ ~ ~-2
  1715. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-2] block_cache_z 2
  1716. tp @e[type=armor_stand,tag=block_getter,score_block_cache_z=-1] ~ ~ ~-1
  1717. scoreboard players add @e[type=armor_stand,tag=block_getter,score_block_cache_z=-1] block_cache_z 1
  1718. execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ air -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 0
  1719. execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ stone -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 1
  1720. execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ cobblestone -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 2
  1721. 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
  1722. execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ obsidian -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 4
  1723. execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ piston -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 5
  1724. 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
  1725. 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
  1726. execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ sandstone -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 8
  1727. 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
  1728. 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
  1729. 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
  1730. 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
  1731. 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
  1732. 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
  1733. 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
  1734. execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ netherrack -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 16
  1735. 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
  1736. 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
  1737. execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ sponge -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 19
  1738. execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ bookshelf -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 20
  1739. 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
  1740. 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
  1741. 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
  1742. execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ clay -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 24
  1743. 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
  1744. 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
  1745. 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
  1746. execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ planks -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 28
  1747. execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ log -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 29
  1748. 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
  1749. execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ log2 -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 31
  1750. execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ snow -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 32
  1751. 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
  1752. 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
  1753. 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
  1754. 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
  1755. execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ stonebrick -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 37
  1756. execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ glass -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 38
  1757. 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
  1758. 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
  1759. execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ prismarine -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 41
  1760. 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
  1761. execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ magma -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 43
  1762. 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
  1763. execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ slime -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 45
  1764. 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
  1765. 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
  1766. execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ dirt -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 48
  1767. execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ wool -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 49
  1768. 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
  1769. 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
  1770. 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
  1771. 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
  1772. 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
  1773. 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
  1774. execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ leaves -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 56
  1775. execute @e[type=armor_stand,tag=block_getter] ~ ~ ~ detect ~ ~ ~ leaves2 -1 scoreboard players set @e[type=armor_stand,tag=pointer] block_cache_b 57
  1776. 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
  1777. 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
  1778. 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
  1779. 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
  1780. scoreboard players reset @e[type=armor_stand,tag=pointer] block_cache_b
  1781. kill @e[tag=block_getter]
  1782. scoreboard players tag @e[tag=do_blockget] remove do_blockget
  1783. @op leaves2
  1784. execute @e[type=armor_stand,tag=cursor] ~ ~ ~ detect ~ ~-1 ~ minecraft:leaves2 -1 scoreboard players tag @e[type=armor_stand,tag=cursor] add cursor_tp
  1785. 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
  1786. 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
  1787. 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
  1788. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=33554432] ~33554432 ~ ~
  1789. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=33554432] block_cache_x 33554432
  1790. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16777216] ~16777216 ~ ~
  1791. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16777216] block_cache_x 16777216
  1792. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8388608] ~8388608 ~ ~
  1793. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8388608] block_cache_x 8388608
  1794. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4194304] ~4194304 ~ ~
  1795. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4194304] block_cache_x 4194304
  1796. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2097152] ~2097152 ~ ~
  1797. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2097152] block_cache_x 2097152
  1798. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1048576] ~1048576 ~ ~
  1799. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1048576] block_cache_x 1048576
  1800. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=524288] ~524288 ~ ~
  1801. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=524288] block_cache_x 524288
  1802. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=262144] ~262144 ~ ~
  1803. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=262144] block_cache_x 262144
  1804. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=131072] ~131072 ~ ~
  1805. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=131072] block_cache_x 131072
  1806. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=65536] ~65536 ~ ~
  1807. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=65536] block_cache_x 65536
  1808. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=32768] ~32768 ~ ~
  1809. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=32768] block_cache_x 32768
  1810. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16384] ~16384 ~ ~
  1811. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16384] block_cache_x 16384
  1812. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8192] ~8192 ~ ~
  1813. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8192] block_cache_x 8192
  1814. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4096] ~4096 ~ ~
  1815. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4096] block_cache_x 4096
  1816. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2048] ~2048 ~ ~
  1817. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2048] block_cache_x 2048
  1818. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1024] ~1024 ~ ~
  1819. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1024] block_cache_x 1024
  1820. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=512] ~512 ~ ~
  1821. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=512] block_cache_x 512
  1822. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=256] ~256 ~ ~
  1823. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=256] block_cache_x 256
  1824. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=128] ~128 ~ ~
  1825. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=128] block_cache_x 128
  1826. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=64] ~64 ~ ~
  1827. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=64] block_cache_x 64
  1828. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=32] ~32 ~ ~
  1829. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=32] block_cache_x 32
  1830. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16] ~16 ~ ~
  1831. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=16] block_cache_x 16
  1832. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8] ~8 ~ ~
  1833. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=8] block_cache_x 8
  1834. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4] ~4 ~ ~
  1835. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=4] block_cache_x 4
  1836. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2] ~2 ~ ~
  1837. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=2] block_cache_x 2
  1838. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1] ~1 ~ ~
  1839. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_x_min=1] block_cache_x 1
  1840. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-33554432] ~-33554432 ~ ~
  1841. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-33554432] block_cache_x 33554432
  1842. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16777216] ~-16777216 ~ ~
  1843. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16777216] block_cache_x 16777216
  1844. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8388608] ~-8388608 ~ ~
  1845. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8388608] block_cache_x 8388608
  1846. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4194304] ~-4194304 ~ ~
  1847. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4194304] block_cache_x 4194304
  1848. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2097152] ~-2097152 ~ ~
  1849. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2097152] block_cache_x 2097152
  1850. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1048576] ~-1048576 ~ ~
  1851. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1048576] block_cache_x 1048576
  1852. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-524288] ~-524288 ~ ~
  1853. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-524288] block_cache_x 524288
  1854. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-262144] ~-262144 ~ ~
  1855. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-262144] block_cache_x 262144
  1856. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-131072] ~-131072 ~ ~
  1857. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-131072] block_cache_x 131072
  1858. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-65536] ~-65536 ~ ~
  1859. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-65536] block_cache_x 65536
  1860. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-32768] ~-32768 ~ ~
  1861. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-32768] block_cache_x 32768
  1862. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16384] ~-16384 ~ ~
  1863. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16384] block_cache_x 16384
  1864. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8192] ~-8192 ~ ~
  1865. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8192] block_cache_x 8192
  1866. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4096] ~-4096 ~ ~
  1867. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4096] block_cache_x 4096
  1868. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2048] ~-2048 ~ ~
  1869. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2048] block_cache_x 2048
  1870. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1024] ~-1024 ~ ~
  1871. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1024] block_cache_x 1024
  1872. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-512] ~-512 ~ ~
  1873. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-512] block_cache_x 512
  1874. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-256] ~-256 ~ ~
  1875. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-256] block_cache_x 256
  1876. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-128] ~-128 ~ ~
  1877. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-128] block_cache_x 128
  1878. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-64] ~-64 ~ ~
  1879. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-64] block_cache_x 64
  1880. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-32] ~-32 ~ ~
  1881. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-32] block_cache_x 32
  1882. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16] ~-16 ~ ~
  1883. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-16] block_cache_x 16
  1884. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8] ~-8 ~ ~
  1885. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-8] block_cache_x 8
  1886. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4] ~-4 ~ ~
  1887. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-4] block_cache_x 4
  1888. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2] ~-2 ~ ~
  1889. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-2] block_cache_x 2
  1890. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1] ~-1 ~ ~
  1891. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_x=-1] block_cache_x 1
  1892. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=8192] ~ ~8192 ~
  1893. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=8192] block_cache_y 8192
  1894. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=4096] ~ ~4096 ~
  1895. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=4096] block_cache_y 4096
  1896. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=2048] ~ ~2048 ~
  1897. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=2048] block_cache_y 2048
  1898. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=1024] ~ ~1024 ~
  1899. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=1024] block_cache_y 1024
  1900. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=512] ~ ~512 ~
  1901. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=512] block_cache_y 512
  1902. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=256] ~ ~256 ~
  1903. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=256] block_cache_y 256
  1904. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=128] ~ ~128 ~
  1905. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=128] block_cache_y 128
  1906. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=64] ~ ~64 ~
  1907. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=64] block_cache_y 64
  1908. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=32] ~ ~32 ~
  1909. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=32] block_cache_y 32
  1910. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=16] ~ ~16 ~
  1911. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=16] block_cache_y 16
  1912. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=8] ~ ~8 ~
  1913. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=8] block_cache_y 8
  1914. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=4] ~ ~4 ~
  1915. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=4] block_cache_y 4
  1916. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=2] ~ ~2 ~
  1917. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=2] block_cache_y 2
  1918. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=1] ~ ~1 ~
  1919. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_y_min=1] block_cache_y 1
  1920. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-8192] ~ ~-8192 ~
  1921. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-8192] block_cache_y 8192
  1922. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-4096] ~ ~-4096 ~
  1923. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-4096] block_cache_y 4096
  1924. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-2048] ~ ~-2048 ~
  1925. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-2048] block_cache_y 2048
  1926. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-1024] ~ ~-1024 ~
  1927. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-1024] block_cache_y 1024
  1928. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-512] ~ ~-512 ~
  1929. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-512] block_cache_y 512
  1930. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-256] ~ ~-256 ~
  1931. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-256] block_cache_y 256
  1932. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-128] ~ ~-128 ~
  1933. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-128] block_cache_y 128
  1934. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-64] ~ ~-64 ~
  1935. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-64] block_cache_y 64
  1936. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-32] ~ ~-32 ~
  1937. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-32] block_cache_y 32
  1938. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-16] ~ ~-16 ~
  1939. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-16] block_cache_y 16
  1940. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-8] ~ ~-8 ~
  1941. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-8] block_cache_y 8
  1942. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-4] ~ ~-4 ~
  1943. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-4] block_cache_y 4
  1944. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-2] ~ ~-2 ~
  1945. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-2] block_cache_y 2
  1946. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-1] ~ ~-1 ~
  1947. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_y=-1] block_cache_y 1
  1948. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=33554432] ~ ~ ~33554432
  1949. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=33554432] block_cache_z 33554432
  1950. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16777216] ~ ~ ~16777216
  1951. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16777216] block_cache_z 16777216
  1952. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8388608] ~ ~ ~8388608
  1953. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8388608] block_cache_z 8388608
  1954. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4194304] ~ ~ ~4194304
  1955. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4194304] block_cache_z 4194304
  1956. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2097152] ~ ~ ~2097152
  1957. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2097152] block_cache_z 2097152
  1958. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1048576] ~ ~ ~1048576
  1959. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1048576] block_cache_z 1048576
  1960. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=524288] ~ ~ ~524288
  1961. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=524288] block_cache_z 524288
  1962. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=262144] ~ ~ ~262144
  1963. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=262144] block_cache_z 262144
  1964. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=131072] ~ ~ ~131072
  1965. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=131072] block_cache_z 131072
  1966. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=65536] ~ ~ ~65536
  1967. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=65536] block_cache_z 65536
  1968. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=32768] ~ ~ ~32768
  1969. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=32768] block_cache_z 32768
  1970. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16384] ~ ~ ~16384
  1971. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16384] block_cache_z 16384
  1972. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8192] ~ ~ ~8192
  1973. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8192] block_cache_z 8192
  1974. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4096] ~ ~ ~4096
  1975. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4096] block_cache_z 4096
  1976. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2048] ~ ~ ~2048
  1977. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2048] block_cache_z 2048
  1978. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1024] ~ ~ ~1024
  1979. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1024] block_cache_z 1024
  1980. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=512] ~ ~ ~512
  1981. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=512] block_cache_z 512
  1982. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=256] ~ ~ ~256
  1983. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=256] block_cache_z 256
  1984. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=128] ~ ~ ~128
  1985. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=128] block_cache_z 128
  1986. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=64] ~ ~ ~64
  1987. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=64] block_cache_z 64
  1988. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=32] ~ ~ ~32
  1989. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=32] block_cache_z 32
  1990. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16] ~ ~ ~16
  1991. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=16] block_cache_z 16
  1992. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8] ~ ~ ~8
  1993. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=8] block_cache_z 8
  1994. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4] ~ ~ ~4
  1995. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=4] block_cache_z 4
  1996. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2] ~ ~ ~2
  1997. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=2] block_cache_z 2
  1998. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1] ~ ~ ~1
  1999. scoreboard players remove @e[type=armor_stand,tag=cursor_tp,score_block_cache_z_min=1] block_cache_z 1
  2000. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-33554432] ~ ~ ~-33554432
  2001. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-33554432] block_cache_z 33554432
  2002. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16777216] ~ ~ ~-16777216
  2003. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16777216] block_cache_z 16777216
  2004. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8388608] ~ ~ ~-8388608
  2005. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8388608] block_cache_z 8388608
  2006. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4194304] ~ ~ ~-4194304
  2007. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4194304] block_cache_z 4194304
  2008. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2097152] ~ ~ ~-2097152
  2009. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2097152] block_cache_z 2097152
  2010. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1048576] ~ ~ ~-1048576
  2011. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1048576] block_cache_z 1048576
  2012. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-524288] ~ ~ ~-524288
  2013. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-524288] block_cache_z 524288
  2014. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-262144] ~ ~ ~-262144
  2015. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-262144] block_cache_z 262144
  2016. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-131072] ~ ~ ~-131072
  2017. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-131072] block_cache_z 131072
  2018. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-65536] ~ ~ ~-65536
  2019. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-65536] block_cache_z 65536
  2020. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-32768] ~ ~ ~-32768
  2021. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-32768] block_cache_z 32768
  2022. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16384] ~ ~ ~-16384
  2023. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16384] block_cache_z 16384
  2024. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8192] ~ ~ ~-8192
  2025. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8192] block_cache_z 8192
  2026. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4096] ~ ~ ~-4096
  2027. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4096] block_cache_z 4096
  2028. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2048] ~ ~ ~-2048
  2029. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2048] block_cache_z 2048
  2030. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1024] ~ ~ ~-1024
  2031. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1024] block_cache_z 1024
  2032. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-512] ~ ~ ~-512
  2033. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-512] block_cache_z 512
  2034. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-256] ~ ~ ~-256
  2035. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-256] block_cache_z 256
  2036. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-128] ~ ~ ~-128
  2037. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-128] block_cache_z 128
  2038. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-64] ~ ~ ~-64
  2039. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-64] block_cache_z 64
  2040. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-32] ~ ~ ~-32
  2041. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-32] block_cache_z 32
  2042. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16] ~ ~ ~-16
  2043. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-16] block_cache_z 16
  2044. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8] ~ ~ ~-8
  2045. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-8] block_cache_z 8
  2046. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4] ~ ~ ~-4
  2047. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-4] block_cache_z 4
  2048. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2] ~ ~ ~-2
  2049. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-2] block_cache_z 2
  2050. tp @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1] ~ ~ ~-1
  2051. scoreboard players add @e[type=armor_stand,tag=cursor_tp,score_block_cache_z=-1] block_cache_z 1
  2052. scoreboard players reset @e[tag=cursor_tp] block_cache_x
  2053. scoreboard players reset @e[tag=cursor_tp] block_cache_z
  2054. scoreboard players reset @e[tag=cursor_tp] block_cache_y
  2055. scoreboard players tag @e[type=armor_stand,tag=cursor_tp] remove cursor_tp
  2056. @op stone_slab
  2057. 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
  2058. @op wooden_slab
  2059. 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
  2060. @op purpur_slab
  2061. 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