Paste #9901: Denizen Debug Logs From 6Sever currently booting, please wait to join.6This message will update wh

Date: 2014/09/21 09:01:28 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041


Java Version: 1.7.0_51
CraftBukkit Version: git-Bukkit-1.7.9-R0.2-24-g07d4558-b3116jnks (MC: 1.7.10)
Active Plugins (10): GroupManager: 2.0 (2.12.1) (Phoenix), Vault: 1.2.27-b349, WorldEdit: 5.5.8-1.6.2, 
ProtocolLib: 3.4.0, Multiverse-Core: 2.5-b678, Essentials: Pre2.13.1.6, Citizens: 2.0.13-SNAPSHOT (build 1171), 
EssentialsChat: Pre2.13.1.6, Denizen: 0.9.5-SNAPSHOT (build 1519), EssentialsSpawn: Pre2.13.1.6,
Loaded Worlds (4): world, world_nether, world_the_end, flat
Online Players (1): Apprentice que1124(que1124)

11:01:04 [INFO] +- Executing dCommand: DETERMINE/p@que1124 ---------+ 
11:01:04 [INFO] +> Executing 'DETERMINE': outcome='fulfilled'  
                   passively='false' 
11:01:04 [INFO]  Completing queue 'EENEIEDDEI'. 
11:01:06 [INFO] +- Executing dCommand: PAUSE/p@que1124 ---------+ 
11:01:06 [INFO] +- Executing dCommand: INJECT/p@que1124 ---------+ 
11:01:06 [INFO] +> Executing 'INJECT': Container='GLENSTEPS(INTERACT)'  
                   path='attackTarget'  local='true' 
11:01:06 [INFO] +- Executing dCommand: IF/p@que1124 ---------+ 
11:01:06 [INFO]  Filled tag <npc.flag[attacking]> with 'true'. 
11:01:06 [INFO]  Comparable 1: Logic='NEGATIVE', 
                   Comparable='Boolean(true)', Operator='EQUALS', 
                   ComparedTo='Boolean(true)' --> OUTCOME='false' 
11:01:06 [INFO] +- Executing dCommand: FLAG/p@que1124 ---------+ 
11:01:06 [INFO]  Filled tag <queue.id> with 'NEIIIDEZEE'. 
11:01:06 [INFO] +> Executing 'FLAG': flag_name='QUEUE'  
                   Action/Value='INSERT(NEIIIDEZEE)'  npc='n@322' 
11:01:06 [INFO] +- Executing dCommand: RANDOM/p@que1124 ---------+ 
11:01:06 [INFO] +> Executing 'RANDOM': possibilities='3'  choice='3' 
11:01:06 [INFO] +- Executing dCommand: INJECT/p@que1124 ---------+ 
11:01:06 [INFO] +> Executing 'INJECT': Container='GLENSTEPS(INTERACT)'  
                   path='lighting'  local='true' 
11:01:06 [INFO] +- Executing dCommand: STRIKE/p@que1124 ---------+ 
11:01:06 [INFO]  Filled tag <player.location> with 
                   'l@-128.80070482179065,46.0,148.3554769053851,5.0382643,-43.583267,world'. 
11:01:06 [INFO] +> Executing 'STRIKE': 
                   location='l@-128.80070482179065,46.0,148.3554769053851,5.0382643,-43.583267,world' 
                    Damageable='true' 
11:01:06 [INFO]  OKAY! Trimming world events '[lightning strikes, 
                   lightning strikes in w@world, lightning strikes in world]' 
11:01:06 [INFO] +- Executing dCommand: NARRATE/p@que1124 ---------+ 
11:01:06 [INFO]  Filled tag <&7> with ''. 
11:01:06 [INFO]  Filled tag <&b> with ''. 
11:01:06 [INFO]  Filled tag <&7> with ''. 
11:01:06 [INFO]  Filled tag <&co> with ':'. 
11:01:06 [INFO] +> Executing 'NARRATE': Narrating='[Glen -> You]: Feel my 
                   wrath!'  Targets='[p@que1124]' 
11:01:06 [INFO] +- Executing dCommand: INJECT/p@que1124 ---------+ 
11:01:06 [INFO] +> Executing 'INJECT': Container='GLENSTEPS(INTERACT)'  
                   path='walk'  local='true' 
11:01:06 [INFO] +- Executing dCommand: DEFINE/p@que1124 ---------+ 
11:01:06 [INFO]  Filled tag <player.location> with 
                   'l@-128.80070482179065,46.0,148.3554769053851,5.0382643,-43.583267,world'. 
11:01:06 [INFO]  Filled tag <npc.location> with 
                   'l@-125.90343980248161,46.0,151.54819326960663,0.0,137.77748,world'. 
11:01:06 [INFO]  Filled tag 
                   <npc.location.sub[l@-128.80070482179065,46.0,148.3554769053851,5.0382643,-43.583267,world].div[3].add[l@-125.90343980248161,46.0,151.54819326960663,0.0,137.77748,world]> 
                   with 
                   'l@-124.93768479604527,46.0,152.61243205768048,0.0,137.77748,world'. 
11:01:06 [INFO] +> Executing 'DEFINE': queue='NEIIIDEZEE'  
                   definition='location1'  
                   value='l@-124.93768479604527,46.0,152.61243205768048,0.0,137.77748,world' 
11:01:06 [INFO] +- Executing dCommand: DEFINE/p@que1124 ---------+ 
11:01:06 [INFO]  Filled tag <player.location> with 
                   'l@-128.80070482179065,46.0,148.3554769053851,5.0382643,-43.583267,world'. 
11:01:06 [INFO]  Filled tag <npc.location> with 
                   'l@-125.90343980248161,46.0,151.54819326960663,0.0,137.77748,world'. 
11:01:06 [INFO]  Filled tag 
                   <npc.location.sub[l@-128.80070482179065,46.0,148.3554769053851,5.0382643,-43.583267,world].div[3.5].add[l@-125.90343980248161,46.0,151.54819326960663,0.0,137.77748,world]> 
                   with 
                   'l@-125.07564979696475,46.0,152.4603979450985,0.0,137.77748,world'. 
11:01:06 [INFO] +> Executing 'DEFINE': queue='NEIIIDEZEE'  
                   definition='location2'  
                   value='l@-125.07564979696475,46.0,152.4603979450985,0.0,137.77748,world' 
11:01:06 [INFO] +- Executing dCommand: DEFINE/p@que1124 ---------+ 
11:01:06 [INFO]  Filled tag <player.location> with 
                   'l@-128.80070482179065,46.0,148.3554769053851,5.0382643,-43.583267,world'. 
11:01:06 [INFO]  Filled tag <npc.location> with 
                   'l@-125.90343980248161,46.0,151.54819326960663,0.0,137.77748,world'. 
11:01:06 [INFO]  Filled tag 
                   <npc.location.sub[l@-128.80070482179065,46.0,148.3554769053851,5.0382643,-43.583267,world].div[4].add[l@-125.90343980248161,46.0,151.54819326960663,0.0,137.77748,world]> 
                   with 
                   'l@-125.17912354765436,46.0,152.346372360662,0.0,137.77748,world'. 
11:01:06 [INFO] +> Executing 'DEFINE': queue='NEIIIDEZEE'  
                   definition='location3'  
                   value='l@-125.17912354765436,46.0,152.346372360662,0.0,137.77748,world' 
11:01:06 [INFO] +- Executing dCommand: IF/p@que1124 ---------+ 
11:01:06 [INFO]  Filled tag <def[location1].material.is[==].to[m@air]> 
                   with 'true'. 
11:01:06 [INFO]  Filled tag 
                   <def[location1].add[0,1,0].material.is[==].to[m@air]> with 
                   'true'. 
11:01:06 [INFO]  Filled tag <def[location2].material.is[==].to[m@air]> 
                   with 'true'. 
11:01:06 [INFO]  Filled tag 
                   <def[location2].add[0,1,0].material.is[==].to[m@air]> with 
                   'true'. 
11:01:06 [INFO]  Comparable 1: Comparable='Boolean(true)', 
                   Operator='EQUALS', ComparedTo='Boolean(true)' --> 
                   OUTCOME='true' 
11:01:06 [INFO]  Comparable 2: Comparable='Boolean(true)', 
                   Operator='EQUALS', ComparedTo='Boolean(true)' --> 
                   OUTCOME='true' 
11:01:06 [INFO] +- Executing dCommand: WALKTO/p@que1124 ---------+ 
11:01:06 [INFO]  Filled definition %location1% with 
                   'l@-124.93768479604527,46.0,152.61243205768048,0.0,137.77748,world'. 
11:01:06 [INFO]  Filled tag <npc> with 'n@322'. 
11:01:06 [INFO] +> Executing 'WALKTO': 
                   location='l@-124.93768479604527,46.0,152.61243205768048,0.0,137.77748,world' 
                    speed='1.5'  npcs='[Glen/322]' 
11:01:06 [INFO] +- Executing dCommand: WAIT/p@que1124 ---------+ 
11:01:06 [INFO] +> Executing 'WAIT': queue='NEIIIDEZEE'  delay='40t' 
11:01:06 [INFO]  OKAY! Trimming world events '[entity damages entity, 
                   entity damages player, entity damages p@que1124, 
                   e@LIGHTNING damages entity, e@LIGHTNING damages player, 
                   e@LIGHTNING damages p@que1124, e@LIGHTNING damages entity, 
                   e@LIGHTNING damages player, e@LIGHTNING damages p@que1124, 
                   LIGHTNING damages entity, LIGHTNING damages que1124, 
                   LIGHTNING damages player, entity damages que1124]' 
11:01:06 [INFO]  OKAY! Trimming world events '[entity damaged, entity 
                   damaged by LIGHTNING, player damaged, player damaged by 
                   LIGHTNING, p@que1124 damaged, p@que1124 damaged by 
                   LIGHTNING, entity damaged by entity, entity damaged by 
                   e@LIGHTNING, entity damaged by e@LIGHTNING, player damaged 
                   by entity, player damaged by e@LIGHTNING, player damaged 
                   by e@LIGHTNING, p@que1124 damaged by entity, p@que1124 
                   damaged by e@LIGHTNING, p@que1124 damaged by e@LIGHTNING, 
                   entity damaged by LIGHTNING, que1124 damaged by LIGHTNING, 
                   que1124 damaged, que1124 damaged by entity, player damaged 
                   by LIGHTNING]' 
11:01:06 [INFO]  OKAY! Trimming world events '[entity damages entity, 
                   entity damages npc, entity damages n@322, e@LIGHTNING 
                   damages entity, e@LIGHTNING damages npc, e@LIGHTNING 
                   damages n@322, e@LIGHTNING damages entity, e@LIGHTNING 
                   damages npc, e@LIGHTNING damages n@322, LIGHTNING damages 
                   npc, LIGHTNING damages entity, LIGHTNING damages 322, 
                   entity damages 322]' 
11:01:06 [INFO]  OKAY! Trimming world events '[entity damaged, entity 
                   damaged by LIGHTNING, npc damaged, npc damaged by 
                   LIGHTNING, n@322 damaged, n@322 damaged by LIGHTNING, 
                   entity damaged by entity, entity damaged by e@LIGHTNING, 
                   entity damaged by e@LIGHTNING, npc damaged by entity, npc 
                   damaged by e@LIGHTNING, npc damaged by e@LIGHTNING, n@322 
                   damaged by entity, n@322 damaged by e@LIGHTNING, n@322 
                   damaged by e@LIGHTNING, 322 damaged by LIGHTNING, 322 
                   damaged by entity, entity damaged by LIGHTNING, npc 
                   damaged by LIGHTNING, 322 damaged]' 
11:01:07 [INFO]  OKAY! Trimming world events '[block ignites, m@air 
                   ignites, air ignites]' 
11:01:07 [INFO] +> Executing 'Event': Type='on block ignites'  
                   Container='MAGEPROJECTILES(WORLD)'  
                   Context='{location=l@-129.0,46.0,148.0,world, 
                   material=m@air}' 
11:01:07 [INFO] +- Building event 'ON BLOCK IGNITES' for MAGEPROJECTILES 
                   ---------+ 
11:01:07 [INFO]  Starting InstantQueue 'EIDINNNNNZ'... 
11:01:07 [INFO] +- Executing dCommand: IF ---------+ 
11:01:07 [INFO]  Filled tag <s@config.constant[nameofworld]> with 'world'. 
11:01:07 [INFO]  Filled tag <context.location.world.name.is[==].to[world]> 
                   with 'true'. 
11:01:07 [INFO]  Comparable 1: Comparable='Boolean(true)', 
                   Operator='EQUALS', ComparedTo='Boolean(true)' --> 
                   OUTCOME='true' 
11:01:07 [INFO] +- Executing dCommand: DETERMINE ---------+ 
11:01:07 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='false' 
11:01:07 [INFO]  Completing queue 'EIDINNNNNZ'. 
11:01:07 [INFO]  OKAY! Trimming world events '[block ignites, m@air 
                   ignites, air ignites]' 
11:01:07 [INFO] +> Executing 'Event': Type='on block ignites'  
                   Container='MAGEPROJECTILES(WORLD)'  
                   Context='{location=l@-129.0,46.0,148.0,world, 
                   material=m@air}' 
11:01:07 [INFO] +- Building event 'ON BLOCK IGNITES' for MAGEPROJECTILES 
                   ---------+ 
11:01:07 [INFO]  Starting InstantQueue 'NININDNEIZ'... 
11:01:07 [INFO] +- Executing dCommand: IF ---------+ 
11:01:07 [INFO]  Filled tag <s@config.constant[nameofworld]> with 'world'. 
11:01:07 [INFO]  Filled tag <context.location.world.name.is[==].to[world]> 
                   with 'true'. 
11:01:07 [INFO]  Comparable 1: Comparable='Boolean(true)', 
                   Operator='EQUALS', ComparedTo='Boolean(true)' --> 
                   OUTCOME='true' 
11:01:07 [INFO] +- Executing dCommand: DETERMINE ---------+ 
11:01:07 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='false' 
11:01:07 [INFO]  Completing queue 'NININDNEIZ'. 
11:01:07 [INFO]  OKAY! Trimming world events '[block ignites, m@air 
                   ignites, air ignites]' 
11:01:07 [INFO] +> Executing 'Event': Type='on block ignites'  
                   Container='MAGEPROJECTILES(WORLD)'  
                   Context='{location=l@-129.0,46.0,148.0,world, 
                   material=m@air}' 
11:01:07 [INFO] +- Building event 'ON BLOCK IGNITES' for MAGEPROJECTILES 
                   ---------+ 
11:01:07 [INFO]  Starting InstantQueue 'IEEDNENNDD'... 
11:01:07 [INFO] +- Executing dCommand: IF ---------+ 
11:01:07 [INFO]  Filled tag <s@config.constant[nameofworld]> with 'world'. 
11:01:07 [INFO]  Filled tag <context.location.world.name.is[==].to[world]> 
                   with 'true'. 
11:01:07 [INFO]  Comparable 1: Comparable='Boolean(true)', 
                   Operator='EQUALS', ComparedTo='Boolean(true)' --> 
                   OUTCOME='true' 
11:01:07 [INFO] +- Executing dCommand: DETERMINE ---------+ 
11:01:07 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='false' 
11:01:07 [INFO]  Completing queue 'IEEDNENNDD'. 
11:01:07 [INFO]  OKAY! Trimming world events '[entity damages entity, 
                   entity damages player, entity damages p@que1124, 
                   e@LIGHTNING damages entity, e@LIGHTNING damages player, 
                   e@LIGHTNING damages p@que1124, e@LIGHTNING damages entity, 
                   e@LIGHTNING damages player, e@LIGHTNING damages p@que1124, 
                   LIGHTNING damages entity, LIGHTNING damages que1124, 
                   LIGHTNING damages player, entity damages que1124]' 
11:01:07 [INFO]  OKAY! Trimming world events '[entity damaged, entity 
                   damaged by LIGHTNING, player damaged, player damaged by 
                   LIGHTNING, p@que1124 damaged, p@que1124 damaged by 
                   LIGHTNING, entity damaged by entity, entity damaged by 
                   e@LIGHTNING, entity damaged by e@LIGHTNING, player damaged 
                   by entity, player damaged by e@LIGHTNING, player damaged 
                   by e@LIGHTNING, p@que1124 damaged by entity, p@que1124 
                   damaged by e@LIGHTNING, p@que1124 damaged by e@LIGHTNING, 
                   entity damaged by LIGHTNING, que1124 damaged by LIGHTNING, 
                   que1124 damaged, que1124 damaged by entity, player damaged 
                   by LIGHTNING]' 
11:01:08 [INFO]  OKAY! Trimming world events '[entity heals, entity heals 
                   because SATIATED, player heals, player heals because 
                   SATIATED]' 
11:01:08 [INFO]  OKAY! Trimming world events '[entity changes food level, 
                   player changes food level]' 
11:01:08 [INFO]  OKAY! Trimming world events '[command, HEAL command]' 
11:01:08 [INFO]  OKAY! Trimming world events '[entity heals, entity heals 
                   because CUSTOM, player heals, player heals because 
                   CUSTOM]' 
11:01:09 [INFO] +- Executing dCommand: PAUSE/p@que1124 ---------+ 
11:01:09 [INFO] +- Executing dCommand: INJECT/p@que1124 ---------+ 
11:01:09 [INFO] +> Executing 'INJECT': Container='GLENSTEPS(INTERACT)'  
                   path='attackTarget'  local='true' 
11:01:09 [INFO] +- Executing dCommand: IF/p@que1124 ---------+ 
11:01:09 [INFO]  Filled tag <npc.flag[attacking]> with 'true'. 
11:01:09 [INFO]  Comparable 1: Logic='NEGATIVE', 
                   Comparable='Boolean(true)', Operator='EQUALS', 
                   ComparedTo='Boolean(true)' --> OUTCOME='false' 
11:01:09 [INFO] +- Executing dCommand: FLAG/p@que1124 ---------+ 
11:01:09 [INFO]  Filled tag <queue.id> with 'NEIIIDEZEE'. 
11:01:09 [INFO] +> Executing 'FLAG': flag_name='QUEUE'  
                   Action/Value='INSERT(NEIIIDEZEE)'  npc='n@322' 
11:01:09 [INFO] +- Executing dCommand: RANDOM/p@que1124 ---------+ 
11:01:09 [INFO] +> Executing 'RANDOM': possibilities='3'  choice='3' 
11:01:09 [INFO] +- Executing dCommand: INJECT/p@que1124 ---------+ 
11:01:09 [INFO] +> Executing 'INJECT': Container='GLENSTEPS(INTERACT)'  
                   path='lighting'  local='true' 
11:01:09 [INFO] +- Executing dCommand: STRIKE/p@que1124 ---------+ 
11:01:09 [INFO]  Filled tag <player.location> with 
                   'l@-129.36512931646035,46.0,147.79866959039975,5.1882644,-48.68327,world'. 
11:01:09 [INFO] +> Executing 'STRIKE': 
                   location='l@-129.36512931646035,46.0,147.79866959039975,5.1882644,-48.68327,world' 
                    Damageable='true' 
11:01:09 [INFO]  OKAY! Trimming world events '[lightning strikes, 
                   lightning strikes in w@world, lightning strikes in world]' 
11:01:09 [INFO] +- Executing dCommand: NARRATE/p@que1124 ---------+ 
11:01:09 [INFO]  Filled tag <&7> with ''. 
11:01:09 [INFO]  Filled tag <&b> with ''. 
11:01:09 [INFO]  Filled tag <&7> with ''. 
11:01:09 [INFO]  Filled tag <&co> with ':'. 
11:01:09 [INFO] +> Executing 'NARRATE': Narrating='[Glen -> You]: Feel my 
                   wrath!'  Targets='[p@que1124]' 
11:01:09 [INFO] +- Executing dCommand: INJECT/p@que1124 ---------+ 
11:01:09 [INFO] +> Executing 'INJECT': Container='GLENSTEPS(INTERACT)'  
                   path='walk'  local='true' 
11:01:09 [INFO] +- Executing dCommand: DEFINE/p@que1124 ---------+ 
11:01:09 [INFO]  Filled tag <player.location> with 
                   'l@-129.36512931646035,46.0,147.79866959039975,5.1882644,-48.68327,world'. 
11:01:09 [INFO]  Filled tag <npc.location> with 
                   'l@-124.51534962076616,46.0,152.2125526720763,0.0,132.30597,world'. 
11:01:09 [INFO]  Filled tag 
                   <npc.location.sub[l@-129.36512931646035,46.0,147.79866959039975,5.1882644,-48.68327,world].div[3].add[l@-124.51534962076616,46.0,152.2125526720763,0.0,132.30597,world]> 
                   with 
                   'l@-122.8987563888681,46.0,153.68384703263516,0.0,132.30597,world'. 
11:01:09 [INFO] +> Executing 'DEFINE': queue='NEIIIDEZEE'  
                   definition='location1'  
                   value='l@-122.8987563888681,46.0,153.68384703263516,0.0,132.30597,world' 
11:01:09 [INFO] +- Executing dCommand: DEFINE/p@que1124 ---------+ 
11:01:09 [INFO]  Filled tag <player.location> with 
                   'l@-129.36512931646035,46.0,147.79866959039975,5.1882644,-48.68327,world'. 
11:01:09 [INFO]  Filled tag <npc.location> with 
                   'l@-124.51534962076616,46.0,152.2125526720763,0.0,132.30597,world'. 
11:01:09 [INFO]  Filled tag 
                   <npc.location.sub[l@-129.36512931646035,46.0,147.79866959039975,5.1882644,-48.68327,world].div[3.5].add[l@-124.51534962076616,46.0,152.2125526720763,0.0,132.30597,world]> 
                   with 
                   'l@-123.12969827913925,46.0,153.47366212398387,0.0,132.30597,world'. 
11:01:09 [INFO] +> Executing 'DEFINE': queue='NEIIIDEZEE'  
                   definition='location2'  
                   value='l@-123.12969827913925,46.0,153.47366212398387,0.0,132.30597,world' 
11:01:09 [INFO] +- Executing dCommand: DEFINE/p@que1124 ---------+ 
11:01:09 [INFO]  Filled tag <player.location> with 
                   'l@-129.36512931646035,46.0,147.79866959039975,5.1882644,-48.68327,world'. 
11:01:09 [INFO]  Filled tag <npc.location> with 
                   'l@-124.51534962076616,46.0,152.2125526720763,0.0,132.30597,world'. 
11:01:09 [INFO]  Filled tag 
                   <npc.location.sub[l@-129.36512931646035,46.0,147.79866959039975,5.1882644,-48.68327,world].div[4].add[l@-124.51534962076616,46.0,152.2125526720763,0.0,132.30597,world]> 
                   with 
                   'l@-123.3029046968426,46.0,153.31602344249544,0.0,132.30597,world'. 
11:01:09 [INFO] +> Executing 'DEFINE': queue='NEIIIDEZEE'  
                   definition='location3'  
                   value='l@-123.3029046968426,46.0,153.31602344249544,0.0,132.30597,world' 
11:01:09 [INFO] +- Executing dCommand: IF/p@que1124 ---------+ 
11:01:09 [INFO]  Filled tag <def[location1].material.is[==].to[m@air]> 
                   with 'false'. 
11:01:09 [INFO]  Filled tag 
                   <def[location1].add[0,1,0].material.is[==].to[m@air]> with 
                   'false'. 
11:01:09 [INFO]  Filled tag <def[location2].material.is[==].to[m@air]> 
                   with 'true'. 
11:01:09 [INFO]  Filled tag 
                   <def[location2].add[0,1,0].material.is[==].to[m@air]> with 
                   'true'. 
11:01:09 [INFO]  Comparable 1: Comparable='Boolean(false)', 
                   Operator='EQUALS', ComparedTo='Boolean(true)' --> 
                   OUTCOME='false' 
11:01:09 [INFO]  Comparable 2: Comparable='Boolean(false)', 
                   Operator='EQUALS', ComparedTo='Boolean(true)' --> 
                   OUTCOME='false' 
11:01:09 [INFO] +- Executing dCommand: IF/p@que1124 ---------+ 
11:01:09 [INFO]  Filled tag <def[location2].material.is[==].to[m@air]> 
                   with 'true'. 
11:01:09 [INFO]  Filled tag 
                   <def[location2].add[0,1,0].material.is[==].to[m@air]> with 
                   'true'. 
11:01:09 [INFO]  Comparable 1: Comparable='Boolean(true)', 
                   Operator='EQUALS', ComparedTo='Boolean(true)' --> 
                   OUTCOME='true' 
11:01:09 [INFO]  Comparable 2: Comparable='Boolean(true)', 
                   Operator='EQUALS', ComparedTo='Boolean(true)' --> 
                   OUTCOME='true' 
11:01:09 [INFO] +- Executing dCommand: WALKTO/p@que1124 ---------+ 
11:01:09 [INFO]  Filled definition %location2% with 
                   'l@-123.12969827913925,46.0,153.47366212398387,0.0,132.30597,world'. 
11:01:09 [INFO]  Filled tag <npc> with 'n@322'. 
11:01:09 [INFO] +> Executing 'WALKTO': 
                   location='l@-123.12969827913925,46.0,153.47366212398387,0.0,132.30597,world' 
                    speed='1.5'  npcs='[Glen/322]' 
11:01:09 [INFO] +- Executing dCommand: WAIT/p@que1124 ---------+ 
11:01:09 [INFO] +> Executing 'WAIT': queue='NEIIIDEZEE'  delay='40t' 
11:01:09 [INFO]  OKAY! Trimming world events '[entity damages entity, 
                   entity damages player, entity damages p@que1124, 
                   e@LIGHTNING damages entity, e@LIGHTNING damages player, 
                   e@LIGHTNING damages p@que1124, e@LIGHTNING damages entity, 
                   e@LIGHTNING damages player, e@LIGHTNING damages p@que1124, 
                   LIGHTNING damages entity, LIGHTNING damages que1124, 
                   LIGHTNING damages player, entity damages que1124]' 
11:01:09 [INFO]  OKAY! Trimming world events '[entity damaged, entity 
                   damaged by LIGHTNING, player damaged, player damaged by 
                   LIGHTNING, p@que1124 damaged, p@que1124 damaged by 
                   LIGHTNING, entity damaged by entity, entity damaged by 
                   e@LIGHTNING, entity damaged by e@LIGHTNING, player damaged 
                   by entity, player damaged by e@LIGHTNING, player damaged 
                   by e@LIGHTNING, p@que1124 damaged by entity, p@que1124 
                   damaged by e@LIGHTNING, p@que1124 damaged by e@LIGHTNING, 
                   entity damaged by LIGHTNING, que1124 damaged by LIGHTNING, 
                   que1124 damaged, que1124 damaged by entity, player damaged 
                   by LIGHTNING]' 
11:01:09 [INFO]  OKAY! Trimming world events '[block ignites, m@air 
                   ignites, air ignites]' 
11:01:09 [INFO] +> Executing 'Event': Type='on block ignites'  
                   Container='MAGEPROJECTILES(WORLD)'  
                   Context='{location=l@-130.0,46.0,147.0,world, 
                   material=m@air}' 
11:01:09 [INFO] +- Building event 'ON BLOCK IGNITES' for MAGEPROJECTILES 
                   ---------+ 
11:01:09 [INFO]  Starting InstantQueue 'EDZDNDZNEE'... 
11:01:09 [INFO] +- Executing dCommand: IF ---------+ 
11:01:09 [INFO]  Filled tag <s@config.constant[nameofworld]> with 'world'. 
11:01:09 [INFO]  Filled tag <context.location.world.name.is[==].to[world]> 
                   with 'true'. 
11:01:09 [INFO]  Comparable 1: Comparable='Boolean(true)', 
                   Operator='EQUALS', ComparedTo='Boolean(true)' --> 
                   OUTCOME='true' 
11:01:09 [INFO] +- Executing dCommand: DETERMINE ---------+ 
11:01:09 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='false' 
11:01:09 [INFO]  Completing queue 'EDZDNDZNEE'. 
11:01:09 [INFO]  OKAY! Trimming world events '[block ignites, m@air 
                   ignites, air ignites]' 
11:01:09 [INFO] +> Executing 'Event': Type='on block ignites'  
                   Container='MAGEPROJECTILES(WORLD)'  
                   Context='{location=l@-130.0,46.0,147.0,world, 
                   material=m@air}' 
11:01:09 [INFO] +- Building event 'ON BLOCK IGNITES' for MAGEPROJECTILES 
                   ---------+ 
11:01:09 [INFO]  Starting InstantQueue 'DEEDEENNDN'... 
11:01:09 [INFO] +- Executing dCommand: IF ---------+ 
11:01:09 [INFO]  Filled tag <s@config.constant[nameofworld]> with 'world'. 
11:01:09 [INFO]  Filled tag <context.location.world.name.is[==].to[world]> 
                   with 'true'. 
11:01:09 [INFO]  Comparable 1: Comparable='Boolean(true)', 
                   Operator='EQUALS', ComparedTo='Boolean(true)' --> 
                   OUTCOME='true' 
11:01:09 [INFO] +- Executing dCommand: DETERMINE ---------+ 
11:01:09 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='false' 
11:01:09 [INFO]  Completing queue 'DEEDEENNDN'. 
11:01:09 [INFO]  OKAY! Trimming world events '[entity changes block, 
                   entity changes m@tall_grass, entity changes block into 
                   m@air, entity changes m@tall_grass into m@air, e@SHEEP 
                   changes block, e@SHEEP changes m@tall_grass, e@SHEEP 
                   changes block into m@air, e@SHEEP changes m@tall_grass 
                   into m@air, entity changes tall_grass into air, SHEEP 
                   changes block into air, SHEEP changes tall_grass, entity 
                   changes block into air, SHEEP changes tall_grass into air, 
                   SHEEP changes block, entity changes tall_grass]' 
11:01:09 [INFO]  OKAY! Trimming world events '[sheep regrows wool]' 
11:01:09 [INFO]  OKAY! Trimming world events '[block ignites, m@air 
                   ignites, air ignites]' 
11:01:09 [INFO] +> Executing 'Event': Type='on block ignites'  
                   Container='MAGEPROJECTILES(WORLD)'  
                   Context='{location=l@-130.0,46.0,147.0,world, 
                   material=m@air}' 
11:01:09 [INFO] +- Building event 'ON BLOCK IGNITES' for MAGEPROJECTILES 
                   ---------+ 
11:01:09 [INFO]  Starting InstantQueue 'EEZNDDEIEI'... 
11:01:09 [INFO] +- Executing dCommand: IF ---------+ 
11:01:09 [INFO]  Filled tag <s@config.constant[nameofworld]> with 'world'. 
11:01:09 [INFO]  Filled tag <context.location.world.name.is[==].to[world]> 
                   with 'true'. 
11:01:09 [INFO]  Comparable 1: Comparable='Boolean(true)', 
                   Operator='EQUALS', ComparedTo='Boolean(true)' --> 
                   OUTCOME='true' 
11:01:09 [INFO] +- Executing dCommand: DETERMINE ---------+ 
11:01:09 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='false' 
11:01:09 [INFO]  Completing queue 'EEZNDDEIEI'. 
11:01:09 [INFO]  OKAY! Trimming world events '[entity damages entity, 
                   entity damages player, entity damages p@que1124, 
                   e@LIGHTNING damages entity, e@LIGHTNING damages player, 
                   e@LIGHTNING damages p@que1124, e@LIGHTNING damages entity, 
                   e@LIGHTNING damages player, e@LIGHTNING damages p@que1124, 
                   LIGHTNING damages entity, LIGHTNING damages que1124, 
                   LIGHTNING damages player, entity damages que1124]' 
11:01:09 [INFO]  OKAY! Trimming world events '[entity damaged, entity 
                   damaged by LIGHTNING, player damaged, player damaged by 
                   LIGHTNING, p@que1124 damaged, p@que1124 damaged by 
                   LIGHTNING, entity damaged by entity, entity damaged by 
                   e@LIGHTNING, entity damaged by e@LIGHTNING, player damaged 
                   by entity, player damaged by e@LIGHTNING, player damaged 
                   by e@LIGHTNING, p@que1124 damaged by entity, p@que1124 
                   damaged by e@LIGHTNING, p@que1124 damaged by e@LIGHTNING, 
                   entity damaged by LIGHTNING, que1124 damaged by LIGHTNING, 
                   que1124 damaged, que1124 damaged by entity, player damaged 
                   by LIGHTNING]' 
11:01:11 [INFO]  OKAY! Trimming world events '[player left clicks, player 
                   clicks, player left clicks with item, player left clicks 
                   with i@diamond_sword, player left clicks with 
                   m@diamond_sword, player clicks with item, player clicks 
                   with i@diamond_sword, player clicks with m@diamond_sword, 
                   player left clicks with diamond_sword, player clicks with 
                   diamond_sword]' 
11:01:11 [INFO]  OKAY! Trimming world events '[player animates, player 
                   animates ARM_SWING]' 
11:01:11 [INFO]  OKAY! Trimming world events '[entity heals, entity heals 
                   because CUSTOM, player heals, player heals because 
                   CUSTOM]' 
11:01:11 [INFO] +- Executing dCommand: PAUSE/p@que1124 ---------+ 
11:01:11 [INFO] +- Executing dCommand: INJECT/p@que1124 ---------+ 
11:01:11 [INFO] +> Executing 'INJECT': Container='GLENSTEPS(INTERACT)'  
                   path='attackTarget'  local='true' 
11:01:11 [INFO] +- Executing dCommand: IF/p@que1124 ---------+ 
11:01:11 [INFO]  Filled tag <npc.flag[attacking]> with 'true'. 
11:01:11 [INFO]  Comparable 1: Logic='NEGATIVE', 
                   Comparable='Boolean(true)', Operator='EQUALS', 
                   ComparedTo='Boolean(true)' --> OUTCOME='false' 
11:01:11 [INFO] +- Executing dCommand: FLAG/p@que1124 ---------+ 
11:01:11 [INFO]  Filled tag <queue.id> with 'NEIIIDEZEE'. 
11:01:11 [INFO] +> Executing 'FLAG': flag_name='QUEUE'  
                   Action/Value='INSERT(NEIIIDEZEE)'  npc='n@322' 
11:01:11 [INFO] +- Executing dCommand: RANDOM/p@que1124 ---------+ 
11:01:11 [INFO] +> Executing 'RANDOM': possibilities='3'  choice='2' 
11:01:11 [INFO] +- Executing dCommand: INJECT/p@que1124 ---------+ 
11:01:11 [INFO] +> Executing 'INJECT': Container='GLENSTEPS(INTERACT)'  
                   path='fire'  local='true' 
11:01:11 [INFO] +- Executing dCommand: NARRATE/p@que1124 ---------+ 
11:01:11 [INFO]  Filled tag <&7> with ''. 
11:01:11 [INFO]  Filled tag <&b> with ''. 
11:01:11 [INFO]  Filled tag <&7> with ''. 
11:01:11 [INFO]  Filled tag <&co> with ':'. 
11:01:11 [INFO] +> Executing 'NARRATE': Narrating='[Glen -> You]: The 
                   tongues of flame will engluf you!'  Targets='[p@que1124]' 
11:01:11 [INFO] +- Executing dCommand: SHOOT/p@que1124 ---------+ 
11:01:11 [INFO]  Filled tag <npc> with 'n@322'. 
11:01:11 [INFO]  Filled tag <player.location.add[0,1,0]> with 
                   'l@-129.36512931646035,47.0,147.79866959039975,5.1882644,-48.68327,world'. 
11:01:11 [INFO] +> Executing 'SHOOT': origin='n@322'  
                   entities='[e@FIREBALL]'  
                   destination='l@-129.36512931646035,47.0,147.79866959039975,5.1882644,-48.68327,world' 
                    height='3'  speed='1.5' 
11:01:11 [INFO]  OKAY! Trimming world events '[projectile launched, 
                   e@FIREBALL launched, e@FIREBALL launched, FIREBALL 
                   launched]' 
11:01:11 [INFO] +- Executing dCommand: WAIT/p@que1124 ---------+ 
11:01:11 [INFO] +> Executing 'WAIT': queue='NEIIIDEZEE'  delay='2t' 
11:01:11 [INFO]  OKAY! Trimming world events '[entity damages entity, 
                   entity damages player, entity damages p@que1124, npc 
                   damages entity, npc damages player, npc damages p@que1124, 
                   n@322 damages entity, n@322 damages player, n@322 damages 
                   p@que1124, projectile damages entity, projectile damages 
                   player, projectile damages p@que1124, e@FIREBALL damages 
                   entity, e@FIREBALL damages player, e@FIREBALL damages 
                   p@que1124, e@FIREBALL damages entity, e@FIREBALL damages 
                   player, e@FIREBALL damages p@que1124, projectile damages 
                   que1124, 322 damages entity, npc damages que1124, 322 
                   damages player, FIREBALL damages player, FIREBALL damages 
                   entity, 322 damages que1124, FIREBALL damages que1124, 
                   entity damages que1124]' 
11:01:11 [INFO]  OKAY! Trimming world events '[entity damaged, entity 
                   damaged by PROJECTILE, player damaged, player damaged by 
                   PROJECTILE, p@que1124 damaged, p@que1124 damaged by 
                   PROJECTILE, entity damaged by projectile, entity damaged 
                   by e@FIREBALL, player damaged by e@FIREBALL, p@que1124 
                   damaged by e@FIREBALL, p@que1124 damaged by projectile, 
                   entity damaged by e@FIREBALL, player damaged by 
                   e@FIREBALL, p@que1124 damaged by e@FIREBALL, entity 
                   damaged by entity, entity damaged by npc, entity damaged 
                   by n@322, player damaged by entity, player damaged by npc, 
                   player damaged by n@322, p@que1124 damaged by entity, 
                   p@que1124 damaged by npc, p@que1124 damaged by n@322, 
                   que1124 damaged by 322, entity damaged by 322, que1124 
                   damaged by projectile, player damaged by 322, que1124 
                   damaged by FIREBALL, que1124 damaged by PROJECTILE, player 
                   damaged by FIREBALL, que1124 damaged, que1124 damaged by 
                   npc, entity damaged by FIREBALL, que1124 damaged by 
                   entity]' 
11:01:11 [INFO]  OKAY! Trimming world events '[entity explosion primes, 
                   FIREBALL explosion primes]' 
11:01:11 [INFO]  OKAY! Trimming world events '[entity explodes, e@FIREBALL 
                   explodes, e@FIREBALL explodes, FIREBALL explodes]' 
11:01:11 [INFO] +> Executing 'Event': Type='on entity explodes'  
                   Container='MAGEPROJECTILES(WORLD)'  
                   Context='{location=l@-128.77186656188664,47.13986411130393,148.42263630647255,world, 
                   entity=e@984, blocks=li@}' 
11:01:11 [INFO] +- Building event 'ON ENTITY EXPLODES' for MAGEPROJECTILES 
                   ---------+ 
11:01:11 [INFO]  Starting InstantQueue 'NNNNEEZIIN'... 
11:01:11 [INFO] +- Executing dCommand: IF ---------+ 
11:01:11 [INFO]  Filled tag <s@config.constant[nameofworld]> with 'world'. 
11:01:11 [INFO]  Filled tag <context.location.world.name.is[==].to[world]> 
                   with 'true'. 
11:01:11 [INFO]  Comparable 1: Comparable='Boolean(true)', 
                   Operator='EQUALS', ComparedTo='Boolean(true)' --> 
                   OUTCOME='true' 
11:01:11 [INFO] +- Executing dCommand: DETERMINE ---------+ 
11:01:11 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='false' 
11:01:11 [INFO]  Completing queue 'NNNNEEZIIN'. 
11:01:12 [INFO] +- Executing dCommand: SHOOT/p@que1124 ---------+ 
11:01:12 [INFO]  Filled tag <npc> with 'n@322'. 
11:01:12 [INFO]  Filled tag <player.location.add[0,1,0]> with 
                   'l@-130.05998760016752,47.93612497923646,147.08260378277333,6.5382648,-46.283268,world'. 
11:01:12 [INFO] +> Executing 'SHOOT': origin='n@322'  
                   entities='[e@FIREBALL]'  
                   destination='l@-130.05998760016752,47.93612497923646,147.08260378277333,6.5382648,-46.283268,world' 
                    height='3'  speed='1.5' 
11:01:12 [INFO]  OKAY! Trimming world events '[projectile launched, 
                   e@FIREBALL launched, e@FIREBALL launched, FIREBALL 
                   launched]' 
11:01:12 [INFO] +- Executing dCommand: WAIT/p@que1124 ---------+ 
11:01:12 [INFO] +> Executing 'WAIT': queue='NEIIIDEZEE'  delay='2t' 
11:01:12 [INFO]  OKAY! Trimming world events '[entity damages entity, 
                   entity damages player, entity damages p@que1124, npc 
                   damages entity, npc damages player, npc damages p@que1124, 
                   n@322 damages entity, n@322 damages player, n@322 damages 
                   p@que1124, projectile damages entity, projectile damages 
                   player, projectile damages p@que1124, e@FIREBALL damages 
                   entity, e@FIREBALL damages player, e@FIREBALL damages 
                   p@que1124, e@FIREBALL damages entity, e@FIREBALL damages 
                   player, e@FIREBALL damages p@que1124, projectile damages 
                   que1124, 322 damages entity, npc damages que1124, 322 
                   damages player, FIREBALL damages player, FIREBALL damages 
                   entity, 322 damages que1124, FIREBALL damages que1124, 
                   entity damages que1124]' 
11:01:12 [INFO]  OKAY! Trimming world events '[entity damaged, entity 
                   damaged by PROJECTILE, player damaged, player damaged by 
                   PROJECTILE, p@que1124 damaged, p@que1124 damaged by 
                   PROJECTILE, entity damaged by projectile, entity damaged 
                   by e@FIREBALL, player damaged by e@FIREBALL, p@que1124 
                   damaged by e@FIREBALL, p@que1124 damaged by projectile, 
                   entity damaged by e@FIREBALL, player damaged by 
                   e@FIREBALL, p@que1124 damaged by e@FIREBALL, entity 
                   damaged by entity, entity damaged by npc, entity damaged 
                   by n@322, player damaged by entity, player damaged by npc, 
                   player damaged by n@322, p@que1124 damaged by entity, 
                   p@que1124 damaged by npc, p@que1124 damaged by n@322, 
                   que1124 damaged by 322, entity damaged by 322, que1124 
                   damaged by projectile, player damaged by 322, que1124 
                   damaged by FIREBALL, que1124 damaged by PROJECTILE, player 
                   damaged by FIREBALL, que1124 damaged, que1124 damaged by 
                   npc, entity damaged by FIREBALL, que1124 damaged by 
                   entity]' 
11:01:12 [INFO]  OKAY! Trimming world events '[entity explosion primes, 
                   FIREBALL explosion primes]' 
11:01:12 [INFO]  OKAY! Trimming world events '[entity explodes, e@FIREBALL 
                   explodes, e@FIREBALL explodes, FIREBALL explodes]' 
11:01:12 [INFO] +> Executing 'Event': Type='on entity explodes'  
                   Container='MAGEPROJECTILES(WORLD)'  
                   Context='{location=l@-129.86164136477606,48.002809897588,147.2740273020196,world, 
                   entity=e@985, blocks=li@}' 
11:01:12 [INFO] +- Building event 'ON ENTITY EXPLODES' for MAGEPROJECTILES 
                   ---------+ 
11:01:12 [INFO]  Starting InstantQueue 'NZEENINEEN'... 
11:01:12 [INFO] +- Executing dCommand: IF ---------+ 
11:01:12 [INFO]  Filled tag <s@config.constant[nameofworld]> with 'world'. 
11:01:12 [INFO]  Filled tag <context.location.world.name.is[==].to[world]> 
                   with 'true'. 
11:01:12 [INFO]  Comparable 1: Comparable='Boolean(true)', 
                   Operator='EQUALS', ComparedTo='Boolean(true)' --> 
                   OUTCOME='true' 
11:01:12 [INFO] +- Executing dCommand: DETERMINE ---------+ 
11:01:12 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='false' 
11:01:12 [INFO]  Completing queue 'NZEENINEEN'. 
11:01:12 [INFO] +- Executing dCommand: SHOOT/p@que1124 ---------+ 
11:01:12 [INFO]  Filled tag <npc> with 'n@322'. 
11:01:12 [INFO]  Filled tag <player.location.add[0,1,0]> with 
                   'l@-131.41876255989507,47.268491136073585,145.68228366373313,6.838265,-45.383266,world'. 
11:01:12 [INFO] +> Executing 'SHOOT': origin='n@322'  
                   entities='[e@FIREBALL]'  
                   destination='l@-131.41876255989507,47.268491136073585,145.68228366373313,6.838265,-45.383266,world' 
                    height='3'  speed='1.5' 
11:01:12 [INFO]  OKAY! Trimming world events '[projectile launched, 
                   e@FIREBALL launched, e@FIREBALL launched, FIREBALL 
                   launched]' 
11:01:12 [INFO] +- Executing dCommand: WAIT/p@que1124 ---------+ 
11:01:12 [INFO] +> Executing 'WAIT': queue='NEIIIDEZEE'  delay='3t' 
11:01:12 [INFO]  OKAY! Trimming world events '[player left clicks, player 
                   clicks, player left clicks with item, player left clicks 
                   with i@diamond_sword, player left clicks with 
                   m@diamond_sword, player clicks with item, player clicks 
                   with i@diamond_sword, player clicks with m@diamond_sword, 
                   player left clicks with diamond_sword, player clicks with 
                   diamond_sword]' 
11:01:12 [INFO]  OKAY! Trimming world events '[player animates, player 
                   animates ARM_SWING]' 
11:01:12 [INFO]  OKAY! Trimming world events '[entity heals, entity heals 
                   because CUSTOM, player heals, player heals because 
                   CUSTOM]' 
11:01:13 [INFO]  OKAY! Trimming world events '[entity damages entity, 
                   entity damages player, entity damages p@que1124, npc 
                   damages entity, npc damages player, npc damages p@que1124, 
                   n@322 damages entity, n@322 damages player, n@322 damages 
                   p@que1124, projectile damages entity, projectile damages 
                   player, projectile damages p@que1124, e@FIREBALL damages 
                   entity, e@FIREBALL damages player, e@FIREBALL damages 
                   p@que1124, e@FIREBALL damages entity, e@FIREBALL damages 
                   player, e@FIREBALL damages p@que1124, projectile damages 
                   que1124, 322 damages entity, npc damages que1124, 322 
                   damages player, FIREBALL damages player, FIREBALL damages 
                   entity, 322 damages que1124, FIREBALL damages que1124, 
                   entity damages que1124]' 
11:01:13 [INFO]  OKAY! Trimming world events '[entity damaged, entity 
                   damaged by PROJECTILE, player damaged, player damaged by 
                   PROJECTILE, p@que1124 damaged, p@que1124 damaged by 
                   PROJECTILE, entity damaged by projectile, entity damaged 
                   by e@FIREBALL, player damaged by e@FIREBALL, p@que1124 
                   damaged by e@FIREBALL, p@que1124 damaged by projectile, 
                   entity damaged by e@FIREBALL, player damaged by 
                   e@FIREBALL, p@que1124 damaged by e@FIREBALL, entity 
                   damaged by entity, entity damaged by npc, entity damaged 
                   by n@322, player damaged by entity, player damaged by npc, 
                   player damaged by n@322, p@que1124 damaged by entity, 
                   p@que1124 damaged by npc, p@que1124 damaged by n@322, 
                   que1124 damaged by 322, entity damaged by 322, que1124 
                   damaged by projectile, player damaged by 322, que1124 
                   damaged by FIREBALL, que1124 damaged by PROJECTILE, player 
                   damaged by FIREBALL, que1124 damaged, que1124 damaged by 
                   npc, entity damaged by FIREBALL, que1124 damaged by 
                   entity]' 
11:01:13 [INFO]  OKAY! Trimming world events '[entity explosion primes, 
                   FIREBALL explosion primes]' 
11:01:13 [INFO]  OKAY! Trimming world events '[entity explodes, e@FIREBALL 
                   explodes, e@FIREBALL explodes, FIREBALL explodes]' 
11:01:13 [INFO] +> Executing 'Event': Type='on entity explodes'  
                   Container='MAGEPROJECTILES(WORLD)'  
                   Context='{location=l@-130.93106856554934,47.3715194998353,146.08858144965222,world, 
                   entity=e@986, blocks=li@}' 
11:01:13 [INFO] +- Building event 'ON ENTITY EXPLODES' for MAGEPROJECTILES 
                   ---------+ 
11:01:13 [INFO]  Starting InstantQueue 'EEEENDEZED'... 
11:01:13 [INFO] +- Executing dCommand: IF ---------+ 
11:01:13 [INFO]  Filled tag <s@config.constant[nameofworld]> with 'world'. 
11:01:13 [INFO]  Filled tag <context.location.world.name.is[==].to[world]> 
                   with 'true'. 
11:01:13 [INFO]  Comparable 1: Comparable='Boolean(true)', 
                   Operator='EQUALS', ComparedTo='Boolean(true)' --> 
                   OUTCOME='true' 
11:01:13 [INFO] +- Executing dCommand: DETERMINE ---------+ 
11:01:13 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='false' 
11:01:13 [INFO]  Completing queue 'EEEENDEZED'. 
11:01:13 [INFO]  OKAY! Trimming world events '[player left clicks, player 
                   clicks, player left clicks with item, player left clicks 
                   with i@diamond_sword, player left clicks with 
                   m@diamond_sword, player clicks with item, player clicks 
                   with i@diamond_sword, player clicks with m@diamond_sword, 
                   player left clicks with diamond_sword, player clicks with 
                   diamond_sword]' 
11:01:13 [INFO]  OKAY! Trimming world events '[player animates, player 
                   animates ARM_SWING]' 
11:01:13 [INFO]  OKAY! Trimming world events '[entity heals, entity heals 
                   because CUSTOM, player heals, player heals because 
                   CUSTOM]' 
11:01:13 [INFO] +- Executing dCommand: INJECT/p@que1124 ---------+ 
11:01:13 [INFO] +> Executing 'INJECT': Container='GLENSTEPS(INTERACT)'  
                   path='walk'  local='true' 
11:01:13 [INFO] +- Executing dCommand: DEFINE/p@que1124 ---------+ 
11:01:13 [INFO]  Filled tag <player.location> with 
                   'l@-131.80946173628308,46.827117314324575,145.2511799709905,6.838265,-45.383266,world'. 
11:01:13 [INFO]  Filled tag <npc.location> with 
                   'l@-123.82530916323438,46.0,153.50731281629785,-3.2007287,135.95027,world'. 
11:01:13 [INFO]  Filled tag 
                   <npc.location.sub[l@-131.80946173628308,46.827117314324575,145.2511799709905,6.838265,-45.383266,world].div[3].add[l@-123.82530916323438,46.0,153.50731281629785,-3.2007287,135.95027,world]> 
                   with 
                   'l@-121.16392497221814,45.72429422855848,156.25935709806697,-3.2007287,135.95027,world'. 
11:01:13 [INFO] +> Executing 'DEFINE': queue='NEIIIDEZEE'  
                   definition='location1'  
                   value='l@-121.16392497221814,45.72429422855848,156.25935709806697,-3.2007287,135.95027,world' 
11:01:13 [INFO] +- Executing dCommand: DEFINE/p@que1124 ---------+ 
11:01:13 [INFO]  Filled tag <player.location> with 
                   'l@-131.80946173628308,46.827117314324575,145.2511799709905,6.838265,-45.383266,world'. 
11:01:13 [INFO]  Filled tag <npc.location> with 
                   'l@-123.82530916323438,46.0,153.50731281629785,-3.2007287,135.95027,world'. 
11:01:13 [INFO]  Filled tag 
                   <npc.location.sub[l@-131.80946173628308,46.827117314324575,145.2511799709905,6.838265,-45.383266,world].div[3.5].add[l@-123.82530916323438,46.0,153.50731281629785,-3.2007287,135.95027,world]> 
                   with 
                   'l@-121.5441227137919,45.763680767335835,155.8662079149571,-3.2007287,135.95027,world'. 
11:01:13 [INFO] +> Executing 'DEFINE': queue='NEIIIDEZEE'  
                   definition='location2'  
                   value='l@-121.5441227137919,45.763680767335835,155.8662079149571,-3.2007287,135.95027,world' 
11:01:13 [INFO] +- Executing dCommand: DEFINE/p@que1124 ---------+ 
11:01:13 [INFO]  Filled tag <player.location> with 
                   'l@-131.80946173628308,46.827117314324575,145.2511799709905,6.838265,-45.383266,world'. 
11:01:13 [INFO]  Filled tag <npc.location> with 
                   'l@-123.82530916323438,46.0,153.50731281629785,-3.2007287,135.95027,world'. 
11:01:13 [INFO]  Filled tag 
                   <npc.location.sub[l@-131.80946173628308,46.827117314324575,145.2511799709905,6.838265,-45.383266,world].div[4].add[l@-123.82530916323438,46.0,153.50731281629785,-3.2007287,135.95027,world]> 
                   with 
                   'l@-121.8292710199722,45.79322067141886,155.57134602762468,-3.2007287,135.95027,world'. 
11:01:13 [INFO] +> Executing 'DEFINE': queue='NEIIIDEZEE'  
                   definition='location3'  
                   value='l@-121.8292710199722,45.79322067141886,155.57134602762468,-3.2007287,135.95027,world' 
11:01:13 [INFO] +- Executing dCommand: IF/p@que1124 ---------+ 
11:01:13 [INFO]  Filled tag <def[location1].material.is[==].to[m@air]> 
                   with 'false'. 
11:01:13 [INFO]  Filled tag 
                   <def[location1].add[0,1,0].material.is[==].to[m@air]> with 
                   'true'. 
11:01:13 [INFO]  Filled tag <def[location2].material.is[==].to[m@air]> 
                   with 'false'. 
11:01:13 [INFO]  Filled tag 
                   <def[location2].add[0,1,0].material.is[==].to[m@air]> with 
                   'false'. 
11:01:13 [INFO]  Comparable 1: Comparable='Boolean(false)', 
                   Operator='EQUALS', ComparedTo='Boolean(true)' --> 
                   OUTCOME='false' 
11:01:13 [INFO]  Comparable 2: Comparable='Boolean(true)', 
                   Operator='EQUALS', ComparedTo='Boolean(true)' --> 
                   OUTCOME='true' 
11:01:13 [INFO] +- Executing dCommand: IF/p@que1124 ---------+ 
11:01:13 [INFO]  Filled tag <def[location2].material.is[==].to[m@air]> 
                   with 'false'. 
11:01:13 [INFO]  Filled tag 
                   <def[location2].add[0,1,0].material.is[==].to[m@air]> with 
                   'false'. 
11:01:13 [INFO]  Comparable 1: Comparable='Boolean(false)', 
                   Operator='EQUALS', ComparedTo='Boolean(true)' --> 
                   OUTCOME='false' 
11:01:13 [INFO]  Comparable 2: Comparable='Boolean(false)', 
                   Operator='EQUALS', ComparedTo='Boolean(true)' --> 
                   OUTCOME='false' 
11:01:13 [INFO] +- Executing dCommand: WALKTO/p@que1124 ---------+ 
11:01:13 [INFO]  Filled definition %location3% with 
                   'l@-121.8292710199722,45.79322067141886,155.57134602762468,-3.2007287,135.95027,world'. 
11:01:13 [INFO]  Filled tag <npc> with 'n@322'. 
11:01:13 [INFO] +> Executing 'WALKTO': 
                   location='l@-121.8292710199722,45.79322067141886,155.57134602762468,-3.2007287,135.95027,world' 
                    speed='1.5'  npcs='[Glen/322]' 
11:01:13 [INFO] +- Executing dCommand: WAIT/p@que1124 ---------+ 
11:01:13 [INFO] +> Executing 'WAIT': queue='NEIIIDEZEE'  delay='40t' 
11:01:13 [INFO]  OKAY! Trimming world events '[player toggles sprint, 
                   player starts sprinting]' 
11:01:14 [INFO]  OKAY! Trimming world events '[player toggles sprint, 
                   player stops sprinting]' 
11:01:14 [INFO]  OKAY! Trimming world events '[time changes, time changes 
                   in w@world_nether, 17:00 in w@world_nether, time 17 in 
                   w@world_nether, time 17 in world_nether, time changes in 
                   world_nether, 17:00 in world_nether]' 
11:01:14 [INFO]  OKAY! Trimming world events '[time changes, time changes 
                   in w@world_the_end, 23:00 in w@world_the_end, time 23 in 
                   w@world_the_end, 23:00 in world_the_end, time changes in 
                   world_the_end, time 23 in world_the_end]' 
11:01:15 [INFO]  OKAY! Trimming world events '[player right clicks, player 
                   clicks, player right clicks with item, player right clicks 
                   with i@diamond_sword, player right clicks with 
                   m@diamond_sword, player clicks with item, player clicks 
                   with i@diamond_sword, player clicks with m@diamond_sword, 
                   player right clicks with diamond_sword, player clicks with 
                   diamond_sword]' 
11:01:15 [INFO] +- Executing dCommand: PAUSE/p@que1124 ---------+ 
11:01:15 [INFO] +- Executing dCommand: INJECT/p@que1124 ---------+ 
11:01:15 [INFO] +> Executing 'INJECT': Container='GLENSTEPS(INTERACT)'  
                   path='attackTarget'  local='true' 
11:01:15 [INFO] +- Executing dCommand: IF/p@que1124 ---------+ 
11:01:15 [INFO]  Filled tag <npc.flag[attacking]> with 'true'. 
11:01:15 [INFO]  Comparable 1: Logic='NEGATIVE', 
                   Comparable='Boolean(true)', Operator='EQUALS', 
                   ComparedTo='Boolean(true)' --> OUTCOME='false' 
11:01:15 [INFO] +- Executing dCommand: FLAG/p@que1124 ---------+ 
11:01:15 [INFO]  Filled tag <queue.id> with 'NEIIIDEZEE'. 
11:01:15 [INFO] +> Executing 'FLAG': flag_name='QUEUE'  
                   Action/Value='INSERT(NEIIIDEZEE)'  npc='n@322' 
11:01:15 [INFO] +- Executing dCommand: RANDOM/p@que1124 ---------+ 
11:01:15 [INFO] +> Executing 'RANDOM': possibilities='3'  choice='1' 
11:01:15 [INFO] +- Executing dCommand: INJECT/p@que1124 ---------+ 
11:01:15 [INFO] +> Executing 'INJECT': Container='GLENSTEPS(INTERACT)'  
                   path='ice'  local='true' 
11:01:15 [INFO] +- Executing dCommand: NARRATE/p@que1124 ---------+ 
11:01:15 [INFO]  Filled tag <&7> with ''. 
11:01:15 [INFO]  Filled tag <&b> with ''. 
11:01:15 [INFO]  Filled tag <&7> with ''. 
11:01:15 [INFO]  Filled tag <&co> with ':'. 
11:01:15 [INFO] +> Executing 'NARRATE': Narrating='[Glen -> You]: Does 
                   that sting!'  Targets='[p@que1124]' 
11:01:15 [INFO] +- Executing dCommand: SHOOT/p@que1124 ---------+ 
11:01:15 [INFO]  Filled tag <npc> with 'n@322'. 
11:01:15 [INFO]  Filled tag <player.location.add[0,2,0]> with 
                   'l@-127.7873580089151,48.0,149.53844294251525,5.7882643,-36.533264,world'. 
11:01:15 [INFO] +> Executing 'SHOOT': origin='n@322'  
                   entities='[e@FALLING_BLOCK]'  
                   destination='l@-127.7873580089151,48.0,149.53844294251525,5.7882643,-36.533264,world' 
                    height='3'  speed='1.5'  script='ICEBALL(TASK)' 
11:01:15 [INFO] +- Executing dCommand: WAIT/p@que1124 ---------+ 
11:01:15 [INFO] +> Executing 'WAIT': queue='NEIIIDEZEE'  delay='2t' 
11:01:16 [INFO]  OKAY! Trimming world events '[block being built, block 
                   being built on m@air, m@packed_ice being built, 
                   m@packed_ice being built on m@air, packed_ice being built 
                   on air, packed_ice being built, block being built on air]' 
11:01:16 [INFO] +> Executing 'Event': Type='on m@packed_ice being built'  
                   Container='MAGEPROJECTILES(WORLD)'  
                   Context='{old_material=m@air, 
                   location=l@-133.0,46.0,142.0,world, 
                   new_material=m@packed_ice}' 
11:01:16 [INFO] +- Building event 'ON M@PACKED_ICE BEING BUILT' for 
                   MAGEPROJECTILES ---------+ 
11:01:16 [INFO]  Starting InstantQueue 'NNININEIEN'... 
11:01:16 [INFO] +- Executing dCommand: DETERMINE ---------+ 
11:01:16 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='false' 
11:01:16 [INFO]  Completing queue 'NNININEIEN'. 
11:01:16 [INFO]  OKAY! Trimming world events '[item spawns, i@packed_ice 
                   spawns, m@packed_ice spawns, packed_ice spawns]' 
11:01:16 [INFO] +> Executing 'Event': Type='on i@packed_ice spawns'  
                   Container='MAGEPROJECTILES(WORLD)'  
                   Context='{location=l@-132.97777043345604,46.49000000953674,142.75590291261403,0.0,19.339314,world, 
                   entity=e@DROPPED_ITEM, item=i@packed_ice}' 
11:01:16 [INFO] +- Building event 'ON I@PACKED_ICE SPAWNS' for 
                   MAGEPROJECTILES ---------+ 
11:01:16 [INFO]  Starting InstantQueue 'NEDEINEDEN'... 
11:01:16 [INFO] +- Executing dCommand: DETERMINE ---------+ 
11:01:16 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='false' 
11:01:16 [INFO]  Completing queue 'NEDEINEDEN'. 
11:01:16 [INFO] +- Executing dCommand: SHOOT/p@que1124 ---------+ 
11:01:16 [INFO]  Filled tag <npc> with 'n@322'. 
11:01:16 [INFO]  Filled tag <player.location.add[0,2,0]> with 
                   'l@-127.7873580089151,48.0,149.5443995709347,5.7882643,-36.533264,world'. 
11:01:16 [INFO] +> Executing 'SHOOT': origin='n@322'  
                   entities='[e@FALLING_BLOCK]'  
                   destination='l@-127.7873580089151,48.0,149.5443995709347,5.7882643,-36.533264,world' 
                    height='3'  speed='1.5'  script='ICEBALL(TASK)' 
11:01:16 [INFO] +- Executing dCommand: WAIT/p@que1124 ---------+ 
11:01:16 [INFO] +> Executing 'WAIT': queue='NEIIIDEZEE'  delay='2t' 
11:01:16 [INFO]  Starting InstantQueue 'ZDENEEZIEI'... 
11:01:16 [INFO] +- Executing dCommand: FOREACH/p@que1124 ---------+ 
11:01:16 [INFO]  Filled tag 
                   <def[location].find.living_entities.within[2.5]> with 
                   'li@'. 
11:01:16 [INFO] +> Executing 'FOREACH': list='li@' 
11:01:16 [INFO]  Empty list, not looping... 
11:01:16 [INFO]  Completing queue 'ZDENEEZIEI'. 
11:01:16 [INFO]  OKAY! Trimming world events '[block being built, block 
                   being built on m@air, m@packed_ice being built, 
                   m@packed_ice being built on m@air, packed_ice being built 
                   on air, packed_ice being built, block being built on air]' 
11:01:16 [INFO] +> Executing 'Event': Type='on m@packed_ice being built'  
                   Container='MAGEPROJECTILES(WORLD)'  
                   Context='{old_material=m@air, 
                   location=l@-133.0,46.0,142.0,world, 
                   new_material=m@packed_ice}' 
11:01:16 [INFO] +- Building event 'ON M@PACKED_ICE BEING BUILT' for 
                   MAGEPROJECTILES ---------+ 
11:01:16 [INFO]  Starting InstantQueue 'IEDZDDZENN'... 
11:01:16 [INFO] +- Executing dCommand: DETERMINE ---------+ 
11:01:16 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='false' 
11:01:16 [INFO]  Completing queue 'IEDZDDZENN'. 
11:01:16 [INFO]  OKAY! Trimming world events '[item spawns, i@packed_ice 
                   spawns, m@packed_ice spawns, packed_ice spawns]' 
11:01:16 [INFO] +> Executing 'Event': Type='on i@packed_ice spawns'  
                   Container='MAGEPROJECTILES(WORLD)'  
                   Context='{location=l@-132.98390377426782,46.49000000953674,142.76081865702065,0.0,220.20229,world, 
                   entity=e@DROPPED_ITEM, item=i@packed_ice}' 
11:01:16 [INFO] +- Building event 'ON I@PACKED_ICE SPAWNS' for 
                   MAGEPROJECTILES ---------+ 
11:01:16 [INFO]  Starting InstantQueue 'EIEEEIDENN'... 
11:01:16 [INFO] +- Executing dCommand: DETERMINE ---------+ 
11:01:16 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='false' 
11:01:16 [INFO]  Completing queue 'EIEEEIDENN'. 
11:01:16 [INFO]  Starting InstantQueue 'ENNNEZNEEE'... 
11:01:16 [INFO] +- Executing dCommand: FOREACH/p@que1124 ---------+ 
11:01:16 [INFO]  Filled tag 
                   <def[location].find.living_entities.within[2.5]> with 
                   'li@'. 
11:01:16 [INFO] +> Executing 'FOREACH': list='li@' 
11:01:16 [INFO]  Empty list, not looping... 
11:01:16 [INFO]  Completing queue 'ENNNEZNEEE'. 
11:01:16 [INFO] +- Executing dCommand: SHOOT/p@que1124 ---------+ 
11:01:16 [INFO]  Filled tag <npc> with 'n@322'. 
11:01:16 [INFO]  Filled tag <player.location.sub[0,2,0]> with 
                   'l@-127.7873580089151,44.0,149.5443995709347,5.7882643,-36.533264,world'. 
11:01:16 [INFO] +> Executing 'SHOOT': origin='n@322'  
                   entities='[e@FALLING_BLOCK]'  
                   destination='l@-127.7873580089151,44.0,149.5443995709347,5.7882643,-36.533264,world' 
                    height='3'  speed='1.5'  script='ICEBALL(TASK)' 
11:01:16 [INFO] +- Executing dCommand: WAIT/p@que1124 ---------+ 
11:01:16 [INFO] +> Executing 'WAIT': queue='NEIIIDEZEE'  delay='2t' 
11:01:16 [INFO]  OKAY! Trimming world events '[block being built, block 
                   being built on m@air, m@packed_ice being built, 
                   m@packed_ice being built on m@air, packed_ice being built 
                   on air, packed_ice being built, block being built on air]' 
11:01:16 [INFO] +> Executing 'Event': Type='on m@packed_ice being built'  
                   Container='MAGEPROJECTILES(WORLD)'  
                   Context='{old_material=m@air, 
                   location=l@-127.0,46.0,151.0,world, 
                   new_material=m@packed_ice}' 
11:01:16 [INFO] +- Building event 'ON M@PACKED_ICE BEING BUILT' for 
                   MAGEPROJECTILES ---------+ 
11:01:16 [INFO]  Starting InstantQueue 'NEIENNZEIN'... 
11:01:16 [INFO] +- Executing dCommand: DETERMINE ---------+ 
11:01:16 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='false' 
11:01:16 [INFO]  Completing queue 'NEIENNZEIN'. 
11:01:16 [INFO]  OKAY! Trimming world events '[item spawns, i@packed_ice 
                   spawns, m@packed_ice spawns, packed_ice spawns]' 
11:01:16 [INFO] +> Executing 'Event': Type='on i@packed_ice spawns'  
                   Container='MAGEPROJECTILES(WORLD)'  
                   Context='{location=l@-126.03140991049841,46.49000000953674,151.56149513515697,0.0,155.46808,world, 
                   entity=e@DROPPED_ITEM, item=i@packed_ice}' 
11:01:16 [INFO] +- Building event 'ON I@PACKED_ICE SPAWNS' for 
                   MAGEPROJECTILES ---------+ 
11:01:16 [INFO]  Starting InstantQueue 'NIEIZZEEIN'... 
11:01:16 [INFO] +- Executing dCommand: DETERMINE ---------+ 
11:01:16 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='false' 
11:01:16 [INFO]  Completing queue 'NIEIZZEEIN'. 
11:01:16 [INFO]  Starting InstantQueue 'NEZENININE'... 
11:01:16 [INFO] +- Executing dCommand: FOREACH/p@que1124 ---------+ 
11:01:16 [INFO]  Filled tag 
                   <def[location].find.living_entities.within[2.5]> with 
                   'li@n@322'. 
11:01:16 [INFO] +> Executing 'FOREACH': list='li@n@322' 
11:01:16 [INFO] +- Executing dCommand: IF/p@que1124 ---------+ 
11:01:16 [INFO]  Filled tag <def[value].is_npc> with 'true'. 
11:01:16 [INFO]  Comparable 1: Comparable='Boolean(true)', 
                   Operator='EQUALS', ComparedTo='Boolean(true)' --> 
                   OUTCOME='true' 
11:01:16 [INFO] +- Executing dCommand: QUEUE/p@que1124 ---------+ 
11:01:16 [INFO] +> Executing 'QUEUE': Queue='NEZENININE'  Action='CLEAR' 
11:01:16 [INFO]  Completing queue 'NEZENININE'. 
11:01:17 [INFO] +- Executing dCommand: SHOOT/p@que1124 ---------+ 
11:01:17 [INFO]  Filled tag <npc> with 'n@322'. 
11:01:17 [INFO]  Filled tag <player.location.sub[0,2,0]> with 
                   'l@-127.7873580089151,44.0,149.5443995709347,5.638264,-36.833263,world'. 
11:01:17 [INFO] +> Executing 'SHOOT': origin='n@322'  
                   entities='[e@FALLING_BLOCK]'  
                   destination='l@-127.7873580089151,44.0,149.5443995709347,5.638264,-36.833263,world' 
                    height='3'  speed='1.5'  script='ICEBALL(TASK)' 
11:01:17 [INFO] +- Executing dCommand: WAIT/p@que1124 ---------+ 
11:01:17 [INFO] +> Executing 'WAIT': queue='NEIIIDEZEE'  delay='2t' 
11:01:17 [INFO]  OKAY! Trimming world events '[block being built, block 
                   being built on m@air, m@packed_ice being built, 
                   m@packed_ice being built on m@air, packed_ice being built 
                   on air, packed_ice being built, block being built on air]' 
11:01:17 [INFO] +> Executing 'Event': Type='on m@packed_ice being built'  
                   Container='MAGEPROJECTILES(WORLD)'  
                   Context='{old_material=m@air, 
                   location=l@-127.0,46.0,151.0,world, 
                   new_material=m@packed_ice}' 
11:01:17 [INFO] +- Building event 'ON M@PACKED_ICE BEING BUILT' for 
                   MAGEPROJECTILES ---------+ 
11:01:17 [INFO]  Starting InstantQueue 'EEDEEEEIED'... 
11:01:17 [INFO] +- Executing dCommand: DETERMINE ---------+ 
11:01:17 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='false' 
11:01:17 [INFO]  Completing queue 'EEDEEEEIED'. 
11:01:17 [INFO]  OKAY! Trimming world events '[item spawns, i@packed_ice 
                   spawns, m@packed_ice spawns, packed_ice spawns]' 
11:01:17 [INFO] +> Executing 'Event': Type='on i@packed_ice spawns'  
                   Container='MAGEPROJECTILES(WORLD)'  
                   Context='{location=l@-126.03140991049841,46.49000000953674,151.56149513515697,0.0,145.60815,world, 
                   entity=e@DROPPED_ITEM, item=i@packed_ice}' 
11:01:17 [INFO] +- Building event 'ON I@PACKED_ICE SPAWNS' for 
                   MAGEPROJECTILES ---------+ 
11:01:17 [INFO]  Starting InstantQueue 'IZZENNEDNE'... 
11:01:17 [INFO] +- Executing dCommand: DETERMINE ---------+ 
11:01:17 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='false' 
11:01:17 [INFO]  Completing queue 'IZZENNEDNE'. 
11:01:17 [INFO]  Starting InstantQueue 'DNEDEZZNZE'... 
11:01:17 [INFO] +- Executing dCommand: FOREACH/p@que1124 ---------+ 
11:01:17 [INFO]  Filled tag 
                   <def[location].find.living_entities.within[2.5]> with 
                   'li@n@322'. 
11:01:17 [INFO] +> Executing 'FOREACH': list='li@n@322' 
11:01:17 [INFO] +- Executing dCommand: IF/p@que1124 ---------+ 
11:01:17 [INFO]  Filled tag <def[value].is_npc> with 'true'. 
11:01:17 [INFO]  Comparable 1: Comparable='Boolean(true)', 
                   Operator='EQUALS', ComparedTo='Boolean(true)' --> 
                   OUTCOME='true' 
11:01:17 [INFO] +- Executing dCommand: QUEUE/p@que1124 ---------+ 
11:01:17 [INFO] +> Executing 'QUEUE': Queue='DNEDEZZNZE'  Action='CLEAR' 
11:01:17 [INFO]  Completing queue 'DNEDEZZNZE'. 
11:01:17 [INFO]  OKAY! Trimming world events '[command, DS command, DS 
                   command]' 
11:01:17 [INFO] +> Executing 'Event': Type='on DS command'  
                   Container='SHORTENER(WORLD)'  Player='que1124'  
                   Context='{cuboids=li@, args=li@, raw_args=, command=DS, 
                   server=false, parsed_args=li@}' 
11:01:17 [INFO] +- Building event 'ON DS COMMAND' for SHORTENER ---------+ 
11:01:17 [INFO]  Starting InstantQueue 'NNZEEEEEDD'... 
11:01:17 [INFO] +- Executing dCommand: EXECUTE/p@que1124 ---------+ 
11:01:17 [INFO] +> Executing 'EXECUTE': type='AS_PLAYER'  command='denizen 
                   submit' 
11:01:17 [INFO]  OKAY! Trimming world events '[command, DENIZEN command]'