├── LICENSE ├── README.md ├── assets ├── custom │ ├── font │ │ ├── chatbox │ │ │ ├── background.json │ │ │ ├── character.json │ │ │ └── icon.json │ │ └── space.json │ ├── sounds.json │ ├── sounds │ │ └── chatbox │ │ │ └── character │ │ │ ├── oneshot_text.ogg │ │ │ └── sans_0.ogg │ └── textures │ │ └── font │ │ └── chatbox │ │ ├── background │ │ ├── 0.png │ │ ├── 1.png │ │ └── 2.png │ │ ├── character │ │ ├── 0.png │ │ ├── 1.png │ │ └── 2.png │ │ └── icon │ │ ├── 0.png │ │ ├── 1.png │ │ └── 2.png └── minecraft │ └── textures │ └── gui │ └── bars.png └── data ├── chatbox ├── functions │ ├── bossbar │ │ ├── clear │ │ │ ├── icon.mcfunction │ │ │ ├── with_all.mcfunction │ │ │ ├── with_format.mcfunction │ │ │ └── without_format.mcfunction │ │ ├── display │ │ │ ├── off.mcfunction │ │ │ ├── on.mcfunction │ │ │ ├── reload.mcfunction │ │ │ └── zzz │ │ │ │ └── 0.mcfunction │ │ ├── init.mcfunction │ │ └── set │ │ │ ├── frame.mcfunction │ │ │ ├── icon.mcfunction │ │ │ └── line.mcfunction │ ├── init.mcfunction │ ├── manage │ │ ├── check │ │ │ ├── do.mcfunction │ │ │ └── zzz │ │ │ │ ├── 0.mcfunction │ │ │ │ ├── 1.mcfunction │ │ │ │ └── 2.mcfunction │ │ ├── frame │ │ │ ├── character │ │ │ │ ├── do.mcfunction │ │ │ │ ├── play.mcfunction │ │ │ │ ├── stop.mcfunction │ │ │ │ ├── timer.mcfunction │ │ │ │ └── zzz │ │ │ │ │ ├── 0.mcfunction │ │ │ │ │ └── 1.mcfunction │ │ │ ├── combine.mcfunction │ │ │ ├── icon │ │ │ │ ├── disable.mcfunction │ │ │ │ ├── do.mcfunction │ │ │ │ ├── play.mcfunction │ │ │ │ ├── timer.mcfunction │ │ │ │ └── zzz │ │ │ │ │ └── 0.mcfunction │ │ │ ├── timer.mcfunction │ │ │ └── zzz │ │ │ │ ├── 0.mcfunction │ │ │ │ ├── 1.mcfunction │ │ │ │ └── 2.mcfunction │ │ ├── icon │ │ │ ├── do.mcfunction │ │ │ ├── play.mcfunction │ │ │ ├── timer.mcfunction │ │ │ └── zzz │ │ │ │ └── 0.mcfunction │ │ ├── instant │ │ │ ├── do.mcfunction │ │ │ ├── method │ │ │ │ ├── buffer_output.mcfunction │ │ │ │ └── rerange.mcfunction │ │ │ └── zzz │ │ │ │ ├── 0.mcfunction │ │ │ │ ├── 1.mcfunction │ │ │ │ ├── 2.mcfunction │ │ │ │ ├── 3.mcfunction │ │ │ │ ├── 4.mcfunction │ │ │ │ └── 5.mcfunction │ │ ├── newchar │ │ │ ├── do.mcfunction │ │ │ ├── timer.mcfunction │ │ │ └── zzz │ │ │ │ ├── 0.mcfunction │ │ │ │ ├── 1.mcfunction │ │ │ │ ├── 2.mcfunction │ │ │ │ ├── 3.mcfunction │ │ │ │ └── 4.mcfunction │ │ ├── nextline.mcfunction │ │ ├── rerange.mcfunction │ │ └── timer.mcfunction │ ├── sound │ │ ├── play.mcfunction │ │ └── zzz │ │ │ ├── 1.mcfunction │ │ │ └── 2.mcfunction │ ├── style │ │ ├── 0.mcfunction │ │ ├── 1.mcfunction │ │ └── 2.mcfunction │ ├── test │ │ ├── 0.mcfunction │ │ ├── 1.mcfunction │ │ ├── 2.mcfunction │ │ ├── 3.mcfunction │ │ ├── 4.mcfunction │ │ └── 5.mcfunction │ ├── tick.mcfunction │ └── uninstall.mcfunction └── tags │ └── functions │ └── uninstall.json ├── generic ├── functions │ ├── aec_update.mcfunction │ ├── entity │ │ ├── aec │ │ │ └── posupdate.mcfunction │ │ ├── generic │ │ │ ├── alignrot │ │ │ │ └── do.mcfunction │ │ │ └── uid │ │ │ │ ├── give.mcfunction │ │ │ │ └── new.mcfunction │ │ ├── ghost │ │ │ └── summon.mcfunction │ │ ├── interaction │ │ │ ├── getinfo │ │ │ │ └── do.mcfunction │ │ │ ├── getname │ │ │ │ └── do.mcfunction │ │ │ └── glowing │ │ │ │ ├── clear.mcfunction │ │ │ │ ├── disable.mcfunction │ │ │ │ ├── do.mcfunction │ │ │ │ ├── enable.mcfunction │ │ │ │ ├── tick_at_end.mcfunction │ │ │ │ ├── tick_at_start.mcfunction │ │ │ │ └── zzz │ │ │ │ ├── 0.mcfunction │ │ │ │ ├── 1.mcfunction │ │ │ │ ├── 2.mcfunction │ │ │ │ └── 3.mcfunction │ │ └── player │ │ │ └── sprint │ │ │ ├── disable.mcfunction │ │ │ └── disable_with_flag │ │ │ ├── 0.mcfunction │ │ │ ├── 1.mcfunction │ │ │ └── disable.mcfunction │ ├── init.mcfunction │ ├── list │ │ ├── clear.mcfunction │ │ ├── fill.mcfunction │ │ ├── get │ │ │ ├── do.mcfunction │ │ │ └── jump.mcfunction │ │ ├── pick │ │ │ ├── do.mcfunction │ │ │ ├── loop.mcfunction │ │ │ └── result.mcfunction │ │ ├── remove │ │ │ ├── do.mcfunction │ │ │ └── loop.mcfunction │ │ ├── remove_till.mcfunction │ │ ├── replace │ │ │ ├── do.mcfunction │ │ │ ├── loop.mcfunction │ │ │ └── zzz │ │ │ │ └── 0.mcfunction │ │ ├── set │ │ │ ├── do.mcfunction │ │ │ ├── end.mcfunction │ │ │ └── jump.mcfunction │ │ ├── shuffle │ │ │ ├── do.mcfunction │ │ │ ├── loop.mcfunction │ │ │ ├── result.mcfunction │ │ │ └── zzz │ │ │ │ └── 0.mcfunction │ │ └── sum │ │ │ ├── do.mcfunction │ │ │ ├── jump.mcfunction │ │ │ └── loop.mcfunction │ ├── math │ │ ├── bincon │ │ │ ├── do.mcfunction │ │ │ └── execute.mcfunction │ │ ├── convert │ │ │ └── int_uint16 │ │ │ │ ├── do.mcfunction │ │ │ │ ├── negative.mcfunction │ │ │ │ └── positive.mcfunction │ │ ├── cos │ │ │ ├── do.mcfunction │ │ │ └── execute.mcfunction │ │ ├── hexcon │ │ │ ├── cutzero │ │ │ │ ├── do.mcfunction │ │ │ │ └── execute.mcfunction │ │ │ ├── dynamic │ │ │ │ ├── do.mcfunction │ │ │ │ └── execute.mcfunction │ │ │ └── fixed │ │ │ │ ├── do.mcfunction │ │ │ │ └── execute.mcfunction │ │ ├── quaternion │ │ │ └── fromeular │ │ │ │ └── do.mcfunction │ │ ├── rgb │ │ │ ├── decode.mcfunction │ │ │ └── encode.mcfunction │ │ ├── rng │ │ │ ├── do.mcfunction │ │ │ └── methods │ │ │ │ └── predicate │ │ │ │ ├── do.mcfunction │ │ │ │ └── zzz │ │ │ │ ├── 0.mcfunction │ │ │ │ └── 1.mcfunction │ │ ├── rotvec │ │ │ ├── getx.mcfunction │ │ │ ├── getz.mcfunction │ │ │ ├── x.mcfunction │ │ │ └── z.mcfunction │ │ ├── sin │ │ │ ├── do.mcfunction │ │ │ └── execute.mcfunction │ │ ├── splitdec │ │ │ ├── do.mcfunction │ │ │ └── zzz │ │ │ │ ├── 0.mcfunction │ │ │ │ └── 1.mcfunction │ │ ├── sqrt │ │ │ ├── do.mcfunction │ │ │ └── loop.mcfunction │ │ └── vector │ │ │ ├── dot │ │ │ └── do.mcfunction │ │ │ ├── getfacepoint │ │ │ └── do.mcfunction │ │ │ └── getfromrotation │ │ │ ├── do.mcfunction │ │ │ ├── log.mcfunction │ │ │ └── zzz │ │ │ └── 0.mcfunction │ ├── realtime │ │ ├── add │ │ │ └── do.mcfunction │ │ ├── daylight │ │ │ ├── add.mcfunction │ │ │ ├── off.mcfunction │ │ │ ├── on.mcfunction │ │ │ ├── sync.mcfunction │ │ │ └── tick.mcfunction │ │ ├── get │ │ │ ├── do.mcfunction │ │ │ └── zzz │ │ │ │ └── 0.mcfunction │ │ ├── init.mcfunction │ │ ├── limit │ │ │ ├── do.mcfunction │ │ │ └── zzz │ │ │ │ ├── 0.mcfunction │ │ │ │ ├── 1.mcfunction │ │ │ │ ├── 2.mcfunction │ │ │ │ ├── 3.mcfunction │ │ │ │ ├── 4.mcfunction │ │ │ │ └── 5.mcfunction │ │ ├── sync │ │ │ ├── do.mcfunction │ │ │ ├── end.mcfunction │ │ │ └── tick.mcfunction │ │ └── tick.mcfunction │ ├── text │ │ ├── charmerge │ │ │ ├── do.mcfunction │ │ │ └── execute.mcfunction │ │ ├── combine │ │ │ ├── json_with_default_later │ │ │ │ └── do.mcfunction │ │ │ ├── json_with_format │ │ │ │ └── do.mcfunction │ │ │ ├── json_with_string_later │ │ │ │ └── do.mcfunction │ │ │ ├── pure_string │ │ │ │ ├── do.mcfunction │ │ │ │ ├── name_to_string.mcfunction │ │ │ │ └── zzz │ │ │ │ │ └── 0.mcfunction │ │ │ └── pure_string_as_command │ │ │ │ ├── do.mcfunction │ │ │ │ ├── init.mcfunction │ │ │ │ ├── name_to_string.mcfunction │ │ │ │ └── zzz │ │ │ │ ├── 0.mcfunction │ │ │ │ ├── 1.mcfunction │ │ │ │ ├── 2.mcfunction │ │ │ │ └── 3.mcfunction │ │ ├── create_space │ │ │ ├── negative │ │ │ │ ├── do.mcfunction │ │ │ │ └── zzz │ │ │ │ │ ├── 00.mcfunction │ │ │ │ │ ├── 01.mcfunction │ │ │ │ │ ├── 02.mcfunction │ │ │ │ │ ├── 03.mcfunction │ │ │ │ │ ├── 04.mcfunction │ │ │ │ │ ├── 05.mcfunction │ │ │ │ │ ├── 06.mcfunction │ │ │ │ │ ├── 07.mcfunction │ │ │ │ │ ├── 08.mcfunction │ │ │ │ │ ├── 09.mcfunction │ │ │ │ │ ├── 10.mcfunction │ │ │ │ │ └── 11.mcfunction │ │ │ └── positive │ │ │ │ ├── do.mcfunction │ │ │ │ └── zzz │ │ │ │ ├── 00.mcfunction │ │ │ │ ├── 01.mcfunction │ │ │ │ ├── 02.mcfunction │ │ │ │ ├── 03.mcfunction │ │ │ │ ├── 04.mcfunction │ │ │ │ ├── 05.mcfunction │ │ │ │ ├── 06.mcfunction │ │ │ │ ├── 07.mcfunction │ │ │ │ ├── 08.mcfunction │ │ │ │ ├── 09.mcfunction │ │ │ │ ├── 10.mcfunction │ │ │ │ └── 11.mcfunction │ │ ├── flat │ │ │ └── do.mcfunction │ │ ├── getcolorpixel │ │ │ ├── do.mcfunction │ │ │ ├── get_b │ │ │ │ ├── 0.mcfunction │ │ │ │ ├── 1.mcfunction │ │ │ │ ├── 10.mcfunction │ │ │ │ ├── 100.mcfunction │ │ │ │ ├── 101.mcfunction │ │ │ │ ├── 102.mcfunction │ │ │ │ ├── 103.mcfunction │ │ │ │ ├── 104.mcfunction │ │ │ │ ├── 105.mcfunction │ │ │ │ ├── 106.mcfunction │ │ │ │ ├── 107.mcfunction │ │ │ │ ├── 108.mcfunction │ │ │ │ ├── 109.mcfunction │ │ │ │ ├── 11.mcfunction │ │ │ │ ├── 110.mcfunction │ │ │ │ ├── 111.mcfunction │ │ │ │ ├── 112.mcfunction │ │ │ │ ├── 113.mcfunction │ │ │ │ ├── 114.mcfunction │ │ │ │ ├── 115.mcfunction │ │ │ │ ├── 116.mcfunction │ │ │ │ ├── 117.mcfunction │ │ │ │ ├── 118.mcfunction │ │ │ │ ├── 119.mcfunction │ │ │ │ ├── 12.mcfunction │ │ │ │ ├── 120.mcfunction │ │ │ │ ├── 121.mcfunction │ │ │ │ ├── 122.mcfunction │ │ │ │ ├── 123.mcfunction │ │ │ │ ├── 124.mcfunction │ │ │ │ ├── 125.mcfunction │ │ │ │ ├── 126.mcfunction │ │ │ │ ├── 127.mcfunction │ │ │ │ ├── 128.mcfunction │ │ │ │ ├── 129.mcfunction │ │ │ │ ├── 13.mcfunction │ │ │ │ ├── 130.mcfunction │ │ │ │ ├── 131.mcfunction │ │ │ │ ├── 132.mcfunction │ │ │ │ ├── 133.mcfunction │ │ │ │ ├── 134.mcfunction │ │ │ │ ├── 135.mcfunction │ │ │ │ ├── 136.mcfunction │ │ │ │ ├── 137.mcfunction │ │ │ │ ├── 138.mcfunction │ │ │ │ ├── 139.mcfunction │ │ │ │ ├── 14.mcfunction │ │ │ │ ├── 140.mcfunction │ │ │ │ ├── 141.mcfunction │ │ │ │ ├── 142.mcfunction │ │ │ │ ├── 143.mcfunction │ │ │ │ ├── 144.mcfunction │ │ │ │ ├── 145.mcfunction │ │ │ │ ├── 146.mcfunction │ │ │ │ ├── 147.mcfunction │ │ │ │ ├── 148.mcfunction │ │ │ │ ├── 149.mcfunction │ │ │ │ ├── 15.mcfunction │ │ │ │ ├── 150.mcfunction │ │ │ │ ├── 151.mcfunction │ │ │ │ ├── 152.mcfunction │ │ │ │ ├── 153.mcfunction │ │ │ │ ├── 154.mcfunction │ │ │ │ ├── 155.mcfunction │ │ │ │ ├── 156.mcfunction │ │ │ │ ├── 157.mcfunction │ │ │ │ ├── 158.mcfunction │ │ │ │ ├── 159.mcfunction │ │ │ │ ├── 16.mcfunction │ │ │ │ ├── 160.mcfunction │ │ │ │ ├── 161.mcfunction │ │ │ │ ├── 162.mcfunction │ │ │ │ ├── 163.mcfunction │ │ │ │ ├── 164.mcfunction │ │ │ │ ├── 165.mcfunction │ │ │ │ ├── 166.mcfunction │ │ │ │ ├── 167.mcfunction │ │ │ │ ├── 168.mcfunction │ │ │ │ ├── 169.mcfunction │ │ │ │ ├── 17.mcfunction │ │ │ │ ├── 170.mcfunction │ │ │ │ ├── 171.mcfunction │ │ │ │ ├── 172.mcfunction │ │ │ │ ├── 173.mcfunction │ │ │ │ ├── 174.mcfunction │ │ │ │ ├── 175.mcfunction │ │ │ │ ├── 176.mcfunction │ │ │ │ ├── 177.mcfunction │ │ │ │ ├── 178.mcfunction │ │ │ │ ├── 179.mcfunction │ │ │ │ ├── 18.mcfunction │ │ │ │ ├── 180.mcfunction │ │ │ │ ├── 181.mcfunction │ │ │ │ ├── 182.mcfunction │ │ │ │ ├── 183.mcfunction │ │ │ │ ├── 184.mcfunction │ │ │ │ ├── 185.mcfunction │ │ │ │ ├── 186.mcfunction │ │ │ │ ├── 187.mcfunction │ │ │ │ ├── 188.mcfunction │ │ │ │ ├── 189.mcfunction │ │ │ │ ├── 19.mcfunction │ │ │ │ ├── 190.mcfunction │ │ │ │ ├── 191.mcfunction │ │ │ │ ├── 192.mcfunction │ │ │ │ ├── 193.mcfunction │ │ │ │ ├── 194.mcfunction │ │ │ │ ├── 195.mcfunction │ │ │ │ ├── 196.mcfunction │ │ │ │ ├── 197.mcfunction │ │ │ │ ├── 198.mcfunction │ │ │ │ ├── 199.mcfunction │ │ │ │ ├── 2.mcfunction │ │ │ │ ├── 20.mcfunction │ │ │ │ ├── 200.mcfunction │ │ │ │ ├── 201.mcfunction │ │ │ │ ├── 202.mcfunction │ │ │ │ ├── 203.mcfunction │ │ │ │ ├── 204.mcfunction │ │ │ │ ├── 205.mcfunction │ │ │ │ ├── 206.mcfunction │ │ │ │ ├── 207.mcfunction │ │ │ │ ├── 208.mcfunction │ │ │ │ ├── 209.mcfunction │ │ │ │ ├── 21.mcfunction │ │ │ │ ├── 210.mcfunction │ │ │ │ ├── 211.mcfunction │ │ │ │ ├── 212.mcfunction │ │ │ │ ├── 213.mcfunction │ │ │ │ ├── 214.mcfunction │ │ │ │ ├── 215.mcfunction │ │ │ │ ├── 216.mcfunction │ │ │ │ ├── 217.mcfunction │ │ │ │ ├── 218.mcfunction │ │ │ │ ├── 219.mcfunction │ │ │ │ ├── 22.mcfunction │ │ │ │ ├── 220.mcfunction │ │ │ │ ├── 221.mcfunction │ │ │ │ ├── 222.mcfunction │ │ │ │ ├── 223.mcfunction │ │ │ │ ├── 224.mcfunction │ │ │ │ ├── 225.mcfunction │ │ │ │ ├── 226.mcfunction │ │ │ │ ├── 227.mcfunction │ │ │ │ ├── 228.mcfunction │ │ │ │ ├── 229.mcfunction │ │ │ │ ├── 23.mcfunction │ │ │ │ ├── 230.mcfunction │ │ │ │ ├── 231.mcfunction │ │ │ │ ├── 232.mcfunction │ │ │ │ ├── 233.mcfunction │ │ │ │ ├── 234.mcfunction │ │ │ │ ├── 235.mcfunction │ │ │ │ ├── 236.mcfunction │ │ │ │ ├── 237.mcfunction │ │ │ │ ├── 238.mcfunction │ │ │ │ ├── 239.mcfunction │ │ │ │ ├── 24.mcfunction │ │ │ │ ├── 240.mcfunction │ │ │ │ ├── 241.mcfunction │ │ │ │ ├── 242.mcfunction │ │ │ │ ├── 243.mcfunction │ │ │ │ ├── 244.mcfunction │ │ │ │ ├── 245.mcfunction │ │ │ │ ├── 246.mcfunction │ │ │ │ ├── 247.mcfunction │ │ │ │ ├── 248.mcfunction │ │ │ │ ├── 249.mcfunction │ │ │ │ ├── 25.mcfunction │ │ │ │ ├── 250.mcfunction │ │ │ │ ├── 251.mcfunction │ │ │ │ ├── 252.mcfunction │ │ │ │ ├── 253.mcfunction │ │ │ │ ├── 254.mcfunction │ │ │ │ ├── 26.mcfunction │ │ │ │ ├── 27.mcfunction │ │ │ │ ├── 28.mcfunction │ │ │ │ ├── 29.mcfunction │ │ │ │ ├── 3.mcfunction │ │ │ │ ├── 30.mcfunction │ │ │ │ ├── 31.mcfunction │ │ │ │ ├── 32.mcfunction │ │ │ │ ├── 33.mcfunction │ │ │ │ ├── 34.mcfunction │ │ │ │ ├── 35.mcfunction │ │ │ │ ├── 36.mcfunction │ │ │ │ ├── 37.mcfunction │ │ │ │ ├── 38.mcfunction │ │ │ │ ├── 39.mcfunction │ │ │ │ ├── 4.mcfunction │ │ │ │ ├── 40.mcfunction │ │ │ │ ├── 41.mcfunction │ │ │ │ ├── 42.mcfunction │ │ │ │ ├── 43.mcfunction │ │ │ │ ├── 44.mcfunction │ │ │ │ ├── 45.mcfunction │ │ │ │ ├── 46.mcfunction │ │ │ │ ├── 47.mcfunction │ │ │ │ ├── 48.mcfunction │ │ │ │ ├── 49.mcfunction │ │ │ │ ├── 5.mcfunction │ │ │ │ ├── 50.mcfunction │ │ │ │ ├── 51.mcfunction │ │ │ │ ├── 52.mcfunction │ │ │ │ ├── 53.mcfunction │ │ │ │ ├── 54.mcfunction │ │ │ │ ├── 55.mcfunction │ │ │ │ ├── 56.mcfunction │ │ │ │ ├── 57.mcfunction │ │ │ │ ├── 58.mcfunction │ │ │ │ ├── 59.mcfunction │ │ │ │ ├── 6.mcfunction │ │ │ │ ├── 60.mcfunction │ │ │ │ ├── 61.mcfunction │ │ │ │ ├── 62.mcfunction │ │ │ │ ├── 63.mcfunction │ │ │ │ ├── 64.mcfunction │ │ │ │ ├── 65.mcfunction │ │ │ │ ├── 66.mcfunction │ │ │ │ ├── 67.mcfunction │ │ │ │ ├── 68.mcfunction │ │ │ │ ├── 69.mcfunction │ │ │ │ ├── 7.mcfunction │ │ │ │ ├── 70.mcfunction │ │ │ │ ├── 71.mcfunction │ │ │ │ ├── 72.mcfunction │ │ │ │ ├── 73.mcfunction │ │ │ │ ├── 74.mcfunction │ │ │ │ ├── 75.mcfunction │ │ │ │ ├── 76.mcfunction │ │ │ │ ├── 77.mcfunction │ │ │ │ ├── 78.mcfunction │ │ │ │ ├── 79.mcfunction │ │ │ │ ├── 8.mcfunction │ │ │ │ ├── 80.mcfunction │ │ │ │ ├── 81.mcfunction │ │ │ │ ├── 82.mcfunction │ │ │ │ ├── 83.mcfunction │ │ │ │ ├── 84.mcfunction │ │ │ │ ├── 85.mcfunction │ │ │ │ ├── 86.mcfunction │ │ │ │ ├── 87.mcfunction │ │ │ │ ├── 88.mcfunction │ │ │ │ ├── 89.mcfunction │ │ │ │ ├── 9.mcfunction │ │ │ │ ├── 90.mcfunction │ │ │ │ ├── 91.mcfunction │ │ │ │ ├── 92.mcfunction │ │ │ │ ├── 93.mcfunction │ │ │ │ ├── 94.mcfunction │ │ │ │ ├── 95.mcfunction │ │ │ │ ├── 96.mcfunction │ │ │ │ ├── 97.mcfunction │ │ │ │ ├── 98.mcfunction │ │ │ │ └── 99.mcfunction │ │ │ ├── get_g │ │ │ │ ├── 0.mcfunction │ │ │ │ ├── 1.mcfunction │ │ │ │ ├── 10.mcfunction │ │ │ │ ├── 100.mcfunction │ │ │ │ ├── 101.mcfunction │ │ │ │ ├── 102.mcfunction │ │ │ │ ├── 103.mcfunction │ │ │ │ ├── 104.mcfunction │ │ │ │ ├── 105.mcfunction │ │ │ │ ├── 106.mcfunction │ │ │ │ ├── 107.mcfunction │ │ │ │ ├── 108.mcfunction │ │ │ │ ├── 109.mcfunction │ │ │ │ ├── 11.mcfunction │ │ │ │ ├── 110.mcfunction │ │ │ │ ├── 111.mcfunction │ │ │ │ ├── 112.mcfunction │ │ │ │ ├── 113.mcfunction │ │ │ │ ├── 114.mcfunction │ │ │ │ ├── 115.mcfunction │ │ │ │ ├── 116.mcfunction │ │ │ │ ├── 117.mcfunction │ │ │ │ ├── 118.mcfunction │ │ │ │ ├── 119.mcfunction │ │ │ │ ├── 12.mcfunction │ │ │ │ ├── 120.mcfunction │ │ │ │ ├── 121.mcfunction │ │ │ │ ├── 122.mcfunction │ │ │ │ ├── 123.mcfunction │ │ │ │ ├── 124.mcfunction │ │ │ │ ├── 125.mcfunction │ │ │ │ ├── 126.mcfunction │ │ │ │ ├── 127.mcfunction │ │ │ │ ├── 128.mcfunction │ │ │ │ ├── 129.mcfunction │ │ │ │ ├── 13.mcfunction │ │ │ │ ├── 130.mcfunction │ │ │ │ ├── 131.mcfunction │ │ │ │ ├── 132.mcfunction │ │ │ │ ├── 133.mcfunction │ │ │ │ ├── 134.mcfunction │ │ │ │ ├── 135.mcfunction │ │ │ │ ├── 136.mcfunction │ │ │ │ ├── 137.mcfunction │ │ │ │ ├── 138.mcfunction │ │ │ │ ├── 139.mcfunction │ │ │ │ ├── 14.mcfunction │ │ │ │ ├── 140.mcfunction │ │ │ │ ├── 141.mcfunction │ │ │ │ ├── 142.mcfunction │ │ │ │ ├── 143.mcfunction │ │ │ │ ├── 144.mcfunction │ │ │ │ ├── 145.mcfunction │ │ │ │ ├── 146.mcfunction │ │ │ │ ├── 147.mcfunction │ │ │ │ ├── 148.mcfunction │ │ │ │ ├── 149.mcfunction │ │ │ │ ├── 15.mcfunction │ │ │ │ ├── 150.mcfunction │ │ │ │ ├── 151.mcfunction │ │ │ │ ├── 152.mcfunction │ │ │ │ ├── 153.mcfunction │ │ │ │ ├── 154.mcfunction │ │ │ │ ├── 155.mcfunction │ │ │ │ ├── 156.mcfunction │ │ │ │ ├── 157.mcfunction │ │ │ │ ├── 158.mcfunction │ │ │ │ ├── 159.mcfunction │ │ │ │ ├── 16.mcfunction │ │ │ │ ├── 160.mcfunction │ │ │ │ ├── 161.mcfunction │ │ │ │ ├── 162.mcfunction │ │ │ │ ├── 163.mcfunction │ │ │ │ ├── 164.mcfunction │ │ │ │ ├── 165.mcfunction │ │ │ │ ├── 166.mcfunction │ │ │ │ ├── 167.mcfunction │ │ │ │ ├── 168.mcfunction │ │ │ │ ├── 169.mcfunction │ │ │ │ ├── 17.mcfunction │ │ │ │ ├── 170.mcfunction │ │ │ │ ├── 171.mcfunction │ │ │ │ ├── 172.mcfunction │ │ │ │ ├── 173.mcfunction │ │ │ │ ├── 174.mcfunction │ │ │ │ ├── 175.mcfunction │ │ │ │ ├── 176.mcfunction │ │ │ │ ├── 177.mcfunction │ │ │ │ ├── 178.mcfunction │ │ │ │ ├── 179.mcfunction │ │ │ │ ├── 18.mcfunction │ │ │ │ ├── 180.mcfunction │ │ │ │ ├── 181.mcfunction │ │ │ │ ├── 182.mcfunction │ │ │ │ ├── 183.mcfunction │ │ │ │ ├── 184.mcfunction │ │ │ │ ├── 185.mcfunction │ │ │ │ ├── 186.mcfunction │ │ │ │ ├── 187.mcfunction │ │ │ │ ├── 188.mcfunction │ │ │ │ ├── 189.mcfunction │ │ │ │ ├── 19.mcfunction │ │ │ │ ├── 190.mcfunction │ │ │ │ ├── 191.mcfunction │ │ │ │ ├── 192.mcfunction │ │ │ │ ├── 193.mcfunction │ │ │ │ ├── 194.mcfunction │ │ │ │ ├── 195.mcfunction │ │ │ │ ├── 196.mcfunction │ │ │ │ ├── 197.mcfunction │ │ │ │ ├── 198.mcfunction │ │ │ │ ├── 199.mcfunction │ │ │ │ ├── 2.mcfunction │ │ │ │ ├── 20.mcfunction │ │ │ │ ├── 200.mcfunction │ │ │ │ ├── 201.mcfunction │ │ │ │ ├── 202.mcfunction │ │ │ │ ├── 203.mcfunction │ │ │ │ ├── 204.mcfunction │ │ │ │ ├── 205.mcfunction │ │ │ │ ├── 206.mcfunction │ │ │ │ ├── 207.mcfunction │ │ │ │ ├── 208.mcfunction │ │ │ │ ├── 209.mcfunction │ │ │ │ ├── 21.mcfunction │ │ │ │ ├── 210.mcfunction │ │ │ │ ├── 211.mcfunction │ │ │ │ ├── 212.mcfunction │ │ │ │ ├── 213.mcfunction │ │ │ │ ├── 214.mcfunction │ │ │ │ ├── 215.mcfunction │ │ │ │ ├── 216.mcfunction │ │ │ │ ├── 217.mcfunction │ │ │ │ ├── 218.mcfunction │ │ │ │ ├── 219.mcfunction │ │ │ │ ├── 22.mcfunction │ │ │ │ ├── 220.mcfunction │ │ │ │ ├── 221.mcfunction │ │ │ │ ├── 222.mcfunction │ │ │ │ ├── 223.mcfunction │ │ │ │ ├── 224.mcfunction │ │ │ │ ├── 225.mcfunction │ │ │ │ ├── 226.mcfunction │ │ │ │ ├── 227.mcfunction │ │ │ │ ├── 228.mcfunction │ │ │ │ ├── 229.mcfunction │ │ │ │ ├── 23.mcfunction │ │ │ │ ├── 230.mcfunction │ │ │ │ ├── 231.mcfunction │ │ │ │ ├── 232.mcfunction │ │ │ │ ├── 233.mcfunction │ │ │ │ ├── 234.mcfunction │ │ │ │ ├── 235.mcfunction │ │ │ │ ├── 236.mcfunction │ │ │ │ ├── 237.mcfunction │ │ │ │ ├── 238.mcfunction │ │ │ │ ├── 239.mcfunction │ │ │ │ ├── 24.mcfunction │ │ │ │ ├── 240.mcfunction │ │ │ │ ├── 241.mcfunction │ │ │ │ ├── 242.mcfunction │ │ │ │ ├── 243.mcfunction │ │ │ │ ├── 244.mcfunction │ │ │ │ ├── 245.mcfunction │ │ │ │ ├── 246.mcfunction │ │ │ │ ├── 247.mcfunction │ │ │ │ ├── 248.mcfunction │ │ │ │ ├── 249.mcfunction │ │ │ │ ├── 25.mcfunction │ │ │ │ ├── 250.mcfunction │ │ │ │ ├── 251.mcfunction │ │ │ │ ├── 252.mcfunction │ │ │ │ ├── 253.mcfunction │ │ │ │ ├── 254.mcfunction │ │ │ │ ├── 26.mcfunction │ │ │ │ ├── 27.mcfunction │ │ │ │ ├── 28.mcfunction │ │ │ │ ├── 29.mcfunction │ │ │ │ ├── 3.mcfunction │ │ │ │ ├── 30.mcfunction │ │ │ │ ├── 31.mcfunction │ │ │ │ ├── 32.mcfunction │ │ │ │ ├── 33.mcfunction │ │ │ │ ├── 34.mcfunction │ │ │ │ ├── 35.mcfunction │ │ │ │ ├── 36.mcfunction │ │ │ │ ├── 37.mcfunction │ │ │ │ ├── 38.mcfunction │ │ │ │ ├── 39.mcfunction │ │ │ │ ├── 4.mcfunction │ │ │ │ ├── 40.mcfunction │ │ │ │ ├── 41.mcfunction │ │ │ │ ├── 42.mcfunction │ │ │ │ ├── 43.mcfunction │ │ │ │ ├── 44.mcfunction │ │ │ │ ├── 45.mcfunction │ │ │ │ ├── 46.mcfunction │ │ │ │ ├── 47.mcfunction │ │ │ │ ├── 48.mcfunction │ │ │ │ ├── 49.mcfunction │ │ │ │ ├── 5.mcfunction │ │ │ │ ├── 50.mcfunction │ │ │ │ ├── 51.mcfunction │ │ │ │ ├── 52.mcfunction │ │ │ │ ├── 53.mcfunction │ │ │ │ ├── 54.mcfunction │ │ │ │ ├── 55.mcfunction │ │ │ │ ├── 56.mcfunction │ │ │ │ ├── 57.mcfunction │ │ │ │ ├── 58.mcfunction │ │ │ │ ├── 59.mcfunction │ │ │ │ ├── 6.mcfunction │ │ │ │ ├── 60.mcfunction │ │ │ │ ├── 61.mcfunction │ │ │ │ ├── 62.mcfunction │ │ │ │ ├── 63.mcfunction │ │ │ │ ├── 64.mcfunction │ │ │ │ ├── 65.mcfunction │ │ │ │ ├── 66.mcfunction │ │ │ │ ├── 67.mcfunction │ │ │ │ ├── 68.mcfunction │ │ │ │ ├── 69.mcfunction │ │ │ │ ├── 7.mcfunction │ │ │ │ ├── 70.mcfunction │ │ │ │ ├── 71.mcfunction │ │ │ │ ├── 72.mcfunction │ │ │ │ ├── 73.mcfunction │ │ │ │ ├── 74.mcfunction │ │ │ │ ├── 75.mcfunction │ │ │ │ ├── 76.mcfunction │ │ │ │ ├── 77.mcfunction │ │ │ │ ├── 78.mcfunction │ │ │ │ ├── 79.mcfunction │ │ │ │ ├── 8.mcfunction │ │ │ │ ├── 80.mcfunction │ │ │ │ ├── 81.mcfunction │ │ │ │ ├── 82.mcfunction │ │ │ │ ├── 83.mcfunction │ │ │ │ ├── 84.mcfunction │ │ │ │ ├── 85.mcfunction │ │ │ │ ├── 86.mcfunction │ │ │ │ ├── 87.mcfunction │ │ │ │ ├── 88.mcfunction │ │ │ │ ├── 89.mcfunction │ │ │ │ ├── 9.mcfunction │ │ │ │ ├── 90.mcfunction │ │ │ │ ├── 91.mcfunction │ │ │ │ ├── 92.mcfunction │ │ │ │ ├── 93.mcfunction │ │ │ │ ├── 94.mcfunction │ │ │ │ ├── 95.mcfunction │ │ │ │ ├── 96.mcfunction │ │ │ │ ├── 97.mcfunction │ │ │ │ ├── 98.mcfunction │ │ │ │ └── 99.mcfunction │ │ │ └── get_r │ │ │ │ ├── 0.mcfunction │ │ │ │ ├── 1.mcfunction │ │ │ │ ├── 10.mcfunction │ │ │ │ ├── 100.mcfunction │ │ │ │ ├── 101.mcfunction │ │ │ │ ├── 102.mcfunction │ │ │ │ ├── 103.mcfunction │ │ │ │ ├── 104.mcfunction │ │ │ │ ├── 105.mcfunction │ │ │ │ ├── 106.mcfunction │ │ │ │ ├── 107.mcfunction │ │ │ │ ├── 108.mcfunction │ │ │ │ ├── 109.mcfunction │ │ │ │ ├── 11.mcfunction │ │ │ │ ├── 110.mcfunction │ │ │ │ ├── 111.mcfunction │ │ │ │ ├── 112.mcfunction │ │ │ │ ├── 113.mcfunction │ │ │ │ ├── 114.mcfunction │ │ │ │ ├── 115.mcfunction │ │ │ │ ├── 116.mcfunction │ │ │ │ ├── 117.mcfunction │ │ │ │ ├── 118.mcfunction │ │ │ │ ├── 119.mcfunction │ │ │ │ ├── 12.mcfunction │ │ │ │ ├── 120.mcfunction │ │ │ │ ├── 121.mcfunction │ │ │ │ ├── 122.mcfunction │ │ │ │ ├── 123.mcfunction │ │ │ │ ├── 124.mcfunction │ │ │ │ ├── 125.mcfunction │ │ │ │ ├── 126.mcfunction │ │ │ │ ├── 127.mcfunction │ │ │ │ ├── 128.mcfunction │ │ │ │ ├── 129.mcfunction │ │ │ │ ├── 13.mcfunction │ │ │ │ ├── 130.mcfunction │ │ │ │ ├── 131.mcfunction │ │ │ │ ├── 132.mcfunction │ │ │ │ ├── 133.mcfunction │ │ │ │ ├── 134.mcfunction │ │ │ │ ├── 135.mcfunction │ │ │ │ ├── 136.mcfunction │ │ │ │ ├── 137.mcfunction │ │ │ │ ├── 138.mcfunction │ │ │ │ ├── 139.mcfunction │ │ │ │ ├── 14.mcfunction │ │ │ │ ├── 140.mcfunction │ │ │ │ ├── 141.mcfunction │ │ │ │ ├── 142.mcfunction │ │ │ │ ├── 143.mcfunction │ │ │ │ ├── 144.mcfunction │ │ │ │ ├── 145.mcfunction │ │ │ │ ├── 146.mcfunction │ │ │ │ ├── 147.mcfunction │ │ │ │ ├── 148.mcfunction │ │ │ │ ├── 149.mcfunction │ │ │ │ ├── 15.mcfunction │ │ │ │ ├── 150.mcfunction │ │ │ │ ├── 151.mcfunction │ │ │ │ ├── 152.mcfunction │ │ │ │ ├── 153.mcfunction │ │ │ │ ├── 154.mcfunction │ │ │ │ ├── 155.mcfunction │ │ │ │ ├── 156.mcfunction │ │ │ │ ├── 157.mcfunction │ │ │ │ ├── 158.mcfunction │ │ │ │ ├── 159.mcfunction │ │ │ │ ├── 16.mcfunction │ │ │ │ ├── 160.mcfunction │ │ │ │ ├── 161.mcfunction │ │ │ │ ├── 162.mcfunction │ │ │ │ ├── 163.mcfunction │ │ │ │ ├── 164.mcfunction │ │ │ │ ├── 165.mcfunction │ │ │ │ ├── 166.mcfunction │ │ │ │ ├── 167.mcfunction │ │ │ │ ├── 168.mcfunction │ │ │ │ ├── 169.mcfunction │ │ │ │ ├── 17.mcfunction │ │ │ │ ├── 170.mcfunction │ │ │ │ ├── 171.mcfunction │ │ │ │ ├── 172.mcfunction │ │ │ │ ├── 173.mcfunction │ │ │ │ ├── 174.mcfunction │ │ │ │ ├── 175.mcfunction │ │ │ │ ├── 176.mcfunction │ │ │ │ ├── 177.mcfunction │ │ │ │ ├── 178.mcfunction │ │ │ │ ├── 179.mcfunction │ │ │ │ ├── 18.mcfunction │ │ │ │ ├── 180.mcfunction │ │ │ │ ├── 181.mcfunction │ │ │ │ ├── 182.mcfunction │ │ │ │ ├── 183.mcfunction │ │ │ │ ├── 184.mcfunction │ │ │ │ ├── 185.mcfunction │ │ │ │ ├── 186.mcfunction │ │ │ │ ├── 187.mcfunction │ │ │ │ ├── 188.mcfunction │ │ │ │ ├── 189.mcfunction │ │ │ │ ├── 19.mcfunction │ │ │ │ ├── 190.mcfunction │ │ │ │ ├── 191.mcfunction │ │ │ │ ├── 192.mcfunction │ │ │ │ ├── 193.mcfunction │ │ │ │ ├── 194.mcfunction │ │ │ │ ├── 195.mcfunction │ │ │ │ ├── 196.mcfunction │ │ │ │ ├── 197.mcfunction │ │ │ │ ├── 198.mcfunction │ │ │ │ ├── 199.mcfunction │ │ │ │ ├── 2.mcfunction │ │ │ │ ├── 20.mcfunction │ │ │ │ ├── 200.mcfunction │ │ │ │ ├── 201.mcfunction │ │ │ │ ├── 202.mcfunction │ │ │ │ ├── 203.mcfunction │ │ │ │ ├── 204.mcfunction │ │ │ │ ├── 205.mcfunction │ │ │ │ ├── 206.mcfunction │ │ │ │ ├── 207.mcfunction │ │ │ │ ├── 208.mcfunction │ │ │ │ ├── 209.mcfunction │ │ │ │ ├── 21.mcfunction │ │ │ │ ├── 210.mcfunction │ │ │ │ ├── 211.mcfunction │ │ │ │ ├── 212.mcfunction │ │ │ │ ├── 213.mcfunction │ │ │ │ ├── 214.mcfunction │ │ │ │ ├── 215.mcfunction │ │ │ │ ├── 216.mcfunction │ │ │ │ ├── 217.mcfunction │ │ │ │ ├── 218.mcfunction │ │ │ │ ├── 219.mcfunction │ │ │ │ ├── 22.mcfunction │ │ │ │ ├── 220.mcfunction │ │ │ │ ├── 221.mcfunction │ │ │ │ ├── 222.mcfunction │ │ │ │ ├── 223.mcfunction │ │ │ │ ├── 224.mcfunction │ │ │ │ ├── 225.mcfunction │ │ │ │ ├── 226.mcfunction │ │ │ │ ├── 227.mcfunction │ │ │ │ ├── 228.mcfunction │ │ │ │ ├── 229.mcfunction │ │ │ │ ├── 23.mcfunction │ │ │ │ ├── 230.mcfunction │ │ │ │ ├── 231.mcfunction │ │ │ │ ├── 232.mcfunction │ │ │ │ ├── 233.mcfunction │ │ │ │ ├── 234.mcfunction │ │ │ │ ├── 235.mcfunction │ │ │ │ ├── 236.mcfunction │ │ │ │ ├── 237.mcfunction │ │ │ │ ├── 238.mcfunction │ │ │ │ ├── 239.mcfunction │ │ │ │ ├── 24.mcfunction │ │ │ │ ├── 240.mcfunction │ │ │ │ ├── 241.mcfunction │ │ │ │ ├── 242.mcfunction │ │ │ │ ├── 243.mcfunction │ │ │ │ ├── 244.mcfunction │ │ │ │ ├── 245.mcfunction │ │ │ │ ├── 246.mcfunction │ │ │ │ ├── 247.mcfunction │ │ │ │ ├── 248.mcfunction │ │ │ │ ├── 249.mcfunction │ │ │ │ ├── 25.mcfunction │ │ │ │ ├── 250.mcfunction │ │ │ │ ├── 251.mcfunction │ │ │ │ ├── 252.mcfunction │ │ │ │ ├── 253.mcfunction │ │ │ │ ├── 254.mcfunction │ │ │ │ ├── 255.mcfunction │ │ │ │ ├── 26.mcfunction │ │ │ │ ├── 27.mcfunction │ │ │ │ ├── 28.mcfunction │ │ │ │ ├── 29.mcfunction │ │ │ │ ├── 3.mcfunction │ │ │ │ ├── 30.mcfunction │ │ │ │ ├── 31.mcfunction │ │ │ │ ├── 32.mcfunction │ │ │ │ ├── 33.mcfunction │ │ │ │ ├── 34.mcfunction │ │ │ │ ├── 35.mcfunction │ │ │ │ ├── 36.mcfunction │ │ │ │ ├── 37.mcfunction │ │ │ │ ├── 38.mcfunction │ │ │ │ ├── 39.mcfunction │ │ │ │ ├── 4.mcfunction │ │ │ │ ├── 40.mcfunction │ │ │ │ ├── 41.mcfunction │ │ │ │ ├── 42.mcfunction │ │ │ │ ├── 43.mcfunction │ │ │ │ ├── 44.mcfunction │ │ │ │ ├── 45.mcfunction │ │ │ │ ├── 46.mcfunction │ │ │ │ ├── 47.mcfunction │ │ │ │ ├── 48.mcfunction │ │ │ │ ├── 49.mcfunction │ │ │ │ ├── 5.mcfunction │ │ │ │ ├── 50.mcfunction │ │ │ │ ├── 51.mcfunction │ │ │ │ ├── 52.mcfunction │ │ │ │ ├── 53.mcfunction │ │ │ │ ├── 54.mcfunction │ │ │ │ ├── 55.mcfunction │ │ │ │ ├── 56.mcfunction │ │ │ │ ├── 57.mcfunction │ │ │ │ ├── 58.mcfunction │ │ │ │ ├── 59.mcfunction │ │ │ │ ├── 6.mcfunction │ │ │ │ ├── 60.mcfunction │ │ │ │ ├── 61.mcfunction │ │ │ │ ├── 62.mcfunction │ │ │ │ ├── 63.mcfunction │ │ │ │ ├── 64.mcfunction │ │ │ │ ├── 65.mcfunction │ │ │ │ ├── 66.mcfunction │ │ │ │ ├── 67.mcfunction │ │ │ │ ├── 68.mcfunction │ │ │ │ ├── 69.mcfunction │ │ │ │ ├── 7.mcfunction │ │ │ │ ├── 70.mcfunction │ │ │ │ ├── 71.mcfunction │ │ │ │ ├── 72.mcfunction │ │ │ │ ├── 73.mcfunction │ │ │ │ ├── 74.mcfunction │ │ │ │ ├── 75.mcfunction │ │ │ │ ├── 76.mcfunction │ │ │ │ ├── 77.mcfunction │ │ │ │ ├── 78.mcfunction │ │ │ │ ├── 79.mcfunction │ │ │ │ ├── 8.mcfunction │ │ │ │ ├── 80.mcfunction │ │ │ │ ├── 81.mcfunction │ │ │ │ ├── 82.mcfunction │ │ │ │ ├── 83.mcfunction │ │ │ │ ├── 84.mcfunction │ │ │ │ ├── 85.mcfunction │ │ │ │ ├── 86.mcfunction │ │ │ │ ├── 87.mcfunction │ │ │ │ ├── 88.mcfunction │ │ │ │ ├── 89.mcfunction │ │ │ │ ├── 9.mcfunction │ │ │ │ ├── 90.mcfunction │ │ │ │ ├── 91.mcfunction │ │ │ │ ├── 92.mcfunction │ │ │ │ ├── 93.mcfunction │ │ │ │ ├── 94.mcfunction │ │ │ │ ├── 95.mcfunction │ │ │ │ ├── 96.mcfunction │ │ │ │ ├── 97.mcfunction │ │ │ │ ├── 98.mcfunction │ │ │ │ └── 99.mcfunction │ │ ├── gethexuuid │ │ │ └── do.mcfunction │ │ ├── random_name │ │ │ └── do.mcfunction │ │ └── to_num │ │ │ └── do.mcfunction │ └── uninstall.mcfunction ├── item_modifiers │ └── nbt │ │ ├── set_all.json │ │ ├── set_cmd.json │ │ ├── set_data.json │ │ ├── set_lore.json │ │ └── set_name.json ├── predicates │ ├── half.json │ ├── looking_at.json │ ├── minecart.json │ └── ride.json └── tags │ ├── blocks │ └── air.json │ └── items │ └── all.json └── minecraft └── tags └── functions ├── load.json └── tick.json /assets/custom/sounds/chatbox/character/oneshot_text.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SL0ANE/ChatBox/466d7e3874f68eee29c0bfb091b4598bb8e25fbf/assets/custom/sounds/chatbox/character/oneshot_text.ogg -------------------------------------------------------------------------------- /assets/custom/sounds/chatbox/character/sans_0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SL0ANE/ChatBox/466d7e3874f68eee29c0bfb091b4598bb8e25fbf/assets/custom/sounds/chatbox/character/sans_0.ogg -------------------------------------------------------------------------------- /assets/custom/textures/font/chatbox/background/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SL0ANE/ChatBox/466d7e3874f68eee29c0bfb091b4598bb8e25fbf/assets/custom/textures/font/chatbox/background/0.png -------------------------------------------------------------------------------- /assets/custom/textures/font/chatbox/background/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SL0ANE/ChatBox/466d7e3874f68eee29c0bfb091b4598bb8e25fbf/assets/custom/textures/font/chatbox/background/1.png -------------------------------------------------------------------------------- /assets/custom/textures/font/chatbox/background/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SL0ANE/ChatBox/466d7e3874f68eee29c0bfb091b4598bb8e25fbf/assets/custom/textures/font/chatbox/background/2.png -------------------------------------------------------------------------------- /assets/custom/textures/font/chatbox/character/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SL0ANE/ChatBox/466d7e3874f68eee29c0bfb091b4598bb8e25fbf/assets/custom/textures/font/chatbox/character/0.png -------------------------------------------------------------------------------- /assets/custom/textures/font/chatbox/character/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SL0ANE/ChatBox/466d7e3874f68eee29c0bfb091b4598bb8e25fbf/assets/custom/textures/font/chatbox/character/1.png -------------------------------------------------------------------------------- /assets/custom/textures/font/chatbox/character/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SL0ANE/ChatBox/466d7e3874f68eee29c0bfb091b4598bb8e25fbf/assets/custom/textures/font/chatbox/character/2.png -------------------------------------------------------------------------------- /assets/custom/textures/font/chatbox/icon/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SL0ANE/ChatBox/466d7e3874f68eee29c0bfb091b4598bb8e25fbf/assets/custom/textures/font/chatbox/icon/0.png -------------------------------------------------------------------------------- /assets/custom/textures/font/chatbox/icon/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SL0ANE/ChatBox/466d7e3874f68eee29c0bfb091b4598bb8e25fbf/assets/custom/textures/font/chatbox/icon/1.png -------------------------------------------------------------------------------- /assets/custom/textures/font/chatbox/icon/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SL0ANE/ChatBox/466d7e3874f68eee29c0bfb091b4598bb8e25fbf/assets/custom/textures/font/chatbox/icon/2.png -------------------------------------------------------------------------------- /assets/minecraft/textures/gui/bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SL0ANE/ChatBox/466d7e3874f68eee29c0bfb091b4598bb8e25fbf/assets/minecraft/textures/gui/bars.png -------------------------------------------------------------------------------- /data/chatbox/functions/bossbar/clear/icon.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #chatbox.icon.flag loy.value matches 1 run scoreboard players set #chatbox.icon.timer loy.value 0 2 | bossbar set chatbox:icon name "" -------------------------------------------------------------------------------- /data/chatbox/functions/bossbar/display/off.mcfunction: -------------------------------------------------------------------------------- 1 | bossbar set chatbox:frame players 2 | bossbar set chatbox:line_0 players 3 | bossbar set chatbox:line_1 players 4 | bossbar set chatbox:line_2 players 5 | 6 | scoreboard players set #chatbox.bossbar.flag loy.value 0 -------------------------------------------------------------------------------- /data/chatbox/functions/bossbar/display/on.mcfunction: -------------------------------------------------------------------------------- 1 | bossbar set chatbox:frame players @a 2 | bossbar set chatbox:line_0 players @a 3 | bossbar set chatbox:line_1 players @a 4 | bossbar set chatbox:line_2 players @a 5 | 6 | scoreboard players set #chatbox.bossbar.flag loy.value 1 -------------------------------------------------------------------------------- /data/chatbox/functions/bossbar/display/reload.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #chatbox.bossbar.flag loy.value matches 0 run function chatbox:bossbar/display/off 2 | execute if score #chatbox.bossbar.flag loy.value matches 1 run function chatbox:bossbar/display/zzz/0 3 | scoreboard players set @s loy.player.left 0 -------------------------------------------------------------------------------- /data/chatbox/functions/bossbar/display/zzz/0.mcfunction: -------------------------------------------------------------------------------- 1 | function chatbox:bossbar/display/off 2 | function chatbox:bossbar/display/on -------------------------------------------------------------------------------- /data/chatbox/functions/bossbar/init.mcfunction: -------------------------------------------------------------------------------- 1 | bossbar add chatbox:frame "" 2 | bossbar set chatbox:frame color pink 3 | bossbar add chatbox:line_0 "" 4 | bossbar set chatbox:line_0 color pink 5 | bossbar add chatbox:line_1 "" 6 | bossbar set chatbox:line_1 color pink 7 | bossbar add chatbox:line_2 "" 8 | bossbar set chatbox:line_2 color pink -------------------------------------------------------------------------------- /data/chatbox/functions/bossbar/set/frame.mcfunction: -------------------------------------------------------------------------------- 1 | bossbar set chatbox:frame name {"nbt":"CurrentFrameCombine","storage": "chatbox:main","interpret": true} -------------------------------------------------------------------------------- /data/chatbox/functions/bossbar/set/icon.mcfunction: -------------------------------------------------------------------------------- 1 | bossbar set chatbox:icon name {"nbt":"IconBuffer[0]","storage": "chatbox:main","interpret": true} -------------------------------------------------------------------------------- /data/chatbox/functions/init.mcfunction: -------------------------------------------------------------------------------- 1 | function chatbox:bossbar/init 2 | function chatbox:bossbar/clear/with_all 3 | scoreboard players set #chatbox.current.line loy.value 0 4 | scoreboard players set #chatbox.sound.timer loy.value 0 5 | execute unless score #chatbox.text.interval loy.value matches -2147483648..2147483647 run function chatbox:style/0 -------------------------------------------------------------------------------- /data/chatbox/functions/manage/check/zzz/0.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage chatbox:main HistoryBuffer append from storage chatbox:main Buffer[0] 2 | data remove storage chatbox:main Buffer[0] 3 | function chatbox:manage/nextline 4 | execute if data storage chatbox:main Buffer[0].Next run function chatbox:manage/check/zzz/0 -------------------------------------------------------------------------------- /data/chatbox/functions/manage/check/zzz/1.mcfunction: -------------------------------------------------------------------------------- 1 | execute store result score #chatbox.text.timer loy.value run data get storage chatbox:main Buffer[0].Delay 1 2 | execute if score #chatbox.character.flag loy.value matches 1 run function chatbox:manage/check/zzz/2 3 | data remove storage chatbox:main Buffer[0].Delay -------------------------------------------------------------------------------- /data/chatbox/functions/manage/frame/character/play.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players set #chatbox.character.timer loy.value 0 2 | execute if score #chatbox.character.flag loy.value matches 1 run function chatbox:manage/frame/character/zzz/0 -------------------------------------------------------------------------------- /data/chatbox/functions/manage/frame/character/zzz/0.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage chatbox:main CharacterBuffer set from storage chatbox:main Character 2 | data modify storage chatbox:main CurrentFrameCharacter set from storage chatbox:main CharacterBuffer[0] 3 | data remove storage chatbox:main CharacterBuffer[0] -------------------------------------------------------------------------------- /data/chatbox/functions/manage/frame/character/zzz/1.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage chatbox:main CurrentFrameCharacter set from storage chatbox:main CharacterBuffer[0] 2 | data remove storage chatbox:main CharacterBuffer[0] 3 | scoreboard players set #chatbox.frame.reflash.flag loy.value 1 -------------------------------------------------------------------------------- /data/chatbox/functions/manage/frame/icon/disable.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #chatbox.icon.flag loy.value matches 1 run scoreboard players set #chatbox.icon.timer loy.value 0 2 | data modify storage chatbox:main CurrentFrameIcon set value '{"text":""}' 3 | data modify storage chatbox:main IconBuffer set value [] 4 | 5 | scoreboard players set #chatbox.frame.reflash.flag loy.value 1 -------------------------------------------------------------------------------- /data/chatbox/functions/manage/frame/icon/play.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players set #chatbox.icon.timer loy.value 0 2 | execute if score #chatbox.icon.flag loy.value matches 1 run function chatbox:manage/frame/icon/zzz/0 -------------------------------------------------------------------------------- /data/chatbox/functions/manage/frame/icon/timer.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #chatbox.icon.timer loy.value matches 0 run function chatbox:manage/frame/icon/do 2 | scoreboard players remove #chatbox.icon.timer loy.value 1 3 | execute if score #chatbox.icon.timer loy.value matches -1 run scoreboard players operation #chatbox.icon.timer loy.value = #chatbox.icon.duration loy.value -------------------------------------------------------------------------------- /data/chatbox/functions/manage/frame/icon/zzz/0.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage chatbox:main IconBuffer set from storage chatbox:main Icon 2 | data modify storage chatbox:main CurrentFrameIcon set from storage chatbox:main IconBuffer[0] 3 | data remove storage chatbox:main IconBuffer[0] -------------------------------------------------------------------------------- /data/chatbox/functions/manage/frame/zzz/2.mcfunction: -------------------------------------------------------------------------------- 1 | function chatbox:manage/frame/combine 2 | scoreboard players set #chatbox.frame.reflash.flag loy.value 0 -------------------------------------------------------------------------------- /data/chatbox/functions/manage/icon/do.mcfunction: -------------------------------------------------------------------------------- 1 | execute unless data storage chatbox:main IconBuffer[0] run data modify storage chatbox:main IconBuffer set from storage chatbox:main Icon 2 | function chatbox:bossbar/set/icon 3 | data remove storage chatbox:main IconBuffer[0] -------------------------------------------------------------------------------- /data/chatbox/functions/manage/icon/play.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players set #chatbox.icon.timer loy.value 0 2 | execute if score #chatbox.icon.flag loy.value matches 1 run function chatbox:manage/icon/zzz/0 -------------------------------------------------------------------------------- /data/chatbox/functions/manage/icon/timer.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #chatbox.icon.timer loy.value matches 0 run function chatbox:manage/icon/do 2 | scoreboard players remove #chatbox.icon.timer loy.value 1 3 | execute if score #chatbox.icon.timer loy.value matches -1 run scoreboard players operation #chatbox.icon.timer loy.value = #chatbox.icon.duration loy.value -------------------------------------------------------------------------------- /data/chatbox/functions/manage/icon/zzz/0.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage chatbox:main IconBuffer set from storage chatbox:main Icon 2 | function chatbox:bossbar/set/icon 3 | data remove storage chatbox:main IconBuffer[0] -------------------------------------------------------------------------------- /data/chatbox/functions/manage/instant/method/buffer_output.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage chatbox:main InstantBuffer set from storage chatbox:main Buffer 2 | data modify storage chatbox:main Buffer set value [] 3 | execute if data storage chatbox:main InstantBuffer[0] run function chatbox:manage/instant/do -------------------------------------------------------------------------------- /data/chatbox/functions/manage/instant/method/rerange.mcfunction: -------------------------------------------------------------------------------- 1 | function chatbox:bossbar/clear/json_with_format 2 | 3 | data modify storage chatbox:main InstantBuffer set from storage chatbox:main HistoryBuffer 4 | data modify storage chatbox:main HistoryBuffer set value [] 5 | execute if data storage chatbox:main InstantBuffer[0] run function chatbox:manage/instant/do -------------------------------------------------------------------------------- /data/chatbox/functions/manage/instant/zzz/0.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players operation #chatbox.text.temp loy.value = #chatbox.max.length loy.value 2 | scoreboard players operation #chatbox.text.temp loy.value -= #chatbox.combine.length loy.value 3 | execute if score #chatbox.text.temp loy.value matches 1.. run function chatbox:manage/instant/zzz/1 4 | function chatbox:bossbar/set/line -------------------------------------------------------------------------------- /data/chatbox/functions/manage/instant/zzz/5.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage chatbox:main HistoryBuffer append from storage chatbox:main InstantBuffer[0] 2 | data remove storage chatbox:main InstantBuffer[0] 3 | function chatbox:manage/nextline 4 | execute if data storage chatbox:main InstantBuffer[0].Next run function chatbox:manage/check/zzz/0 -------------------------------------------------------------------------------- /data/chatbox/functions/manage/newchar/zzz/3.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage chatbox:main CurrentText 2 | data modify storage generic:main TextInput1 set from storage chatbox:main Buffer[0].Char 3 | function generic:text/combine/json_with_string_later/do 4 | data modify storage chatbox:main CurrentText set from storage generic:main TextOutput -------------------------------------------------------------------------------- /data/chatbox/functions/manage/nextline.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players add #chatbox.current.line loy.value 1 2 | scoreboard players set #chatbox.text.length loy.value 0 3 | 4 | data modify storage chatbox:main CurrentText set value '{"text":""}' 5 | data modify storage chatbox:main CurrentCombine set value '{"text":""}' -------------------------------------------------------------------------------- /data/chatbox/functions/manage/timer.mcfunction: -------------------------------------------------------------------------------- 1 | execute if data storage chatbox:main Buffer[0] run function chatbox:manage/newchar/timer 2 | function chatbox:manage/frame/timer -------------------------------------------------------------------------------- /data/chatbox/functions/sound/play.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #chatbox.sound.id loy.value matches 1 as @a at @s run function chatbox:sound/zzz/1 2 | execute if score #chatbox.sound.id loy.value matches 2 as @a at @s run function chatbox:sound/zzz/2 3 | scoreboard players operation #chatbox.sound.timer loy.value = #chatbox.sound.interval loy.value -------------------------------------------------------------------------------- /data/chatbox/functions/sound/zzz/1.mcfunction: -------------------------------------------------------------------------------- 1 | stopsound @s player custom:chatbox.character.sans.0 2 | playsound custom:chatbox.character.sans.0 player @s ~ ~ ~ 1 1 1 -------------------------------------------------------------------------------- /data/chatbox/functions/sound/zzz/2.mcfunction: -------------------------------------------------------------------------------- 1 | stopsound @s player custom:chatbox.character.niko.0 2 | playsound custom:chatbox.character.niko.0 player @s ~ ~ ~ 1 1 1 -------------------------------------------------------------------------------- /data/chatbox/functions/tick.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #chatbox.bossbar.flag loy.value matches 1 run function chatbox:manage/timer 2 | 3 | execute as @a unless score @s loy.player.left matches 0 run function chatbox:bossbar/display/reload -------------------------------------------------------------------------------- /data/chatbox/functions/uninstall.mcfunction: -------------------------------------------------------------------------------- 1 | bossbar remove chatbox:frame 2 | bossbar remove chatbox:line_0 3 | bossbar remove chatbox:line_1 4 | bossbar remove chatbox:line_2 -------------------------------------------------------------------------------- /data/chatbox/tags/functions/uninstall.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "generic:uninstall", 4 | "chatbox:uninstall" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /data/generic/functions/aec_update.mcfunction: -------------------------------------------------------------------------------- 1 | execute store result score @s loy.value run data get entity @s Air 2 | execute store result entity @s Air short 1 run scoreboard players add @s loy.value 1 3 | execute if score @s loy.value matches 32767.. run scoreboard players set @s loy.value 1 -------------------------------------------------------------------------------- /data/generic/functions/entity/aec/posupdate.mcfunction: -------------------------------------------------------------------------------- 1 | execute store result score @s loy.value run data get entity @s Air 2 | execute store result entity @s Air short 1 run scoreboard players add @s loy.value 1 3 | execute if score @s loy.value matches 65535.. run scoreboard players set @s loy.value 1 -------------------------------------------------------------------------------- /data/generic/functions/entity/generic/uid/give.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players operation @s loy.generic.uid = #global loy.generic.uid -------------------------------------------------------------------------------- /data/generic/functions/entity/generic/uid/new.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players add #global loy.generic.uid 1 -------------------------------------------------------------------------------- /data/generic/functions/entity/ghost/summon.mcfunction: -------------------------------------------------------------------------------- 1 | execute unless entity 00000000-0000-0000-0000-0dc800000000 run summon marker 0.0 0.0 0.0 {Tags:["ghost","loy.obj"],Rotation:[0.0f,0.0f],UUID:[I;0,0,3528,0]} -------------------------------------------------------------------------------- /data/generic/functions/entity/interaction/getinfo/do.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main EntityOutput set value {interaction:{timestamp:-1},attack:{timestamp:-1}} 2 | data modify storage generic:main EntityOutput.attack.timestamp set from entity @s attack.timestamp 3 | data modify storage generic:main EntityOutput.interaction.timestamp set from entity @s interaction.timestamp -------------------------------------------------------------------------------- /data/generic/functions/entity/interaction/getname/do.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main EntityOutput set from entity @s CustomName -------------------------------------------------------------------------------- /data/generic/functions/entity/interaction/glowing/clear.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players operation #this loy.generic.uid = @s loy.generic.uid 2 | execute at @s as @e[type=item_display,distance=..8,tag=loy.obj] if score @s loy.generic.uid = #this loy.generic.uid run data modify entity @s Glowing set value 0b 3 | tag @s remove tag.interact.glowing -------------------------------------------------------------------------------- /data/generic/functions/entity/interaction/glowing/disable.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players operation #this loy.generic.uid = @s loy.generic.uid 2 | execute at @s as @e[type=item_display,distance=..8,tag=loy.obj] if score @s loy.generic.uid = #this loy.generic.uid run function generic:entity/interaction/glowing/zzz/1 3 | tag @s remove tag.interact.glowing -------------------------------------------------------------------------------- /data/generic/functions/entity/interaction/glowing/do.mcfunction: -------------------------------------------------------------------------------- 1 | execute if entity @s[tag=!tag.interact.glowing,tag=tag.interact.disabled] run function generic:entity/interaction/glowing/disable 2 | execute if entity @s[tag=!tag.interact.glowing,tag=!tag.interact.disabled] run function generic:entity/interaction/glowing/enable 3 | tag @s add tag.interact.glowing -------------------------------------------------------------------------------- /data/generic/functions/entity/interaction/glowing/enable.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players operation #this loy.generic.uid = @s loy.generic.uid 2 | execute at @s as @e[type=item_display,distance=..8,tag=loy.obj] if score @s loy.generic.uid = #this loy.generic.uid run function generic:entity/interaction/glowing/zzz/0 -------------------------------------------------------------------------------- /data/generic/functions/entity/interaction/glowing/tick_at_end.mcfunction: -------------------------------------------------------------------------------- 1 | execute as @e[type=interaction,tag=entity.interact,tag=tag.interact.waiting] run function generic:entity/interaction/glowing/zzz/3 -------------------------------------------------------------------------------- /data/generic/functions/entity/interaction/glowing/tick_at_start.mcfunction: -------------------------------------------------------------------------------- 1 | execute as @e[type=interaction,tag=entity.interact,tag=tag.interact.glowing] run function generic:entity/interaction/glowing/zzz/2 -------------------------------------------------------------------------------- /data/generic/functions/entity/interaction/glowing/zzz/0.mcfunction: -------------------------------------------------------------------------------- 1 | data modify entity @s glow_color_override set value 16777215 2 | data modify entity @s Glowing set value 1b -------------------------------------------------------------------------------- /data/generic/functions/entity/interaction/glowing/zzz/1.mcfunction: -------------------------------------------------------------------------------- 1 | data modify entity @s glow_color_override set value 8421504 2 | data modify entity @s Glowing set value 1b -------------------------------------------------------------------------------- /data/generic/functions/entity/interaction/glowing/zzz/2.mcfunction: -------------------------------------------------------------------------------- 1 | tag @s remove tag.interact.glowing 2 | tag @s add tag.interact.waiting -------------------------------------------------------------------------------- /data/generic/functions/entity/interaction/glowing/zzz/3.mcfunction: -------------------------------------------------------------------------------- 1 | execute if entity @s[tag=!tag.interact.glowing] run function generic:entity/interaction/glowing/clear 2 | tag @s remove tag.interact.waiting -------------------------------------------------------------------------------- /data/generic/functions/entity/player/sprint/disable_with_flag/0.mcfunction: -------------------------------------------------------------------------------- 1 | attribute @s minecraft:generic.movement_speed modifier remove 1-2-3-4-5 2 | execute unless score @s loy.player.sprint.flag matches 0 run scoreboard players set @s loy.player.sprint.flag 0 -------------------------------------------------------------------------------- /data/generic/functions/entity/player/sprint/disable_with_flag/1.mcfunction: -------------------------------------------------------------------------------- 1 | attribute @s minecraft:generic.movement_speed modifier add 1-2-3-4-5 "Anti-Sprint" -0.23076923782303482289 multiply 2 | #execute unless score @s loy.player.sprint.flag matches 1 run say 1 3 | execute unless score @s loy.player.sprint.flag matches 1 run scoreboard players set @s loy.player.sprint.flag 1 -------------------------------------------------------------------------------- /data/generic/functions/list/clear.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage agfa:main List set value [] -------------------------------------------------------------------------------- /data/generic/functions/list/fill.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players remove #list_index value 1 2 | data modify storage agfa:main List append value 0 3 | execute store result storage agfa:main List[-1] int 1 run scoreboard players get #list_input value 4 | execute if score #list_index value matches 1.. run function agfa:generic/list/fill -------------------------------------------------------------------------------- /data/generic/functions/list/get/jump.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players remove #list.temp.0 loy.value 1 2 | data remove storage generic:main ListInput0[0] 3 | execute if score #list.temp.0 loy.value matches 1.. run function generic:list/get/jump -------------------------------------------------------------------------------- /data/generic/functions/list/pick/result.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main ListOutput1 set from storage generic:main ListOutput0[-1] 2 | data remove storage generic:main ListOutput0[-1] -------------------------------------------------------------------------------- /data/generic/functions/list/remove_till.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players remove #list_index value 1 2 | execute if score #list_index value matches 0.. run data remove storage agfa:main List[0] 3 | execute if score #list_index value matches 1.. run function agfa:generic/list/remove_till -------------------------------------------------------------------------------- /data/generic/functions/list/replace/zzz/0.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main ListOutput1 set from storage generic:main ListOutput0[-1] 2 | data modify storage generic:main ListOutput0[-1] set from storage generic:main ListInput1 -------------------------------------------------------------------------------- /data/generic/functions/list/set/do.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage agfa:main Temp set value [] 2 | function agfa:generic/list/set/jump 3 | execute store result storage agfa:main Temp[-1] int 1 run scoreboard players get #list_input value 4 | function agfa:generic/list/set/end 5 | data modify storage agfa:main List set from storage agfa:main Temp -------------------------------------------------------------------------------- /data/generic/functions/list/set/end.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage agfa:main Temp append from storage agfa:main List[0] 2 | data remove storage agfa:main List[0] 3 | execute if data storage agfa:main List[0] run function agfa:generic/list/set/end -------------------------------------------------------------------------------- /data/generic/functions/list/set/jump.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players remove #list_index value 1 2 | data modify storage agfa:main Temp append from storage agfa:main List[0] 3 | data remove storage agfa:main List[0] 4 | execute if score #list_index value matches 1.. run function agfa:generic/list/set/jump -------------------------------------------------------------------------------- /data/generic/functions/list/shuffle/loop.mcfunction: -------------------------------------------------------------------------------- 1 | execute summon minecraft:marker run function generic:list/shuffle/zzz/0 2 | scoreboard players remove #list.temp.0 loy.value 1 3 | execute if score #list.temp.0 loy.value matches 1.. run function generic:list/shuffle/loop -------------------------------------------------------------------------------- /data/generic/functions/list/shuffle/result.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main ListOutput0 append from entity @s data.Element 2 | kill @s -------------------------------------------------------------------------------- /data/generic/functions/list/shuffle/zzz/0.mcfunction: -------------------------------------------------------------------------------- 1 | data modify entity @s data.Element set from storage generic:main ListInput0[0] 2 | data remove storage generic:main ListInput0[0] 3 | 4 | tag @s add entity.temp 5 | tag @s add loy.obj -------------------------------------------------------------------------------- /data/generic/functions/list/sum/do.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage agfa:main Temp set value [] 2 | execute if score #list_index value matches 2.. run function agfa:generic/list/set/jump 3 | scoreboard players set #list_output value 0 4 | function agfa:generic/list/sum/loop 5 | data modify storage agfa:main List set from storage agfa:main Temp -------------------------------------------------------------------------------- /data/generic/functions/list/sum/jump.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players remove #list_index value 1 2 | data modify storage agfa:main Temp append from storage agfa:main List[0] 3 | data remove storage agfa:main List[0] 4 | execute if score #list_index value matches 2.. run function agfa:generic/list/set/jump -------------------------------------------------------------------------------- /data/generic/functions/math/bincon/do.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main BinaryOutput set value [] 2 | execute if score #math.input.1 loy.value matches 1.. run function generic:math/bincon/execute -------------------------------------------------------------------------------- /data/generic/functions/math/convert/int_uint16/do.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #math.input.0 loy.value matches 0.. run function generic:math/convert/int_uint16/positive 2 | execute if score #math.input.0 loy.value matches ..1 run function generic:math/convert/int_uint16/negative -------------------------------------------------------------------------------- /data/generic/functions/math/cos/do.mcfunction: -------------------------------------------------------------------------------- 1 | function generic:entity/ghost/summon 2 | execute as 00000000-0000-0000-0000-0dc800000000 run function generic:math/cos/execute -------------------------------------------------------------------------------- /data/generic/functions/math/hexcon/cutzero/do.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main Temp set from storage generic:main MathInput0[0] 2 | execute if data storage generic:main {Temp:"0"} run function generic:math/hexcon/cutzero/execute -------------------------------------------------------------------------------- /data/generic/functions/math/hexcon/cutzero/execute.mcfunction: -------------------------------------------------------------------------------- 1 | data remove storage generic:main MathInput0[0] 2 | execute if data storage generic:main MathInput0[0] run function generic:math/hexcon/cutzero/do -------------------------------------------------------------------------------- /data/generic/functions/math/hexcon/dynamic/do.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main HexOutput set value [] 2 | execute if score #math.input.0 loy.value matches 0.. run function generic:math/hexcon/dynamic/execute -------------------------------------------------------------------------------- /data/generic/functions/math/hexcon/fixed/do.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main HexOutput set value [] 2 | execute if score #math.input.1 loy.value matches 1.. run function generic:math/hexcon/fixed/execute -------------------------------------------------------------------------------- /data/generic/functions/math/rng/methods/predicate/zzz/1.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players operation #math.output.0 loy.value *= #_1 loy.value 2 | scoreboard players remove #math.output.0 loy.value 1 -------------------------------------------------------------------------------- /data/generic/functions/math/rotvec/getx.mcfunction: -------------------------------------------------------------------------------- 1 | execute unless entity @e[type=marker,tag=temp] run summon marker 0.0 0.0 0.0 {Tags:["temp","loy.obj"],Rotation:[0.0f,0.0f]} 2 | execute as @e[type=marker,tag=temp] run function generic:math/rotvec/x -------------------------------------------------------------------------------- /data/generic/functions/math/rotvec/getz.mcfunction: -------------------------------------------------------------------------------- 1 | execute unless entity @e[type=marker,tag=temp] run summon marker 0.0 0.0 0.0 {Tags:["temp","loy.obj"],Rotation:[0.0f,0.0f]} 2 | execute as @e[type=marker,tag=temp] run function generic:math/rotvec/z -------------------------------------------------------------------------------- /data/generic/functions/math/rotvec/x.mcfunction: -------------------------------------------------------------------------------- 1 | teleport @s 0.0 0.0 0.0 ~ 0 2 | execute at @s run teleport @s ^-1 ^ ^ 3 | execute store result score #convert_x x run data get entity @s Pos[0] 1000 4 | execute store result score #convert_x z run data get entity @s Pos[2] 1000 -------------------------------------------------------------------------------- /data/generic/functions/math/rotvec/z.mcfunction: -------------------------------------------------------------------------------- 1 | teleport @s 0.0 0.0 0.0 ~ 0 2 | execute at @s run teleport @s ^ ^ ^1 3 | execute store result score #convert_z x run data get entity @s Pos[0] 1000 4 | execute store result score #convert_z z run data get entity @s Pos[2] 1000 -------------------------------------------------------------------------------- /data/generic/functions/math/splitdec/zzz/0.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players set #math.output.0 loy.value -1 2 | scoreboard players operation #math.output.1 loy.value *= #math.output.0 loy.value 3 | scoreboard players remove #math.output.1 loy.value 1 -------------------------------------------------------------------------------- /data/generic/functions/math/vector/getfromrotation/do.mcfunction: -------------------------------------------------------------------------------- 1 | # 输出四位浮点 2 | # 左:0 1 2 3 | # 上:3 4 5 4 | # 前:6 7 8 5 | function generic:entity/ghost/summon 6 | 7 | execute as 00000000-0000-0000-0000-0dc800000000 run function generic:math/vector/getfromrotation/zzz/0 8 | 9 | #function generic:math/vector/getfromrotation/log -------------------------------------------------------------------------------- /data/generic/functions/realtime/daylight/add.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players set #realtime.gamesecond loy.value 0 2 | time add 1t -------------------------------------------------------------------------------- /data/generic/functions/realtime/daylight/off.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players set #realtime.daylight.control loy.value 0 -------------------------------------------------------------------------------- /data/generic/functions/realtime/daylight/on.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players set #realtime.daylight.control loy.value 1 -------------------------------------------------------------------------------- /data/generic/functions/realtime/get/do.mcfunction: -------------------------------------------------------------------------------- 1 | data modify block -2 -1 0 auto set value 0b 2 | data modify block -2 -1 0 auto set value 1b -------------------------------------------------------------------------------- /data/generic/functions/realtime/init.mcfunction: -------------------------------------------------------------------------------- 1 | setblock -2 -1 0 bedrock replace 2 | setblock -2 -2 0 bedrock replace 3 | 4 | setblock -2 -1 0 command_block[facing=down]{auto:0b,Command:"help me"} replace 5 | setblock -2 -2 0 chain_command_block[facing=down]{auto:1b,Command:"function generic:realtime/get/zzz/0"} replace -------------------------------------------------------------------------------- /data/generic/functions/realtime/limit/zzz/0.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players set #realtime.second loy.value 0 2 | scoreboard players add #realtime.minute loy.value 1 -------------------------------------------------------------------------------- /data/generic/functions/realtime/limit/zzz/1.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players set #realtime.minute loy.value 0 2 | scoreboard players add #realtime.hour loy.value 1 -------------------------------------------------------------------------------- /data/generic/functions/realtime/limit/zzz/2.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players set #realtime.tick loy.value 0 2 | scoreboard players add #realtime.second loy.value 1 -------------------------------------------------------------------------------- /data/generic/functions/realtime/limit/zzz/3.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players set #realtime.tick loy.value 19 2 | scoreboard players remove #realtime.second loy.value 1 -------------------------------------------------------------------------------- /data/generic/functions/realtime/limit/zzz/4.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players set #realtime.second loy.value 59 2 | scoreboard players remove #realtime.minute loy.value 1 -------------------------------------------------------------------------------- /data/generic/functions/realtime/limit/zzz/5.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players set #realtime.minute loy.value 59 2 | scoreboard players remove #realtime.hour loy.value 1 -------------------------------------------------------------------------------- /data/generic/functions/realtime/sync/do.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players set #realtime.sync.flag loy.value 1 2 | scoreboard players set #realtime.previous.second loy.value -1 -------------------------------------------------------------------------------- /data/generic/functions/realtime/sync/tick.mcfunction: -------------------------------------------------------------------------------- 1 | function generic:realtime/get/do 2 | execute if score #realtime.previous.second loy.value matches 0.. unless score #realtime.previous.second loy.value = #realtime.second loy.value run function generic:realtime/sync/end 3 | scoreboard players operation #realtime.previous.second loy.value = #realtime.second loy.value -------------------------------------------------------------------------------- /data/generic/functions/realtime/tick.mcfunction: -------------------------------------------------------------------------------- 1 | execute unless score #realtime.sync.flag loy.value matches 1 run function generic:realtime/add/do 2 | execute if score #realtime.sync.flag loy.value matches 1 run function generic:realtime/sync/tick -------------------------------------------------------------------------------- /data/generic/functions/text/charmerge/do.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextOutput set value '{"text":""}' 2 | data modify storage generic:main Temp set from storage generic:main TextInput0 3 | execute if data storage generic:main Temp[0] run function generic:text/charmerge/execute -------------------------------------------------------------------------------- /data/generic/functions/text/combine/json_with_format/do.mcfunction: -------------------------------------------------------------------------------- 1 | data modify block 29999984 0 0 front_text.messages[0] set value '[{"nbt":"TextInput0","storage": "generic:main","interpret": true}, {"nbt":"TextInput1","storage": "generic:main","interpret": true}]' 2 | data modify storage generic:main TextOutput set from block 29999984 0 0 front_text.messages[0] -------------------------------------------------------------------------------- /data/generic/functions/text/combine/json_with_string_later/do.mcfunction: -------------------------------------------------------------------------------- 1 | data modify block 29999984 0 0 front_text.messages[0] set value '[{"nbt":"TextInput0","storage": "generic:main","interpret": true}, {"nbt":"TextInput1","storage": "generic:main"}]' 2 | data modify storage generic:main TextOutput set from block 29999984 0 0 front_text.messages[0] -------------------------------------------------------------------------------- /data/generic/functions/text/combine/pure_string/do.mcfunction: -------------------------------------------------------------------------------- 1 | function generic:entity/ghost/summon 2 | function generic:text/combine/json_json_with_format/do 3 | 4 | execute as 00000000-0000-0000-0000-0dc800000000 run data modify entity @s CustomName set from storage generic:main TextOutput 5 | 6 | function generic:text/combine/pure_string/name_to_string -------------------------------------------------------------------------------- /data/generic/functions/text/combine/pure_string/zzz/0.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextOutput set string storage generic:main LastOutput 89 -38 -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/negative/zzz/00.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\uf000"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/negative/zzz/01.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\uf001"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/negative/zzz/02.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\uf002"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/negative/zzz/03.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\uf003"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/negative/zzz/04.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\uf004"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/negative/zzz/05.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\uf005"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/negative/zzz/06.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\uf006"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/negative/zzz/07.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\uf007"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/negative/zzz/08.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\uf008"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/negative/zzz/09.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\uf009"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/negative/zzz/10.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\uf00a"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/negative/zzz/11.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\uf00b"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/positive/zzz/00.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\ue000"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/positive/zzz/01.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\ue001"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/positive/zzz/02.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\ue002"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/positive/zzz/03.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\ue003"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/positive/zzz/04.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\ue004"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/positive/zzz/05.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\ue005"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/positive/zzz/06.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\ue006"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/positive/zzz/07.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\ue007"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/positive/zzz/08.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\ue008"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/positive/zzz/09.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\ue009"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/positive/zzz/10.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\ue00a"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/create_space/positive/zzz/11.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage generic:main TextInput0 set from storage generic:main TextOutput 2 | data modify storage generic:main TextInput1 set value '{"text":"\\ue00b"}' 3 | function generic:text/combine/json_with_format/do -------------------------------------------------------------------------------- /data/generic/functions/text/flat/do.mcfunction: -------------------------------------------------------------------------------- 1 | data modify block 29999984 0 0 front_text.messages[0] set value '[{"nbt":"TextInput0","storage": "generic:main","interpret": true}]' 2 | data modify storage generic:main TextOutput set from block 29999984 0 0 front_text.messages[0] -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/0.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 0..127 run function generic:text/getcolorpixel/get_b/1 2 | execute if score #text.input.2 loy.value matches 128..255 run function generic:text/getcolorpixel/get_b/128 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/1.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 0..63 run function generic:text/getcolorpixel/get_b/2 2 | execute if score #text.input.2 loy.value matches 64..127 run function generic:text/getcolorpixel/get_b/65 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/10.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 4 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000004"}' 2 | execute if score #text.input.2 loy.value matches 5 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000005"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/100.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 96..97 run function generic:text/getcolorpixel/get_b/101 2 | execute if score #text.input.2 loy.value matches 98..99 run function generic:text/getcolorpixel/get_b/102 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/103.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 100..101 run function generic:text/getcolorpixel/get_b/104 2 | execute if score #text.input.2 loy.value matches 102..103 run function generic:text/getcolorpixel/get_b/105 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/106.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 104..107 run function generic:text/getcolorpixel/get_b/107 2 | execute if score #text.input.2 loy.value matches 108..111 run function generic:text/getcolorpixel/get_b/110 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/107.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 104..105 run function generic:text/getcolorpixel/get_b/108 2 | execute if score #text.input.2 loy.value matches 106..107 run function generic:text/getcolorpixel/get_b/109 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/11.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 6 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000006"}' 2 | execute if score #text.input.2 loy.value matches 7 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000007"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/110.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 108..109 run function generic:text/getcolorpixel/get_b/111 2 | execute if score #text.input.2 loy.value matches 110..111 run function generic:text/getcolorpixel/get_b/112 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/113.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 112..119 run function generic:text/getcolorpixel/get_b/114 2 | execute if score #text.input.2 loy.value matches 120..127 run function generic:text/getcolorpixel/get_b/121 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/114.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 112..115 run function generic:text/getcolorpixel/get_b/115 2 | execute if score #text.input.2 loy.value matches 116..119 run function generic:text/getcolorpixel/get_b/118 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/115.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 112..113 run function generic:text/getcolorpixel/get_b/116 2 | execute if score #text.input.2 loy.value matches 114..115 run function generic:text/getcolorpixel/get_b/117 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/118.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 116..117 run function generic:text/getcolorpixel/get_b/119 2 | execute if score #text.input.2 loy.value matches 118..119 run function generic:text/getcolorpixel/get_b/120 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/12.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 8..11 run function generic:text/getcolorpixel/get_b/13 2 | execute if score #text.input.2 loy.value matches 12..15 run function generic:text/getcolorpixel/get_b/16 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/121.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 120..123 run function generic:text/getcolorpixel/get_b/122 2 | execute if score #text.input.2 loy.value matches 124..127 run function generic:text/getcolorpixel/get_b/125 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/122.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 120..121 run function generic:text/getcolorpixel/get_b/123 2 | execute if score #text.input.2 loy.value matches 122..123 run function generic:text/getcolorpixel/get_b/124 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/125.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 124..125 run function generic:text/getcolorpixel/get_b/126 2 | execute if score #text.input.2 loy.value matches 126..127 run function generic:text/getcolorpixel/get_b/127 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/128.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 128..191 run function generic:text/getcolorpixel/get_b/129 2 | execute if score #text.input.2 loy.value matches 192..255 run function generic:text/getcolorpixel/get_b/192 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/129.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 128..159 run function generic:text/getcolorpixel/get_b/130 2 | execute if score #text.input.2 loy.value matches 160..191 run function generic:text/getcolorpixel/get_b/161 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/13.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 8..9 run function generic:text/getcolorpixel/get_b/14 2 | execute if score #text.input.2 loy.value matches 10..11 run function generic:text/getcolorpixel/get_b/15 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/130.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 128..143 run function generic:text/getcolorpixel/get_b/131 2 | execute if score #text.input.2 loy.value matches 144..159 run function generic:text/getcolorpixel/get_b/146 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/131.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 128..135 run function generic:text/getcolorpixel/get_b/132 2 | execute if score #text.input.2 loy.value matches 136..143 run function generic:text/getcolorpixel/get_b/139 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/132.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 128..131 run function generic:text/getcolorpixel/get_b/133 2 | execute if score #text.input.2 loy.value matches 132..135 run function generic:text/getcolorpixel/get_b/136 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/133.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 128..129 run function generic:text/getcolorpixel/get_b/134 2 | execute if score #text.input.2 loy.value matches 130..131 run function generic:text/getcolorpixel/get_b/135 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/136.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 132..133 run function generic:text/getcolorpixel/get_b/137 2 | execute if score #text.input.2 loy.value matches 134..135 run function generic:text/getcolorpixel/get_b/138 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/139.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 136..139 run function generic:text/getcolorpixel/get_b/140 2 | execute if score #text.input.2 loy.value matches 140..143 run function generic:text/getcolorpixel/get_b/143 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/14.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 8 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000008"}' 2 | execute if score #text.input.2 loy.value matches 9 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000009"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/140.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 136..137 run function generic:text/getcolorpixel/get_b/141 2 | execute if score #text.input.2 loy.value matches 138..139 run function generic:text/getcolorpixel/get_b/142 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/143.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 140..141 run function generic:text/getcolorpixel/get_b/144 2 | execute if score #text.input.2 loy.value matches 142..143 run function generic:text/getcolorpixel/get_b/145 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/146.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 144..151 run function generic:text/getcolorpixel/get_b/147 2 | execute if score #text.input.2 loy.value matches 152..159 run function generic:text/getcolorpixel/get_b/154 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/147.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 144..147 run function generic:text/getcolorpixel/get_b/148 2 | execute if score #text.input.2 loy.value matches 148..151 run function generic:text/getcolorpixel/get_b/151 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/148.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 144..145 run function generic:text/getcolorpixel/get_b/149 2 | execute if score #text.input.2 loy.value matches 146..147 run function generic:text/getcolorpixel/get_b/150 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/15.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 10 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#00000A"}' 2 | execute if score #text.input.2 loy.value matches 11 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#00000B"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/151.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 148..149 run function generic:text/getcolorpixel/get_b/152 2 | execute if score #text.input.2 loy.value matches 150..151 run function generic:text/getcolorpixel/get_b/153 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/154.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 152..155 run function generic:text/getcolorpixel/get_b/155 2 | execute if score #text.input.2 loy.value matches 156..159 run function generic:text/getcolorpixel/get_b/158 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/155.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 152..153 run function generic:text/getcolorpixel/get_b/156 2 | execute if score #text.input.2 loy.value matches 154..155 run function generic:text/getcolorpixel/get_b/157 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/158.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 156..157 run function generic:text/getcolorpixel/get_b/159 2 | execute if score #text.input.2 loy.value matches 158..159 run function generic:text/getcolorpixel/get_b/160 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/16.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 12..13 run function generic:text/getcolorpixel/get_b/17 2 | execute if score #text.input.2 loy.value matches 14..15 run function generic:text/getcolorpixel/get_b/18 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/161.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 160..175 run function generic:text/getcolorpixel/get_b/162 2 | execute if score #text.input.2 loy.value matches 176..191 run function generic:text/getcolorpixel/get_b/177 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/162.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 160..167 run function generic:text/getcolorpixel/get_b/163 2 | execute if score #text.input.2 loy.value matches 168..175 run function generic:text/getcolorpixel/get_b/170 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/163.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 160..163 run function generic:text/getcolorpixel/get_b/164 2 | execute if score #text.input.2 loy.value matches 164..167 run function generic:text/getcolorpixel/get_b/167 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/164.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 160..161 run function generic:text/getcolorpixel/get_b/165 2 | execute if score #text.input.2 loy.value matches 162..163 run function generic:text/getcolorpixel/get_b/166 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/167.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 164..165 run function generic:text/getcolorpixel/get_b/168 2 | execute if score #text.input.2 loy.value matches 166..167 run function generic:text/getcolorpixel/get_b/169 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/17.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 12 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#00000C"}' 2 | execute if score #text.input.2 loy.value matches 13 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#00000D"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/170.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 168..171 run function generic:text/getcolorpixel/get_b/171 2 | execute if score #text.input.2 loy.value matches 172..175 run function generic:text/getcolorpixel/get_b/174 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/171.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 168..169 run function generic:text/getcolorpixel/get_b/172 2 | execute if score #text.input.2 loy.value matches 170..171 run function generic:text/getcolorpixel/get_b/173 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/174.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 172..173 run function generic:text/getcolorpixel/get_b/175 2 | execute if score #text.input.2 loy.value matches 174..175 run function generic:text/getcolorpixel/get_b/176 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/177.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 176..183 run function generic:text/getcolorpixel/get_b/178 2 | execute if score #text.input.2 loy.value matches 184..191 run function generic:text/getcolorpixel/get_b/185 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/178.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 176..179 run function generic:text/getcolorpixel/get_b/179 2 | execute if score #text.input.2 loy.value matches 180..183 run function generic:text/getcolorpixel/get_b/182 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/179.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 176..177 run function generic:text/getcolorpixel/get_b/180 2 | execute if score #text.input.2 loy.value matches 178..179 run function generic:text/getcolorpixel/get_b/181 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/18.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 14 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#00000E"}' 2 | execute if score #text.input.2 loy.value matches 15 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#00000F"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/182.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 180..181 run function generic:text/getcolorpixel/get_b/183 2 | execute if score #text.input.2 loy.value matches 182..183 run function generic:text/getcolorpixel/get_b/184 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/185.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 184..187 run function generic:text/getcolorpixel/get_b/186 2 | execute if score #text.input.2 loy.value matches 188..191 run function generic:text/getcolorpixel/get_b/189 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/186.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 184..185 run function generic:text/getcolorpixel/get_b/187 2 | execute if score #text.input.2 loy.value matches 186..187 run function generic:text/getcolorpixel/get_b/188 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/189.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 188..189 run function generic:text/getcolorpixel/get_b/190 2 | execute if score #text.input.2 loy.value matches 190..191 run function generic:text/getcolorpixel/get_b/191 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/19.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 16..23 run function generic:text/getcolorpixel/get_b/20 2 | execute if score #text.input.2 loy.value matches 24..31 run function generic:text/getcolorpixel/get_b/27 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/192.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 192..223 run function generic:text/getcolorpixel/get_b/193 2 | execute if score #text.input.2 loy.value matches 224..255 run function generic:text/getcolorpixel/get_b/224 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/193.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 192..207 run function generic:text/getcolorpixel/get_b/194 2 | execute if score #text.input.2 loy.value matches 208..223 run function generic:text/getcolorpixel/get_b/209 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/194.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 192..199 run function generic:text/getcolorpixel/get_b/195 2 | execute if score #text.input.2 loy.value matches 200..207 run function generic:text/getcolorpixel/get_b/202 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/195.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 192..195 run function generic:text/getcolorpixel/get_b/196 2 | execute if score #text.input.2 loy.value matches 196..199 run function generic:text/getcolorpixel/get_b/199 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/196.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 192..193 run function generic:text/getcolorpixel/get_b/197 2 | execute if score #text.input.2 loy.value matches 194..195 run function generic:text/getcolorpixel/get_b/198 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/199.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 196..197 run function generic:text/getcolorpixel/get_b/200 2 | execute if score #text.input.2 loy.value matches 198..199 run function generic:text/getcolorpixel/get_b/201 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/2.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 0..31 run function generic:text/getcolorpixel/get_b/3 2 | execute if score #text.input.2 loy.value matches 32..63 run function generic:text/getcolorpixel/get_b/34 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/20.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 16..19 run function generic:text/getcolorpixel/get_b/21 2 | execute if score #text.input.2 loy.value matches 20..23 run function generic:text/getcolorpixel/get_b/24 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/202.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 200..203 run function generic:text/getcolorpixel/get_b/203 2 | execute if score #text.input.2 loy.value matches 204..207 run function generic:text/getcolorpixel/get_b/206 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/203.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 200..201 run function generic:text/getcolorpixel/get_b/204 2 | execute if score #text.input.2 loy.value matches 202..203 run function generic:text/getcolorpixel/get_b/205 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/206.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 204..205 run function generic:text/getcolorpixel/get_b/207 2 | execute if score #text.input.2 loy.value matches 206..207 run function generic:text/getcolorpixel/get_b/208 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/209.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 208..215 run function generic:text/getcolorpixel/get_b/210 2 | execute if score #text.input.2 loy.value matches 216..223 run function generic:text/getcolorpixel/get_b/217 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/21.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 16..17 run function generic:text/getcolorpixel/get_b/22 2 | execute if score #text.input.2 loy.value matches 18..19 run function generic:text/getcolorpixel/get_b/23 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/210.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 208..211 run function generic:text/getcolorpixel/get_b/211 2 | execute if score #text.input.2 loy.value matches 212..215 run function generic:text/getcolorpixel/get_b/214 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/211.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 208..209 run function generic:text/getcolorpixel/get_b/212 2 | execute if score #text.input.2 loy.value matches 210..211 run function generic:text/getcolorpixel/get_b/213 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/214.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 212..213 run function generic:text/getcolorpixel/get_b/215 2 | execute if score #text.input.2 loy.value matches 214..215 run function generic:text/getcolorpixel/get_b/216 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/217.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 216..219 run function generic:text/getcolorpixel/get_b/218 2 | execute if score #text.input.2 loy.value matches 220..223 run function generic:text/getcolorpixel/get_b/221 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/218.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 216..217 run function generic:text/getcolorpixel/get_b/219 2 | execute if score #text.input.2 loy.value matches 218..219 run function generic:text/getcolorpixel/get_b/220 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/22.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 16 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000010"}' 2 | execute if score #text.input.2 loy.value matches 17 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000011"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/221.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 220..221 run function generic:text/getcolorpixel/get_b/222 2 | execute if score #text.input.2 loy.value matches 222..223 run function generic:text/getcolorpixel/get_b/223 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/224.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 224..239 run function generic:text/getcolorpixel/get_b/225 2 | execute if score #text.input.2 loy.value matches 240..255 run function generic:text/getcolorpixel/get_b/240 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/225.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 224..231 run function generic:text/getcolorpixel/get_b/226 2 | execute if score #text.input.2 loy.value matches 232..239 run function generic:text/getcolorpixel/get_b/233 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/226.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 224..227 run function generic:text/getcolorpixel/get_b/227 2 | execute if score #text.input.2 loy.value matches 228..231 run function generic:text/getcolorpixel/get_b/230 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/227.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 224..225 run function generic:text/getcolorpixel/get_b/228 2 | execute if score #text.input.2 loy.value matches 226..227 run function generic:text/getcolorpixel/get_b/229 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/23.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 18 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000012"}' 2 | execute if score #text.input.2 loy.value matches 19 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000013"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/230.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 228..229 run function generic:text/getcolorpixel/get_b/231 2 | execute if score #text.input.2 loy.value matches 230..231 run function generic:text/getcolorpixel/get_b/232 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/233.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 232..235 run function generic:text/getcolorpixel/get_b/234 2 | execute if score #text.input.2 loy.value matches 236..239 run function generic:text/getcolorpixel/get_b/237 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/234.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 232..233 run function generic:text/getcolorpixel/get_b/235 2 | execute if score #text.input.2 loy.value matches 234..235 run function generic:text/getcolorpixel/get_b/236 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/237.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 236..237 run function generic:text/getcolorpixel/get_b/238 2 | execute if score #text.input.2 loy.value matches 238..239 run function generic:text/getcolorpixel/get_b/239 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/24.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 20..21 run function generic:text/getcolorpixel/get_b/25 2 | execute if score #text.input.2 loy.value matches 22..23 run function generic:text/getcolorpixel/get_b/26 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/240.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 240..247 run function generic:text/getcolorpixel/get_b/241 2 | execute if score #text.input.2 loy.value matches 248..255 run function generic:text/getcolorpixel/get_b/248 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/241.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 240..243 run function generic:text/getcolorpixel/get_b/242 2 | execute if score #text.input.2 loy.value matches 244..247 run function generic:text/getcolorpixel/get_b/245 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/242.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 240..241 run function generic:text/getcolorpixel/get_b/243 2 | execute if score #text.input.2 loy.value matches 242..243 run function generic:text/getcolorpixel/get_b/244 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/245.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 244..245 run function generic:text/getcolorpixel/get_b/246 2 | execute if score #text.input.2 loy.value matches 246..247 run function generic:text/getcolorpixel/get_b/247 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/248.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 248..251 run function generic:text/getcolorpixel/get_b/249 2 | execute if score #text.input.2 loy.value matches 252..255 run function generic:text/getcolorpixel/get_b/252 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/249.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 248..249 run function generic:text/getcolorpixel/get_b/250 2 | execute if score #text.input.2 loy.value matches 250..251 run function generic:text/getcolorpixel/get_b/251 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/25.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 20 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000014"}' 2 | execute if score #text.input.2 loy.value matches 21 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000015"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/252.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 252..253 run function generic:text/getcolorpixel/get_b/253 2 | execute if score #text.input.2 loy.value matches 254..255 run function generic:text/getcolorpixel/get_b/254 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/26.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 22 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000016"}' 2 | execute if score #text.input.2 loy.value matches 23 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000017"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/27.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 24..27 run function generic:text/getcolorpixel/get_b/28 2 | execute if score #text.input.2 loy.value matches 28..31 run function generic:text/getcolorpixel/get_b/31 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/28.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 24..25 run function generic:text/getcolorpixel/get_b/29 2 | execute if score #text.input.2 loy.value matches 26..27 run function generic:text/getcolorpixel/get_b/30 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/29.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 24 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000018"}' 2 | execute if score #text.input.2 loy.value matches 25 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000019"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/3.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 0..15 run function generic:text/getcolorpixel/get_b/4 2 | execute if score #text.input.2 loy.value matches 16..31 run function generic:text/getcolorpixel/get_b/19 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/30.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 26 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#00001A"}' 2 | execute if score #text.input.2 loy.value matches 27 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#00001B"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/31.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 28..29 run function generic:text/getcolorpixel/get_b/32 2 | execute if score #text.input.2 loy.value matches 30..31 run function generic:text/getcolorpixel/get_b/33 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/32.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 28 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#00001C"}' 2 | execute if score #text.input.2 loy.value matches 29 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#00001D"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/33.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 30 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#00001E"}' 2 | execute if score #text.input.2 loy.value matches 31 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#00001F"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/34.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 32..47 run function generic:text/getcolorpixel/get_b/35 2 | execute if score #text.input.2 loy.value matches 48..63 run function generic:text/getcolorpixel/get_b/50 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/35.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 32..39 run function generic:text/getcolorpixel/get_b/36 2 | execute if score #text.input.2 loy.value matches 40..47 run function generic:text/getcolorpixel/get_b/43 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/36.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 32..35 run function generic:text/getcolorpixel/get_b/37 2 | execute if score #text.input.2 loy.value matches 36..39 run function generic:text/getcolorpixel/get_b/40 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/37.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 32..33 run function generic:text/getcolorpixel/get_b/38 2 | execute if score #text.input.2 loy.value matches 34..35 run function generic:text/getcolorpixel/get_b/39 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/38.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 32 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000020"}' 2 | execute if score #text.input.2 loy.value matches 33 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000021"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/39.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 34 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000022"}' 2 | execute if score #text.input.2 loy.value matches 35 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000023"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/4.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 0..7 run function generic:text/getcolorpixel/get_b/5 2 | execute if score #text.input.2 loy.value matches 8..15 run function generic:text/getcolorpixel/get_b/12 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/40.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 36..37 run function generic:text/getcolorpixel/get_b/41 2 | execute if score #text.input.2 loy.value matches 38..39 run function generic:text/getcolorpixel/get_b/42 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/41.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 36 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000024"}' 2 | execute if score #text.input.2 loy.value matches 37 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000025"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/42.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 38 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000026"}' 2 | execute if score #text.input.2 loy.value matches 39 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000027"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/43.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 40..43 run function generic:text/getcolorpixel/get_b/44 2 | execute if score #text.input.2 loy.value matches 44..47 run function generic:text/getcolorpixel/get_b/47 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/44.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 40..41 run function generic:text/getcolorpixel/get_b/45 2 | execute if score #text.input.2 loy.value matches 42..43 run function generic:text/getcolorpixel/get_b/46 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/45.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 40 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000028"}' 2 | execute if score #text.input.2 loy.value matches 41 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000029"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/46.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 42 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#00002A"}' 2 | execute if score #text.input.2 loy.value matches 43 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#00002B"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/47.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 44..45 run function generic:text/getcolorpixel/get_b/48 2 | execute if score #text.input.2 loy.value matches 46..47 run function generic:text/getcolorpixel/get_b/49 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/48.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 44 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#00002C"}' 2 | execute if score #text.input.2 loy.value matches 45 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#00002D"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/49.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 46 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#00002E"}' 2 | execute if score #text.input.2 loy.value matches 47 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#00002F"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/5.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 0..3 run function generic:text/getcolorpixel/get_b/6 2 | execute if score #text.input.2 loy.value matches 4..7 run function generic:text/getcolorpixel/get_b/9 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/50.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 48..55 run function generic:text/getcolorpixel/get_b/51 2 | execute if score #text.input.2 loy.value matches 56..63 run function generic:text/getcolorpixel/get_b/58 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/51.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 48..51 run function generic:text/getcolorpixel/get_b/52 2 | execute if score #text.input.2 loy.value matches 52..55 run function generic:text/getcolorpixel/get_b/55 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/52.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 48..49 run function generic:text/getcolorpixel/get_b/53 2 | execute if score #text.input.2 loy.value matches 50..51 run function generic:text/getcolorpixel/get_b/54 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/53.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 48 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000030"}' 2 | execute if score #text.input.2 loy.value matches 49 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000031"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/54.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 50 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000032"}' 2 | execute if score #text.input.2 loy.value matches 51 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000033"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/55.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 52..53 run function generic:text/getcolorpixel/get_b/56 2 | execute if score #text.input.2 loy.value matches 54..55 run function generic:text/getcolorpixel/get_b/57 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/56.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 52 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000034"}' 2 | execute if score #text.input.2 loy.value matches 53 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000035"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/57.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 54 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000036"}' 2 | execute if score #text.input.2 loy.value matches 55 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000037"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/58.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 56..59 run function generic:text/getcolorpixel/get_b/59 2 | execute if score #text.input.2 loy.value matches 60..63 run function generic:text/getcolorpixel/get_b/62 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/59.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 56..57 run function generic:text/getcolorpixel/get_b/60 2 | execute if score #text.input.2 loy.value matches 58..59 run function generic:text/getcolorpixel/get_b/61 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/6.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 0..1 run function generic:text/getcolorpixel/get_b/7 2 | execute if score #text.input.2 loy.value matches 2..3 run function generic:text/getcolorpixel/get_b/8 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/60.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 56 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000038"}' 2 | execute if score #text.input.2 loy.value matches 57 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#000039"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/61.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 58 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#00003A"}' 2 | execute if score #text.input.2 loy.value matches 59 run data modify storage generic:main Temp[2] set value '{"text":"A","font":"custom:pixel","color":"#00003B"}' -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/62.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 60..61 run function generic:text/getcolorpixel/get_b/63 2 | execute if score #text.input.2 loy.value matches 62..63 run function generic:text/getcolorpixel/get_b/64 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/65.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 64..95 run function generic:text/getcolorpixel/get_b/66 2 | execute if score #text.input.2 loy.value matches 96..127 run function generic:text/getcolorpixel/get_b/97 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/66.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 64..79 run function generic:text/getcolorpixel/get_b/67 2 | execute if score #text.input.2 loy.value matches 80..95 run function generic:text/getcolorpixel/get_b/82 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/67.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 64..71 run function generic:text/getcolorpixel/get_b/68 2 | execute if score #text.input.2 loy.value matches 72..79 run function generic:text/getcolorpixel/get_b/75 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/68.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 64..67 run function generic:text/getcolorpixel/get_b/69 2 | execute if score #text.input.2 loy.value matches 68..71 run function generic:text/getcolorpixel/get_b/72 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/69.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 64..65 run function generic:text/getcolorpixel/get_b/70 2 | execute if score #text.input.2 loy.value matches 66..67 run function generic:text/getcolorpixel/get_b/71 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/72.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 68..69 run function generic:text/getcolorpixel/get_b/73 2 | execute if score #text.input.2 loy.value matches 70..71 run function generic:text/getcolorpixel/get_b/74 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/75.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 72..75 run function generic:text/getcolorpixel/get_b/76 2 | execute if score #text.input.2 loy.value matches 76..79 run function generic:text/getcolorpixel/get_b/79 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/76.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 72..73 run function generic:text/getcolorpixel/get_b/77 2 | execute if score #text.input.2 loy.value matches 74..75 run function generic:text/getcolorpixel/get_b/78 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/79.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 76..77 run function generic:text/getcolorpixel/get_b/80 2 | execute if score #text.input.2 loy.value matches 78..79 run function generic:text/getcolorpixel/get_b/81 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/82.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 80..87 run function generic:text/getcolorpixel/get_b/83 2 | execute if score #text.input.2 loy.value matches 88..95 run function generic:text/getcolorpixel/get_b/90 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/83.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 80..83 run function generic:text/getcolorpixel/get_b/84 2 | execute if score #text.input.2 loy.value matches 84..87 run function generic:text/getcolorpixel/get_b/87 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/84.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 80..81 run function generic:text/getcolorpixel/get_b/85 2 | execute if score #text.input.2 loy.value matches 82..83 run function generic:text/getcolorpixel/get_b/86 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/87.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 84..85 run function generic:text/getcolorpixel/get_b/88 2 | execute if score #text.input.2 loy.value matches 86..87 run function generic:text/getcolorpixel/get_b/89 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/9.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 4..5 run function generic:text/getcolorpixel/get_b/10 2 | execute if score #text.input.2 loy.value matches 6..7 run function generic:text/getcolorpixel/get_b/11 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/90.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 88..91 run function generic:text/getcolorpixel/get_b/91 2 | execute if score #text.input.2 loy.value matches 92..95 run function generic:text/getcolorpixel/get_b/94 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/91.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 88..89 run function generic:text/getcolorpixel/get_b/92 2 | execute if score #text.input.2 loy.value matches 90..91 run function generic:text/getcolorpixel/get_b/93 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/94.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 92..93 run function generic:text/getcolorpixel/get_b/95 2 | execute if score #text.input.2 loy.value matches 94..95 run function generic:text/getcolorpixel/get_b/96 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/97.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 96..111 run function generic:text/getcolorpixel/get_b/98 2 | execute if score #text.input.2 loy.value matches 112..127 run function generic:text/getcolorpixel/get_b/113 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/98.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 96..103 run function generic:text/getcolorpixel/get_b/99 2 | execute if score #text.input.2 loy.value matches 104..111 run function generic:text/getcolorpixel/get_b/106 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_b/99.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.2 loy.value matches 96..99 run function generic:text/getcolorpixel/get_b/100 2 | execute if score #text.input.2 loy.value matches 100..103 run function generic:text/getcolorpixel/get_b/103 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/0.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 0..127 run function generic:text/getcolorpixel/get_g/1 2 | execute if score #text.input.1 loy.value matches 128..255 run function generic:text/getcolorpixel/get_g/128 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/1.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 0..63 run function generic:text/getcolorpixel/get_g/2 2 | execute if score #text.input.1 loy.value matches 64..127 run function generic:text/getcolorpixel/get_g/65 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/100.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 96..97 run function generic:text/getcolorpixel/get_g/101 2 | execute if score #text.input.1 loy.value matches 98..99 run function generic:text/getcolorpixel/get_g/102 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/103.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 100..101 run function generic:text/getcolorpixel/get_g/104 2 | execute if score #text.input.1 loy.value matches 102..103 run function generic:text/getcolorpixel/get_g/105 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/106.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 104..107 run function generic:text/getcolorpixel/get_g/107 2 | execute if score #text.input.1 loy.value matches 108..111 run function generic:text/getcolorpixel/get_g/110 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/107.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 104..105 run function generic:text/getcolorpixel/get_g/108 2 | execute if score #text.input.1 loy.value matches 106..107 run function generic:text/getcolorpixel/get_g/109 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/110.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 108..109 run function generic:text/getcolorpixel/get_g/111 2 | execute if score #text.input.1 loy.value matches 110..111 run function generic:text/getcolorpixel/get_g/112 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/113.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 112..119 run function generic:text/getcolorpixel/get_g/114 2 | execute if score #text.input.1 loy.value matches 120..127 run function generic:text/getcolorpixel/get_g/121 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/114.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 112..115 run function generic:text/getcolorpixel/get_g/115 2 | execute if score #text.input.1 loy.value matches 116..119 run function generic:text/getcolorpixel/get_g/118 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/115.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 112..113 run function generic:text/getcolorpixel/get_g/116 2 | execute if score #text.input.1 loy.value matches 114..115 run function generic:text/getcolorpixel/get_g/117 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/118.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 116..117 run function generic:text/getcolorpixel/get_g/119 2 | execute if score #text.input.1 loy.value matches 118..119 run function generic:text/getcolorpixel/get_g/120 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/12.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 8..11 run function generic:text/getcolorpixel/get_g/13 2 | execute if score #text.input.1 loy.value matches 12..15 run function generic:text/getcolorpixel/get_g/16 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/121.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 120..123 run function generic:text/getcolorpixel/get_g/122 2 | execute if score #text.input.1 loy.value matches 124..127 run function generic:text/getcolorpixel/get_g/125 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/122.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 120..121 run function generic:text/getcolorpixel/get_g/123 2 | execute if score #text.input.1 loy.value matches 122..123 run function generic:text/getcolorpixel/get_g/124 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/125.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 124..125 run function generic:text/getcolorpixel/get_g/126 2 | execute if score #text.input.1 loy.value matches 126..127 run function generic:text/getcolorpixel/get_g/127 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/128.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 128..191 run function generic:text/getcolorpixel/get_g/129 2 | execute if score #text.input.1 loy.value matches 192..255 run function generic:text/getcolorpixel/get_g/192 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/129.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 128..159 run function generic:text/getcolorpixel/get_g/130 2 | execute if score #text.input.1 loy.value matches 160..191 run function generic:text/getcolorpixel/get_g/161 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/13.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 8..9 run function generic:text/getcolorpixel/get_g/14 2 | execute if score #text.input.1 loy.value matches 10..11 run function generic:text/getcolorpixel/get_g/15 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/130.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 128..143 run function generic:text/getcolorpixel/get_g/131 2 | execute if score #text.input.1 loy.value matches 144..159 run function generic:text/getcolorpixel/get_g/146 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/131.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 128..135 run function generic:text/getcolorpixel/get_g/132 2 | execute if score #text.input.1 loy.value matches 136..143 run function generic:text/getcolorpixel/get_g/139 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/132.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 128..131 run function generic:text/getcolorpixel/get_g/133 2 | execute if score #text.input.1 loy.value matches 132..135 run function generic:text/getcolorpixel/get_g/136 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/133.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 128..129 run function generic:text/getcolorpixel/get_g/134 2 | execute if score #text.input.1 loy.value matches 130..131 run function generic:text/getcolorpixel/get_g/135 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/136.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 132..133 run function generic:text/getcolorpixel/get_g/137 2 | execute if score #text.input.1 loy.value matches 134..135 run function generic:text/getcolorpixel/get_g/138 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/139.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 136..139 run function generic:text/getcolorpixel/get_g/140 2 | execute if score #text.input.1 loy.value matches 140..143 run function generic:text/getcolorpixel/get_g/143 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/140.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 136..137 run function generic:text/getcolorpixel/get_g/141 2 | execute if score #text.input.1 loy.value matches 138..139 run function generic:text/getcolorpixel/get_g/142 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/143.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 140..141 run function generic:text/getcolorpixel/get_g/144 2 | execute if score #text.input.1 loy.value matches 142..143 run function generic:text/getcolorpixel/get_g/145 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/146.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 144..151 run function generic:text/getcolorpixel/get_g/147 2 | execute if score #text.input.1 loy.value matches 152..159 run function generic:text/getcolorpixel/get_g/154 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/147.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 144..147 run function generic:text/getcolorpixel/get_g/148 2 | execute if score #text.input.1 loy.value matches 148..151 run function generic:text/getcolorpixel/get_g/151 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/148.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 144..145 run function generic:text/getcolorpixel/get_g/149 2 | execute if score #text.input.1 loy.value matches 146..147 run function generic:text/getcolorpixel/get_g/150 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/151.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 148..149 run function generic:text/getcolorpixel/get_g/152 2 | execute if score #text.input.1 loy.value matches 150..151 run function generic:text/getcolorpixel/get_g/153 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/154.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 152..155 run function generic:text/getcolorpixel/get_g/155 2 | execute if score #text.input.1 loy.value matches 156..159 run function generic:text/getcolorpixel/get_g/158 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/155.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 152..153 run function generic:text/getcolorpixel/get_g/156 2 | execute if score #text.input.1 loy.value matches 154..155 run function generic:text/getcolorpixel/get_g/157 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/158.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 156..157 run function generic:text/getcolorpixel/get_g/159 2 | execute if score #text.input.1 loy.value matches 158..159 run function generic:text/getcolorpixel/get_g/160 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/16.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 12..13 run function generic:text/getcolorpixel/get_g/17 2 | execute if score #text.input.1 loy.value matches 14..15 run function generic:text/getcolorpixel/get_g/18 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/161.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 160..175 run function generic:text/getcolorpixel/get_g/162 2 | execute if score #text.input.1 loy.value matches 176..191 run function generic:text/getcolorpixel/get_g/177 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/162.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 160..167 run function generic:text/getcolorpixel/get_g/163 2 | execute if score #text.input.1 loy.value matches 168..175 run function generic:text/getcolorpixel/get_g/170 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/163.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 160..163 run function generic:text/getcolorpixel/get_g/164 2 | execute if score #text.input.1 loy.value matches 164..167 run function generic:text/getcolorpixel/get_g/167 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/164.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 160..161 run function generic:text/getcolorpixel/get_g/165 2 | execute if score #text.input.1 loy.value matches 162..163 run function generic:text/getcolorpixel/get_g/166 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/167.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 164..165 run function generic:text/getcolorpixel/get_g/168 2 | execute if score #text.input.1 loy.value matches 166..167 run function generic:text/getcolorpixel/get_g/169 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/170.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 168..171 run function generic:text/getcolorpixel/get_g/171 2 | execute if score #text.input.1 loy.value matches 172..175 run function generic:text/getcolorpixel/get_g/174 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/171.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 168..169 run function generic:text/getcolorpixel/get_g/172 2 | execute if score #text.input.1 loy.value matches 170..171 run function generic:text/getcolorpixel/get_g/173 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/174.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 172..173 run function generic:text/getcolorpixel/get_g/175 2 | execute if score #text.input.1 loy.value matches 174..175 run function generic:text/getcolorpixel/get_g/176 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/177.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 176..183 run function generic:text/getcolorpixel/get_g/178 2 | execute if score #text.input.1 loy.value matches 184..191 run function generic:text/getcolorpixel/get_g/185 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/178.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 176..179 run function generic:text/getcolorpixel/get_g/179 2 | execute if score #text.input.1 loy.value matches 180..183 run function generic:text/getcolorpixel/get_g/182 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/179.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 176..177 run function generic:text/getcolorpixel/get_g/180 2 | execute if score #text.input.1 loy.value matches 178..179 run function generic:text/getcolorpixel/get_g/181 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/182.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 180..181 run function generic:text/getcolorpixel/get_g/183 2 | execute if score #text.input.1 loy.value matches 182..183 run function generic:text/getcolorpixel/get_g/184 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/185.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 184..187 run function generic:text/getcolorpixel/get_g/186 2 | execute if score #text.input.1 loy.value matches 188..191 run function generic:text/getcolorpixel/get_g/189 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/186.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 184..185 run function generic:text/getcolorpixel/get_g/187 2 | execute if score #text.input.1 loy.value matches 186..187 run function generic:text/getcolorpixel/get_g/188 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/189.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 188..189 run function generic:text/getcolorpixel/get_g/190 2 | execute if score #text.input.1 loy.value matches 190..191 run function generic:text/getcolorpixel/get_g/191 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/19.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 16..23 run function generic:text/getcolorpixel/get_g/20 2 | execute if score #text.input.1 loy.value matches 24..31 run function generic:text/getcolorpixel/get_g/27 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/192.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 192..223 run function generic:text/getcolorpixel/get_g/193 2 | execute if score #text.input.1 loy.value matches 224..255 run function generic:text/getcolorpixel/get_g/224 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/193.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 192..207 run function generic:text/getcolorpixel/get_g/194 2 | execute if score #text.input.1 loy.value matches 208..223 run function generic:text/getcolorpixel/get_g/209 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/194.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 192..199 run function generic:text/getcolorpixel/get_g/195 2 | execute if score #text.input.1 loy.value matches 200..207 run function generic:text/getcolorpixel/get_g/202 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/195.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 192..195 run function generic:text/getcolorpixel/get_g/196 2 | execute if score #text.input.1 loy.value matches 196..199 run function generic:text/getcolorpixel/get_g/199 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/196.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 192..193 run function generic:text/getcolorpixel/get_g/197 2 | execute if score #text.input.1 loy.value matches 194..195 run function generic:text/getcolorpixel/get_g/198 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/199.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 196..197 run function generic:text/getcolorpixel/get_g/200 2 | execute if score #text.input.1 loy.value matches 198..199 run function generic:text/getcolorpixel/get_g/201 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/2.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 0..31 run function generic:text/getcolorpixel/get_g/3 2 | execute if score #text.input.1 loy.value matches 32..63 run function generic:text/getcolorpixel/get_g/34 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/20.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 16..19 run function generic:text/getcolorpixel/get_g/21 2 | execute if score #text.input.1 loy.value matches 20..23 run function generic:text/getcolorpixel/get_g/24 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/202.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 200..203 run function generic:text/getcolorpixel/get_g/203 2 | execute if score #text.input.1 loy.value matches 204..207 run function generic:text/getcolorpixel/get_g/206 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/203.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 200..201 run function generic:text/getcolorpixel/get_g/204 2 | execute if score #text.input.1 loy.value matches 202..203 run function generic:text/getcolorpixel/get_g/205 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/206.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 204..205 run function generic:text/getcolorpixel/get_g/207 2 | execute if score #text.input.1 loy.value matches 206..207 run function generic:text/getcolorpixel/get_g/208 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/209.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 208..215 run function generic:text/getcolorpixel/get_g/210 2 | execute if score #text.input.1 loy.value matches 216..223 run function generic:text/getcolorpixel/get_g/217 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/21.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 16..17 run function generic:text/getcolorpixel/get_g/22 2 | execute if score #text.input.1 loy.value matches 18..19 run function generic:text/getcolorpixel/get_g/23 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/210.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 208..211 run function generic:text/getcolorpixel/get_g/211 2 | execute if score #text.input.1 loy.value matches 212..215 run function generic:text/getcolorpixel/get_g/214 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/211.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 208..209 run function generic:text/getcolorpixel/get_g/212 2 | execute if score #text.input.1 loy.value matches 210..211 run function generic:text/getcolorpixel/get_g/213 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/214.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 212..213 run function generic:text/getcolorpixel/get_g/215 2 | execute if score #text.input.1 loy.value matches 214..215 run function generic:text/getcolorpixel/get_g/216 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/217.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 216..219 run function generic:text/getcolorpixel/get_g/218 2 | execute if score #text.input.1 loy.value matches 220..223 run function generic:text/getcolorpixel/get_g/221 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/218.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 216..217 run function generic:text/getcolorpixel/get_g/219 2 | execute if score #text.input.1 loy.value matches 218..219 run function generic:text/getcolorpixel/get_g/220 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/221.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 220..221 run function generic:text/getcolorpixel/get_g/222 2 | execute if score #text.input.1 loy.value matches 222..223 run function generic:text/getcolorpixel/get_g/223 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/224.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 224..239 run function generic:text/getcolorpixel/get_g/225 2 | execute if score #text.input.1 loy.value matches 240..255 run function generic:text/getcolorpixel/get_g/240 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/225.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 224..231 run function generic:text/getcolorpixel/get_g/226 2 | execute if score #text.input.1 loy.value matches 232..239 run function generic:text/getcolorpixel/get_g/233 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/226.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 224..227 run function generic:text/getcolorpixel/get_g/227 2 | execute if score #text.input.1 loy.value matches 228..231 run function generic:text/getcolorpixel/get_g/230 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/227.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 224..225 run function generic:text/getcolorpixel/get_g/228 2 | execute if score #text.input.1 loy.value matches 226..227 run function generic:text/getcolorpixel/get_g/229 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/230.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 228..229 run function generic:text/getcolorpixel/get_g/231 2 | execute if score #text.input.1 loy.value matches 230..231 run function generic:text/getcolorpixel/get_g/232 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/233.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 232..235 run function generic:text/getcolorpixel/get_g/234 2 | execute if score #text.input.1 loy.value matches 236..239 run function generic:text/getcolorpixel/get_g/237 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/234.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 232..233 run function generic:text/getcolorpixel/get_g/235 2 | execute if score #text.input.1 loy.value matches 234..235 run function generic:text/getcolorpixel/get_g/236 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/237.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 236..237 run function generic:text/getcolorpixel/get_g/238 2 | execute if score #text.input.1 loy.value matches 238..239 run function generic:text/getcolorpixel/get_g/239 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/24.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 20..21 run function generic:text/getcolorpixel/get_g/25 2 | execute if score #text.input.1 loy.value matches 22..23 run function generic:text/getcolorpixel/get_g/26 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/240.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 240..247 run function generic:text/getcolorpixel/get_g/241 2 | execute if score #text.input.1 loy.value matches 248..255 run function generic:text/getcolorpixel/get_g/248 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/241.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 240..243 run function generic:text/getcolorpixel/get_g/242 2 | execute if score #text.input.1 loy.value matches 244..247 run function generic:text/getcolorpixel/get_g/245 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/242.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 240..241 run function generic:text/getcolorpixel/get_g/243 2 | execute if score #text.input.1 loy.value matches 242..243 run function generic:text/getcolorpixel/get_g/244 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/245.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 244..245 run function generic:text/getcolorpixel/get_g/246 2 | execute if score #text.input.1 loy.value matches 246..247 run function generic:text/getcolorpixel/get_g/247 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/248.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 248..251 run function generic:text/getcolorpixel/get_g/249 2 | execute if score #text.input.1 loy.value matches 252..255 run function generic:text/getcolorpixel/get_g/252 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/249.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 248..249 run function generic:text/getcolorpixel/get_g/250 2 | execute if score #text.input.1 loy.value matches 250..251 run function generic:text/getcolorpixel/get_g/251 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/252.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 252..253 run function generic:text/getcolorpixel/get_g/253 2 | execute if score #text.input.1 loy.value matches 254..255 run function generic:text/getcolorpixel/get_g/254 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/27.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 24..27 run function generic:text/getcolorpixel/get_g/28 2 | execute if score #text.input.1 loy.value matches 28..31 run function generic:text/getcolorpixel/get_g/31 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/28.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 24..25 run function generic:text/getcolorpixel/get_g/29 2 | execute if score #text.input.1 loy.value matches 26..27 run function generic:text/getcolorpixel/get_g/30 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/3.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 0..15 run function generic:text/getcolorpixel/get_g/4 2 | execute if score #text.input.1 loy.value matches 16..31 run function generic:text/getcolorpixel/get_g/19 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/31.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 28..29 run function generic:text/getcolorpixel/get_g/32 2 | execute if score #text.input.1 loy.value matches 30..31 run function generic:text/getcolorpixel/get_g/33 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/34.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 32..47 run function generic:text/getcolorpixel/get_g/35 2 | execute if score #text.input.1 loy.value matches 48..63 run function generic:text/getcolorpixel/get_g/50 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/35.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 32..39 run function generic:text/getcolorpixel/get_g/36 2 | execute if score #text.input.1 loy.value matches 40..47 run function generic:text/getcolorpixel/get_g/43 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/36.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 32..35 run function generic:text/getcolorpixel/get_g/37 2 | execute if score #text.input.1 loy.value matches 36..39 run function generic:text/getcolorpixel/get_g/40 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/37.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 32..33 run function generic:text/getcolorpixel/get_g/38 2 | execute if score #text.input.1 loy.value matches 34..35 run function generic:text/getcolorpixel/get_g/39 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/4.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 0..7 run function generic:text/getcolorpixel/get_g/5 2 | execute if score #text.input.1 loy.value matches 8..15 run function generic:text/getcolorpixel/get_g/12 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/40.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 36..37 run function generic:text/getcolorpixel/get_g/41 2 | execute if score #text.input.1 loy.value matches 38..39 run function generic:text/getcolorpixel/get_g/42 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/43.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 40..43 run function generic:text/getcolorpixel/get_g/44 2 | execute if score #text.input.1 loy.value matches 44..47 run function generic:text/getcolorpixel/get_g/47 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/44.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 40..41 run function generic:text/getcolorpixel/get_g/45 2 | execute if score #text.input.1 loy.value matches 42..43 run function generic:text/getcolorpixel/get_g/46 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/47.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 44..45 run function generic:text/getcolorpixel/get_g/48 2 | execute if score #text.input.1 loy.value matches 46..47 run function generic:text/getcolorpixel/get_g/49 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/5.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 0..3 run function generic:text/getcolorpixel/get_g/6 2 | execute if score #text.input.1 loy.value matches 4..7 run function generic:text/getcolorpixel/get_g/9 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/50.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 48..55 run function generic:text/getcolorpixel/get_g/51 2 | execute if score #text.input.1 loy.value matches 56..63 run function generic:text/getcolorpixel/get_g/58 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/51.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 48..51 run function generic:text/getcolorpixel/get_g/52 2 | execute if score #text.input.1 loy.value matches 52..55 run function generic:text/getcolorpixel/get_g/55 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/52.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 48..49 run function generic:text/getcolorpixel/get_g/53 2 | execute if score #text.input.1 loy.value matches 50..51 run function generic:text/getcolorpixel/get_g/54 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/55.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 52..53 run function generic:text/getcolorpixel/get_g/56 2 | execute if score #text.input.1 loy.value matches 54..55 run function generic:text/getcolorpixel/get_g/57 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/58.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 56..59 run function generic:text/getcolorpixel/get_g/59 2 | execute if score #text.input.1 loy.value matches 60..63 run function generic:text/getcolorpixel/get_g/62 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/59.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 56..57 run function generic:text/getcolorpixel/get_g/60 2 | execute if score #text.input.1 loy.value matches 58..59 run function generic:text/getcolorpixel/get_g/61 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/6.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 0..1 run function generic:text/getcolorpixel/get_g/7 2 | execute if score #text.input.1 loy.value matches 2..3 run function generic:text/getcolorpixel/get_g/8 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/62.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 60..61 run function generic:text/getcolorpixel/get_g/63 2 | execute if score #text.input.1 loy.value matches 62..63 run function generic:text/getcolorpixel/get_g/64 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/65.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 64..95 run function generic:text/getcolorpixel/get_g/66 2 | execute if score #text.input.1 loy.value matches 96..127 run function generic:text/getcolorpixel/get_g/97 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/66.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 64..79 run function generic:text/getcolorpixel/get_g/67 2 | execute if score #text.input.1 loy.value matches 80..95 run function generic:text/getcolorpixel/get_g/82 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/67.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 64..71 run function generic:text/getcolorpixel/get_g/68 2 | execute if score #text.input.1 loy.value matches 72..79 run function generic:text/getcolorpixel/get_g/75 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/68.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 64..67 run function generic:text/getcolorpixel/get_g/69 2 | execute if score #text.input.1 loy.value matches 68..71 run function generic:text/getcolorpixel/get_g/72 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/69.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 64..65 run function generic:text/getcolorpixel/get_g/70 2 | execute if score #text.input.1 loy.value matches 66..67 run function generic:text/getcolorpixel/get_g/71 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/72.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 68..69 run function generic:text/getcolorpixel/get_g/73 2 | execute if score #text.input.1 loy.value matches 70..71 run function generic:text/getcolorpixel/get_g/74 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/75.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 72..75 run function generic:text/getcolorpixel/get_g/76 2 | execute if score #text.input.1 loy.value matches 76..79 run function generic:text/getcolorpixel/get_g/79 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/76.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 72..73 run function generic:text/getcolorpixel/get_g/77 2 | execute if score #text.input.1 loy.value matches 74..75 run function generic:text/getcolorpixel/get_g/78 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/79.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 76..77 run function generic:text/getcolorpixel/get_g/80 2 | execute if score #text.input.1 loy.value matches 78..79 run function generic:text/getcolorpixel/get_g/81 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/82.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 80..87 run function generic:text/getcolorpixel/get_g/83 2 | execute if score #text.input.1 loy.value matches 88..95 run function generic:text/getcolorpixel/get_g/90 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/83.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 80..83 run function generic:text/getcolorpixel/get_g/84 2 | execute if score #text.input.1 loy.value matches 84..87 run function generic:text/getcolorpixel/get_g/87 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/84.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 80..81 run function generic:text/getcolorpixel/get_g/85 2 | execute if score #text.input.1 loy.value matches 82..83 run function generic:text/getcolorpixel/get_g/86 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/87.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 84..85 run function generic:text/getcolorpixel/get_g/88 2 | execute if score #text.input.1 loy.value matches 86..87 run function generic:text/getcolorpixel/get_g/89 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/9.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 4..5 run function generic:text/getcolorpixel/get_g/10 2 | execute if score #text.input.1 loy.value matches 6..7 run function generic:text/getcolorpixel/get_g/11 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/90.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 88..91 run function generic:text/getcolorpixel/get_g/91 2 | execute if score #text.input.1 loy.value matches 92..95 run function generic:text/getcolorpixel/get_g/94 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/91.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 88..89 run function generic:text/getcolorpixel/get_g/92 2 | execute if score #text.input.1 loy.value matches 90..91 run function generic:text/getcolorpixel/get_g/93 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/94.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 92..93 run function generic:text/getcolorpixel/get_g/95 2 | execute if score #text.input.1 loy.value matches 94..95 run function generic:text/getcolorpixel/get_g/96 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/97.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 96..111 run function generic:text/getcolorpixel/get_g/98 2 | execute if score #text.input.1 loy.value matches 112..127 run function generic:text/getcolorpixel/get_g/113 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/98.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 96..103 run function generic:text/getcolorpixel/get_g/99 2 | execute if score #text.input.1 loy.value matches 104..111 run function generic:text/getcolorpixel/get_g/106 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_g/99.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.1 loy.value matches 96..99 run function generic:text/getcolorpixel/get_g/100 2 | execute if score #text.input.1 loy.value matches 100..103 run function generic:text/getcolorpixel/get_g/103 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/0.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 0..127 run function generic:text/getcolorpixel/get_r/1 2 | execute if score #text.input.0 loy.value matches 128..255 run function generic:text/getcolorpixel/get_r/128 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/1.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 0..63 run function generic:text/getcolorpixel/get_r/2 2 | execute if score #text.input.0 loy.value matches 64..127 run function generic:text/getcolorpixel/get_r/65 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/100.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 96..97 run function generic:text/getcolorpixel/get_r/101 2 | execute if score #text.input.0 loy.value matches 98..99 run function generic:text/getcolorpixel/get_r/102 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/103.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 100..101 run function generic:text/getcolorpixel/get_r/104 2 | execute if score #text.input.0 loy.value matches 102..103 run function generic:text/getcolorpixel/get_r/105 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/106.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 104..107 run function generic:text/getcolorpixel/get_r/107 2 | execute if score #text.input.0 loy.value matches 108..111 run function generic:text/getcolorpixel/get_r/110 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/107.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 104..105 run function generic:text/getcolorpixel/get_r/108 2 | execute if score #text.input.0 loy.value matches 106..107 run function generic:text/getcolorpixel/get_r/109 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/110.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 108..109 run function generic:text/getcolorpixel/get_r/111 2 | execute if score #text.input.0 loy.value matches 110..111 run function generic:text/getcolorpixel/get_r/112 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/113.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 112..119 run function generic:text/getcolorpixel/get_r/114 2 | execute if score #text.input.0 loy.value matches 120..127 run function generic:text/getcolorpixel/get_r/121 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/114.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 112..115 run function generic:text/getcolorpixel/get_r/115 2 | execute if score #text.input.0 loy.value matches 116..119 run function generic:text/getcolorpixel/get_r/118 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/115.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 112..113 run function generic:text/getcolorpixel/get_r/116 2 | execute if score #text.input.0 loy.value matches 114..115 run function generic:text/getcolorpixel/get_r/117 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/118.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 116..117 run function generic:text/getcolorpixel/get_r/119 2 | execute if score #text.input.0 loy.value matches 118..119 run function generic:text/getcolorpixel/get_r/120 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/12.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 8..11 run function generic:text/getcolorpixel/get_r/13 2 | execute if score #text.input.0 loy.value matches 12..15 run function generic:text/getcolorpixel/get_r/16 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/121.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 120..123 run function generic:text/getcolorpixel/get_r/122 2 | execute if score #text.input.0 loy.value matches 124..127 run function generic:text/getcolorpixel/get_r/125 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/122.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 120..121 run function generic:text/getcolorpixel/get_r/123 2 | execute if score #text.input.0 loy.value matches 122..123 run function generic:text/getcolorpixel/get_r/124 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/125.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 124..125 run function generic:text/getcolorpixel/get_r/126 2 | execute if score #text.input.0 loy.value matches 126..127 run function generic:text/getcolorpixel/get_r/127 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/128.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 128..191 run function generic:text/getcolorpixel/get_r/129 2 | execute if score #text.input.0 loy.value matches 192..255 run function generic:text/getcolorpixel/get_r/192 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/129.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 128..159 run function generic:text/getcolorpixel/get_r/130 2 | execute if score #text.input.0 loy.value matches 160..191 run function generic:text/getcolorpixel/get_r/161 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/13.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 8..9 run function generic:text/getcolorpixel/get_r/14 2 | execute if score #text.input.0 loy.value matches 10..11 run function generic:text/getcolorpixel/get_r/15 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/130.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 128..143 run function generic:text/getcolorpixel/get_r/131 2 | execute if score #text.input.0 loy.value matches 144..159 run function generic:text/getcolorpixel/get_r/146 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/131.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 128..135 run function generic:text/getcolorpixel/get_r/132 2 | execute if score #text.input.0 loy.value matches 136..143 run function generic:text/getcolorpixel/get_r/139 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/132.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 128..131 run function generic:text/getcolorpixel/get_r/133 2 | execute if score #text.input.0 loy.value matches 132..135 run function generic:text/getcolorpixel/get_r/136 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/133.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 128..129 run function generic:text/getcolorpixel/get_r/134 2 | execute if score #text.input.0 loy.value matches 130..131 run function generic:text/getcolorpixel/get_r/135 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/136.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 132..133 run function generic:text/getcolorpixel/get_r/137 2 | execute if score #text.input.0 loy.value matches 134..135 run function generic:text/getcolorpixel/get_r/138 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/139.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 136..139 run function generic:text/getcolorpixel/get_r/140 2 | execute if score #text.input.0 loy.value matches 140..143 run function generic:text/getcolorpixel/get_r/143 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/140.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 136..137 run function generic:text/getcolorpixel/get_r/141 2 | execute if score #text.input.0 loy.value matches 138..139 run function generic:text/getcolorpixel/get_r/142 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/143.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 140..141 run function generic:text/getcolorpixel/get_r/144 2 | execute if score #text.input.0 loy.value matches 142..143 run function generic:text/getcolorpixel/get_r/145 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/146.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 144..151 run function generic:text/getcolorpixel/get_r/147 2 | execute if score #text.input.0 loy.value matches 152..159 run function generic:text/getcolorpixel/get_r/154 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/147.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 144..147 run function generic:text/getcolorpixel/get_r/148 2 | execute if score #text.input.0 loy.value matches 148..151 run function generic:text/getcolorpixel/get_r/151 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/148.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 144..145 run function generic:text/getcolorpixel/get_r/149 2 | execute if score #text.input.0 loy.value matches 146..147 run function generic:text/getcolorpixel/get_r/150 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/151.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 148..149 run function generic:text/getcolorpixel/get_r/152 2 | execute if score #text.input.0 loy.value matches 150..151 run function generic:text/getcolorpixel/get_r/153 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/154.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 152..155 run function generic:text/getcolorpixel/get_r/155 2 | execute if score #text.input.0 loy.value matches 156..159 run function generic:text/getcolorpixel/get_r/158 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/155.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 152..153 run function generic:text/getcolorpixel/get_r/156 2 | execute if score #text.input.0 loy.value matches 154..155 run function generic:text/getcolorpixel/get_r/157 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/158.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 156..157 run function generic:text/getcolorpixel/get_r/159 2 | execute if score #text.input.0 loy.value matches 158..159 run function generic:text/getcolorpixel/get_r/160 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/16.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 12..13 run function generic:text/getcolorpixel/get_r/17 2 | execute if score #text.input.0 loy.value matches 14..15 run function generic:text/getcolorpixel/get_r/18 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/161.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 160..175 run function generic:text/getcolorpixel/get_r/162 2 | execute if score #text.input.0 loy.value matches 176..191 run function generic:text/getcolorpixel/get_r/177 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/162.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 160..167 run function generic:text/getcolorpixel/get_r/163 2 | execute if score #text.input.0 loy.value matches 168..175 run function generic:text/getcolorpixel/get_r/170 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/163.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 160..163 run function generic:text/getcolorpixel/get_r/164 2 | execute if score #text.input.0 loy.value matches 164..167 run function generic:text/getcolorpixel/get_r/167 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/164.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 160..161 run function generic:text/getcolorpixel/get_r/165 2 | execute if score #text.input.0 loy.value matches 162..163 run function generic:text/getcolorpixel/get_r/166 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/167.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 164..165 run function generic:text/getcolorpixel/get_r/168 2 | execute if score #text.input.0 loy.value matches 166..167 run function generic:text/getcolorpixel/get_r/169 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/170.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 168..171 run function generic:text/getcolorpixel/get_r/171 2 | execute if score #text.input.0 loy.value matches 172..175 run function generic:text/getcolorpixel/get_r/174 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/171.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 168..169 run function generic:text/getcolorpixel/get_r/172 2 | execute if score #text.input.0 loy.value matches 170..171 run function generic:text/getcolorpixel/get_r/173 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/174.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 172..173 run function generic:text/getcolorpixel/get_r/175 2 | execute if score #text.input.0 loy.value matches 174..175 run function generic:text/getcolorpixel/get_r/176 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/177.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 176..183 run function generic:text/getcolorpixel/get_r/178 2 | execute if score #text.input.0 loy.value matches 184..191 run function generic:text/getcolorpixel/get_r/185 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/178.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 176..179 run function generic:text/getcolorpixel/get_r/179 2 | execute if score #text.input.0 loy.value matches 180..183 run function generic:text/getcolorpixel/get_r/182 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/179.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 176..177 run function generic:text/getcolorpixel/get_r/180 2 | execute if score #text.input.0 loy.value matches 178..179 run function generic:text/getcolorpixel/get_r/181 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/182.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 180..181 run function generic:text/getcolorpixel/get_r/183 2 | execute if score #text.input.0 loy.value matches 182..183 run function generic:text/getcolorpixel/get_r/184 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/185.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 184..187 run function generic:text/getcolorpixel/get_r/186 2 | execute if score #text.input.0 loy.value matches 188..191 run function generic:text/getcolorpixel/get_r/189 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/186.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 184..185 run function generic:text/getcolorpixel/get_r/187 2 | execute if score #text.input.0 loy.value matches 186..187 run function generic:text/getcolorpixel/get_r/188 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/189.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 188..189 run function generic:text/getcolorpixel/get_r/190 2 | execute if score #text.input.0 loy.value matches 190..191 run function generic:text/getcolorpixel/get_r/191 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/19.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 16..23 run function generic:text/getcolorpixel/get_r/20 2 | execute if score #text.input.0 loy.value matches 24..31 run function generic:text/getcolorpixel/get_r/27 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/192.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 192..223 run function generic:text/getcolorpixel/get_r/193 2 | execute if score #text.input.0 loy.value matches 224..255 run function generic:text/getcolorpixel/get_r/224 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/193.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 192..207 run function generic:text/getcolorpixel/get_r/194 2 | execute if score #text.input.0 loy.value matches 208..223 run function generic:text/getcolorpixel/get_r/209 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/194.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 192..199 run function generic:text/getcolorpixel/get_r/195 2 | execute if score #text.input.0 loy.value matches 200..207 run function generic:text/getcolorpixel/get_r/202 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/195.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 192..195 run function generic:text/getcolorpixel/get_r/196 2 | execute if score #text.input.0 loy.value matches 196..199 run function generic:text/getcolorpixel/get_r/199 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/196.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 192..193 run function generic:text/getcolorpixel/get_r/197 2 | execute if score #text.input.0 loy.value matches 194..195 run function generic:text/getcolorpixel/get_r/198 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/199.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 196..197 run function generic:text/getcolorpixel/get_r/200 2 | execute if score #text.input.0 loy.value matches 198..199 run function generic:text/getcolorpixel/get_r/201 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/2.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 0..31 run function generic:text/getcolorpixel/get_r/3 2 | execute if score #text.input.0 loy.value matches 32..63 run function generic:text/getcolorpixel/get_r/34 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/20.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 16..19 run function generic:text/getcolorpixel/get_r/21 2 | execute if score #text.input.0 loy.value matches 20..23 run function generic:text/getcolorpixel/get_r/24 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/202.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 200..203 run function generic:text/getcolorpixel/get_r/203 2 | execute if score #text.input.0 loy.value matches 204..207 run function generic:text/getcolorpixel/get_r/206 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/203.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 200..201 run function generic:text/getcolorpixel/get_r/204 2 | execute if score #text.input.0 loy.value matches 202..203 run function generic:text/getcolorpixel/get_r/205 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/206.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 204..205 run function generic:text/getcolorpixel/get_r/207 2 | execute if score #text.input.0 loy.value matches 206..207 run function generic:text/getcolorpixel/get_r/208 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/209.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 208..215 run function generic:text/getcolorpixel/get_r/210 2 | execute if score #text.input.0 loy.value matches 216..223 run function generic:text/getcolorpixel/get_r/217 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/21.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 16..17 run function generic:text/getcolorpixel/get_r/22 2 | execute if score #text.input.0 loy.value matches 18..19 run function generic:text/getcolorpixel/get_r/23 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/210.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 208..211 run function generic:text/getcolorpixel/get_r/211 2 | execute if score #text.input.0 loy.value matches 212..215 run function generic:text/getcolorpixel/get_r/214 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/211.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 208..209 run function generic:text/getcolorpixel/get_r/212 2 | execute if score #text.input.0 loy.value matches 210..211 run function generic:text/getcolorpixel/get_r/213 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/214.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 212..213 run function generic:text/getcolorpixel/get_r/215 2 | execute if score #text.input.0 loy.value matches 214..215 run function generic:text/getcolorpixel/get_r/216 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/217.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 216..219 run function generic:text/getcolorpixel/get_r/218 2 | execute if score #text.input.0 loy.value matches 220..223 run function generic:text/getcolorpixel/get_r/221 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/218.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 216..217 run function generic:text/getcolorpixel/get_r/219 2 | execute if score #text.input.0 loy.value matches 218..219 run function generic:text/getcolorpixel/get_r/220 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/221.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 220..221 run function generic:text/getcolorpixel/get_r/222 2 | execute if score #text.input.0 loy.value matches 222..223 run function generic:text/getcolorpixel/get_r/223 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/224.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 224..239 run function generic:text/getcolorpixel/get_r/225 2 | execute if score #text.input.0 loy.value matches 240..255 run function generic:text/getcolorpixel/get_r/240 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/225.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 224..231 run function generic:text/getcolorpixel/get_r/226 2 | execute if score #text.input.0 loy.value matches 232..239 run function generic:text/getcolorpixel/get_r/233 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/226.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 224..227 run function generic:text/getcolorpixel/get_r/227 2 | execute if score #text.input.0 loy.value matches 228..231 run function generic:text/getcolorpixel/get_r/230 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/227.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 224..225 run function generic:text/getcolorpixel/get_r/228 2 | execute if score #text.input.0 loy.value matches 226..227 run function generic:text/getcolorpixel/get_r/229 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/230.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 228..229 run function generic:text/getcolorpixel/get_r/231 2 | execute if score #text.input.0 loy.value matches 230..231 run function generic:text/getcolorpixel/get_r/232 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/233.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 232..235 run function generic:text/getcolorpixel/get_r/234 2 | execute if score #text.input.0 loy.value matches 236..239 run function generic:text/getcolorpixel/get_r/237 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/234.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 232..233 run function generic:text/getcolorpixel/get_r/235 2 | execute if score #text.input.0 loy.value matches 234..235 run function generic:text/getcolorpixel/get_r/236 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/237.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 236..237 run function generic:text/getcolorpixel/get_r/238 2 | execute if score #text.input.0 loy.value matches 238..239 run function generic:text/getcolorpixel/get_r/239 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/24.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 20..21 run function generic:text/getcolorpixel/get_r/25 2 | execute if score #text.input.0 loy.value matches 22..23 run function generic:text/getcolorpixel/get_r/26 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/240.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 240..247 run function generic:text/getcolorpixel/get_r/241 2 | execute if score #text.input.0 loy.value matches 248..255 run function generic:text/getcolorpixel/get_r/248 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/241.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 240..243 run function generic:text/getcolorpixel/get_r/242 2 | execute if score #text.input.0 loy.value matches 244..247 run function generic:text/getcolorpixel/get_r/245 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/242.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 240..241 run function generic:text/getcolorpixel/get_r/243 2 | execute if score #text.input.0 loy.value matches 242..243 run function generic:text/getcolorpixel/get_r/244 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/245.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 244..245 run function generic:text/getcolorpixel/get_r/246 2 | execute if score #text.input.0 loy.value matches 246..247 run function generic:text/getcolorpixel/get_r/247 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/248.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 248..251 run function generic:text/getcolorpixel/get_r/249 2 | execute if score #text.input.0 loy.value matches 252..255 run function generic:text/getcolorpixel/get_r/252 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/249.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 248..249 run function generic:text/getcolorpixel/get_r/250 2 | execute if score #text.input.0 loy.value matches 250..251 run function generic:text/getcolorpixel/get_r/251 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/252.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 252..253 run function generic:text/getcolorpixel/get_r/253 2 | execute if score #text.input.0 loy.value matches 254..255 run function generic:text/getcolorpixel/get_r/254 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/27.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 24..27 run function generic:text/getcolorpixel/get_r/28 2 | execute if score #text.input.0 loy.value matches 28..31 run function generic:text/getcolorpixel/get_r/31 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/28.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 24..25 run function generic:text/getcolorpixel/get_r/29 2 | execute if score #text.input.0 loy.value matches 26..27 run function generic:text/getcolorpixel/get_r/30 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/3.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 0..15 run function generic:text/getcolorpixel/get_r/4 2 | execute if score #text.input.0 loy.value matches 16..31 run function generic:text/getcolorpixel/get_r/19 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/31.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 28..29 run function generic:text/getcolorpixel/get_r/32 2 | execute if score #text.input.0 loy.value matches 30..31 run function generic:text/getcolorpixel/get_r/33 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/34.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 32..47 run function generic:text/getcolorpixel/get_r/35 2 | execute if score #text.input.0 loy.value matches 48..63 run function generic:text/getcolorpixel/get_r/50 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/35.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 32..39 run function generic:text/getcolorpixel/get_r/36 2 | execute if score #text.input.0 loy.value matches 40..47 run function generic:text/getcolorpixel/get_r/43 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/36.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 32..35 run function generic:text/getcolorpixel/get_r/37 2 | execute if score #text.input.0 loy.value matches 36..39 run function generic:text/getcolorpixel/get_r/40 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/37.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 32..33 run function generic:text/getcolorpixel/get_r/38 2 | execute if score #text.input.0 loy.value matches 34..35 run function generic:text/getcolorpixel/get_r/39 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/4.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 0..7 run function generic:text/getcolorpixel/get_r/5 2 | execute if score #text.input.0 loy.value matches 8..15 run function generic:text/getcolorpixel/get_r/12 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/40.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 36..37 run function generic:text/getcolorpixel/get_r/41 2 | execute if score #text.input.0 loy.value matches 38..39 run function generic:text/getcolorpixel/get_r/42 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/43.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 40..43 run function generic:text/getcolorpixel/get_r/44 2 | execute if score #text.input.0 loy.value matches 44..47 run function generic:text/getcolorpixel/get_r/47 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/44.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 40..41 run function generic:text/getcolorpixel/get_r/45 2 | execute if score #text.input.0 loy.value matches 42..43 run function generic:text/getcolorpixel/get_r/46 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/47.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 44..45 run function generic:text/getcolorpixel/get_r/48 2 | execute if score #text.input.0 loy.value matches 46..47 run function generic:text/getcolorpixel/get_r/49 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/5.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 0..3 run function generic:text/getcolorpixel/get_r/6 2 | execute if score #text.input.0 loy.value matches 4..7 run function generic:text/getcolorpixel/get_r/9 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/50.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 48..55 run function generic:text/getcolorpixel/get_r/51 2 | execute if score #text.input.0 loy.value matches 56..63 run function generic:text/getcolorpixel/get_r/58 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/51.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 48..51 run function generic:text/getcolorpixel/get_r/52 2 | execute if score #text.input.0 loy.value matches 52..55 run function generic:text/getcolorpixel/get_r/55 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/52.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 48..49 run function generic:text/getcolorpixel/get_r/53 2 | execute if score #text.input.0 loy.value matches 50..51 run function generic:text/getcolorpixel/get_r/54 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/55.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 52..53 run function generic:text/getcolorpixel/get_r/56 2 | execute if score #text.input.0 loy.value matches 54..55 run function generic:text/getcolorpixel/get_r/57 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/58.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 56..59 run function generic:text/getcolorpixel/get_r/59 2 | execute if score #text.input.0 loy.value matches 60..63 run function generic:text/getcolorpixel/get_r/62 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/59.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 56..57 run function generic:text/getcolorpixel/get_r/60 2 | execute if score #text.input.0 loy.value matches 58..59 run function generic:text/getcolorpixel/get_r/61 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/6.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 0..1 run function generic:text/getcolorpixel/get_r/7 2 | execute if score #text.input.0 loy.value matches 2..3 run function generic:text/getcolorpixel/get_r/8 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/62.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 60..61 run function generic:text/getcolorpixel/get_r/63 2 | execute if score #text.input.0 loy.value matches 62..63 run function generic:text/getcolorpixel/get_r/64 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/65.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 64..95 run function generic:text/getcolorpixel/get_r/66 2 | execute if score #text.input.0 loy.value matches 96..127 run function generic:text/getcolorpixel/get_r/97 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/66.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 64..79 run function generic:text/getcolorpixel/get_r/67 2 | execute if score #text.input.0 loy.value matches 80..95 run function generic:text/getcolorpixel/get_r/82 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/67.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 64..71 run function generic:text/getcolorpixel/get_r/68 2 | execute if score #text.input.0 loy.value matches 72..79 run function generic:text/getcolorpixel/get_r/75 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/68.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 64..67 run function generic:text/getcolorpixel/get_r/69 2 | execute if score #text.input.0 loy.value matches 68..71 run function generic:text/getcolorpixel/get_r/72 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/69.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 64..65 run function generic:text/getcolorpixel/get_r/70 2 | execute if score #text.input.0 loy.value matches 66..67 run function generic:text/getcolorpixel/get_r/71 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/72.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 68..69 run function generic:text/getcolorpixel/get_r/73 2 | execute if score #text.input.0 loy.value matches 70..71 run function generic:text/getcolorpixel/get_r/74 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/75.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 72..75 run function generic:text/getcolorpixel/get_r/76 2 | execute if score #text.input.0 loy.value matches 76..79 run function generic:text/getcolorpixel/get_r/79 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/76.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 72..73 run function generic:text/getcolorpixel/get_r/77 2 | execute if score #text.input.0 loy.value matches 74..75 run function generic:text/getcolorpixel/get_r/78 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/79.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 76..77 run function generic:text/getcolorpixel/get_r/80 2 | execute if score #text.input.0 loy.value matches 78..79 run function generic:text/getcolorpixel/get_r/81 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/82.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 80..87 run function generic:text/getcolorpixel/get_r/83 2 | execute if score #text.input.0 loy.value matches 88..95 run function generic:text/getcolorpixel/get_r/90 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/83.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 80..83 run function generic:text/getcolorpixel/get_r/84 2 | execute if score #text.input.0 loy.value matches 84..87 run function generic:text/getcolorpixel/get_r/87 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/84.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 80..81 run function generic:text/getcolorpixel/get_r/85 2 | execute if score #text.input.0 loy.value matches 82..83 run function generic:text/getcolorpixel/get_r/86 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/87.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 84..85 run function generic:text/getcolorpixel/get_r/88 2 | execute if score #text.input.0 loy.value matches 86..87 run function generic:text/getcolorpixel/get_r/89 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/9.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 4..5 run function generic:text/getcolorpixel/get_r/10 2 | execute if score #text.input.0 loy.value matches 6..7 run function generic:text/getcolorpixel/get_r/11 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/90.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 88..91 run function generic:text/getcolorpixel/get_r/91 2 | execute if score #text.input.0 loy.value matches 92..95 run function generic:text/getcolorpixel/get_r/94 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/91.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 88..89 run function generic:text/getcolorpixel/get_r/92 2 | execute if score #text.input.0 loy.value matches 90..91 run function generic:text/getcolorpixel/get_r/93 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/94.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 92..93 run function generic:text/getcolorpixel/get_r/95 2 | execute if score #text.input.0 loy.value matches 94..95 run function generic:text/getcolorpixel/get_r/96 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/97.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 96..111 run function generic:text/getcolorpixel/get_r/98 2 | execute if score #text.input.0 loy.value matches 112..127 run function generic:text/getcolorpixel/get_r/113 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/98.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 96..103 run function generic:text/getcolorpixel/get_r/99 2 | execute if score #text.input.0 loy.value matches 104..111 run function generic:text/getcolorpixel/get_r/106 -------------------------------------------------------------------------------- /data/generic/functions/text/getcolorpixel/get_r/99.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score #text.input.0 loy.value matches 96..99 run function generic:text/getcolorpixel/get_r/100 2 | execute if score #text.input.0 loy.value matches 100..103 run function generic:text/getcolorpixel/get_r/103 -------------------------------------------------------------------------------- /data/generic/functions/uninstall.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard objectives remove loy.value 2 | scoreboard objectives remove loy.player.left 3 | 4 | forceload add 0 0 -------------------------------------------------------------------------------- /data/generic/predicates/half.json: -------------------------------------------------------------------------------- 1 | { 2 | "condition": "minecraft:random_chance", 3 | "chance": 0.5 4 | } -------------------------------------------------------------------------------- /data/generic/predicates/looking_at.json: -------------------------------------------------------------------------------- 1 | { 2 | "condition": "minecraft:entity_properties", 3 | "entity": "this", 4 | "predicate": { 5 | "type_specific": { 6 | "type": "player", 7 | "looking_at": {} 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /data/generic/predicates/minecart.json: -------------------------------------------------------------------------------- 1 | { 2 | "condition": "minecraft:entity_properties", 3 | "entity": "this", 4 | "predicate": { 5 | "vehicle": { 6 | "nbt": "{Tags:[\"wasd_detector\",\"ride\"]}" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /data/generic/predicates/ride.json: -------------------------------------------------------------------------------- 1 | { 2 | "condition": "minecraft:entity_properties", 3 | "entity": "this", 4 | "predicate": { 5 | "vehicle": { 6 | "type": "minecraft:minecart" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /data/generic/tags/blocks/air.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:air", 4 | "minecraft:dead_bubble_coral_wall_fan", 5 | "minecraft:dead_fire_coral_wall_fan", 6 | "minecraft:dead_horn_coral_wall_fan" 7 | ] 8 | } -------------------------------------------------------------------------------- /data/minecraft/tags/functions/load.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "generic:init", 4 | "chatbox:init" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /data/minecraft/tags/functions/tick.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "chatbox:tick" 4 | ] 5 | } 6 | --------------------------------------------------------------------------------