· 9 years ago · Jan 16, 2017, 08:08 PM
1
2
3command /config:
4 permission: sk.op
5 trigger:
6 open chest with 6 rows named "&4Personal Configuration" to player
7 wait 1 tick
8 format slot 0 of player with player head named "&f&lGolden Heads" to be unstealable
9
10 if {headheal.%player%} is not set:
11 format slot 9 of player with gray dye named "&lNot set" to run [make player execute command "config-heads 3"]
12 if {headheal.%player%} is "3":
13 format slot 9 of player with light green dye named "&a&lOn - Heal: 3" to run [make player execute command "config-heads 4"]
14 if {headheal.%player%} is "4":
15 format slot 9 of player with light green dye named "&a&lOn - Heal: 4" to run [make player execute command "config-heads off"]
16 if {headheal.%player%} is "off":
17 format slot 9 of player with purple dye named "&c&lOff" to run [make player execute command "config-heads 3"]
18
19 format slot 1 of player with 2 player heads named "&f&lHeads Stack" to be unstealable
20
21 if {headstack.%player%} is not set:
22 format slot 10 of player with gray dye named "&lNot set" to run [make player execute command "config-headsstack true"]
23 if {headstack.%player%} is true:
24 format slot 10 of player with light green dye named "&a&lHeads Stackable" to run [make player execute command "config-headsstack false"]
25 if {headstack.%player%} is false:
26 format slot 10 of player with purple dye named "&c&lHeads Unstackable" to run [make player execute command "config-headsstack true"]
27
28 format slot 2 of player with golden apple:0 named "&f&lAbsorption" to be unstealable
29
30 if {absorption.%player%} is not set:
31 format slot 11 of player with gray dye named "&lNot set" to run [make player execute command "config-absorption on"]
32 if {absorption.%player%} is true:
33 format slot 11 of player with light green dye named "&a&lOn" to run [make player execute command "config-absorption off"]
34 if {absorption.%player%} is false:
35 format slot 11 of player with purple dye named "&c&lOff" to run [make player execute command "config-absorption on"]
36
37 format slot 3 of player with golden apple:1 named "&f&lGod Apple" to be unstealable
38
39 if {godapple.%player%} is not set:
40 format slot 12 of player with gray dye named "&lNot set" to run [make player execute command "config-godapple on"]
41 if {godapple.%player%} is true:
42 format slot 12 of player with light green dye named "&a&lOn" to run [make player execute command "config-godapple off"]
43 if {godapple.%player%} is false:
44 format slot 12 of player with purple dye named "&c&lOff" to run [make player execute command "config-godapple on"]
45
46 format slot 8 of player with ender pearl named "&f&lEnderpearl Damage" to be unstealable
47
48 if {epdamage.%player%} is not set:
49 format slot 17 of player with gray dye named "&lNot set" to run [make player execute command "config-epdamage on"]
50 if {epdamage.%player%} is true:
51 format slot 17 of player with light green dye named "&a&lOn - 1 heart" to run [make player execute command "config-epdamage off"]
52 if {epdamage.%player%} is false:
53 format slot 17 of player with purple dye named "&c&lOff" to run [make player execute command "config-epdamage on"]
54
55# format slot 18 of player with saddle named "&f&lHorse Mounting" to be unstealable
56#
57# if {horsemount.%player%} is not set:
58# format slot 27 of player with gray dye named "&lNot set" to run [make player execute command "config-horsemount on"]
59# if {horsemount.%player%} is true:
60# format slot 27 of player with light green dye named "&a&lOn" to run [make player execute command "config-horsemount off"]
61# if {horsemount.%player%} is false:
62# format slot 27 of player with purple dye named "&c&lOff" to run [make player execute command "config-horsemount on"]
63
64# format slot 19 of player with diamond horse armour named "&f&lHorse Armour" to be unstealable
65
66# if {horsearmour.%player%} is not set:
67# format slot 28 of player with gray dye named "&lNot set" to run [make player execute command "config-horsearmour on"]
68# if {horsearmour.%player%} is true:
69# format slot 28 of player with light green dye named "&a&lOn" to run [make player execute command "config-horsearmour off"]
70# if {horsearmour.%player%} is false:
71# format slot 28 of player with purple dye named "&c&lOff" to run [make player execute command "config-horsearmour on"]
72
73# format slot 20 of player with bread named "&f&lHorse Healing" to be unstealable
74
75# if {horsehealing.%player%} is not set:
76# format slot 29 of player with gray dye named "&lNot set" to run [make player execute command "config-horsehealing on"]
77# if {horsehealing.%player%} is true:
78# format slot 29 of player with light green dye named "&a&lOn" to run [make player execute command "config-horsehealing off"]
79# if {horsehealing.%player%} is false:
80# format slot 29 of player with purple dye named "&c&lOff" to run [make player execute command "config-horsehealing on"]
81
82# format slot 19 of player with tnt named "&f&lHorseplosions" to be unstealable
83#
84# if {horseexplode.%player%} is not set:
85# format slot 28 of player with gray dye named "&lNot set" to run [make player execute command "config-horseexplode on"]
86# if {horseexplode.%player%} is true:
87# format slot 28 of player with light green dye named "&a&lOn" to run [make player execute command "config-horseexplode off"]
88# if {horseexplode.%player%} is false:
89# format slot 28 of player with purple dye named "&c&lOff" to run [make player execute command "config-horseexplode on"]
90#
91 format slot 5 of player with netherrack named "&f&lNether" to be unstealable
92
93 if {nether.%player%} is not set:
94 format slot 14 of player with gray dye named "&lNot set" to run [make player execute command "config-nether on"]
95 if {nether.%player%} is true:
96 format slot 14 of player with light green dye named "&a&lOn" to run [make player execute command "config-nether off"]
97 if {nether.%player%} is false:
98 format slot 14 of player with purple dye named "&c&lOff" to run [make player execute command "config-nether on"]
99
100 format slot 6 of player with bow named "&f&lNether - Camping" to be unstealable
101
102 if {nethercamp.%player%} is not set:
103 format slot 15 of player with gray dye named "&lNot set" to run [make player execute command "config-nethercamp on"]
104 if {nethercamp.%player%} is true:
105 format slot 15 of player with light green dye named "&a&lOn" to run [make player execute command "config-nethercamp off"]
106 if {nethercamp.%player%} is false:
107 format slot 15 of player with purple dye named "&c&lOff" to run [make player execute command "config-nethercamp on"]
108
109 format slot 7 of player with lava bucket named "&f&lNether - Trapping" to be unstealable
110
111 if {nethertrap.%player%} is not set:
112 format slot 16 of player with gray dye named "&lNot set" to run [make player execute command "config-nethertrap on"]
113 if {nethertrap.%player%} is true:
114 format slot 16 of player with light green dye named "&a&lOn" to run [make player execute command "config-nethertrap off"]
115 if {nethertrap.%player%} is false:
116 format slot 16 of player with purple dye named "&c&lOff" to run [make player execute command "config-nethertrap on"]
117
118# format slot 8 of player with nether quartz item named "&f&lNether - Quartz XP" to be unstealable
119
120# if {netherquartz.%player%} is not set:
121# format slot 17 of player with gray dye named "&lNot set" to run [make player execute command "config-netherquartz on"]
122# if {netherquartz.%player%} is true:
123# format slot 17 of player with light green dye named "&a&lNerfed" to run [make player execute command "config-netherquartz off"]
124# if {netherquartz.%player%} is false:
125# format slot 17 of player with purple dye named "&c&lUnnerfed" to run [make player execute command "config-netherquartz on"]
126
127 format slot 23 of player with glowstone dust named "&f&lNether - Tier 2 Potions" to be unstealable
128
129 if {nethertier2.%player%} is not set:
130 format slot 32 of player with gray dye named "&lNot set" to run [make player execute command "config-nethertier2 on"]
131 if {nethertier2.%player%} is true:
132 format slot 32 of player with light green dye named "&a&lOn" to run [make player execute command "config-nethertier2 off"]
133 if {nethertier2.%player%} is false:
134 format slot 32 of player with purple dye named "&c&lOff" to run [make player execute command "config-nethertier2 on"]
135
136# format slot 41 of player with wood sword named "&f&lStalking" to be unstealable
137
138# if {stalking.%player%} is not set:
139# format slot 50 of player with gray dye named "&lNot set" to run [make player execute command "config-stalking on"]
140# if {stalking.%player%} is true:
141# format slot 50 of player with light green dye named "&a&lOn" to run [make player execute command "config-stalking off"]
142# if {stalking.%player%} is false:
143# format slot 50 of player with purple dye named "&c&lOff" to run [make player execute command "config-stalking on"]
144
145# format slot 43 of player with ghast tear named "&f&lWeather" to be unstealable
146
147# if {weather.%player%} is not set:
148# format slot 52 of player with gray dye named "&lNot set" to run [make player execute command "config-weather on"]
149# if {weather.%player%} is true:
150# format slot 52 of player with light green dye named "&a&lAuto-Toggled" to run [make player execute command "config-weather off"]
151# if {weather.%player%} is false:
152# format slot 52 of player with purple dye named "&c&lVanilla" to run [make player execute command "config-weather on"]
153
154 format slot 20 of player with lava bucket named "&f&lFire Weapons" to be unstealable
155
156 if {fireweapons.%player%} is not set:
157 format slot 29 of player with gray dye named "&lNot set" to run [make player execute command "config-fireweapons 1"]
158 if {fireweapons.%player%} is "1":
159 format slot 29 of player with light green dye named "&a&lOn" to run [make player execute command "config-fireweapons 2"]
160 if {fireweapons.%player%} is "2":
161 format slot 29 of player with light green dye named "&a&lFlame On &f&l/ &c&lAspect Off" to run [make player execute command "config-fireweapons 3"]
162 if {fireweapons.%player%} is "3":
163 format slot 29 of player with purple dye named "&c&lOff" to run [make player execute command "config-fireweapons 1"]
164
165 format slot 21 of player with creeper head named "&f&lDeath Lightning" to be unstealable
166
167 if {deathlightning.%player%} is not set:
168 format slot 30 of player with gray dye named "&lNot set" to run [make player execute command "config-deathlightning on"]
169 if {deathlightning.%player%} is true:
170 format slot 30 of player with light green dye named "&a&lOn" to run [make player execute command "config-deathlightning off"]
171 if {deathlightning.%player%} is false:
172 format slot 30 of player with purple dye named "&c&lOff" to run [make player execute command "config-deathlightning on"]
173
174 format slot 25 of player with gunpowder named "&f&lSplash Potions" to be unstealable
175
176 if {nethersplash.%player%} is not set:
177 format slot 34 of player with gray dye named "&lNot set" to run [make player execute command "config-nethersplash on"]
178 if {nethersplash.%player%} is true:
179 format slot 34 of player with light green dye named "&a&lOn" to run [make player execute command "config-nethersplash off"]
180 if {nethersplash.%player%} is false:
181 format slot 34 of player with purple dye named "&c&lOff" to run [make player execute command "config-nethersplash on"]
182
183# format slot 42 of player with enchantment table named "&f&lEnchant Preview" to be unstealable
184
185# if {enchantpre.%player%} is not set:
186# format slot 51 of player with gray dye named "&f&lNot set" to run [make player execute command "config-enchantpre on"]
187# if {enchantpre.%player%} is true:
188# format slot 51 of player with light green dye named "&a&lOn" to run [make player execute command "config-enchantpre off"]
189# if {enchantpre.%player%} is false:
190# format slot 51 of player with purple dye named "&c&lOff" to run [make player execute command "config-enchantpre on"]
191
192 format slot 26 of player with blaze powder named "&f&lStrength" to be unstealable
193
194 if {netherstrength.%player%} is not set:
195 format slot 35 of player with gray dye named "&f&lNot set" to run [make player execute command "config-netherstrength on"]
196 if {netherstrength.%player%} is true:
197 format slot 35 of player with light green dye named "&a&lOn" to run [make player execute command "config-netherstrength off"]
198 if {netherstrength.%player%} is false:
199 format slot 35 of player with purple dye named "&c&lOff" to run [make player execute command "config-netherstrength on"]
200
201 format slot 24 of player with redstone dust named "&f&lWitch Spawns" to be unstealable
202
203 if {witches.%player%} is not set:
204 format slot 33 of player with gray dye named "&f&lNot set" to run [make player execute command "config-witches on"]
205 if {witches.%player%} is true:
206 format slot 33 of player with light green dye named "&a&lOn" to run [make player execute command "config-witches off"]
207 if {witches.%player%} is false:
208 format slot 33 of player with purple dye named "&c&lOff" to run [make player execute command "config-witches on"]
209
210 format slot 36 of player with apple named "&f&lApple Rates" to be unstealable
211
212 if {applerates.%player%} is not set:
213 format slot 45 of player with gray dye named "&f&lNot set" to run [make player execute command "config-applerates menu"]
214 else:
215 format slot 45 of player with light green dye named "&f&lApple Rates: %{applerates.%player%}%%%" to run [make player execute command "config-applerates menu"]
216
217 format slot 37 of player with flint named "&f&lFlint Rates" to be unstealable
218
219 if {flintrates.%player%} is not set:
220 format slot 46 of player with gray dye named "&f&lNot set" to run [make player execute command "config-flintrates menu"]
221 else:
222 format slot 46 of player with light green dye named "&f&lFlint Rates: %{flintrates.%player%}%%%" to run [make player execute command "config-flintrates menu"]
223
224 format slot 38 of player with diamond ore named "&f&lDiamond Ore Rates" to be unstealable
225
226 if {diamondrates.%player%} is not set:
227 format slot 47 of player with gray dye named "&f&lNot set" to run [make player execute command "config-diamondrates menu"]
228 else:
229 format slot 47 of player with light green dye named "&a&l(Diamond) Ore Limiter set at: %{diamondrates.%player%}%%%" to run [make player execute command "config-diamondrates menu"]
230
231 format slot 39 of player with gold ore named "&f&lGold Ore Rates" to be unstealable
232
233 if {goldrates.%player%} is not set:
234 format slot 48 of player with gray dye named "&f&lNot set" to run [make player execute command "config-goldrates menu"]
235 else:
236 format slot 48 of player with light green dye named "&a&l(Gold) Ore Limiter set at: %{goldrates.%player%}%%%" to run [make player execute command "config-goldrates menu"]
237
238 format slot 19 of player with arrow named "&f&lArrow Output" to be unstealable
239
240 if {arrowoutput.%player%} is not set:
241 format slot 28 of player with gray dye named "&f&lNot set" to run [make player execute command "config-arrowoutput 4"]
242 if {arrowoutput.%player%} is "4":
243 format slot 28 of player with light green dye named "&a&l4 per craft" to run [make player execute command "config-arrowoutput 8"]
244 if {arrowoutput.%player%} is "8":
245 format slot 28 of player with light green dye named "&a&l8 per craft" to run [make player execute command "config-arrowoutput 4"]
246
247 format slot 18 of player with cobblestone named "&f&lAuto-Break @ Meetup" to be unstealable
248
249 if {breakblocks.%player%} is not set:
250 format slot 27 of player with gray dye named "&f&lNot set" to run [make player execute command "config-breakblocks true"]
251 if {breakblocks.%player%} is true:
252 format slot 27 of player with light green dye named "&a&lOn" to run [make player execute command "config-breakblocks false"]
253 if {breakblocks.%player%} is false:
254 format slot 27 of player with purple dye named "&c&lOff" to run [make player execute command "config-breakblocks true"]
255
256 format slot 44 of player with white stained glass named "&f&lBorder Control" to be unstealable
257 format slot 53 of player with gray dye named "&f&lBorder Control" to run [make player execute "config-border"]
258
259 format slot 4 of player with red stained glass named "&l " to be unstealable
260 format slot 13 of player with red stained glass named "&l " to be unstealable
261 format slot 22 of player with red stained glass named "&l " to be unstealable
262 format slot 31 of player with red stained glass named "&l " to be unstealable
263 format slot 40 of player with red stained glass named "&l " to be unstealable
264 format slot 49 of player with red stained glass named "&l " to be unstealable
265
266command /tweetgame:
267 permission: sk.op
268 trigger:
269 if {game.number::*} is set:
270 if {game.time::*} is set:
271 if {game.teamsize::*} is set:
272 if {game.slots::*} is set:
273 if {game.gm1::*} is set:
274 if {game.gm2::*} is set:
275 if {game.gm3::*} is set:
276 command "/tweet Harbored's ##%{game.number::*}% [NA] - %{game.time::*}% UTC|%{game.teamsize::*}% - %{game.gm1::*}%, %{game.gm2::*}%, %{game.gm3::*}%|Slots: %{game.slots::*}%|IP: 104.219.5.58|Host: %player%"
277 delete {game.number::*}
278 delete {game.time::*}
279 delete {game.teamsize::*}
280 delete {game.slots::*}
281 delete {game.gm1::*}
282 delete {game.gm2::*}
283 delete {game.gm3::*}
284 message "&b&m--------------------------"
285 message "&9[Management] &fGame Tweeted"
286 message "&b&m--------------------------"
287 else:
288 command "/tweet Harbored's ##%{game.number::*}% [NA] - %{game.time::*}% UTC|%{game.teamsize::*}% - %{game.gm1::*}%, %{game.gm2::*}%|Slots: %{game.slots::*}%|IP: 104.219.5.58|Host: %player%"
289 delete {game.number::*}
290 delete {game.time::*}
291 delete {game.teamsize::*}
292 delete {game.slots::*}
293 delete {game.gm1::*}
294 delete {game.gm2::*}
295 delete {game.gm3::*}
296 message "&b&m--------------------------"
297 message "&9[Management] &fGame Tweeted"
298 message "&b&m--------------------------"
299 else:
300 command "/tweet Harbored's ##%{game.number::*}% [NA] - %{game.time::*}% UTC|%{game.teamsize::*}% - %{game.gm1::*}%|Slots: %{game.slots::*}%|IP: 104.219.5.58|Host: %player%"
301 delete {game.number::*}
302 delete {game.time::*}
303 delete {game.teamsize::*}
304 delete {game.slots::*}
305 delete {game.gm1::*}
306 delete {game.gm2::*}
307 delete {game.gm3::*}
308 message "&b&m--------------------------"
309 message "&9[Management] &fGame Tweeted"
310 message "&b&m--------------------------"
311 else:
312 message "&b&m--------------------------"
313 message "&9[Management] &fUse /settweet first"
314 message "&b&m--------------------------"
315
316command /settweet <text> <text> <text> <integer> <text> [<text>] [<text>]:
317 usage: /settweet gamenumber time teamsize slots gm1 gm2 gm3
318 permission: sk.op
319 trigger:
320 delete {game.number::*}
321 delete {game.time::*}
322 delete {game.teamsize::*}
323 delete {game.slots::*}
324 delete {game.gm1::*}
325 delete {game.gm2::*}
326 delete {game.gm3::*}
327 if arg-1 is set:
328 if arg-2 is set:
329 if arg-3 is set:
330 if arg-4 is set:
331 if arg-5 is set:
332 if arg-6 is set:
333 if arg-7 is set:
334 message "&b&m--------------------------"
335 message "&9[Management] &fYou are about to Tweet:"
336 message "&b&m--------------------------"
337 message "&fHarbored's ##%arg-1% [NA] - %arg-2% UTC"
338 message "&f%arg-3% - %arg-5%, %arg-6%, %arg-7%"
339 message "&fSlots: %arg-4%"
340 message "&fIP: 104.219.5.58"
341 message "&fHost: %player%"
342 message "&b&m--------------------------"
343 set {game.number::*} to arg-1
344 set {game.time::*} to arg-2
345 set {game.teamsize::*} to arg-3
346 set {game.slots::*} to arg-4
347 set {game.gm1::*} to arg-5
348 set {game.gm2::*} to arg-6
349 set {game.gm3::*} to arg-7
350 else:
351 message "&b&m--------------------------"
352 message "&9[Management] &fYou are about to Tweet:"
353 message "&b&m--------------------------"
354 message "&fHarbored's ##%arg-1% [NA] - %arg-2% UTC"
355 message "&f%arg-3% - %arg-5%, %arg-6%"
356 message "&fSlots: %arg-4%"
357 message "&fIP: 104.219.5.58"
358 message "&fHost: %player%"
359 message "&b&m--------------------------"
360 set {game.number::*} to arg-1
361 set {game.time::*} to arg-2
362 set {game.teamsize::*} to arg-3
363 set {game.slots::*} to arg-4
364 set {game.gm1::*} to arg-5
365 set {game.gm2::*} to arg-6
366 else:
367 message "&b&m--------------------------"
368 message "&9[Management] &fYou are about to Tweet:"
369 message "&b&m--------------------------"
370 message "&fHarbored's ##%arg-1% [NA] - %arg-2% UTC"
371 message "&f%arg-3% - %arg-5%"
372 message "&fSlots: %arg-4%"
373 message "&fIP: 104.219.5.58"
374 message "&fHost: %player%"
375 message "&b&m--------------------------"
376 set {game.number::*} to arg-1
377 set {game.time::*} to arg-2
378 set {game.teamsize::*} to arg-3
379 set {game.slots::*} to arg-4
380 set {game.gm1::*} to arg-5
381
382
383
384command /config-breakblocks <text>:
385 permission: sk.op
386 trigger:
387 if arg-1 is "true":
388 set {breakblocks.%player%} to true
389 make player execute "/config"
390 if arg-1 is "false":
391 set {breakblocks.%player%} to false
392 make player execute "/config"
393
394command /config-arrowoutput <text>:
395 permission: sk.op
396 trigger:
397 if arg-1 is "4":
398 set {arrowoutput.%player%} to "4"
399 make player execute "/config"
400 if arg-1 is "8":
401 set {arrowoutput.%player%} to "8"
402 make player execute "/config"
403
404command /config-fireweapons <text>:
405 permission: sk.op
406 trigger:
407 if arg-1 is "1":
408 set {fireweapons.%player%} to "1"
409 make player execute "/fireless off"
410 make player execute "/config"
411
412 if arg-1 is "2":
413 set {fireweapons.%player%} to "2"
414 make player execute "/fireless flame"
415 make player execute "/config"
416 if arg-1 is "3":
417 set {fireweapons.%player%} to "3"
418 make player execute "/fireless on"
419 make player execute "/config"
420
421command /config-headsstack <text>:
422 permission: sk.op
423 trigger:
424 if arg-1 is "true":
425 set {headstack.%player%} to true
426 make player execute command "/config"
427 if arg-1 is "false":
428 set {headstack.%player%} to false
429 make player execute command "/config"
430
431command /config-heads <text>:
432 permission: sk.op
433 trigger:
434 if arg-1 is "3":
435 set {headheal.%player%} to "3"
436 make player execute command "/config"
437 if arg-1 is "4":
438 set {headheal.%player%} to "4"
439 make player execute command "/config"
440 if arg-1 is "off":
441 set {headheal.%player%} to "off"
442 make player execute command "/config"
443
444command /config-absorption <text>:
445 permission: sk.op
446 trigger:
447 if arg-1 is "on":
448 set {absorption.%player%} to true
449 make player execute command "/config"
450 if arg-1 is "off":
451 set {absorption.%player%} to false
452 make player execute command "/config"
453
454command /config-godapple <text>:
455 permission: sk.op
456 trigger:
457 if arg-1 is "on":
458 set {godapple.%player%} to true
459 make player execute command "/config"
460 if arg-1 is "off":
461 set {godapple.%player%} to false
462 make player execute command "/config"
463
464command /config-epdamage <text>:
465 permission: sk.op
466 trigger:
467 if arg-1 is "on":
468 set {epdamage.%player%} to true
469 make player execute command "/config"
470 if arg-1 is "off":
471 set {epdamage.%player%} to false
472 make player execute command "/config"
473
474command /config-horsemount <text>:
475 permission: sk.op
476 trigger:
477 if arg-1 is "on":
478 set {horsemount.%player%} to true
479 set {horseexplode.%player%} to false
480 make player execute command "/config"
481 if arg-1 is "off":
482 set {horsemount.%player%} to false
483 make player execute command "/config"
484
485command /config-horsearmour <text>:
486 permission: sk.op
487 trigger:
488 if arg-1 is "on":
489 set {horsearmour.%player%} to true
490 make player execute command "/config"
491 if arg-1 is "off":
492 set {horsearmour.%player%} to false
493 make player execute command "/config"
494
495command /config-horsehealing <text>:
496 permission: sk.op
497 trigger:
498 if arg-1 is "on":
499 set {horsehealing.%player%} to true
500 make player execute command "/config"
501 if arg-1 is "off":
502 set {horsehealing.%player%} to false
503 make player execute command "/config"
504
505command /config-horseexplode <text>:
506 permission: sk.op
507 trigger:
508 if arg-1 is "on":
509 set {horseexplode.%player%} to true
510 set {horsemount.%player%} to false
511 make player execute command "/config"
512 if arg-1 is "off":
513 set {horseexplode.%player%} to false
514 make player execute command "/config"
515
516command /config-nether <text>:
517 permission: sk.op
518 trigger:
519 if arg-1 is "on":
520 set {nether.%player%} to true
521 make player execute command "/config"
522 if arg-1 is "off":
523 set {nether.%player%} to false
524 make player execute command "/config"
525
526command /config-nethercamp <text>:
527 permission: sk.op
528 trigger:
529 if arg-1 is "on":
530 set {nethercamp.%player%} to true
531 make player execute command "/config"
532 if arg-1 is "off":
533 set {nethercamp.%player%} to false
534 make player execute command "/config"
535
536command /config-nethertrap <text>:
537 permission: sk.op
538 trigger:
539 if arg-1 is "on":
540 set {nethertrap.%player%} to true
541 make player execute command "/config"
542 if arg-1 is "off":
543 set {nethertrap.%player%} to false
544 make player execute command "/config"
545
546command /config-netherquartz <text>:
547 permission: sk.op
548 trigger:
549 if arg-1 is "on":
550 set {netherquartz.%player%} to true
551 make player execute command "/config"
552 if arg-1 is "off":
553 set {netherquartz.%player%} to false
554 make player execute command "/config"
555
556command /config-nethertier2 <text>:
557 permission: sk.op
558 trigger:
559 if arg-1 is "on":
560 set {nethertier2.%player%} to true
561 make player execute command "/config"
562 if arg-1 is "off":
563 set {nethertier2.%player%} to false
564 make player execute command "/config"
565
566command /config-stalking <text>:
567 permission: sk.op
568 trigger:
569 if arg-1 is "on":
570 set {stalking.%player%} to true
571 make player execute command "/config"
572 if arg-1 is "off":
573 set {stalking.%player%} to false
574 make player execute command "/config"
575
576command /config-weather <text>:
577 permission: sk.op
578 trigger:
579 if arg-1 is "on":
580 set {weather.%player%} to true
581 make player execute command "/config"
582 if arg-1 is "off":
583 set {weather.%player%} to false
584 make player execute command "/config"
585
586command /config-deathlightning <text>:
587 permission: sk.op
588 trigger:
589 if arg-1 is "on":
590 set {deathlightning.%player%} to true
591 make player execute command "/config"
592 if arg-1 is "off":
593 set {deathlightning.%player%} to false
594 make player execute command "/config"
595
596command /config-nethersplash <text>:
597 permission: sk.op
598 trigger:
599 if arg-1 is "on":
600 set {nethersplash.%player%} to true
601 make player execute command "/config"
602 if arg-1 is "off":
603 set {nethersplash.%player%} to false
604 make player execute command "/config"
605
606command /config-enchantpre <text>:
607 permission: sk.op
608 trigger:
609 if arg-1 is "on":
610 set {enchantpre.%player%} to true
611 make player execute command "/config"
612 if arg-1 is "off":
613 set {enchantpre.%player%} to false
614 make player execute command "/config"
615
616command /config-netherstrength <text>:
617 permission: sk.op
618 trigger:
619 if arg-1 is "on":
620 set {netherstrength.%player%} to true
621 make player execute command "/config"
622 if arg-1 is "off":
623 set {netherstrength.%player%} to false
624 make player execute command "/config"
625
626command /config-witches <text>:
627 permission: sk.op
628 trigger:
629 if arg-1 is "on":
630 set {witches.%player%} to true
631 make player execute command "/config"
632 if arg-1 is "off":
633 set {witches.%player%} to false
634 make player execute command "/config"
635
636
637command /config-applerates <text>:
638 permission: sk.op
639 trigger:
640 if arg-1 is "menu":
641 make player execute command "/appleratemenu"
642 if arg-1 is "1":
643 set {applerates.%player%} to 1
644 make player execute command "/appleratemenu"
645 if arg-1 is "0.5":
646 set {applerates.%player%} to 0.50
647 make player execute command "/appleratemenu"
648 if arg-1 is "customd":
649 if {applerates.%player%} is 0:
650 make player execute command "/appleratemenu"
651 stop
652 if {applerates.%player%} is not set:
653 set {applerates.%player%} to 0
654 make player execute command "/appleratemenu"
655 else:
656 set {applerates.%player%} to {applerates.%player%} - 1
657 make player execute command "/appleratemenu"
658 if arg-1 is "customi":
659 if {applerates.%player%} is 100:
660 make player execute command "/appleratemenu"
661 stop
662 if {applerates.%player%} is not set:
663 set {applerates.%player%} to 0
664 make player execute command "/appleratemenu"
665 else:
666 set {applerates.%player%} to {applerates.%player%} + 1
667 make player execute command "/appleratemenu"
668
669command /config-flintrates <text>:
670 permission: sk.op
671 trigger:
672 if arg-1 is "menu":
673 make player execute command "/flintratemenu"
674 if arg-1 is "7":
675 set {flintrates.%player%} to 7
676 make player execute command "/flintratemenu"
677 if arg-1 is "15":
678 set {flintrates.%player%} to 15
679 make player execute command "/flintratemenu"
680 if arg-1 is "customd":
681 if {flintrates.%player%} is 0:
682 make player execute command "/flintratemenu"
683 stop
684 if {flintrates.%player%} is not set:
685 set {flintrates.%player%} to 0
686 make player execute command "/flintratemenu"
687 else:
688 set {flintrates.%player%} to {flintrates.%player%} - 1
689 make player execute command "/flintratemenu"
690 if arg-1 is "customi":
691 if {flintrates.%player%} is 100:
692 make player execute command "/flintratemenu"
693 stop
694 if {flintrates.%player%} is not set:
695 set {flintrates.%player%} to 0
696 make player execute command "/flintratemenu"
697 else:
698 set {flintrates.%player%} to {flintrates.%player%} + 1
699 make player execute command "/flintratemenu"
700
701command /config-diamondrates <text>:
702 permission: sk.op
703 trigger:
704 if arg-1 is "menu":
705 make player execute command "/diamondratemenu"
706 if arg-1 is "customd":
707 if {diamondrates.%player%} is 0:
708 make player execute command "/diamondratemenu"
709 stop
710 if {diamondrates.%player%} is not set:
711 set {diamondrates.%player%} to 0
712 make player execute command "/diamondratemenu"
713 else:
714 set {diamondrates.%player%} to {diamondrates.%player%} - 1
715 make player execute command "/diamondratemenu"
716 if arg-1 is "customi":
717 if {diamondrates.%player%} is 100:
718 make player execute command "/diamondratemenu"
719 stop
720 if {diamondrates.%player%} is not set:
721 set {diamondrates.%player%} to 0
722 make player execute command "/diamondratemenu"
723 else:
724 set {diamondrates.%player%} to {diamondrates.%player%} + 1
725 make player execute command "/diamondratemenu"
726
727command /config-goldrates <text>:
728 permission: sk.op
729 trigger:
730 if arg-1 is "menu":
731 make player execute command "/goldratemenu"
732 if arg-1 is "customd":
733 if {goldrates.%player%} is 0:
734 make player execute command "/goldratemenu"
735 stop
736 if {goldrates.%player%} is not set:
737 set {goldrates.%player%} to 0
738 make player execute command "/goldratemenu"
739 else:
740 set {goldrates.%player%} to {goldrates.%player%} - 1
741 make player execute command "/goldratemenu"
742 if arg-1 is "customi":
743 if {goldrates.%player%} is 100:
744 make player execute command "/goldratemenu"
745 stop
746 if {goldrates.%player%} is not set:
747 set {goldrates.%player%} to 0
748 make player execute command "/goldratemenu"
749 else:
750 set {goldrates.%player%} to {goldrates.%player%} + 1
751 make player execute command "/goldratemenu"
752
753
754
755command /appleratemenu:
756 permission: sk.op
757 trigger:
758 open chest with 1 row named "&4Apple Rates: %{applerates.%player%}%%%" to player
759 wait 1 tick
760 format slot 0 of player with apple named "&f&lPreset: &a&l0.5&f&l%%" to run [make player execute command "config-applerates 0.5"]
761 format slot 1 of player with apple named "&f&lPreset: &a&l1&f&l%%" to run [make player execute command "config-applerates 1"]
762 format slot 4 of player with apple named "&f&lCurrent Rate: %{applerates.%player%}%%%" to be unstealable
763 format slot 3 of player with purple dye named "&c&lDecrease&f&l Rate by 1%%" to run [make player execute command "config-applerates customd"]
764 format slot 5 of player with light green dye named "&a&lIncrease&f&l Rate by 1%%" to run [make player execute command "config-applerates customi"]
765 format slot 8 of player with red stained glass named "&f&lBack to Config" to run [make player execute command "/config"]
766
767command /flintratemenu:
768 permission: sk.op
769 trigger:
770 open chest with 1 row named "&4Flint Rates: %{flintrates.%player%}%%%" to player
771 wait 1 tick
772 format slot 0 of player with flint named "&f&lPreset: &a&l7&f&l%%" to run [make player execute command "config-flintrates 7"]
773 format slot 1 of player with flint named "&f&lPreset: &a&l15&f&l%%" to run [make player execute command "config-flintrates 15"]
774 format slot 4 of player with flint named "&f&lCurrent Rate: %{flintrates.%player%}%%%" to be unstealable
775 format slot 3 of player with purple dye named "&c&lDecrease&f&l Rate by 1%%" to run [make player execute command "config-flintrates customd"]
776 format slot 5 of player with light green dye named "&a&lIncrease&f&l Rate by 1%%" to run [make player execute command "config-flintrates customi"]
777 format slot 8 of player with red stained glass named "&f&lBack to Config" to run [make player execute command "/config"]
778
779command /diamondratemenu:
780 permission: sk.op
781 trigger:
782 open chest with 1 row named "&4Diamond Rates: %{diamondrates.%player%}%%%" to player
783 wait 1 tick
784 format slot 4 of player with diamond ore named "&f&lCurrent Rate: %{diamondrates.%player%}%%%" to be unstealable
785 format slot 3 of player with purple dye named "&c&lDecrease&f&l Rate by 1%%" to run [make player execute command "config-diamondrates customd"]
786 format slot 5 of player with light green dye named "&a&lIncrease&f&l Rate by 1%%" to run [make player execute command "config-diamondrates customi"]
787 format slot 8 of player with red stained glass named "&f&lBack to Config" to run [make player execute command "/config"]
788
789command /goldratemenu:
790 permission: sk.op
791 trigger:
792 open chest with 1 row named "&4Gold Rates: %{goldrates.%player%}%%%" to player
793 wait 1 tick
794 format slot 4 of player with gold ore named "&f&lCurrent Rate: %{goldrates.%player%}%%%" to be unstealable
795 format slot 3 of player with purple dye named "&c&lDecrease&f&l Rate by 1%%" to run [make player execute command "config-goldrates customd"]
796 format slot 5 of player with light green dye named "&a&lIncrease&f&l Rate by 1%%" to run [make player execute command "config-goldrates customi"]
797 format slot 8 of player with red stained glass named "&f&lBack to Config" to run [make player execute command "/config"]
798
799#
800
801command /config-border:
802 permission: sk.op
803 trigger:
804 open chest with 2 rows named "&f&lBorder Configuration" to player
805 wait 1 tick
806 format slot 17 of player with red stained glass named "&f&lBack to Config" to run [make player execute "/config"]
807
808 format slot 0 of player with gray stained glass named "&f&lBorder Move @ Meetup" to be unstealable
809 if {border.move.%player%} is not set:
810 format slot 9 of player with gray dye named "&f&lNot set" to run [make player execute "/config-border-move false"]
811 if {border.move.%player%} is false:
812 format slot 9 of player with purple dye named "&c&lStatic Border" to run [make player execute "/config-border-move true"]
813 if {border.move.%player%} is true:
814 format slot 9 of player with light green dye named "&a&lMoving Border" to run [make player execute "/config-border-move false"]
815
816 format slot 1 of player with gray stained glass named "&f&lMode" to be unstealable
817 if {border.mode.%player%} is not set:
818 format slot 10 of player with gray dye named "&f&lNot set" to run [make player execute "/config-border-mode progressive"]
819 if {border.mode.%player%} is "progressive":
820 format slot 10 of player with light green dye named "&a&lProgressive Mode" to run [make player execute "/config-border-mode instant"]
821 if {border.mode.%player%} is "instant":
822 format slot 10 of player with light green dye named "&a&lInstant Mode" to run [make player execute "/config-border-mode progressive"]
823
824
825command /config-border-move <text>:
826 permission: sk.op
827 trigger:
828 if arg-1 is "true":
829 set {border.move.%player%} to true
830 make player execute "/config-border"
831 else if arg-1 is "false":
832 set {border.move.%player%} to false
833 make player execute "/config-border"
834
835
836command /config-border-mode <text>:
837 permission: sk.op
838 trigger:
839 if arg-1 is "progressive":
840 set {border.mode.%player%} to "progressive"
841 make player execute "/config-border"
842 else if arg-1 is "instant":
843 set {border.mode.%player%} to "instant"
844 make player execute "/config-border"
845
846
847
848#
849#
850#
851#
852#
853#
854#
855#
856#
857
858command /setup:
859 permission: sk.op
860 trigger:
861
862 set {current-border.move} to {border.move.%player%}
863 set {current-border.mode} to {border.mode.%player%}
864 set {current-headheal} to {headheal.%player%}
865 set {current-absorption} to {absorption.%player%}
866 set {current-godapple} to {godapple.%player%}
867 set {current-epdamage} to {epdamage.%player%}
868 set {current-horsemount} to false
869 set {current-horseexplode} to false
870 set {current-nether} to {nether.%player%}
871 set {current-nethercamp} to {nethercamp.%player%}
872 set {current-nethertrap} to {nethertrap.%player%}
873 set {current-nethertier2} to {nethertier2.%player%}
874 set {current-deathlightning} to {deathlightning.%player%}
875 set {current-nethersplash} to {nethersplash.%player%}
876 set {current-netherstrength} to {netherstrength.%player%}
877 set {current-witches} to {witches.%player%}
878 set {current-applerates} to {applerates.%player%}
879 set {current-flintrates} to {flintrates.%player%}
880 set {current-fireweapons} to {fireweapons.%player%}
881 set {current-headstack} to {headstack.%player%}
882 set {current-diamondrates} to {diamondrates.%player%}
883 set {current-goldrates} to {goldrates.%player%}
884 set {current-arrowoutput} to {arrowoutput.%player%}
885 set {current-breakblocks} to {breakblocks.%player%}
886
887 broadcast "&1[&f&lHarbored&1]&f UHC Config setup from &a%player%'s&f personal configuration."
888
889 wait 1 tick
890 make player execute "/as add HARB%{worldcount}%"
891 wait 1 second
892 make player execute "/generateworld"
893
894command /generateworld:
895 permission: sk.op
896 trigger:
897 set {worldcount} to {worldcount} + 1
898 command "/orelimiter setrate GOLD_ORE %{current-goldrates}%"
899 command "/orelimiter setrate DIAMOND_ORE %{current-diamondrates}%"
900 wait 1 tick
901 loop all worlds:
902 command "/mw unload %loop-world%"
903 wait 1 tick
904 command "/mw create HARB%{worldcount}%"
905 wait 1 second
906 command "/mw load HARB%{worldcount}%"
907 make player execute "/world HARB%{worldcount}%"
908 wait 1 second
909 make player execute "/tppos 0 100 0"
910 wait 1 second
911 make player execute "//replacenear 100 leaves,log,162,162 0"
912 wait 1 tick
913 make player execute "/wb shape square"
914 wait 1 tick
915 make player execute "/wb HARB%{worldcount}% set 1500 1500 0 0"
916 wait 1 tick
917 make player execute "/minecraft:worldborder center 0.0 0.0"
918 wait 1 tick
919 make player execute "/minecraft:worldborder damage amount 0"
920 wait 1 tick
921 make player execute "/minecraft:worldborder set 3000"
922 wait 1 tick
923 make player execute "/spawn"
924 wait 1 tick
925 make player execute "/world HARB%{worldcount}%"
926 wait 1 tick
927 make player execute "/tppos 0 100 0"
928 wait 1 tick
929 make player execute "/gm 3"
930 wait 1 tick
931 make player execute "/up 150"
932 make player execute "//replacenear 5 glass 0"
933 message "&9[World Creation] &fWould you like to keep this world?"
934 message "&9[World Creation] &a&l/Yes &f| &c&l/No"
935 set {worldcreate} to true
936
937command /yes:
938 permission: sk.op
939 trigger:
940 if {worldcreate} is true:
941 make player execute "/pregenworld"
942 make player execute "/spawn"
943 make player execute "/gms"
944 delete {worldcreate}
945
946command /no:
947 permission: sk.op
948 trigger:
949 if {worldcreate} is true:
950 command "/mw load HARB%{worldcount}%"
951 wait 1 tick
952 make player execute "/spawn"
953 make player execute "/gms"
954 wait 1 tick
955 command "/mw delete HARB%{worldcount}%"
956 delete {worldcreate}
957 message "&9[World Creation] &fRun /setup again to generate a new world!"
958
959command /stoppregen:
960 permission: sk.op
961 trigger:
962 make player execute "/wb fill cancel"
963
964command /deleteworld:
965 permission: sk.op
966 trigger:
967 make player execute "/spawn"
968 wait 1 tick
969 make player execute "/tpall"
970 wait 1 tick
971 make player execute "/mw delete HARB%{worldcount}%"
972
973
974
975command /pregenworld:
976 permission: sk.op
977 trigger:
978 make player execute "/wb HARB%{worldcount}% fill 200"
979 wait 1 tick
980 make player execute "/wb fill confirm"
981
982command /generatenether:
983 permission: sk.op
984 trigger:
985 command "/orelimiter setrate GOLD_ORE %{current-goldrates}%"
986 command "/orelimiter setrate DIAMOND_ORE %{current-diamondrates}%"
987 wait 1 tick
988 loop all worlds:
989 command "/mw unload %loop-world%"
990 wait 1 tick
991 command "/mw create HARB%{worldcount}%_nether nether"
992 wait 1 second
993 command "/mw load HARB%{worldcount}%_nether"
994 make player execute "/world HARB%{worldcount}%_nether"
995 wait 1 second
996 make player execute "/tppos 0 100 0"
997 wait 1 second
998 make player execute "/wb shape square"
999 wait 1 tick
1000 make player execute "/wb HARB%{worldcount}%_nether set 1500 1500 0 0"
1001 wait 1 tick
1002 make player execute "/minecraft:worldborder center 0.0 0.0"
1003 wait 1 tick
1004 make player execute "/minecraft:worldborder damage amount 0"
1005 wait 1 tick
1006 make player execute "/minecraft:worldborder set 3000"
1007 wait 1 tick
1008 make player execute "/spawn"
1009 wait 1 tick
1010 make player execute "/wb HARB%{worldcount}%_nether fill 200"
1011 wait 1 tick
1012 make player execute "/wb fill confirm"
1013
1014command /setupexworld:
1015 permission: sk.op
1016 trigger:
1017
1018 loop all worlds:
1019 command "/mw unload %loop-world%"
1020 wait 1 tick
1021 command "/mw load HARB%{worldcount}%"
1022 wait 1 tick
1023 make player execute "/world HARB%{worldcount}%"
1024 wait 1 second
1025 make player execute "/tppos 0 100 0"
1026 wait 1 second
1027 make player execute "//replacenear 100 leaves,log,162,162 0"
1028 wait 1 tick
1029 make player execute "/minecraft:worldborder center 0.0 0.0"
1030 wait 1 tick
1031 make player execute "/minecraft:worldborder damage amount 0"
1032 wait 1 tick
1033 make player execute "/minecraft:worldborder set 3000"
1034 wait 1 tick
1035 make player execute "/spawn"
1036 wait 1 tick
1037 make player execute "/wb HARB%{worldcount}% fill 200"
1038 wait 1 tick
1039 make player execute "/wb fill confirm"
1040
1041command /reconfigure:
1042 permission: sk.op
1043 trigger:
1044
1045 set {current-border.move} to {border.move.%player%}
1046 set {current-border.mode} to {border.mode.%player%}
1047 set {current-headheal} to {headheal.%player%}
1048 set {current-absorption} to {absorption.%player%}
1049 set {current-godapple} to {godapple.%player%}
1050 set {current-epdamage} to {epdamage.%player%}
1051 set {current-horsemount} to false
1052 set {current-horseexplode} to false
1053 set {current-nether} to {nether.%player%}
1054 set {current-nethercamp} to {nethercamp.%player%}
1055 set {current-nethertrap} to {nethertrap.%player%}
1056 set {current-nethertier2} to {nethertier2.%player%}
1057 set {current-deathlightning} to {deathlightning.%player%}
1058 set {current-nethersplash} to {nethersplash.%player%}
1059 set {current-netherstrength} to {netherstrength.%player%}
1060 set {current-witches} to {witches.%player%}
1061 set {current-applerates} to {applerates.%player%}
1062 set {current-flintrates} to {flintrates.%player%}
1063 set {current-fireweapons} to {fireweapons.%player%}
1064 set {current-headstack} to {headstack.%player%}
1065 set {current-diamondrates} to {diamondrates.%player%}
1066 set {current-goldrates} to {goldrates.%player%}
1067 set {current-arrowoutput} to {arrowoutput.%player%}
1068 set {current-breakblocks} to {breakblocks.%player%}
1069
1070 broadcast "&1[&f&lHarbored&1]&f UHC Config setup from &a%player%'s&f personal configuration."
1071
1072command /debugarrows:
1073 trigger:
1074 message "%{current-arrowoutput}%"
1075
1076on place of crafting table:
1077 if {current-arrowoutput} is "8":
1078 register new shaped recipe for 8 arrows using air, air, flint, air, air, stick, air, air, feather
1079 register new shaped recipe for 8 arrows using air, flint, air, air, stick, air, air, feather, air
1080
1081command /setworldcount <integer>:
1082 permission: sk.op
1083 trigger:
1084 set {worldcount} to arg-1
1085 message "&1[&f&lHarbored&1]&f World Count: %{worldcount}%"
1086
1087command /seeworldcount:
1088 permission: sk.op
1089 trigger:
1090 message "&f%{worldcount}%"
1091
1092
1093command /masspregen <integer>:
1094 permission: sk.op
1095 trigger:
1096
1097 command "/orelimiter setrate GOLD_ORE 70"
1098 command "/orelimiter setrate DIAMOND_ORE 70"
1099 command "/orelimiter setrate REDSTONE_ORE 70"
1100
1101 set {_amount} to arg-1
1102 set {_tempworldcount} to {worldcount}
1103 set {_tempworldcount} to {_tempworldcount} + 1
1104 wait 1 tick
1105 loop {_amount} times:
1106 wait 10 seconds
1107 command "/mw create HARB%{_tempworldcount}%"
1108 wait 1 second
1109 broadcast "&1[&f&lHarbored&1]&f World &aHARB%{_tempworldcount}% &fcreated."
1110 wait 1 second
1111 set {_tempworldcount} to {_tempworldcount} + 1
1112
1113 set {_tempworldcount} to {worldcount}
1114 set {_tempworldcount} to {_tempworldcount} + 1
1115 wait 10 seconds
1116 loop {_amount} times:
1117 wait 10 seconds
1118 loop all worlds:
1119 command "/mw unload %loop-world%"
1120 wait 1 second
1121 command "/mw load HARB%{_tempworldcount}%"
1122 wait 1 tick
1123 command "/wb shape square"
1124 wait 1 tick
1125 command "/wb HARB%{_tempworldcount}% set 1500 1500 0 0"
1126 wait 1 tick
1127 command "/wb HARB%{_tempworldcount}% fill 300"
1128 wait 1 tick
1129 command "/wb fill confirm"
1130 wait 30 minutes
1131 set {_tempworldcount} to {_tempworldcount} + 1
1132
1133
1134#
1135#
1136#
1137#
1138#
1139#
1140#
1141#
1142#
1143#
1144#
1145
1146on death of player:
1147 if {current-headstack} is true:
1148 command "/feature off PlayerHeads"
1149 drop player head named "&fHead" at victim
1150
1151on craft of golden apple:1:
1152 if {current-godapple} is false:
1153 cancel event
1154
1155on consume of golden apple:0:
1156 wait 1 tick
1157 remove absorption from player
1158 name of event-item is "&6Golden Head":
1159 wait 1 tick
1160 remove regeneration from player
1161 wait 1 tick
1162
1163 if {current-headheal} is "4":
1164 wait 1 tick
1165 apply regeneration 2 to player for 9 seconds
1166
1167 if {current-headheal} is "3":
1168 wait 1 tick
1169 apply regeneration 2 to player for 7 seconds
1170
1171 if {current-absorption} is true:
1172 wait 1 tick
1173 apply absorption 1 to player for 2 minutes
1174
1175on damage of a player:
1176 if damage cause is fall:
1177 projectile exists
1178 projectile is a enderpearl
1179 cancel the event
1180 if {current-epdamage} is true:
1181 damage victim by 1 heart
1182
1183on vehicle enter:
1184 if event-entity is horse:
1185 if {current-horsemount} is false:
1186 cancel event
1187 if {current-horseexplode} is true:
1188 create an explosion of force 3 at the event-entity
1189
1190on right click on horse with sugar or apple or bread or carrot or golden carrot or wheat or hay block:
1191 cancel event
1192
1193on pickup of iron horse armour or gold horse armour or diamond horse armour:
1194 cancel event
1195
1196on inventory click:
1197 if clicked item is iron horse armour or gold horse armour or diamond horse armour:
1198 cancel event
1199
1200on craft of blaze powder:
1201 if {current-netherstrength} is false:
1202 cancel event
1203
1204on break of glowstone:
1205 if {current-nethertier2} is false:
1206 cancel event
1207 set event-block to air
1208
1209on death of creeper:
1210 if {current-nethersplash} is false:
1211 clear drops
1212
1213on death of witch:
1214 if {current-nethertier2} is false:
1215 clear drops
1216 chance of 5%:
1217 drop 1 potion of:8261 at witch
1218
1219on spawn of witch:
1220 if {current-witches} is false:
1221 cancel event
1222
1223on mine of quartz ore:
1224 cancel event
1225 set event-block to air
1226 chance of 50%:
1227 drop 1 xp at event-block
1228
1229
1230on portal create:
1231 if {current-nether} is false:
1232 cancel event
1233#
1234#
1235#
1236#
1237#
1238#
1239#
1240#
1241#
1242#
1243#
1244
1245
1246#command /uhc:
1247# trigger:
1248#
1249# open chest with 6 rows named "&4UHC Configuration" to player
1250# wait 1 tick
1251# format slot 0 of player with white stained glass to be unstealable
1252# format slot 1 of player with blue stained glass to be unstealable
1253# format slot 2 of player with white stained glass to be unstealable
1254# format slot 3 of player with blue stained glass to be unstealable
1255# format slot 4 of player with white stained glass to be unstealable
1256# format slot 5 of player with blue stained glass to be unstealable
1257# format slot 6 of player with white stained glass to be unstealable
1258# format slot 7 of player with blue stained glass to be unstealable
1259# format slot 8 of player with white stained glass to be unstealable
1260# format slot 9 of player with blue stained glass to be unstealable
1261# format slot 11 of player with blue stained glass to be unstealable
1262# format slot 12 of player with white stained glass to be unstealable
1263# format slot 14 of player with white stained glass to be unstealable
1264# format slot 15 of player with blue stained glass to be unstealable
1265# format slot 17 of player with blue stained glass to be unstealable
1266# format slot 18 of player with white stained glass to be unstealable
1267# format slot 19 of player with blue stained glass to be unstealable
1268# format slot 20 of player with white stained glass to be unstealable
1269# format slot 21 of player with blue stained glass to be unstealable
1270# format slot 22 of player with white stained glass to be unstealable
1271# format slot 23 of player with blue stained glass to be unstealable
1272# format slot 24 of player with white stained glass to be unstealable
1273# format slot 25 of player with blue stained glass to be unstealable
1274# format slot 26 of player with white stained glass to be unstealable
1275# format slot 27 of player with blue stained glass to be unstealable
1276# format slot 28 of player with white stained glass to be unstealable
1277# format slot 29 of player with blue stained glass to be unstealable
1278# format slot 30 of player with white stained glass to be unstealable
1279# format slot 31 of player with blue stained glass to be unstealable
1280# format slot 32 of player with white stained glass to be unstealable
1281# format slot 33 of player with blue stained glass to be unstealable
1282# format slot 34 of player with white stained glass to be unstealable
1283# format slot 35 of player with blue stained glass to be unstealable
1284# format slot 36 of player with white stained glass to be unstealable
1285# format slot 38 of player with white stained glass to be unstealable
1286# format slot 39 of player with blue stained glass to be unstealable
1287# format slot 41 of player with blue stained glass to be unstealable
1288# format slot 42 of player with white stained glass to be unstealable
1289# format slot 44 of player with white stained glass to be unstealable
1290# format slot 45 of player with blue stained glass to be unstealable
1291# format slot 46 of player with white stained glass to be unstealable
1292# format slot 47 of player with blue stained glass to be unstealable
1293# format slot 48 of player with white stained glass to be unstealable
1294# format slot 49 of player with blue stained glass to be unstealable
1295# format slot 50 of player with white stained glass to be unstealable
1296# format slot 51 of player with blue stained glass to be unstealable
1297# format slot 52 of player with white stained glass to be unstealable
1298# format slot 53 of player with blue stained glass to be unstealable
1299#
1300#
1301#
1302# if {current-headheal} is "3":
1303# if {current-absorption} is true:
1304# if {current-godapple} is true:
1305# format slot 10 of player with golden apple named "&f " with lore "&f&lGolden Heads: &aEnabled - Heal 3 ||&f&lAbsorption: &aEnabled ||&f&lGod Apples: &aEnabled" to be unstealable
1306# if {current-godapple} is false:
1307# format slot 10 of player with golden apple named "&f " with lore "&f&lGolden Heads: &aEnabled - Heal 3 ||&f&lAbsorption: &aEnabled ||&f&lGod Apples: &cDisabled" to be unstealable
1308# if {current-absorption} is false:
1309# if {current-godapple} is true:
1310# format slot 10 of player with golden apple named "&f " with lore "&f&lGolden Heads: &aEnabled - Heal 3 ||&f&lAbsorption: &cDisabled ||&f&lGod Apples: &aEnabled" to be unstealable
1311# if {current-godapple} is false:
1312# format slot 10 of player with golden apple named "&f " with lore "&f&lGolden Heads: &aEnabled - Heal 3 ||&f&lAbsorption: &cDisabled ||&f&lGod Apples: &cDisabled" to be unstealable
1313# if {current-headheal} is "4":
1314# if {current-absorption} is true:
1315# if {current-godapple} is true:
1316# format slot 10 of player with golden apple named "&f " with lore "&f&lGolden Heads: &aEnabled - Heal 4 ||&f&lAbsorption: &aEnabled ||&f&lGod Apples: &aEnabled" to be unstealable
1317# if {current-godapple} is false:
1318# format slot 10 of player with golden apple named "&f " with lore "&f&lGolden Heads: &aEnabled - Heal 4 ||&f&lAbsorption: &aEnabled ||&f&lGod Apples: &cDisabled" to be unstealable
1319# if {current-absorption} is false:
1320# if {current-godapple} is true:
1321# format slot 10 of player with golden apple named "&f " with lore "&f&lGolden Heads: &aEnabled - Heal 4 ||&f&lAbsorption: &cDisabled ||&f&lGod Apples: &aEnabled" to be unstealable
1322# if {current-godapple} is false:
1323# format slot 10 of player with golden apple named "&f " with lore "&f&lGolden Heads: &aEnabled - Heal 4 ||&f&lAbsorption: &cDisabled ||&f&lGod Apples: &cDisabled" to be unstealable
1324# if {current-headheal} is "off":
1325# if {current-absorption} is true:
1326# if {current-godapple} is true:
1327# format slot 10 of player with golden apple named "&f " with lore "&f&lGolden Heads: &cDisabled ||&f&lAbsorption: &aEnabled ||&f&lGod Apples: &aEnabled" to be unstealable
1328# if {current-godapple} is false:
1329# format slot 10 of player with golden apple named "&f " with lore "&f&lGolden Heads: &cDisabled ||&f&lAbsorption: &aEnabled ||&f&lGod Apples: &cDisabled" to be unstealable
1330# if {current-absorption} is false:
1331# if {current-godapple} is true:
1332# format slot 10 of player with golden apple named "&f " with lore "&f&lGolden Heads: &cDisabled ||&f&lAbsorption: &cDisabled ||&f&lGod Apples: &aEnabled" to be unstealable
1333# if {current-godapple} is false:
1334# format slot 10 of player with golden apple named "&f " with lore "&f&lGolden Heads: &cDisabled ||&f&lAbsorption: &cDisabled ||&f&lGod Apples: &cDisabled" to be unstealable
1335#
1336# if {current-horsemount} is true:
1337# if {current-horsehealing} is true:
1338# if {current-horsearmour} is true:
1339# format slot 13 of player with saddle named "&f " with lore "&f&lHorses: &aEnabled ||&f&lHorse Healing: &aEnabled ||&f&lHorse Armour: &aEnabled" to be unstealable
1340# if {current-horsearmour} is false:
1341# format slot 13 of player with saddle named "&f " with lore "&f&lHorses: &aEnabled ||&f&lHorse Healing: &aEnabled ||&f&lHorse Armour: &cDisabled" to be unstealable
1342# if {current-horsehealing} is false:
1343# if {current-horsearmour} is true:
1344# format slot 13 of player with saddle named "&f " with lore "&f&lHorses: &aEnabled ||&f&lHorse Healing: &cDisabled ||&f&lHorse Armour: &aEnabled" to be unstealable
1345# if {current-horsearmour} is false:
1346# format slot 13 of player with saddle named "&f " with lore "&f&lHorses: &aEnabled ||&f&lHorse Healing: &cDisabled ||&f&lHorse Armour: &cDisabled" to be unstealable
1347# if {current-horsemount} is false:
1348# if {current-horseexplode} is true:
1349# format slot 13 of player with saddle named "&f " with lore "&f&lHorses: &cDisabled ||&f&lHorseplosions: &aEnabled" to be unstealable
1350# if {current-horseexplode} is false:
1351# format slot 13 of player with saddle named "&f " with lore "&f&lHorses: &cDisabled ||&f&lHorseplosions: &cDisabled" to be unstealable
1352#
1353#
1354# if {current-nether} is true:
1355# if {current-nethercamp} is true:
1356# if {current-nethertrap} is true:
1357# if {current-netherstrength} is true:
1358# if {current-nethersplash} is true:
1359# format slot 16 of player with netherrack named "&f " with lore "&f&lNether: &aEnabled ||&f&lPortal Camping: &aEnabled ||&f&lPortal Trapping: &aEnabled ||&f&lStrength: &aEnabled ||&f&lSplash Potions: &aEnabled" to be unstealable
1360# if {current-nethersplash} is false:
1361# format slot 16 of player with netherrack named "&f " with lore "&f&lNether: &aEnabled ||&f&lPortal Camping: &aEnabled ||&f&lPortal Trapping: &aEnabled ||&f&lStrength: &aEnabled ||&f&lSplash Potions: &cDisabled" to be unstealable
1362# if {current-netherstrength} is false:
1363# if {current-nethersplash} is true:
1364# format slot 16 of player with netherrack named "&f " with lore "&f&lNether: &aEnabled ||&f&lPortal Camping: &aEnabled ||&f&lPortal Trapping: &aEnabled ||&f&lStrength: &cDisabled ||&f&lSplash Potions: &aEnabled" to be unstealable
1365# if {current-nethersplash} is false:
1366# format slot 16 of player with netherrack named "&f " with lore "&f&lNether: &aEnabled ||&f&lPortal Camping: &aEnabled ||&f&lPortal Trapping: &aEnabled ||&f&lStrength: &cDisabled ||&f&lSplash Potions: &cDisabled" to be unstealable
1367# if {current-nethertrap} is false:
1368# if {current-netherstrength} is true:
1369# if {current-nethersplash} is true:
1370# format slot 16 of player with netherrack named "&f " with lore "&f&lNether: &aEnabled ||&f&lPortal Camping: &aEnabled ||&f&lPortal Trapping: &cDisabled ||&f&lStrength: &aEnabled ||&f&lSplash Potions: &aEnabled" to be unstealable
1371# if {current-nethersplash} is false:
1372# format slot 16 of player with netherrack named "&f " with lore "&f&lNether: &aEnabled ||&f&lPortal Camping: &aEnabled ||&f&lPortal Trapping: &cDisabled ||&f&lStrength: &aEnabled ||&f&lSplash Potions: &cDisabled" to be unstealable
1373# if {current-netherstrength} is false:
1374# if {current-nethersplash} is true:
1375# format slot 16 of player with netherrack named "&f " with lore "&f&lNether: &aEnabled ||&f&lPortal Camping: &aEnabled ||&f&lPortal Trapping: &cDisabled ||&f&lStrength: &cDisabled ||&f&lSplash Potions: &aEnabled" to be unstealable
1376# if {current-nethersplash} is false:
1377# format slot 16 of player with netherrack named "&f " with lore "&f&lNether: &aEnabled ||&f&lPortal Camping: &aEnabled ||&f&lPortal Trapping: &cDisabled ||&f&lStrength: &cDisabled ||&f&lSplash Potions: &cDisabled" to be unstealable
1378# if {current-nethercamp} is false:
1379# if {current-nethertrap} is true:
1380# if {current-netherstrength} is true:
1381# if {current-nethersplash} is true:
1382# format slot 16 of player with netherrack named "&f " with lore "&f&lNether: &aEnabled ||&f&lPortal Camping: &cDisabled ||&f&lPortal Trapping: &aEnabled ||&f&lStrength: &aEnabled ||&f&lSplash Potions: &aEnabled" to be unstealable
1383# if {current-nethersplash} is false:
1384# format slot 16 of player with netherrack named "&f " with lore "&f&lNether: &aEnabled ||&f&lPortal Camping: &cDisabled ||&f&lPortal Trapping: &aEnabled ||&f&lStrength: &aEnabled ||&f&lSplash Potions: &cDisabled" to be unstealable
1385# if {current-netherstrength} is false:
1386# if {current-nethersplash} is true:
1387# format slot 16 of player with netherrack named "&f " with lore "&f&lNether: &aEnabled ||&f&lPortal Camping: &cDisabled ||&f&lPortal Trapping: &aEnabled ||&f&lStrength: &cDisabled ||&f&lSplash Potions: &aEnabled" to be unstealable
1388# if {current-nethersplash} is false:
1389# format slot 16 of player with netherrack named "&f " with lore "&f&lNether: &aEnabled ||&f&lPortal Camping: &cDisabled ||&f&lPortal Trapping: &aEnabled ||&f&lStrength: &cDisabled ||&f&lSplash Potions: &cDisabled" to be unstealable
1390# if {current-nethertrap} is false:
1391# if {current-netherstrength} is true:
1392# if {current-nethersplash} is true:
1393# format slot 16 of player with netherrack named "&f " with lore "&f&lNether: &aEnabled ||&f&lPortal Camping: &cDisabled ||&f&lPortal Trapping: &cDisabled ||&f&lStrength: &aEnabled ||&f&lSplash Potions: &aEnabled" to be unstealable
1394# if {current-nethersplash} is false:
1395# format slot 16 of player with netherrack named "&f " with lore "&f&lNether: &aEnabled ||&f&lPortal Camping: &cDisabled ||&f&lPortal Trapping: &cDisabled ||&f&lStrength: &aEnabled ||&f&lSplash Potions: &cDisabled" to be unstealable
1396# if {current-netherstrength} is false:
1397# if {current-nethersplash} is true:
1398# format slot 16 of player with netherrack named "&f " with lore "&f&lNether: &aEnabled ||&f&lPortal Camping: &cDisabled ||&f&lPortal Trapping: &cDisabled ||&f&lStrength: &cDisabled ||&f&lSplash Potions: &aEnabled" to be unstealable
1399# if {current-nethersplash} is false:
1400# format slot 16 of player with netherrack named "&f " with lore "&f&lNether: &aEnabled ||&f&lPortal Camping: &cDisabled ||&f&lPortal Trapping: &cDisabled ||&f&lStrength: &cDisabled ||&f&lSplash Potions: &cDisabled" to be unstealable
1401# if {current-nether} is false:
1402# format slot 16 of player with netherrack named "&f " with lore "&f&lNether: &cDisabled" to be unstealable
1403#
1404#
1405# if {current-stalking} is true:
1406# format slot 37 of player with wood sword named "&f " with lore "&f&lStalking: &aAllowed ||&f&lStealing: &aAllowed ||&f&lRollercoastering: &aAllowed ||&f&lPokeholing: &cNot Allowed" to be unstealable
1407# if {current-stalking} is false:
1408# format slot 37 of player with wood sword named "&f " with lore "&f&lStalking: &cNot Allowed ||&f&lStealing: &aAllowed ||&f&lRollercoastering: &aAllowed ||&f&lPokeholing: &cNot Allowed" to be unstealable
1409#
1410#
1411# if {current-deathlightning} is true:
1412# if {current-weather} is true:
1413# if {current-enchantpre} is true:
1414# if {current-witches} is true:
1415# if {current-epdamage} is true:
1416# if {current-netherquartz} is true:
1417# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1418# if {current-netherquartz} is false:
1419# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &cUnnerfed" to be unstealable
1420# if {current-epdamage} is false:
1421# if {current-netherquartz} is true:
1422# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1423# if {current-netherquartz} is false:
1424# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &cUnnerfed" to be unstealable
1425# if {current-witches} is false:
1426# if {current-epdamage} is true:
1427# if {current-netherquartz} is true:
1428# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1429# if {current-netherquartz} is false:
1430# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &cUnnerfed" to be unstealable
1431# if {current-epdamage} is false:
1432# if {current-netherquartz} is true:
1433# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1434# if {current-netherquartz} is false:
1435# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &cUnnerfed" to be unstealable
1436# if {current-enchantpre} is false:
1437# if {current-witches} is true:
1438# if {current-epdamage} is true:
1439# if {current-netherquartz} is true:
1440# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1441# if {current-netherquartz} is false:
1442# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &cUnnerfed" to be unstealable
1443# if {current-epdamage} is false:
1444# if {current-netherquartz} is true:
1445# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1446# if {current-netherquartz} is false:
1447# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &cUnnerfed" to be unstealable
1448# if {current-witches} is false:
1449# if {current-epdamage} is true:
1450# if {current-netherquartz} is true:
1451# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1452# if {current-netherquartz} is false:
1453# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &cUnnerfed" to be unstealable
1454# if {current-epdamage} is false:
1455# if {current-netherquartz} is true:
1456# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1457# if {current-netherquartz} is false:
1458# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &cUnnerfed" to be unstealable
1459# if {current-weather} is false:
1460# if {current-enchantpre} is true:
1461# if {current-witches} is true:
1462# if {current-epdamage} is true:
1463# if {current-netherquartz} is true:
1464# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1465# if {current-netherquartz} is false:
1466# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &cUnnerfed" to be unstealable
1467# if {current-epdamage} is false:
1468# if {current-netherquartz} is true:
1469# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1470# if {current-netherquartz} is false:
1471# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &cUnnerfed" to be unstealable
1472# if {current-witches} is false:
1473# if {current-epdamage} is true:
1474# if {current-netherquartz} is true:
1475# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1476# if {current-netherquartz} is false:
1477# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &cUnnerfed" to be unstealable
1478# if {current-epdamage} is false:
1479# if {current-netherquartz} is true:
1480# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1481# if {current-netherquartz} is false:
1482# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &cUnnerfed" to be unstealable
1483# if {current-enchantpre} is false:
1484# if {current-witches} is true:
1485# if {current-epdamage} is true:
1486# if {current-netherquartz} is true:
1487# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1488# if {current-netherquartz} is false:
1489# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &cUnnerfed" to be unstealable
1490# if {current-epdamage} is false:
1491# if {current-netherquartz} is true:
1492# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1493# if {current-netherquartz} is false:
1494# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &cUnnerfed" to be unstealable
1495# if {current-witches} is false:
1496# if {current-epdamage} is true:
1497# if {current-netherquartz} is true:
1498# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1499# if {current-netherquartz} is false:
1500# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &cUnnerfed" to be unstealable
1501# if {current-epdamage} is false:
1502# if {current-netherquartz} is true:
1503# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1504# if {current-netherquartz} is false:
1505# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &aEnabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &cUnnerfed" to be unstealable
1506# if {current-deathlightning} is false:
1507# if {current-weather} is true:
1508# if {current-enchantpre} is true:
1509# if {current-witches} is true:
1510# if {current-epdamage} is true:
1511# if {current-netherquartz} is true:
1512# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1513# if {current-netherquartz} is false:
1514# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &cUnnerfed" to be unstealable
1515# if {current-epdamage} is false:
1516# if {current-netherquartz} is true:
1517# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1518# if {current-netherquartz} is false:
1519# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &cUnnerfed" to be unstealable
1520# if {current-witches} is false:
1521# if {current-epdamage} is true:
1522# if {current-netherquartz} is true:
1523# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1524# if {current-netherquartz} is false:
1525# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &cUnnerfed" to be unstealable
1526# if {current-epdamage} is false:
1527# if {current-netherquartz} is true:
1528# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1529# if {current-netherquartz} is false:
1530# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &cUnnerfed" to be unstealable
1531# if {current-enchantpre} is false:
1532# if {current-witches} is true:
1533# if {current-epdamage} is true:
1534# if {current-netherquartz} is true:
1535# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1536# if {current-netherquartz} is false:
1537# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &cUnnerfed" to be unstealable
1538# if {current-epdamage} is false:
1539# if {current-netherquartz} is true:
1540# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1541# if {current-netherquartz} is false:
1542# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &cUnnerfed" to be unstealable
1543# if {current-witches} is false:
1544# if {current-epdamage} is true:
1545# if {current-netherquartz} is true:
1546# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1547# if {current-netherquartz} is false:
1548# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &cUnnerfed" to be unstealable
1549# if {current-epdamage} is false:
1550# if {current-netherquartz} is true:
1551# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1552# if {current-netherquartz} is false:
1553# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &aAuto-toggled ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &cUnnerfed" to be unstealable
1554# if {current-weather} is false:
1555# if {current-enchantpre} is true:
1556# if {current-witches} is true:
1557# if {current-epdamage} is true:
1558# if {current-netherquartz} is true:
1559# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1560# if {current-netherquartz} is false:
1561# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &cUnnerfed" to be unstealable
1562# if {current-epdamage} is false:
1563# if {current-netherquartz} is true:
1564# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1565# if {current-netherquartz} is false:
1566# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &cUnnerfed" to be unstealable
1567# if {current-witches} is false:
1568# if {current-epdamage} is true:
1569# if {current-netherquartz} is true:
1570# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1571# if {current-netherquartz} is false:
1572# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &cUnnerfed" to be unstealable
1573# if {current-epdamage} is false:
1574# if {current-netherquartz} is true:
1575# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1576# if {current-netherquartz} is false:
1577# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &aEnabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &cUnnerfed" to be unstealable
1578# if {current-enchantpre} is false:
1579# if {current-witches} is true:
1580# if {current-epdamage} is true:
1581# if {current-netherquartz} is true:
1582# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1583# if {current-netherquartz} is false:
1584# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &cUnnerfed" to be unstealable
1585# if {current-epdamage} is false:
1586# if {current-netherquartz} is true:
1587# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1588# if {current-netherquartz} is false:
1589# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &aEnabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &cUnnerfed" to be unstealable
1590# if {current-witches} is false:
1591# if {current-epdamage} is true:
1592# if {current-netherquartz} is true:
1593# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1594# if {current-netherquartz} is false:
1595# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &a1 Heart ||&f&lQuartz: &cUnnerfed" to be unstealable
1596# if {current-epdamage} is false:
1597# if {current-netherquartz} is true:
1598# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &aNerfed by 50%%" to be unstealable
1599# if {current-netherquartz} is false:
1600# format slot 40 of player with creeper head named "&f " with lore "&f&lDeath Lightning: &cDisabled ||&f&lWeather: &cVanilla ||&f&lEnchant Preview: &cDisabled ||&f&lWitch Spawns: &cDisabled ||&f&lEnderpearl Damage: &cDisabled ||&f&lQuartz: &cUnnerfed" to be unstealable
1601#
1602# if {current-applerates} is set:
1603# if {current-flintrates} is set:
1604# if {current-diamondrates} is set:
1605# if {current-goldrates} is set:
1606# format slot 43 of player with apple named "&f " with lore "&f&lApple Rates: &a%{current-applerates}%%% ||&f&lFlint Rates: &a%{current-flintrates}%%% ||&f&lDiamond Rates: &a%{current-diamondrates}%%% ||&f&lGold Rates: &a%{current-goldrates}%%%" to be unstealable
1607
1608
1609command /uhc:
1610 trigger:
1611 open chest with 1 row named "&f&lGame Configuration" to player
1612 wait 1 tick
1613
1614 if {current-headheal} is "off":
1615 if {current-absorption} is false:
1616 if {current-godapple} is false:
1617 if {current-headstack} is false:
1618 format slot 0 of player with golden apple:0 named "&f&lHealing Information" with lore "&f&lHeads: &c&lOff ||&f&lAbsorption: &c&lOff ||&f&lGod/Notch Apples: &c&lOff" to be unstealable
1619 if {current-godapple} is true:
1620 format slot 0 of player with golden apple:0 named "&f&lHealing Information" with lore "&f&lHeads: &c&lOff ||&f&lAbsorption: &c&lOff ||&f&lGod/Notch Apples: &a&lOn" to be unstealable
1621 if {current-absorption} is true:
1622 if {current-godapple} is false:
1623 if {current-headstack} is false:
1624 format slot 0 of player with golden apple:0 named "&f&lHealing Information" with lore "&f&lHeads: &c&lOff ||&f&lAbsorption: &a&lOn ||&f&lGod/Notch Apples: &c&lOff" to be unstealable
1625 if {current-godapple} is true:
1626 format slot 0 of player with golden apple:0 named "&f&lHealing Information" with lore "&f&lHeads: &c&lOff ||&f&lAbsorption: &a&lOn ||&f&lGod/Notch Apples: &a&lOn" to be unstealable
1627 if {current-headheal} is "3":
1628 if {current-absorption} is false:
1629 if {current-godapple} is false:
1630 if {current-headstack} is false:
1631 format slot 0 of player with golden apple:0 named "&f&lHealing Information" with lore "&f&lHeads: &a&lOn - Heal 3 Hearts ||&f&lHeads Stack: &c&lUnstackable ||&f&lAbsorption: &c&lOff ||&f&lGod/Notch Apples: &c&lOff" to be unstealable
1632 if {current-headstack} is true:
1633 format slot 0 of player with golden apple:0 named "&f&lHealing Information" with lore "&f&lHeads: &a&lOn - Heal 3 Hearts ||&f&lHeads Stack: &a&lStackable ||&f&lAbsorption: &c&lOff ||&f&lGod/Notch Apples: &c&lOff" to be unstealable
1634 if {current-godapple} is true:
1635 if {current-headstack} is false:
1636 format slot 0 of player with golden apple:0 named "&f&lHealing Information" with lore "&f&lHeads: &a&lOn - Heal 3 Hearts ||&f&lHeads Stack: &c&lUnstackable ||&f&lAbsorption: &c&lOff ||&f&lGod/Notch Apples: &a&lOn" to be unstealable
1637 if {current-headstack} is true:
1638 format slot 0 of player with golden apple:0 named "&f&lHealing Information" with lore "&f&lHeads: &a&lOn - Heal 3 Hearts ||&f&lHeads Stack: &a&lStackable ||&f&lAbsorption: &c&lOff ||&f&lGod/Notch Apples: &a&lOn" to be unstealable
1639 if {current-absorption} is true:
1640 if {current-godapple} is false:
1641 if {current-headstack} is false:
1642 format slot 0 of player with golden apple:0 named "&f&lHealing Information" with lore "&f&lHeads: &a&lOn - Heal 3 Hearts ||&f&lHeads Stack: &c&lUnstackable ||&f&lAbsorption: &a&lOn ||&f&lGod/Notch Apples: &c&lOff" to be unstealable
1643 if {current-headstack} is true:
1644 format slot 0 of player with golden apple:0 named "&f&lHealing Information" with lore "&f&lHeads: &a&lOn - Heal 3 Hearts ||&f&lHeads Stack: &a&lStackable ||&f&lAbsorption: &a&lOn ||&f&lGod/Notch Apples: &c&lOff" to be unstealable
1645 if {current-godapple} is true:
1646 if {current-headstack} is false:
1647 format slot 0 of player with golden apple:0 named "&f&lHealing Information" with lore "&f&lHeads: &a&lOn - Heal 3 Hearts ||&f&lHeads Stack: &c&lUnstackable ||&f&lAbsorption: &a&lOn ||&f&lGod/Notch Apples: &a&lOn" to be unstealable
1648 if {current-headstack} is true:
1649 format slot 0 of player with golden apple:0 named "&f&lHealing Information" with lore "&f&lHeads: &a&lOn - Heal 3 Hearts ||&f&lHeads Stack: &a&lStackable ||&f&lAbsorption: &a&lOn ||&f&lGod/Notch Apples: &a&lOn" to be unstealable
1650 if {current-headheal} is "4":
1651 if {current-absorption} is false:
1652 if {current-godapple} is false:
1653 if {current-headstack} is false:
1654 format slot 0 of player with golden apple:0 named "&f&lHealing Information" with lore "&f&lHeads: &a&lOn - Heal 4 Hearts ||&f&lHeads Stack: &c&lUnstackable ||&f&lAbsorption: &c&lOff ||&f&lGod/Notch Apples: &c&lOff" to be unstealable
1655 if {current-headstack} is true:
1656 format slot 0 of player with golden apple:0 named "&f&lHealing Information" with lore "&f&lHeads: &a&lOn - Heal 4 Hearts ||&f&lHeads Stack: &a&lStackable ||&f&lAbsorption: &c&lOff ||&f&lGod/Notch Apples: &c&lOff" to be unstealable
1657 if {current-godapple} is true:
1658 if {current-headstack} is false:
1659 format slot 0 of player with golden apple:0 named "&f&lHealing Information" with lore "&f&lHeads: &a&lOn - Heal 4 Hearts ||&f&lHeads Stack: &c&lUnstackable ||&f&lAbsorption: &c&lOff ||&f&lGod/Notch Apples: &a&lOn" to be unstealable
1660 if {current-headstack} is true:
1661 format slot 0 of player with golden apple:0 named "&f&lHealing Information" with lore "&f&lHeads: &a&lOn - Heal 4 Hearts ||&f&lHeads Stack: &a&lStackable ||&f&lAbsorption: &c&lOff ||&f&lGod/Notch Apples: &a&lOn" to be unstealable
1662 if {current-absorption} is true:
1663 if {current-godapple} is false:
1664 if {current-headstack} is false:
1665 format slot 0 of player with golden apple:0 named "&f&lHealing Information" with lore "&f&lHeads: &a&lOn - Heal 4 Hearts ||&f&lHeads Stack: &c&lUnstackable ||&f&lAbsorption: &a&lOn ||&f&lGod/Notch Apples: &c&lOff" to be unstealable
1666 if {current-headstack} is true:
1667 format slot 0 of player with golden apple:0 named "&f&lHealing Information" with lore "&f&lHeads: &a&lOn - Heal 4 Hearts ||&f&lHeads Stack: &a&lStackable ||&f&lAbsorption: &a&lOn ||&f&lGod/Notch Apples: &c&lOff" to be unstealable
1668 if {current-godapple} is true:
1669 if {current-headstack} is false:
1670 format slot 0 of player with golden apple:0 named "&f&lHealing Information" with lore "&f&lHeads: &a&lOn - Heal 4 Hearts ||&f&lHeads Stack: &c&lUnstackable ||&f&lAbsorption: &a&lOn ||&f&lGod/Notch Apples: &a&lOn" to be unstealable
1671 if {current-headstack} is true:
1672 format slot 0 of player with golden apple:0 named "&f&lHealing Information" with lore "&f&lHeads: &a&lOn - Heal 4 Hearts ||&f&lHeads Stack: &a&lStackable ||&f&lAbsorption: &a&lOn ||&f&lGod/Notch Apples: &a&lOn" to be unstealable
1673
1674 if {current-horsemount} is false:
1675 if {current-horseexplode} is false:
1676 format slot 1 of player with saddle named "&f&lHorse Information" with lore "&f&lHorse Mounting: &c&lOff ||&f&lHorse Taming: &c&lUneffected" to be unstealable
1677 if {current-horseexplode} is true:
1678 format slot 1 of player with saddle named "&f&lHorse Information" with lore "&f&lHorse Mounting: &c&lOff ||&f&lHorse Taming: &a&lExplosive" to be unstealable
1679 if {current-horsemount} is true:
1680 if {current-horseexplode} is false:
1681 format slot 1 of player with saddle named "&f&lHorse Information" with lore "&f&lHorse Mounting: &c&lOff ||&f&lHorse Armour: &c&lOff ||&f&lHorse Healing: &c&lOff ||&f&lHorse Taming: &c&lUneffected" to be unstealable
1682 if {current-horseexplode} is true:
1683 format slot 1 of player with saddle named "&f&lHorse Information" with lore "&f&lHorse Mounting: &c&lOff ||&f&lHorse Armour: &c&lOff ||&f&lHorse Healing: &c&lOff ||&f&lHorse Taming: &a&lExplosive" to be unstealable
1684
1685 if {current-nether} is false:
1686 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether: &c&lOff" to be unstealable
1687 if {current-nether} is true:
1688 if {current-nethercamp} is false:
1689 if {current-nethertrap} is false:
1690 if {current-nethersplash} is false:
1691 if {current-netherstrength} is false:
1692 if {current-nethertier2} is false:
1693 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &c&lOff ||&f&lTrapping: &c&lOff ||&f&lSplash Potions: &c&lOff ||&f&lStrength: &c&lOff ||&f&lTier 2 Potions: &c&lOff" to be unstealable
1694 if {current-nethertier2} is true:
1695 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &c&lOff ||&f&lTrapping: &c&lOff ||&f&lSplash Potions: &c&lOff ||&f&lStrength: &c&lOff ||&f&lTier 2 Potions: &a&lOn" to be unstealable
1696 if {current-netherstrength} is true:
1697 if {current-nethertier2} is false:
1698 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &c&lOff ||&f&lTrapping: &c&lOff ||&f&lSplash Potions: &c&lOff ||&f&lStrength: &a&lOn ||&f&lTier 2 Potions: &c&lOff" to be unstealable
1699 if {current-nethertier2} is true:
1700 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &c&lOff ||&f&lTrapping: &c&lOff ||&f&lSplash Potions: &c&lOff ||&f&lStrength: &a&lOn ||&f&lTier 2 Potions: &a&lOn" to be unstealable
1701 if {current-nethersplash} is true:
1702 if {current-netherstrength} is false:
1703 if {current-nethertier2} is false:
1704 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &c&lOff ||&f&lTrapping: &c&lOff ||&f&lSplash Potions: &a&lOn ||&f&lStrength: &c&lOff ||&f&lTier 2 Potions: &c&lOff" to be unstealable
1705 if {current-nethertier2} is true:
1706 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &c&lOff ||&f&lTrapping: &c&lOff ||&f&lSplash Potions: &a&lOn ||&f&lStrength: &c&lOff ||&f&lTier 2 Potions: &a&lOn" to be unstealable
1707 if {current-netherstrength} is true:
1708 if {current-nethertier2} is false:
1709 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &c&lOff ||&f&lTrapping: &c&lOff ||&f&lSplash Potions: &a&lOn ||&f&lStrength: &a&lOn ||&f&lTier 2 Potions: &c&lOff" to be unstealable
1710 if {current-nethertier2} is true:
1711 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &c&lOff ||&f&lTrapping: &c&lOff ||&f&lSplash Potions: &a&lOn ||&f&lStrength: &a&lOn ||&f&lTier 2 Potions: &a&lOn" to be unstealable
1712 if {current-nethertrap} is true:
1713 if {current-nethersplash} is false:
1714 if {current-netherstrength} is false:
1715 if {current-nethertier2} is false:
1716 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &c&lOff ||&f&lTrapping: &a&lOn ||&f&lSplash Potions: &c&lOff ||&f&lStrength: &c&lOff ||&f&lTier 2 Potions: &c&lOff" to be unstealable
1717 if {current-nethertier2} is true:
1718 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &c&lOff ||&f&lTrapping: &a&lOn ||&f&lSplash Potions: &c&lOff ||&f&lStrength: &c&lOff ||&f&lTier 2 Potions: &a&lOn" to be unstealable
1719 if {current-netherstrength} is true:
1720 if {current-nethertier2} is false:
1721 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &c&lOff ||&f&lTrapping: &a&lOn ||&f&lSplash Potions: &c&lOff ||&f&lStrength: &a&lOn ||&f&lTier 2 Potions: &c&lOff" to be unstealable
1722 if {current-nethertier2} is true:
1723 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &c&lOff ||&f&lTrapping: &a&lOn ||&f&lSplash Potions: &c&lOff ||&f&lStrength: &a&lOn ||&f&lTier 2 Potions: &a&lOn" to be unstealable
1724 if {current-nethersplash} is true:
1725 if {current-netherstrength} is false:
1726 if {current-nethertier2} is false:
1727 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &c&lOff ||&f&lTrapping: &a&lOn ||&f&lSplash Potions: &a&lOn ||&f&lStrength: &c&lOff ||&f&lTier 2 Potions: &c&lOff" to be unstealable
1728 if {current-nethertier2} is true:
1729 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &c&lOff ||&f&lTrapping: &a&lOn ||&f&lSplash Potions: &a&lOn ||&f&lStrength: &c&lOff ||&f&lTier 2 Potions: &a&lOn" to be unstealable
1730 if {current-netherstrength} is true:
1731 if {current-nethertier2} is false:
1732 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &c&lOff ||&f&lTrapping: &a&lOn ||&f&lSplash Potions: &a&lOn ||&f&lStrength: &a&lOn ||&f&lTier 2 Potions: &c&lOff" to be unstealable
1733 if {current-nethertier2} is true:
1734 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &c&lOff ||&f&lTrapping: &a&lOn ||&f&lSplash Potions: &a&lOn ||&f&lStrength: &a&lOn ||&f&lTier 2 Potions: &a&lOn" to be unstealable
1735 if {current-nethercamp} is true:
1736 if {current-nethertrap} is false:
1737 if {current-nethersplash} is false:
1738 if {current-netherstrength} is false:
1739 if {current-nethertier2} is false:
1740 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &a&lOn ||&f&lTrapping: &c&lOff ||&f&lSplash Potions: &c&lOff ||&f&lStrength: &c&lOff ||&f&lTier 2 Potions: &c&lOff" to be unstealable
1741 if {current-nethertier2} is true:
1742 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &a&lOn ||&f&lTrapping: &c&lOff ||&f&lSplash Potions: &c&lOff ||&f&lStrength: &c&lOff ||&f&lTier 2 Potions: &a&lOn" to be unstealable
1743 if {current-netherstrength} is true:
1744 if {current-nethertier2} is false:
1745 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &a&lOn ||&f&lTrapping: &c&lOff ||&f&lSplash Potions: &c&lOff ||&f&lStrength: &a&lOn ||&f&lTier 2 Potions: &c&lOff" to be unstealable
1746 if {current-nethertier2} is true:
1747 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &a&lOn ||&f&lTrapping: &c&lOff ||&f&lSplash Potions: &c&lOff ||&f&lStrength: &a&lOn ||&f&lTier 2 Potions: &a&lOn" to be unstealable
1748 if {current-nethersplash} is true:
1749 if {current-netherstrength} is false:
1750 if {current-nethertier2} is false:
1751 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &a&lOn ||&f&lTrapping: &c&lOff ||&f&lSplash Potions: &a&lOn ||&f&lStrength: &c&lOff ||&f&lTier 2 Potions: &c&lOff" to be unstealable
1752 if {current-nethertier2} is true:
1753 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &a&lOn ||&f&lTrapping: &c&lOff ||&f&lSplash Potions: &a&lOn ||&f&lStrength: &c&lOff ||&f&lTier 2 Potions: &a&lOn" to be unstealable
1754 if {current-netherstrength} is true:
1755 if {current-nethertier2} is false:
1756 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &a&lOn ||&f&lTrapping: &c&lOff ||&f&lSplash Potions: &a&lOn ||&f&lStrength: &a&lOn ||&f&lTier 2 Potions: &c&lOff" to be unstealable
1757 if {current-nethertier2} is true:
1758 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &a&lOn ||&f&lTrapping: &c&lOff ||&f&lSplash Potions: &a&lOn ||&f&lStrength: &a&lOn ||&f&lTier 2 Potions: &a&lOn" to be unstealable
1759 if {current-nethertrap} is true:
1760 if {current-nethersplash} is false:
1761 if {current-netherstrength} is false:
1762 if {current-nethertier2} is false:
1763 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &a&lOn ||&f&lTrapping: &a&lOn ||&f&lSplash Potions: &c&lOff ||&f&lStrength: &c&lOff ||&f&lTier 2 Potions: &c&lOff" to be unstealable
1764 if {current-nethertier2} is true:
1765 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &a&lOn ||&f&lTrapping: &a&lOn ||&f&lSplash Potions: &c&lOff ||&f&lStrength: &c&lOff ||&f&lTier 2 Potions: &a&lOn" to be unstealable
1766 if {current-netherstrength} is true:
1767 if {current-nethertier2} is false:
1768 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &a&lOn ||&f&lTrapping: &a&lOn ||&f&lSplash Potions: &c&lOff ||&f&lStrength: &a&lOn ||&f&lTier 2 Potions: &c&lOff" to be unstealable
1769 if {current-nethertier2} is true:
1770 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &a&lOn ||&f&lTrapping: &a&lOn ||&f&lSplash Potions: &c&lOff ||&f&lStrength: &a&lOn ||&f&lTier 2 Potions: &a&lOn" to be unstealable
1771 if {current-nethersplash} is true:
1772 if {current-netherstrength} is false:
1773 if {current-nethertier2} is false:
1774 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &a&lOn ||&f&lTrapping: &a&lOn ||&f&lSplash Potions: &a&lOn ||&f&lStrength: &c&lOff ||&f&lTier 2 Potions: &c&lOff" to be unstealable
1775 if {current-nethertier2} is true:
1776 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &a&lOn ||&f&lTrapping: &a&lOn ||&f&lSplash Potions: &a&lOn ||&f&lStrength: &c&lOff ||&f&lTier 2 Potions: &a&lOn" to be unstealable
1777 if {current-netherstrength} is true:
1778 if {current-nethertier2} is false:
1779 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &a&lOn ||&f&lTrapping: &a&lOn ||&f&lSplash Potions: &a&lOn ||&f&lStrength: &a&lOn ||&f&lTier 2 Potions: &c&lOff" to be unstealable
1780 if {current-nethertier2} is true:
1781 format slot 2 of player with netherrack named "&f&lNether Information" with lore "&f&lNether:&a&l On ||&f&lCamping: &a&lOn ||&f&lTrapping: &a&lOn ||&f&lSplash Potions: &a&lOn ||&f&lStrength: &a&lOn ||&f&lTier 2 Potions: &a&lOn" to be unstealable
1782 if {current-arrowoutput} is "4":
1783 if {current-epdamage} is false:
1784 if {current-witches} is false:
1785 if {current-fireweapons} is "3":
1786 if {current-deathlightning} is false:
1787 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &c&lOff ||&f&lFire Weapons: &c&lOff ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a4-per-craft" to be unstealable
1788 if {current-deathlightning} is true:
1789 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &c&lOff ||&f&lFire Weapons: &c&lOff ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a4-per-craft" to be unstealable
1790 if {current-fireweapons} is "1":
1791 if {current-deathlightning} is false:
1792 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &c&lOff ||&f&lFire Weapons: &a&lOn ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a4-per-craft" to be unstealable
1793 if {current-deathlightning} is true:
1794 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &c&lOff ||&f&lFire Weapons: &a&lOn ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a4-per-craft" to be unstealable
1795 if {current-fireweapons} is "2":
1796 if {current-deathlightning} is false:
1797 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &c&lOff ||&f&lFlame: &a&lOn ||&f&lFire Aspect: &c&lOff ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a4-per-craft" to be unstealable
1798 if {current-deathlightning} is true:
1799 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &c&lOff ||&f&lFlame: &a&lOn ||&f&lFire Aspect: &c&lOff ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a4-per-craft" to be unstealable
1800 if {current-witches} is true:
1801 if {current-fireweapons} is "3":
1802 if {current-deathlightning} is false:
1803 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &a&lOn ||&f&lFire Weapons: &c&lOff ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a4-per-craft" to be unstealable
1804 if {current-deathlightning} is true:
1805 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &a&lOn ||&f&lFire Weapons: &c&lOff ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a4-per-craft" to be unstealable
1806 if {current-fireweapons} is "1":
1807 if {current-deathlightning} is false:
1808 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &a&lOn ||&f&lFire Weapons: &a&lOn ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a4-per-craft" to be unstealable
1809 if {current-deathlightning} is true:
1810 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &a&lOn ||&f&lFire Weapons: &a&lOn ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a4-per-craft" to be unstealable
1811 if {current-fireweapons} is "2":
1812 if {current-deathlightning} is false:
1813 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &a&lOn ||&f&lFlame: &a&lOn ||&f&lFire Aspect: &c&lOff ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a4-per-craft" to be unstealable
1814 if {current-deathlightning} is true:
1815 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &a&lOn ||&f&lFlame: &a&lOn ||&f&lFire Aspect: &c&lOff ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a4-per-craft" to be unstealable
1816 if {current-epdamage} is true:
1817 if {current-witches} is false:
1818 if {current-fireweapons} is "3":
1819 if {current-deathlightning} is false:
1820 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart ||&f&lWitch Spawns: &a&lOn ||&f&lFire Weapons: &c&lOff ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a4-per-craft" to be unstealable
1821 if {current-deathlightning} is true:
1822 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart ||&f&lWitch Spawns: &a&lOn ||&f&lFire Weapons: &c&lOff ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a4-per-craft" to be unstealable
1823 if {current-fireweapons} is "1":
1824 if {current-deathlightning} is false:
1825 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart ||&f&lWitch Spawns: &a&lOn ||&f&lFire Weapons: &a&lOn ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a4-per-craft" to be unstealable
1826 if {current-deathlightning} is true:
1827 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart ||&f&lWitch Spawns: &a&lOn ||&f&lFire Weapons: &a&lOn ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a4-per-craft" to be unstealable
1828 if {current-fireweapons} is "2":
1829 if {current-deathlightning} is false:
1830 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart||&f&lWitch Spawns: &a&lOn ||&f&lFlame: &a&lOn ||&f&lFire Aspect: &c&lOff ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a4-per-craft" to be unstealable
1831 if {current-deathlightning} is true:
1832 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart ||&f&lWitch Spawns: &a&lOn ||&f&lFlame: &a&lOn ||&f&lFire Aspect: &c&lOff ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a4-per-craft" to be unstealable
1833 if {current-witches} is true:
1834 if {current-fireweapons} is "3":
1835 if {current-deathlightning} is false:
1836 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart ||&f&lWitch Spawns: &a&lOn ||&f&lFire Weapons: &c&lOff ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a4-per-craft" to be unstealable
1837 if {current-deathlightning} is true:
1838 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart ||&f&lWitch Spawns: &a&lOn ||&f&lFire Weapons: &c&lOff ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a4-per-craft" to be unstealable
1839 if {current-fireweapons} is "1":
1840 if {current-deathlightning} is false:
1841 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart ||&f&lWitch Spawns: &a&lOn ||&f&lFire Weapons: &a&lOn ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a4-per-craft" to be unstealable
1842 if {current-deathlightning} is true:
1843 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart ||&f&lWitch Spawns: &a&lOn ||&f&lFire Weapons: &a&lOn ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a4-per-craft" to be unstealable
1844 if {current-fireweapons} is "2":
1845 if {current-deathlightning} is false:
1846 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart ||&f&lWitch Spawns: &a&lOn ||&f&lFlame: &a&lOn ||&f&lFire Aspect: &c&lOff ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a4-per-craft" to be unstealable
1847 if {current-deathlightning} is true:
1848 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart ||&f&lWitch Spawns: &a&lOn ||&f&lFlame: &a&lOn ||&f&lFire Aspect: &c&lOff ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a4-per-craft" to be unstealable
1849 if {current-arrowoutput} is "8":
1850 if {current-epdamage} is false:
1851 if {current-witches} is false:
1852 if {current-fireweapons} is "3":
1853 if {current-deathlightning} is false:
1854 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &c&lOff ||&f&lFire Weapons: &c&lOff ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a8-per-craft" to be unstealable
1855 if {current-deathlightning} is true:
1856 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &c&lOff ||&f&lFire Weapons: &c&lOff ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a8-per-craft" to be unstealable
1857 if {current-fireweapons} is "1":
1858 if {current-deathlightning} is false:
1859 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &c&lOff ||&f&lFire Weapons: &a&lOn ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a8-per-craft" to be unstealable
1860 if {current-deathlightning} is true:
1861 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &c&lOff ||&f&lFire Weapons: &a&lOn ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a8-per-craft" to be unstealable
1862 if {current-fireweapons} is "2":
1863 if {current-deathlightning} is false:
1864 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &c&lOff ||&f&lFlame: &a&lOn ||&f&lFire Aspect: &c&lOff ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a8-per-craft" to be unstealable
1865 if {current-deathlightning} is true:
1866 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &c&lOff ||&f&lFlame: &a&lOn ||&f&lFire Aspect: &c&lOff ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a8-per-craft" to be unstealable
1867 if {current-witches} is true:
1868 if {current-fireweapons} is "3":
1869 if {current-deathlightning} is false:
1870 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &a&lOn ||&f&lFire Weapons: &c&lOff ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a8-per-craft" to be unstealable
1871 if {current-deathlightning} is true:
1872 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &a&lOn ||&f&lFire Weapons: &c&lOff ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a8-per-craft" to be unstealable
1873 if {current-fireweapons} is "1":
1874 if {current-deathlightning} is false:
1875 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &a&lOn ||&f&lFire Weapons: &a&lOn ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a8-per-craft" to be unstealable
1876 if {current-deathlightning} is true:
1877 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &a&lOn ||&f&lFire Weapons: &a&lOn ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a8-per-craft" to be unstealable
1878 if {current-fireweapons} is "2":
1879 if {current-deathlightning} is false:
1880 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &a&lOn ||&f&lFlame: &a&lOn ||&f&lFire Aspect: &c&lOff ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a8-per-craft" to be unstealable
1881 if {current-deathlightning} is true:
1882 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &c&lOff ||&f&lWitch Spawns: &a&lOn ||&f&lFlame: &a&lOn ||&f&lFire Aspect: &c&lOff ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a8-per-craft" to be unstealable
1883 if {current-epdamage} is true:
1884 if {current-witches} is false:
1885 if {current-fireweapons} is "3":
1886 if {current-deathlightning} is false:
1887 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart||&f&lWitch Spawns: &c&lOff ||&f&lFire Weapons: &c&lOff ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a8-per-craft" to be unstealable
1888 if {current-deathlightning} is true:
1889 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart||&f&lWitch Spawns: &c&lOff ||&f&lFire Weapons: &c&lOff ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a8-per-craft" to be unstealable
1890 if {current-fireweapons} is "1":
1891 if {current-deathlightning} is false:
1892 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart||&f&lWitch Spawns: &c&lOff ||&f&lFire Weapons: &a&lOn ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a8-per-craft" to be unstealable
1893 if {current-deathlightning} is true:
1894 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart||&f&lWitch Spawns: &c&lOff ||&f&lFire Weapons: &a&lOn ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a8-per-craft" to be unstealable
1895 if {current-fireweapons} is "2":
1896 if {current-deathlightning} is false:
1897 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart||&f&lWitch Spawns: &c&lOff ||&f&lFlame: &a&lOn ||&f&lFire Aspect: &c&lOff ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a8-per-craft" to be unstealable
1898 if {current-deathlightning} is true:
1899 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart||&f&lWitch Spawns: &c&lOff ||&f&lFlame: &a&lOn ||&f&lFire Aspect: &c&lOff ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a8-per-craft" to be unstealable
1900 if {current-witches} is true:
1901 if {current-fireweapons} is "3":
1902 if {current-deathlightning} is false:
1903 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart||&f&lWitch Spawns: &a&lOn ||&f&lFire Weapons: &c&lOff ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a8-per-craft" to be unstealable
1904 if {current-deathlightning} is true:
1905 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart||&f&lWitch Spawns: &a&lOn ||&f&lFire Weapons: &c&lOff ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a8-per-craft" to be unstealable
1906 if {current-fireweapons} is "1":
1907 if {current-deathlightning} is false:
1908 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart||&f&lWitch Spawns: &a&lOn ||&f&lFire Weapons: &a&lOn ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a8-per-craft" to be unstealable
1909 if {current-deathlightning} is true:
1910 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart||&f&lWitch Spawns: &a&lOn ||&f&lFire Weapons: &a&lOn ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a8-per-craft" to be unstealable
1911 if {current-fireweapons} is "2":
1912 if {current-deathlightning} is false:
1913 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart||&f&lWitch Spawns: &a&lOn ||&f&lFlame: &a&lOn ||&f&lFire Aspect: &c&lOff ||&f&lDeath Lightning: &c&lOff ||&f&lArrow Count: &a8-per-craft" to be unstealable
1914 if {current-deathlightning} is true:
1915 format slot 3 of player with ender pearl named "&f&lMisc Information" with lore "&f&lEnderpearl Damage: &a&lOn - 1 Heart||&f&lWitch Spawns: &a&lOn ||&f&lFlame: &a&lOn ||&f&lFire Aspect: &c&lOff ||&f&lDeath Lightning: &a&lOn ||&f&lArrow Count: &a8-per-craft" to be unstealable
1916 format slot 4 of player with wood sword named "&f&lPvP Information" with lore "&f&lStalking: &a&lAllowed ||&f&lExcessive Stalking: &c&lDisallowed" to be unstealable
1917 format slot 5 of player with wood pickaxe named "&f&lMining Information" with lore "&f&lStripmining: &c&lDisallowed ||&f&lRollercoastering: &a&lAllowed (Y32->Y0->Y32) ||&f&lStaircasing: &a&lAllowed" to be unstealable
1918
1919 format slot 6 of player with apple named "&f&lRates Information" with lore "&f&lApple Rates: &a&l%{current-applerates}%%% ||&f&lShears: &a&lOn (All Trees) ||&f&lFlint Rates: &a&l%{current-flintrates}%%% ||&f&lDiamond Rates: &a&l%{current-diamondrates}%%% ||&f&lGold Rates: &a&l%{current-goldrates}%%%" to be unstealable
1920
1921
1922
1923
1924
1925
1926
1927#
1928#
1929#
1930#
1931#
1932#
1933#
1934#
1935#
1936#
1937#
1938command /clearxp:
1939 permission: sk.op
1940 trigger:
1941 loop all players:
1942 command "/xp set %loop-player% 0"
1943
1944
1945command /start <integer> <integer>:
1946 permission: sk.op
1947 usage: /start <time until pvp> <time from pvp until meetup>
1948 trigger:
1949
1950 if {uhc} is true:
1951 message "&1[&f&lHarbored&1]&f There is already a UHC in progress."
1952 else:
1953
1954 set {_count} to 0
1955 loop 36 times:
1956 loop all players:
1957 delete {respawn.%loop-player%.%{_count}%.main}
1958 delete {deathkill.%loop-player%.%{_count}%.main}
1959 add 1 to {_count}
1960 loop all players:
1961 delete {respawn.%loop-player%.helmet.main}
1962 delete {respawn.%loop-player%.chestplate.main}
1963 delete {respawn.%loop-player%.leggings.main}
1964 delete {respawn.%loop-player%.boots.main}
1965 delete {respawn.%loop-player%}
1966 delete {deathkill.%loop-player%.location}
1967 delete {deathkill.%loop-player%.boots.main}
1968 delete {deathkill.%loop-player%.leggings.main}
1969 delete {deathkill.%loop-player%.chestplate.main}
1970 delete {deathkill.%loop-player%.helmet.main}
1971 delete {deathkill.joinclear.%loop-player%}
1972
1973 set {uhc} to true
1974 delete {allowbreak}
1975 command "/killboard off"
1976 wait 1 tick
1977 command "/killboard on"
1978 command "/apples set %{current-applerates}%"
1979 command "/flint set %{current-flintrates}%"
1980 make player execute "/mw link HARB%{worldcount}% HARB%{worldcount}%_nether"
1981 make player execute "/mw link HARB%{worldcount}%_nether HARB%{worldcount}%"
1982 make player execute "/minecraft:worldborder damage amount 0"
1983 make player execute "/pvp disable"
1984
1985 if {current-headheal} is "off":
1986 make player execute command "/feature off PlayerHeads"
1987 else:
1988 if {current-headstack} is true:
1989 make player execute command "/feature off PlayerHeads"
1990 else:
1991 make player execute command "/feature on PlayerHeads"
1992 if {current-deathlightning} is true:
1993 make player execute "/feature on DeathLightning"
1994 else:
1995 make player execute "/feature off DeathLightning"
1996 make player execute command "/feature off Enderpearls"
1997 make player execute command "/feature off HardRecipes"
1998 command "/heal *"
1999 command "/feed *"
2000 loop 3 times:
2001 broadcast ""
2002 broadcast "&f&m--------------------------"
2003 broadcast "&bHarbored UHC Starting in 30 seconds"
2004 broadcast "&bIn 10 seconds you'll be shown the configuration menu"
2005 broadcast "&bTo reopen this during the game, use /uhc"
2006 broadcast "&f&m--------------------------"
2007 wait 10 seconds
2008 loop all players:
2009 make player execute command "/uhc"
2010 wait 13 seconds
2011 command "/freeze"
2012 wait 7 seconds
2013 command "/timer cancel"
2014 wait 1 tick
2015 set {_pvptime} to (arg-1 * 60)
2016 command "/timer %{_pvptime}% &3&lPvP &b»&f&l"
2017 broadcast "&f&m--------------------------"
2018 broadcast "&bHarbored UHC Started!"
2019 broadcast "&bFinal heal will be in 20 seconds."
2020 broadcast "&f&m--------------------------"
2021 loop all players:
2022 loop-player's gamemode is survival:
2023 command "/fly off %loop-player%"
2024 command "/effect %loop-player% clear"
2025 command "/god off %loop-player%"
2026 command "/xp set %loop-player% 0"
2027 command "/time set 0"
2028 make player execute "/gamerule doMobSpawning false"
2029 make player execute "/butcher"
2030 wait 20 seconds
2031 command "/heal *"
2032 command "/feed *"
2033 broadcast "&f&m--------------------------"
2034 broadcast "&bThat was your final heal, do not ask for another!"
2035 broadcast "&bIf you have any questions that cannot be answered using /uhc, feel free to use /helpop"
2036 broadcast "&f&m--------------------------"
2037 loop 10 times:
2038 wait 1 second
2039 make player execute "/butcher"
2040 make player execute "/gamerule doMobSpawning true"
2041 loop ({_pvptime} - 30) times:
2042 wait 1 second
2043
2044 command "/pvp enable"
2045 make player execute "/gamerule doMobSpawning true"
2046 set {_mutime} to (arg-2 * 60)
2047 command "/timer cancel"
2048 wait 1 tick
2049 command "/timer %{_mutime}% &3&lMeetup &b»&f&l"
2050
2051 loop {_mutime} times:
2052 wait 1 second
2053 if {current-breakblocks} is true:
2054 set {allowbreak} to true
2055 broadcast "&f&m--------------------------"
2056 broadcast "&bMeetup is &lNOW!"
2057 broadcast "&bIf you delay meetup in any way, you will be disqualified."
2058 broadcast "&f&m--------------------------"
2059 if {current-border.move} is true:
2060 if {current-border.mode} is "progressive":
2061 broadcast "&bBorder will now progressively shrink to &l200x200&b over &l15 Minutes&b, if you are caught outside it WILL kill you."
2062 broadcast "&f&m--------------------------"
2063 make player execute "/minecraft:worldborder set 200 900"
2064 else if {current-border.mode} is "instant":
2065 broadcast "&f&m--------------------------"
2066 broadcast "&bBorder will instantly shrink to &l1500x1500&b in &l5 Minutes!"
2067 broadcast "&f&m--------------------------"
2068 make player execute "/instantborder"
2069
2070
2071command /instantborder:
2072 permission: sk.op
2073 trigger:
2074 if {current-border.move} is true:
2075 if {current-border.mode} is "instant":
2076 wait 5 minutes
2077 broadcast "&f&m--------------------------"
2078 broadcast "&bBorder shrunk to &l1500x1500!&b Shrinking to &l600x600&b in &l5 Minutes"
2079 broadcast "&f&m--------------------------"
2080 make player execute "/wb HARB%{worldcount}% set 750 750 0 0"
2081 make player execute "/debugtop"
2082 wait 5 seconds
2083 make player execute "/minecraft:worldborder set 1500 30"
2084 wait 5 minutes
2085 broadcast "&f&m--------------------------"
2086 broadcast "&bBorder shrunk to &l600x600!&b Shrinking to &l200x200&b in &l5 Minutes"
2087 broadcast "&f&m--------------------------"
2088 make player execute "/wb HARB%{worldcount}% set 300 300 0 0"
2089 make player execute "/debugtop"
2090 wait 5 seconds
2091 make player execute "/minecraft:worldborder set 600 30"
2092 wait 5 minutes
2093 broadcast "&f&m--------------------------"
2094 broadcast "&bBorder shrunk to &l200x200!"
2095 broadcast "&f&m--------------------------"
2096 make player execute "/wb HARB%{worldcount}% set 100 100 0 0"
2097 make player execute "/debugtop"
2098 wait 5 seconds
2099 make player execute "/minecraft:worldborder set 200 30"
2100
2101command /debugtop:
2102 permission: sk.op
2103 trigger:
2104 loop all players:
2105 set {_x1} to rounded down x coord of loop-player
2106 set {_z1} to rounded down z coords of loop-player
2107 make player execute "/tp %loop-player% %{_x1}% 255 %{_z1}%"
2108
2109command /forcestart:
2110 permission: sk.op
2111 trigger:
2112 set {uhc} to true
2113
2114command /forceend:
2115 permission: sk.op
2116 trigger:
2117 delete {uhc}
2118
2119
2120command /end:
2121 permission: sk.op
2122 trigger:
2123 if {uhc} is set:
2124 delete {uhc}
2125 delete {allowbreak}
2126 command "/whitelist clear"
2127 command "/killboard off"
2128 command "/heal *"
2129 command "/feed *"
2130 command "/specinfo reset"
2131 command "/pvp disable"
2132 command "/team reset"
2133 loop all players:
2134 clear inventory of loop-player
2135 command "/effect %loop-player% clear"
2136 command "/spawn %loop-player%"
2137 command "/unspec %loop-player%"
2138 make loop-player execute "/unspec"
2139 wait 1 second
2140 command "/mw delete HARB%{worldcount}%"
2141 command "/mw delete HARB%{worldcount}%_nether"
2142 wait 1 second
2143 broadcast "&f&m--------------------------"
2144 broadcast "&bHarbored UHC has ended!"
2145 broadcast "&bServer will automatically close in 30 seconds..."
2146 broadcast "&f&m--------------------------"
2147 wait 30 seconds
2148 command "/stop"
2149 else:
2150 message "&1[&f&lHarbored&1]&f There are no games in progress."
2151
2152
2153
2154command /pvp <text>:
2155 usage: /pvp <enable/disable>
2156 permission: sk.op
2157 trigger:
2158
2159 if arg-1 is "on" or "enable":
2160 set {pvp} to true
2161 broadcast "&f&m--------------------------"
2162 broadcast "&bPvP Enabled!"
2163 broadcast "&f&m--------------------------"
2164 if arg-1 is "off" or "disable":
2165 delete {pvp}
2166 broadcast "&f&m--------------------------"
2167 broadcast "&bPvP Disabled!"
2168 broadcast "&f&m--------------------------"
2169
2170
2171on damage of player:
2172 attacker is a player:
2173 {pvp} is not set:
2174 cancel event
2175 send "&1[&f&lHarbored&1]&f&l PvP is not enabled"
2176
2177#command /scatter [<text>]:
2178# permission: sk.op
2179# trigger:
2180# if arg-1 is "*":
2181# make player execute "/sca HARB%{worldcount}% 1495 *"
2182#
2183# if arg-1 is "team":
2184# make player execute "/sca HARB%{worldcount}% 1495 team"
2185
2186#command /scatterplayer [<player>]:
2187# permission: sk.op
2188# trigger:
2189# if arg-1 is set:
2190# make player execute "/sca HARB%{worldcount}% 1495 %arg-1%"
2191
2192
2193command /scatter [<player>]:
2194 permission: sk.op
2195 trigger:
2196 if arg-1 is set:
2197 make player execute command "/sca HARB%{worldcount}% 1495 %arg-1%"
2198 else:
2199 make player execute command "/sca HARB%{worldcount}% 1495 team"
2200
2201on death of player:
2202 command "/xp set %victim% 0"
2203
2204#
2205#
2206#
2207#
2208#
2209#
2210#
2211#
2212#
2213#
2214#
2215
2216
2217
2218
2219command /killboard <text>:
2220 permission: sk.op
2221 trigger:
2222 if arg-1 is "on" or "enable":
2223 command "/minecraft:scoreboard objectives add Kills playerKillCount &f&lHarbored"
2224 command "/minecraft:scoreboard objectives setdisplay sidebar Kills"
2225 if arg-1 is "off" or "disable":
2226 command "/minecraft:scoreboard objectives remove Kills"
2227
2228
2229on death of player:
2230 {uhc} is true:
2231 command "/whitelist silentremove %victim%"
2232
2233
2234on craft of bookshelf:
2235 cancel event
2236
2237on place of bookshelf:
2238 cancel event
2239
2240
2241on death of ghast:
2242 clear drops
2243
2244#
2245#
2246#
2247#
2248#
2249#
2250#
2251#
2252#
2253#
2254#
2255
2256#command /setmobrates [<integer>]:
2257# permission: sk.op
2258# usage: /setmobrates <number>
2259# trigger:
2260#
2261# if arg-1 is set:
2262# set {mobrates} to arg-1
2263# message "&1[&f&lHarbored&1]&f Mob rates now set to: &a%{mobrates}%%% &fchance to cancel spawn event."
2264# else:
2265# message "&1[&f&lHarbored&1]&f /setmobrates <number>"
2266#
2267#on spawn of zombie:
2268# {mobrates} is set:
2269# chance of {mobrates}%:
2270# cancel event
2271#
2272#on spawn of skeleton:
2273# {mobrates} is set:
2274# chance of {mobrates}%:
2275# cancel event
2276#
2277#on spawn of spider:
2278# {mobrates} is set:
2279# chance of {mobrates}%:
2280# cancel event
2281
2282#on spawn of witch:
2283# {mobrates} is set:
2284# chance of {mobrates}%:
2285# cancel event
2286
2287#on spawn of creeper:
2288# {mobrates} is set:
2289# chance of {mobrates}%:
2290# cancel event
2291
2292#on spawn of enderman:
2293# {mobrates} is set:
2294# chance of {mobrates}%:
2295# cancel event
2296
2297command /fsl:
2298 permission: sk.op
2299 trigger:
2300 message "&fdaddy"
2301
2302#
2303#
2304#
2305#
2306#
2307#
2308#
2309#
2310
2311on damage of player:
2312 attacker is a player:
2313 projectile exists
2314 wait 1 tick
2315 victim is not dead:
2316 send "&1[&f&lH&1] &6%victim%&f is now on &a%(health of victim * 10)%%%" to attacker
2317
2318command /debugbreakblocks <text>:
2319 permission: sk.op
2320 trigger:
2321 if arg-1 is "1":
2322 set {allowbreak} to true
2323 if arg-1 is "2":
2324 delete {allowbreak}
2325
2326on place of cobblestone or dirt or sandstone or wood or plank or stone:
2327 {allowbreak} is true:
2328 if y coordinate of event-block is more than 59:
2329 set {_block} to event-block
2330 loop 10 times:
2331 show block break stage loop-number at {_block}
2332 wait 40 tick
2333 break {_block}
2334
2335on place of crafting table:
2336 {allowbreak} is true:
2337 set {_block} to event-block
2338 loop blocks in radius 5 of event-block:
2339 loop-block is a crafting table:
2340 loop-block is not {_block}:
2341 cancel event
2342 message "&1[&f&lHarbored&1]&f You cannot place crafting tables within a 5 block radius of each other."
2343
2344
2345command /purpdan?:
2346 permission: sk.op
2347 trigger:
2348 command "/give %player% 358:1005 1"
2349
2350command /giveallpupper:
2351 permission: sk.op
2352 trigger:
2353 loop all players:
2354 command "/give %loop-player% 358:1004 1"
2355
2356command /woochme:
2357 permission: sk.op
2358 trigger:
2359 command "/give %player% 358:1006 1"
2360
2361command /benjiduexduex:
2362 permission: sk.op
2363 trigger:
2364 command "/give %player% 358:1007 1"
2365
2366on join:
2367 wait 1 tick
2368 message "&f&m--------------------------"
2369 message "&bHarbored UHC"
2370 message "&7&lEnjoy our games? Want to play more? Follow us on &b@HarboredUHC&7&l on Twitter!"
2371 message "&f&m--------------------------"
2372
2373
2374on join:
2375 set join message to "&a➤ %player% Joined the game"
2376
2377on quit:
2378 set leave message to "&c➤ %player% Left the game"
2379
2380on death of player:
2381 wait 1 tick
2382 send "&7&lEnjoy our games? Want to play more? Follow us on &b@HarboredUHC&7&l on Twitter!" to victim
2383
2384
2385command /fireless <text>:
2386 permission: sk.op
2387 trigger:
2388 if arg-1 is "on" or "enable":
2389 set {fireless} to true
2390 message "&1[&f&lHarbored&1]&f Fireless &aEnabled!"
2391 if arg-1 is "off" or "disable":
2392 delete {fireless}
2393 message "&1[&f&lHarbored&1]&f Fireless &cDisabled!"
2394 if arg-1 is "flame":
2395 set {fireless} to "flame"
2396 message "&1[&f&lHarbored&1]&f Fireless &aEnabled (Flame On)"
2397
2398
2399on damage of a player:
2400 if {fireless} is true:
2401 attacker is a player:
2402 wait 1 tick
2403 extinguish victim
2404 if {fireless} is "flame":
2405 projectile doesn't exist:
2406 attacker is a player:
2407 wait 1 tick
2408 extinguish victim