Paste #16622: Denizen Debug Logs From A Test Server

Date: 2015/06/18 19:36:56 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
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359


Java Version: 1.8.0_45
Up-time: 15h 6m
CraftBukkit Version: git-Spigot-3ccbe77-a6a57a9 (MC: 1.8.7)
Denizen Version: Core: 1.05 (Build Unknown), CraftBukkit: 0.9.6-SNAPSHOT (build 237)
Active Plugins (9): AsyncWorldEditInjector: 2.1.3, Citizens: 2.0.16-SNAPSHOT (build 1240), WorldEdit: 6.0.2-SNAPSHOT;3370-58aac973, 
AsyncWorldEdit: 2.1.5, Denizen: 0.9.6-SNAPSHOT (build 237), VoxelSniper: 7.0.0, 
WorldGuard: 6.0.0-SNAPSHOT.1592-, Webizen: 0.2.0, Depenizen: 0.2.1 (build 250),
Loaded Worlds (4): world, world_nether, world_the_end, guildworld
Online Players (4): DMo(DMo), xArie(xArie), TheBlackCoyote(TheBlackCoyote), Lordtedo(Lordtedo),
Offline Players: 26
Mode: online

20:36:50 [INFO] +> Executing 'Event': Type='on DENIZEN command'  
                   Container='YAML_MANAGER(WORLD)'  
                   player=p@TheBlackCoyoteContext='{args=li@reload|scripts, 
                   cuboids=li@, server=false, parsed_args=li@reload|scripts, 
                   command=DENIZEN, raw_args=reload scripts}' 
20:36:50 [INFO] +- Building event 'ON DENIZEN COMMAND' for YAML_MANAGER 
                   ---------+ 
20:36:50 [INFO]  Starting InstantQueue 
                   'YAML_MANAGER_SpatialTranscriptsOperator'... 
20:36:50 [INFO]  Queue 'YAML_MANAGER_SpatialTranscriptsOperator' Executing: IF 
                   "<context.args.get[1]>" "==" "reload" "{" "-" "yaml" 
                   "load:/ECMMO_SAVES/A_SKILL_ABILITY_CONFIG.yml" "id:SKILLS" "-" 
                   "yaml" "load:/ECMMO_SAVES/C_CRAFTING_XP.yml" "id:CRAFTING_EXP" 
                   "}" 
20:36:50 [INFO] +- Executing dCommand: IF/p@TheBlackCoyote ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='true' 
20:36:50 [INFO]  Filled tag <context.args.get[1]> with 'reload'. 
20:36:50 [INFO]  Comparable='Element(reload)', Operator='EQUALS', 
                   ComparedTo='Element(reload)' --> OUTCOME='true' 
20:36:50 [INFO]  Queue 'YAML_MANAGER_SpatialTranscriptsOperator' Executing: 
                   YAML "load:/ECMMO_SAVES/A_SKILL_ABILITY_CONFIG.yml" 
                   "id:SKILLS" 
20:36:50 [INFO] +- Executing dCommand: YAML/p@TheBlackCoyote ---------+ 
20:36:50 [INFO] +> Executing 'YAML': id='SKILLS'  action='LOAD'  
                   filename='/ECMMO_SAVES/A_SKILL_ABILITY_CONFIG.yml'  value=''  
                   fix_formatting='false' 
20:36:50 [INFO]  Queue 'YAML_MANAGER_SpatialTranscriptsOperator' Executing: 
                   YAML "load:/ECMMO_SAVES/C_CRAFTING_XP.yml" "id:CRAFTING_EXP" 
20:36:50 [INFO] +- Executing dCommand: YAML/p@TheBlackCoyote ---------+ 
20:36:50 [INFO] +> Executing 'YAML': id='CRAFTING_EXP'  action='LOAD'  
                   filename='/ECMMO_SAVES/C_CRAFTING_XP.yml'  value=''  
                   fix_formatting='false' 
20:36:50 [INFO]  Completing queue 'YAML_MANAGER_SpatialTranscriptsOperator' in 
                   3ms. 
20:36:50 [INFO] +> [Denizen] Processing outside scripts... 
20:36:50 [INFO] +> [Denizen] Processing unnamed script... 
20:36:50 [INFO] +> [Denizen] Processing '\CHAT\chat_handler.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\CHAT\NAMETAG_HANDLER.yml'... 
20:36:50 [INFO] +> [Denizen] Processing 
                   '\DUNGEONS\ender_dragon_dungeon.yml'... 
20:36:50 [INFO] +> [Denizen] Processing 
                   '\ECMMO\ability_cooldown_visualizer.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\ability_selector_v2.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\A_block_log.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\a_entity_log.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\A_FORMULA_RPOCEDURES.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\A_leveler.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\A_Skill_Page.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\A_YAML_manager.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\B_Leather_Gloves.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\B_Magic_Wand.yml'... 
20:36:50 [INFO] +> [Denizen] Processing 
                   '\ECMMO\crafting_abilities_active.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\crafting_exp.yml'... 
20:36:50 [INFO] +> [Denizen] Processing 
                   '\ECMMO\defence_abilities_active.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\defence_exp.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\enchanting_exp.yml'... 
20:36:50 [INFO] +> [Denizen] Processing 
                   '\ECMMO\excavating_abilities_active.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\excavating_exp.yml'... 
20:36:50 [INFO] +> [Denizen] Processing 
                   '\ECMMO\farming_abilities_active.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\farming_exp.yml'... 
20:36:50 [INFO] +> [Denizen] Processing 
                   '\ECMMO\fishing_abilities_active.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\fishing_exp.yml'... 
20:36:50 [INFO] +> [Denizen] Processing 
                   '\ECMMO\husbandry_abilities_active.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\husbandry_exp.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\magic_abilities_active.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\magic_exp.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\melee_abilities_active.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\melee_exp.yml'... 
20:36:50 [INFO] +> [Denizen] Processing 
                   '\ECMMO\mining_abilities_active.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\mining_exp.yml'... 
20:36:50 [INFO] +> [Denizen] Processing 
                   '\ECMMO\ranged_abilities_active.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\ranged_exp.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\repairing_exp.yml'... 
20:36:50 [INFO] +> [Denizen] Processing 
                   '\ECMMO\smelting_abilities_active.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\smelting_exp.yml'... 
20:36:50 [INFO] +> [Denizen] Processing 
                   '\ECMMO\woodcutting_abilities_active.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\ECMMO\woodcutting_exp.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\GUILDS\GUILDWORLD_SECURITY.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\GUILDS\GUILD_MANAGER.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\GUILDS\GUILD_PORTALS.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\GUILDS\GUILD_YAML_MANAGER.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\NEWS\NEWS_BOOK.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\POLL\poll.yml'... 
20:36:50 [INFO]  ERROR! Invalid YAML object type: [narrate "<&a>Voted 
                   YES<&co><&e> <server.flag[vote.YES].as_int||0>", narrate 
                   "<&a>Voted NO<&co><&e> <server.flag[vote.NO].as_int||0>"] is 
                   ArrayList 
20:36:50 [INFO]  ERROR! Woah! Error parsing \POLL\poll.yml! This script has 
                   been skipped. No internal error - is the file empty? 
20:36:50 [INFO] +> [Denizen] Processing '\SECURITY\AUTOSAVE.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\SECURITY\BETA_HANDLER.yml'... 
20:36:50 [INFO] +> [Denizen] Processing 
                   '\SECURITY\DATA_SECURITY_HANDLER.yml'... 
20:36:50 [INFO] +> [Denizen] Processing 
                   '\SECURITY\LAND_PROTECTION_HANDLER.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\SECURITY\MEMORY_MONITORING.yml'... 
20:36:50 [INFO] +> [Denizen] Processing 
                   '\SERVERLIST_MESSAGE\server_list_ping.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\STAFF&MODERATORY\ADMIN TOOLS.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\STAFF&MODERATORY\lumibans.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\STAFF&MODERATORY\RANKS.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\STAFF&MODERATORY\shortcuts.yml'... 
20:36:50 [INFO] +> [Denizen] Processing '\WEBSITESCRIPTS\test.yml'... 
20:36:50 [INFO]  OKAY! All scripts loaded! 
20:36:50 [INFO] +> [Denizen] Adding script UNLOAD_LOOP as type TASK 
20:36:50 [INFO] +> [Denizen] Adding script RESIZE_PLOT_STARTUP as type TASK 
20:36:50 [INFO] +> [Denizen] Adding script SKILLS_BOOK_MELEE as type BOOK 
20:36:50 [INFO] +> [Denizen] Adding script STACKER_INVENTORY as type INVENTORY 
20:36:50 [INFO] +> [Denizen] Adding script SERVER_LIST_PING as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script SKILLS_BOOK_FARMING as type BOOK 
20:36:50 [INFO] +> [Denizen] Adding script SKILLS_BOOK_CONSTRUCTING as type 
                   BOOK 
20:36:50 [INFO] +> [Denizen] Adding script PREFIX as type PROCEDURE 
20:36:50 [INFO] +> [Denizen] Adding script HIDE_COMMANDS as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script SKILLS_BOOK_MINING as type BOOK 
20:36:50 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_SMELTING as type 
                   WORLD 
20:36:50 [INFO] +> [Denizen] Adding script LEADERBOARDS as type PROCEDURE 
20:36:50 [INFO] +> [Denizen] Adding script MAX_MANA as type PROCEDURE 
20:36:50 [INFO] +> [Denizen] Adding script YAML_MANAGER as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script AUTOSAVE_LOOP as type TASK 
20:36:50 [INFO] +> [Denizen] Adding script INDIVIDUAL_SKILL as type PROCEDURE 
20:36:50 [INFO] +> [Denizen] Adding script ENDER_KEY as type ITEM 
20:36:50 [INFO] +> [Denizen] Adding script SKILLS_BOOK_DEFENCE as type BOOK 
20:36:50 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_ENCHANTING as type 
                   WORLD 
20:36:50 [INFO] +> [Denizen] Adding script SKILLS_BOOK_ENCHANTING as type BOOK 
20:36:50 [INFO] +> [Denizen] Adding script EXP_FOR_LEVEL as type PROCEDURE 
20:36:50 [INFO] +> [Denizen] Adding script GUILD_AUTOSAVE as type TASK 
20:36:50 [INFO] +> [Denizen] Adding script GUILD_PROCEDURE as type PROCEDURE 
20:36:50 [INFO] +> [Denizen] Adding script SHOW_EXP_BOSS_BAR as type TASK 
20:36:50 [INFO] +> [Denizen] Adding script WHIRLWIND_SUB1 as type TASK 
20:36:50 [INFO] +> [Denizen] Adding script AUTO_REDEFINE_PLOTS as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script SKILLS_BOOK_CRAFTING as type BOOK 
20:36:50 [INFO] +> [Denizen] Adding script DEFENCE_ABILITIES as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script SKILLS_BOOK_FISHING as type BOOK 
20:36:50 [INFO] +> [Denizen] Adding script LEATHER_GLOVES_DURABILITY as type 
                   TASK 
20:36:50 [INFO] +> [Denizen] Adding script DEBUG_BOARD as type TASK 
20:36:50 [INFO] +> [Denizen] Adding script LIGHTNING_BOLT as type TASK 
20:36:50 [INFO] +> [Denizen] Adding script NEWS_BOOK as type BOOK 
20:36:50 [INFO] +> [Denizen] Adding script RAM_MONITORING as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script ENTITY_LOG as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script GLOBAL as type FORMAT 
20:36:50 [INFO] +> [Denizen] Adding script GUILDWORLD_SECURITY as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_MELEE as type 
                   WORLD 
20:36:50 [INFO] +> [Denizen] Adding script SKILLS_BOOK_MAGIC as type BOOK 
20:36:50 [INFO] +> [Denizen] Adding script GUILD_PORTAL_EVENTS as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script MAINTAIN_WORLD as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script AUTOSAVE_INITIATE as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script SMELTING_ABILITIES as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script CHECK_COMMAND as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script ABILITY_DURATION as type PROCEDURE 
20:36:50 [INFO] +> [Denizen] Adding script LIGHTNING_BOLT_DAMAGE as type TASK 
20:36:50 [INFO] +> [Denizen] Adding script SKILLS_BOOK_EXCAVATING as type BOOK 
20:36:50 [INFO] +> [Denizen] Adding script CHECK_LEVEL as type TASK 
20:36:50 [INFO] +> [Denizen] Adding script SKILLS_BOOK_WOODCUTTING as type 
                   BOOK 
20:36:50 [INFO] +> [Denizen] Adding script AUTOSAVE as type TASK 
20:36:50 [INFO] +> [Denizen] Adding script SKILLS_BOOK_HUSBANDRY as type BOOK 
20:36:50 [INFO] +> [Denizen] Adding script ABILITY_COOLDOWN_VISUALIZER as type 
                   TASK 
20:36:50 [INFO] +> [Denizen] Adding script RANGED_ABILITIES as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_MINING as type 
                   WORLD 
20:36:50 [INFO] +> [Denizen] Adding script BASIC_WAND as type ITEM 
20:36:50 [INFO]  Filled tag <&b> with ''. 
20:36:50 [INFO]  Filled tag <&b> with ''. 
20:36:50 [INFO]  Filled tag <&co> with ':'. 
20:36:50 [INFO]  Filled tag <&7> with ''. 
20:36:50 [INFO]  Filled tag <&7> with ''. 
20:36:50 [INFO]  Filled tag <&e> with ''. 
20:36:50 [INFO]  Filled tag <&co> with ':'. 
20:36:50 [INFO] +> [Denizen] Adding script CHAT as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script WOODCUTTING_ABILITIES as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script NAMETAG_LOGIN as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script NEWS_COMMAND as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script CRAFTING_ABILITIES as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script SKILLS_BOOK_REPAIRING as type BOOK 
20:36:50 [INFO] +> [Denizen] Adding script EXCAVATING_ABILITIES as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script MANA_INCREASE as type TASK 
20:36:50 [INFO] +> [Denizen] Adding script SKILLS_BOOK as type BOOK 
20:36:50 [INFO] +> [Denizen] Adding script ENDER_DRAGON_DUNGEON as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_FARMING as type 
                   WORLD 
20:36:50 [INFO] +> [Denizen] Adding script COOLDOWN_DURATION as type PROCEDURE 
20:36:50 [INFO] +> [Denizen] Adding script WEBSITE_SCRIPTS as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script CAN_DO_DAMAGE as type TASK 
20:36:50 [INFO] +> [Denizen] Adding script SKILLS_BOOK_PROCEDURE_SKILL as type 
                   PROCEDURE 
20:36:50 [INFO] +> [Denizen] Adding script INITIATE_GUILD_AUTOSAVE as type 
                   TASK 
20:36:50 [INFO] +> [Denizen] Adding script LOAD TESTER as type COMMAND 
20:36:50 [INFO] +> [Denizen] Adding script FISHING_ABILITIES as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script MINING_ABILITIES as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_DEFENCE as type 
                   WORLD 
20:36:50 [INFO] +> [Denizen] Adding script PROTECTED_AREAS as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script BLOCK_LOGGING as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_HUSBANDRY as type 
                   WORLD 
20:36:50 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_FISHING as type 
                   WORLD 
20:36:50 [INFO] +> [Denizen] Adding script SKILLS_BOOK_RANGED as type BOOK 
20:36:50 [INFO] +> [Denizen] Adding script EXP_MODIFIER as type PROCEDURE 
20:36:50 [INFO] +> [Denizen] Adding script TEST_TOOLS as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script XP_AUTOSAVE as type TASK 
20:36:50 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_MAGIC as type 
                   WORLD 
20:36:50 [INFO] +> [Denizen] Adding script CONDUCTIVE_WAND as type ITEM 
20:36:50 [INFO]  Filled tag <&b> with ''. 
20:36:50 [INFO]  Filled tag <&b> with ''. 
20:36:50 [INFO]  Filled tag <&co> with ':'. 
20:36:50 [INFO]  Filled tag <&7> with ''. 
20:36:50 [INFO]  Filled tag <&7> with ''. 
20:36:50 [INFO]  Filled tag <&e> with ''. 
20:36:50 [INFO]  Filled tag <&co> with ':'. 
20:36:50 [INFO] +> [Denizen] Adding script PAGE2_GUILDS as type PROCEDURE 
20:36:50 [INFO] +> [Denizen] Adding script 
                   EXPERIENCE_GAINS_HUSBANDRY_DUPLICATE_EVENTS as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script MELEE_ABILITIES as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script MAGIC_ABILITIES as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script PREPAREPLOT as type TASK 
20:36:50 [INFO] +> [Denizen] Adding script CAN_EDIT_TERRAIN as type TASK 
20:36:50 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_WOODCUTTING as 
                   type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script LEATHER_GLOVES as type ITEM 
20:36:50 [INFO]  Filled tag <&b> with ''. 
20:36:50 [INFO]  Filled tag <&7> with ''. 
20:36:50 [INFO]  Filled tag <&7> with ''. 
20:36:50 [INFO]  Filled tag <&e> with ''. 
20:36:50 [INFO]  Filled tag <&co> with ':'. 
20:36:50 [INFO] +> [Denizen] Adding script SKILLS_BOOK_SMELTING as type BOOK 
20:36:50 [INFO] +> [Denizen] Adding script CAN_DO_ABILITY as type TASK 
20:36:50 [INFO] +> [Denizen] Adding script GET_COMBAT_FOR_CHAT as type 
                   PROCEDURE 
20:36:50 [INFO] +> [Denizen] Adding script LEVEL_UP as type TASK 
20:36:50 [INFO] +> [Denizen] Adding script SHORTCUTS as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_REPAIRING as type 
                   WORLD 
20:36:50 [INFO] +> [Denizen] Adding script FIND_LAST_CAUSE as type TASK 
20:36:50 [INFO] +> [Denizen] Adding script SKILLS_BOOK_PROCEDURE_1 as type 
                   PROCEDURE 
20:36:50 [INFO] +> [Denizen] Adding script GIVE_RANKS as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_EXCAVATING as type 
                   WORLD 
20:36:50 [INFO] +> [Denizen] Adding script SKILLS_BOOK_HUNTING as type BOOK 
20:36:50 [INFO] +> [Denizen] Adding script BETA as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script LUMIBANSEVENTHANDLER as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script PAGE1_GUILDS as type PROCEDURE 
20:36:50 [INFO] +> [Denizen] Adding script RESIZE_PLOT as type TASK 
20:36:50 [INFO] +> [Denizen] Adding script 
                   AVOID_STACKING_OR_CRAFTING_LEATHER_GLOVES as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script GUILD_BOOK as type BOOK 
20:36:50 [INFO] +> [Denizen] Adding script ABILITY_SELECTOR_V2 as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script CAN_DO_SPAWN as type TASK 
20:36:50 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_CRAFTING as type 
                   WORLD 
20:36:50 [INFO] +> [Denizen] Adding script GUILD_PORTAL as type ITEM 
20:36:50 [INFO]  Filled tag <&a> with ''. 
20:36:50 [INFO]  Filled tag <&7> with ''. 
20:36:50 [INFO] +> [Denizen] Adding script GIVE_EXP as type TASK 
20:36:50 [INFO] +> [Denizen] Adding script GUILD_COMMANDS as type COMMAND 
20:36:50 [INFO] +> [Denizen] Adding script LUMIBANSCOMMANDHANDLER11 as type 
                   WORLD 
20:36:50 [INFO] +> [Denizen] Adding script GUILD_YAML_MANAGER as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script MAGIC_WAND_DURABILITY as type TASK 
20:36:50 [INFO] +> [Denizen] Adding script 
                   ABILITY_COOLDOWN_VISUALIZER_INITIATOR as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script HUSBANDRY_ABILITIES as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script FARMING_ABILITIES as type WORLD 
20:36:50 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_RANGED as type 
                   WORLD 
20:36:50 [INFO] +> [Denizen] Scanning 55 world scripts... 
20:36:50 [INFO]  ERROR! Script 'FISHING_ABILITIES' does not have an events 
                   block! 
20:36:50 [INFO]  ERROR! Script 'FARMING_ABILITIES' does not have an events 
                   block! 
20:36:50 [INFO]  ERROR! Script 'HUSBANDRY_ABILITIES' does not have an events 
                   block! 
20:36:50 [INFO] +> [ItemScrollSm...] Loaded Item Scroll SmartEvent. 
20:36:50 [INFO] +> [EntityDeathS...] Loaded Entity Death SmartEvent. 
20:36:50 [INFO] +> [EntityIntera...] Loaded Entity Interact SmartEvent. 
20:36:50 [INFO] +> [ChunkUnloadS...] Loaded Chunk Unload SmartEvent. 
20:36:50 [INFO] +> [CommandSmart...] Loaded Command SmartEvent. 
20:36:50 [INFO] +> [EntityDamage...] Loaded Entity Damage SmartEvent. 
20:36:50 [INFO] +> [EntitySpawnS...] Loaded Entity Spawn SmartEvent. 
20:36:50 [INFO] +> [CuboidEnterE...] Loaded Cuboid Enter & Exit SmartEvent. 
20:36:50 [INFO] +> [ListPingSmar...] Loaded List Ping SmartEvent. 
20:36:50 [INFO] +> [Denizen] Reloading script events... 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
20:36:50 [INFO] +> [Denizen] Event match, Chat matched for 'PLAYER CHATS'! 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
20:36:50 [INFO] +> [Denizen] Event match, EntityTeleports matched for 'PLAYER 
                   TELEPORTS'! 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
20:36:50 [INFO] +> [Denizen] Event match, GetRequest matched for 'GET 
                   REQUEST'! 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
20:36:50 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_EuropeanUncleMug' Executing: IF 
                   "<context.location.world>" "==" "w@guildworld" "{" "-" "if" 
                   "<context.reason>" "==" "default" "queue" "clear" "-" 
                   "determine" "cancelled" "passively" "-" "queue" "clear" "}" 
                   "else" "if" "<context.location.cuboids.size>" ">" "0" "{" "-" 
                   "foreach" "<context.cuboids>" "{" "-" "if" 
                   "<yaml[SERVER_CUBOIDS].read[server.<def[value].notable_name>.spawning]>" 
                   "==" "disabled" "{" "-" "determine" "cancelled" "passively" 
                   "-" "queue" "clear" "}" "}" "}" 
20:36:50 [INFO] +- Executing dCommand: IF ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='true' 
20:36:50 [INFO]  Filled tag <context.location.world> with 'w@world'. 
20:36:50 [INFO]  Comparable='Element(w@world)', Operator='EQUALS', 
                   ComparedTo='Element(w@guildworld)' --> OUTCOME='false' 
20:36:50 [INFO]  Filled tag <context.location.cuboids.size> with '0'. 
20:36:50 [INFO]  Comparable='Number(0)', Operator='MORE', 
                   ComparedTo='Number(0)' --> OUTCOME='false' 
20:36:50 [INFO]  Completing queue 'PROTECTED_AREAS_EuropeanUncleMug' in 0ms. 
20:36:50 [INFO] +> Executing 'Event': Type='on entity spawns'  
                   Container='ENTITY_LOG(WORLD)'  Context='{cuboids=li@, 
                   reason=NATURAL, 
                   location=l@232.5,64.0,1373.5,0.0,295.96085,world, 
                   entity=e@aeedd4bc-eadb-44bb-a0ca-2389a9631e6a}' 
20:36:50 [INFO] +- Building event 'ON ENTITY SPAWNS' for ENTITY_LOG ---------+ 
20:36:50 [INFO]  Starting InstantQueue 'ENTITY_LOG_EventVaticanYo'... 
20:36:50 [INFO]  Queue 'ENTITY_LOG_EventVaticanYo' Executing: IF 
                   "<context.reason>" "==" "SPAWNER" "flag" "<context.entity>" 
                   "spawn_cause:<context.reason>" 
20:36:50 [INFO] +- Executing dCommand: IF ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='false' 
20:36:50 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:50 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(SPAWNER)' --> OUTCOME='false' 
20:36:50 [INFO]  Completing queue 'ENTITY_LOG_EventVaticanYo' in 0ms. 
20:36:50 [INFO]  ERROR in script 'ABILITY_COOLDOWN_VISUALIZER'! Scoreboard 
                   DMo1434681407950 does not exist! 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_CzDevelopingOffered' Executing: IF 
                   "<context.location.world>" "==" "w@guildworld" "{" "-" "if" 
                   "<context.reason>" "==" "default" "queue" "clear" "-" 
                   "determine" "cancelled" "passively" "-" "queue" "clear" "}" 
                   "else" "if" "<context.location.cuboids.size>" ">" "0" "{" "-" 
                   "foreach" "<context.cuboids>" "{" "-" "if" 
                   "<yaml[SERVER_CUBOIDS].read[server.<def[value].notable_name>.spawning]>" 
                   "==" "disabled" "{" "-" "determine" "cancelled" "passively" 
                   "-" "queue" "clear" "}" "}" "}" 
20:36:50 [INFO] +- Executing dCommand: IF ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='true' 
20:36:50 [INFO]  Filled tag <context.location.world> with 'w@guildworld'. 
20:36:50 [INFO]  Comparable='Element(w@guildworld)', Operator='EQUALS', 
                   ComparedTo='Element(w@guildworld)' --> OUTCOME='true' 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_CzDevelopingOffered' Executing: IF 
                   "<context.reason>" "==" "default" "queue" "clear" 
20:36:50 [INFO] +- Executing dCommand: IF ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='false' 
20:36:50 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:50 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(default)' --> OUTCOME='false' 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_CzDevelopingOffered' Executing: 
                   DETERMINE "cancelled" "passively" 
20:36:50 [INFO] +- Executing dCommand: DETERMINE ---------+ 
20:36:50 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='true' 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_CzDevelopingOffered' Executing: QUEUE 
                   "clear" 
20:36:50 [INFO] +- Executing dCommand: QUEUE ---------+ 
20:36:50 [INFO] +> Executing 'QUEUE': 
                   queue='q@PROTECTED_AREAS_CzDevelopingOffered'  Action='CLEAR' 
20:36:50 [INFO]  Completing queue 'PROTECTED_AREAS_CzDevelopingOffered' in 
                   2ms. 
20:36:50 [INFO] +> Executing 'Event': Type='on entity spawns'  
                   Container='ENTITY_LOG(WORLD)'  
                   Context='{cuboids=li@cu@2b2dd57d-97f9-4a3c-8788-acae64ed9d0c_guild, 
                   reason=NATURAL, 
                   location=l@1269.5,115.0,226.5,0.0,309.63913,guildworld, 
                   entity=e@b9f1cbb5-d6a4-455a-ab16-c57dab6ece70}' 
20:36:50 [INFO] +- Building event 'ON ENTITY SPAWNS' for ENTITY_LOG ---------+ 
20:36:50 [INFO]  Starting InstantQueue 'ENTITY_LOG_CoreSoulsLawsuit'... 
20:36:50 [INFO]  Queue 'ENTITY_LOG_CoreSoulsLawsuit' Executing: IF 
                   "<context.reason>" "==" "SPAWNER" "flag" "<context.entity>" 
                   "spawn_cause:<context.reason>" 
20:36:50 [INFO] +- Executing dCommand: IF ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='false' 
20:36:50 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:50 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(SPAWNER)' --> OUTCOME='false' 
20:36:50 [INFO]  Completing queue 'ENTITY_LOG_CoreSoulsLawsuit' in 0ms. 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_CitizensDiagnosticDs' Executing: IF 
                   "<context.location.world>" "==" "w@guildworld" "{" "-" "if" 
                   "<context.reason>" "==" "default" "queue" "clear" "-" 
                   "determine" "cancelled" "passively" "-" "queue" "clear" "}" 
                   "else" "if" "<context.location.cuboids.size>" ">" "0" "{" "-" 
                   "foreach" "<context.cuboids>" "{" "-" "if" 
                   "<yaml[SERVER_CUBOIDS].read[server.<def[value].notable_name>.spawning]>" 
                   "==" "disabled" "{" "-" "determine" "cancelled" "passively" 
                   "-" "queue" "clear" "}" "}" "}" 
20:36:50 [INFO] +- Executing dCommand: IF ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='true' 
20:36:50 [INFO]  Filled tag <context.location.world> with 'w@guildworld'. 
20:36:50 [INFO]  Comparable='Element(w@guildworld)', Operator='EQUALS', 
                   ComparedTo='Element(w@guildworld)' --> OUTCOME='true' 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_CitizensDiagnosticDs' Executing: IF 
                   "<context.reason>" "==" "default" "queue" "clear" 
20:36:50 [INFO] +- Executing dCommand: IF ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='false' 
20:36:50 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:50 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(default)' --> OUTCOME='false' 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_CitizensDiagnosticDs' Executing: 
                   DETERMINE "cancelled" "passively" 
20:36:50 [INFO] +- Executing dCommand: DETERMINE ---------+ 
20:36:50 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='true' 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_CitizensDiagnosticDs' Executing: QUEUE 
                   "clear" 
20:36:50 [INFO] +- Executing dCommand: QUEUE ---------+ 
20:36:50 [INFO] +> Executing 'QUEUE': 
                   queue='q@PROTECTED_AREAS_CitizensDiagnosticDs'  Action='CLEAR' 
20:36:50 [INFO]  Completing queue 'PROTECTED_AREAS_CitizensDiagnosticDs' in 
                   1ms. 
20:36:50 [INFO] +> Executing 'Event': Type='on entity spawns'  
                   Container='ENTITY_LOG(WORLD)'  Context='{cuboids=li@, 
                   reason=NATURAL, 
                   location=l@1263.5,115.0,220.5,0.0,3.7509298,guildworld, 
                   entity=e@61d1e2eb-2dc8-4352-9776-20c4c6ac17ec}' 
20:36:50 [INFO] +- Building event 'ON ENTITY SPAWNS' for ENTITY_LOG ---------+ 
20:36:50 [INFO]  Starting InstantQueue 'ENTITY_LOG_LateSimsOrganizational'... 
20:36:50 [INFO]  Queue 'ENTITY_LOG_LateSimsOrganizational' Executing: IF 
                   "<context.reason>" "==" "SPAWNER" "flag" "<context.entity>" 
                   "spawn_cause:<context.reason>" 
20:36:50 [INFO] +- Executing dCommand: IF ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='false' 
20:36:50 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:50 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(SPAWNER)' --> OUTCOME='false' 
20:36:50 [INFO]  Completing queue 'ENTITY_LOG_LateSimsOrganizational' in 0ms. 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_GenerateLinuxClimbing' Executing: IF 
                   "<context.location.world>" "==" "w@guildworld" "{" "-" "if" 
                   "<context.reason>" "==" "default" "queue" "clear" "-" 
                   "determine" "cancelled" "passively" "-" "queue" "clear" "}" 
                   "else" "if" "<context.location.cuboids.size>" ">" "0" "{" "-" 
                   "foreach" "<context.cuboids>" "{" "-" "if" 
                   "<yaml[SERVER_CUBOIDS].read[server.<def[value].notable_name>.spawning]>" 
                   "==" "disabled" "{" "-" "determine" "cancelled" "passively" 
                   "-" "queue" "clear" "}" "}" "}" 
20:36:50 [INFO] +- Executing dCommand: IF ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='true' 
20:36:50 [INFO]  Filled tag <context.location.world> with 'w@guildworld'. 
20:36:50 [INFO]  Comparable='Element(w@guildworld)', Operator='EQUALS', 
                   ComparedTo='Element(w@guildworld)' --> OUTCOME='true' 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_GenerateLinuxClimbing' Executing: IF 
                   "<context.reason>" "==" "default" "queue" "clear" 
20:36:50 [INFO] +- Executing dCommand: IF ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='false' 
20:36:50 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:50 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(default)' --> OUTCOME='false' 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_GenerateLinuxClimbing' Executing: 
                   DETERMINE "cancelled" "passively" 
20:36:50 [INFO] +- Executing dCommand: DETERMINE ---------+ 
20:36:50 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='true' 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_GenerateLinuxClimbing' Executing: 
                   QUEUE "clear" 
20:36:50 [INFO] +- Executing dCommand: QUEUE ---------+ 
20:36:50 [INFO] +> Executing 'QUEUE': 
                   queue='q@PROTECTED_AREAS_GenerateLinuxClimbing'  
                   Action='CLEAR' 
20:36:50 [INFO]  Completing queue 'PROTECTED_AREAS_GenerateLinuxClimbing' in 
                   1ms. 
20:36:50 [INFO] +> Executing 'Event': Type='on entity spawns'  
                   Container='ENTITY_LOG(WORLD)'  Context='{cuboids=li@, 
                   reason=NATURAL, 
                   location=l@1262.5,115.0,221.5,0.0,204.87474,guildworld, 
                   entity=e@f3c23b6d-cf1d-4375-b14e-84f762f77aa3}' 
20:36:50 [INFO] +- Building event 'ON ENTITY SPAWNS' for ENTITY_LOG ---------+ 
20:36:50 [INFO]  Starting InstantQueue 'ENTITY_LOG_CalendarsGrowingBl'... 
20:36:50 [INFO]  Queue 'ENTITY_LOG_CalendarsGrowingBl' Executing: IF 
                   "<context.reason>" "==" "SPAWNER" "flag" "<context.entity>" 
                   "spawn_cause:<context.reason>" 
20:36:50 [INFO] +- Executing dCommand: IF ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='false' 
20:36:50 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:50 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(SPAWNER)' --> OUTCOME='false' 
20:36:50 [INFO]  Completing queue 'ENTITY_LOG_CalendarsGrowingBl' in 0ms. 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_FloodPercentageNature' Executing: IF 
                   "<context.location.world>" "==" "w@guildworld" "{" "-" "if" 
                   "<context.reason>" "==" "default" "queue" "clear" "-" 
                   "determine" "cancelled" "passively" "-" "queue" "clear" "}" 
                   "else" "if" "<context.location.cuboids.size>" ">" "0" "{" "-" 
                   "foreach" "<context.cuboids>" "{" "-" "if" 
                   "<yaml[SERVER_CUBOIDS].read[server.<def[value].notable_name>.spawning]>" 
                   "==" "disabled" "{" "-" "determine" "cancelled" "passively" 
                   "-" "queue" "clear" "}" "}" "}" 
20:36:50 [INFO] +- Executing dCommand: IF ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='true' 
20:36:50 [INFO]  Filled tag <context.location.world> with 'w@guildworld'. 
20:36:50 [INFO]  Comparable='Element(w@guildworld)', Operator='EQUALS', 
                   ComparedTo='Element(w@guildworld)' --> OUTCOME='true' 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_FloodPercentageNature' Executing: IF 
                   "<context.reason>" "==" "default" "queue" "clear" 
20:36:50 [INFO] +- Executing dCommand: IF ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='false' 
20:36:50 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:50 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(default)' --> OUTCOME='false' 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_FloodPercentageNature' Executing: 
                   DETERMINE "cancelled" "passively" 
20:36:50 [INFO] +- Executing dCommand: DETERMINE ---------+ 
20:36:50 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='true' 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_FloodPercentageNature' Executing: 
                   QUEUE "clear" 
20:36:50 [INFO] +- Executing dCommand: QUEUE ---------+ 
20:36:50 [INFO] +> Executing 'QUEUE': 
                   queue='q@PROTECTED_AREAS_FloodPercentageNature'  
                   Action='CLEAR' 
20:36:50 [INFO]  Completing queue 'PROTECTED_AREAS_FloodPercentageNature' in 
                   1ms. 
20:36:50 [INFO] +> Executing 'Event': Type='on entity spawns'  
                   Container='ENTITY_LOG(WORLD)'  Context='{cuboids=li@, 
                   reason=NATURAL, 
                   location=l@1266.5,115.0,224.5,0.0,214.05994,guildworld, 
                   entity=e@a75f0ad2-3cf8-450c-a709-98efbbb002b9}' 
20:36:50 [INFO] +- Building event 'ON ENTITY SPAWNS' for ENTITY_LOG ---------+ 
20:36:50 [INFO]  Starting InstantQueue 'ENTITY_LOG_FromMineParish'... 
20:36:50 [INFO]  Queue 'ENTITY_LOG_FromMineParish' Executing: IF 
                   "<context.reason>" "==" "SPAWNER" "flag" "<context.entity>" 
                   "spawn_cause:<context.reason>" 
20:36:50 [INFO] +- Executing dCommand: IF ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='false' 
20:36:50 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:50 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(SPAWNER)' --> OUTCOME='false' 
20:36:50 [INFO]  Completing queue 'ENTITY_LOG_FromMineParish' in 0ms. 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_HaroldJcRotation' Executing: IF 
                   "<context.location.world>" "==" "w@guildworld" "{" "-" "if" 
                   "<context.reason>" "==" "default" "queue" "clear" "-" 
                   "determine" "cancelled" "passively" "-" "queue" "clear" "}" 
                   "else" "if" "<context.location.cuboids.size>" ">" "0" "{" "-" 
                   "foreach" "<context.cuboids>" "{" "-" "if" 
                   "<yaml[SERVER_CUBOIDS].read[server.<def[value].notable_name>.spawning]>" 
                   "==" "disabled" "{" "-" "determine" "cancelled" "passively" 
                   "-" "queue" "clear" "}" "}" "}" 
20:36:50 [INFO] +- Executing dCommand: IF ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='true' 
20:36:50 [INFO]  Filled tag <context.location.world> with 'w@guildworld'. 
20:36:50 [INFO]  Comparable='Element(w@guildworld)', Operator='EQUALS', 
                   ComparedTo='Element(w@guildworld)' --> OUTCOME='true' 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_HaroldJcRotation' Executing: IF 
                   "<context.reason>" "==" "default" "queue" "clear" 
20:36:50 [INFO] +- Executing dCommand: IF ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='false' 
20:36:50 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:50 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(default)' --> OUTCOME='false' 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_HaroldJcRotation' Executing: DETERMINE 
                   "cancelled" "passively" 
20:36:50 [INFO] +- Executing dCommand: DETERMINE ---------+ 
20:36:50 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='true' 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_HaroldJcRotation' Executing: QUEUE 
                   "clear" 
20:36:50 [INFO] +- Executing dCommand: QUEUE ---------+ 
20:36:50 [INFO] +> Executing 'QUEUE': 
                   queue='q@PROTECTED_AREAS_HaroldJcRotation'  Action='CLEAR' 
20:36:50 [INFO]  Completing queue 'PROTECTED_AREAS_HaroldJcRotation' in 1ms. 
20:36:50 [INFO] +> Executing 'Event': Type='on entity spawns'  
                   Container='ENTITY_LOG(WORLD)'  
                   Context='{cuboids=li@cu@2b2dd57d-97f9-4a3c-8788-acae64ed9d0c_guild, 
                   reason=NATURAL, 
                   location=l@1265.5,34.0,276.5,0.0,92.93311,guildworld, 
                   entity=e@584c7fff-d61a-4be2-8c30-fb2d7fb721fa}' 
20:36:50 [INFO] +- Building event 'ON ENTITY SPAWNS' for ENTITY_LOG ---------+ 
20:36:50 [INFO]  Starting InstantQueue 'ENTITY_LOG_SavageSwPrecious'... 
20:36:50 [INFO]  Queue 'ENTITY_LOG_SavageSwPrecious' Executing: IF 
                   "<context.reason>" "==" "SPAWNER" "flag" "<context.entity>" 
                   "spawn_cause:<context.reason>" 
20:36:50 [INFO] +- Executing dCommand: IF ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='false' 
20:36:50 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:50 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(SPAWNER)' --> OUTCOME='false' 
20:36:50 [INFO]  Completing queue 'ENTITY_LOG_SavageSwPrecious' in 0ms. 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_ExcessiveHealingAnniversary' 
                   Executing: IF "<context.location.world>" "==" "w@guildworld" 
                   "{" "-" "if" "<context.reason>" "==" "default" "queue" "clear" 
                   "-" "determine" "cancelled" "passively" "-" "queue" "clear" 
                   "}" "else" "if" "<context.location.cuboids.size>" ">" "0" "{" 
                   "-" "foreach" "<context.cuboids>" "{" "-" "if" 
                   "<yaml[SERVER_CUBOIDS].read[server.<def[value].notable_name>.spawning]>" 
                   "==" "disabled" "{" "-" "determine" "cancelled" "passively" 
                   "-" "queue" "clear" "}" "}" "}" 
20:36:50 [INFO] +- Executing dCommand: IF ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='true' 
20:36:50 [INFO]  Filled tag <context.location.world> with 'w@guildworld'. 
20:36:50 [INFO]  Comparable='Element(w@guildworld)', Operator='EQUALS', 
                   ComparedTo='Element(w@guildworld)' --> OUTCOME='true' 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_ExcessiveHealingAnniversary' 
                   Executing: IF "<context.reason>" "==" "default" "queue" 
                   "clear" 
20:36:50 [INFO] +- Executing dCommand: IF ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='false' 
20:36:50 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:50 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(default)' --> OUTCOME='false' 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_ExcessiveHealingAnniversary' 
                   Executing: DETERMINE "cancelled" "passively" 
20:36:50 [INFO] +- Executing dCommand: DETERMINE ---------+ 
20:36:50 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='true' 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_ExcessiveHealingAnniversary' 
                   Executing: QUEUE "clear" 
20:36:50 [INFO] +- Executing dCommand: QUEUE ---------+ 
20:36:50 [INFO] +> Executing 'QUEUE': 
                   queue='q@PROTECTED_AREAS_ExcessiveHealingAnniversary'  
                   Action='CLEAR' 
20:36:50 [INFO]  Completing queue 
                   'PROTECTED_AREAS_ExcessiveHealingAnniversary' in 1ms. 
20:36:50 [INFO] +> Executing 'Event': Type='on entity spawns'  
                   Container='ENTITY_LOG(WORLD)'  
                   Context='{cuboids=li@cu@2b2dd57d-97f9-4a3c-8788-acae64ed9d0c_guild, 
                   reason=NATURAL, 
                   location=l@1263.5,34.0,276.5,0.0,196.9118,guildworld, 
                   entity=e@6207e84c-a597-4591-8377-32bc12392eb7}' 
20:36:50 [INFO] +- Building event 'ON ENTITY SPAWNS' for ENTITY_LOG ---------+ 
20:36:50 [INFO]  Starting InstantQueue 'ENTITY_LOG_MerchantsBarbieMartin'... 
20:36:50 [INFO]  Queue 'ENTITY_LOG_MerchantsBarbieMartin' Executing: IF 
                   "<context.reason>" "==" "SPAWNER" "flag" "<context.entity>" 
                   "spawn_cause:<context.reason>" 
20:36:50 [INFO] +- Executing dCommand: IF ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='false' 
20:36:50 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:50 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(SPAWNER)' --> OUTCOME='false' 
20:36:50 [INFO]  Completing queue 'ENTITY_LOG_MerchantsBarbieMartin' in 0ms. 
20:36:50 [INFO]  ERROR in script 'ABILITY_COOLDOWN_VISUALIZER'! Scoreboard 
                   xArie1434681408565 does not exist! 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_LessonLikewiseReached' Executing: IF 
                   "<context.location.world>" "==" "w@guildworld" "{" "-" "if" 
                   "<context.reason>" "==" "default" "queue" "clear" "-" 
                   "determine" "cancelled" "passively" "-" "queue" "clear" "}" 
                   "else" "if" "<context.location.cuboids.size>" ">" "0" "{" "-" 
                   "foreach" "<context.cuboids>" "{" "-" "if" 
                   "<yaml[SERVER_CUBOIDS].read[server.<def[value].notable_name>.spawning]>" 
                   "==" "disabled" "{" "-" "determine" "cancelled" "passively" 
                   "-" "queue" "clear" "}" "}" "}" 
20:36:50 [INFO] +- Executing dCommand: IF ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='true' 
20:36:50 [INFO]  Filled tag <context.location.world> with 'w@guildworld'. 
20:36:50 [INFO]  Comparable='Element(w@guildworld)', Operator='EQUALS', 
                   ComparedTo='Element(w@guildworld)' --> OUTCOME='true' 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_LessonLikewiseReached' Executing: IF 
                   "<context.reason>" "==" "default" "queue" "clear" 
20:36:50 [INFO] +- Executing dCommand: IF ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='false' 
20:36:50 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:50 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(default)' --> OUTCOME='false' 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_LessonLikewiseReached' Executing: 
                   DETERMINE "cancelled" "passively" 
20:36:50 [INFO] +- Executing dCommand: DETERMINE ---------+ 
20:36:50 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='true' 
20:36:50 [INFO]  Queue 'PROTECTED_AREAS_LessonLikewiseReached' Executing: 
                   QUEUE "clear" 
20:36:50 [INFO] +- Executing dCommand: QUEUE ---------+ 
20:36:50 [INFO] +> Executing 'QUEUE': 
                   queue='q@PROTECTED_AREAS_LessonLikewiseReached'  
                   Action='CLEAR' 
20:36:50 [INFO]  Completing queue 'PROTECTED_AREAS_LessonLikewiseReached' in 
                   1ms. 
20:36:50 [INFO] +> Executing 'Event': Type='on entity spawns'  
                   Container='ENTITY_LOG(WORLD)'  
                   Context='{cuboids=li@cu@2b2dd57d-97f9-4a3c-8788-acae64ed9d0c_guild, 
                   reason=NATURAL, 
                   location=l@1284.5,69.0,275.5,0.0,169.69899,guildworld, 
                   entity=e@9a3a3735-eadc-458f-a857-14b791142577}' 
20:36:50 [INFO] +- Building event 'ON ENTITY SPAWNS' for ENTITY_LOG ---------+ 
20:36:50 [INFO]  Starting InstantQueue 'ENTITY_LOG_MyrtleChAtm'... 
20:36:50 [INFO]  Queue 'ENTITY_LOG_MyrtleChAtm' Executing: IF 
                   "<context.reason>" "==" "SPAWNER" "flag" "<context.entity>" 
                   "spawn_cause:<context.reason>" 
20:36:50 [INFO] +- Executing dCommand: IF ---------+ 
20:36:50 [INFO] +> Executing 'IF': use_braces='false' 
20:36:50 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:50 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(SPAWNER)' --> OUTCOME='false' 
20:36:50 [INFO]  Completing queue 'ENTITY_LOG_MyrtleChAtm' in 0ms. 
20:36:51 [INFO]  ERROR in script 'ABILITY_COOLDOWN_VISUALIZER'! Scoreboard 
                   Lordtedo1434681408779 does not exist! 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_ProceduresTownshipSherman' Executing: 
                   IF "<context.location.world>" "==" "w@guildworld" "{" "-" "if" 
                   "<context.reason>" "==" "default" "queue" "clear" "-" 
                   "determine" "cancelled" "passively" "-" "queue" "clear" "}" 
                   "else" "if" "<context.location.cuboids.size>" ">" "0" "{" "-" 
                   "foreach" "<context.cuboids>" "{" "-" "if" 
                   "<yaml[SERVER_CUBOIDS].read[server.<def[value].notable_name>.spawning]>" 
                   "==" "disabled" "{" "-" "determine" "cancelled" "passively" 
                   "-" "queue" "clear" "}" "}" "}" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='true' 
20:36:51 [INFO]  Filled tag <context.location.world> with 'w@guildworld'. 
20:36:51 [INFO]  Comparable='Element(w@guildworld)', Operator='EQUALS', 
                   ComparedTo='Element(w@guildworld)' --> OUTCOME='true' 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_ProceduresTownshipSherman' Executing: 
                   IF "<context.reason>" "==" "default" "queue" "clear" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='false' 
20:36:51 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:51 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(default)' --> OUTCOME='false' 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_ProceduresTownshipSherman' Executing: 
                   DETERMINE "cancelled" "passively" 
20:36:51 [INFO] +- Executing dCommand: DETERMINE ---------+ 
20:36:51 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='true' 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_ProceduresTownshipSherman' Executing: 
                   QUEUE "clear" 
20:36:51 [INFO] +- Executing dCommand: QUEUE ---------+ 
20:36:51 [INFO] +> Executing 'QUEUE': 
                   queue='q@PROTECTED_AREAS_ProceduresTownshipSherman'  
                   Action='CLEAR' 
20:36:51 [INFO]  Completing queue 'PROTECTED_AREAS_ProceduresTownshipSherman' 
                   in 1ms. 
20:36:51 [INFO] +> Executing 'Event': Type='on entity spawns'  
                   Container='ENTITY_LOG(WORLD)'  
                   Context='{cuboids=li@cu@2b2dd57d-97f9-4a3c-8788-acae64ed9d0c_guild, 
                   reason=NATURAL, 
                   location=l@1254.5,37.0,279.5,0.0,170.5608,guildworld, 
                   entity=e@779e230d-2aaa-4528-85c7-b0b90559df8e}' 
20:36:51 [INFO] +- Building event 'ON ENTITY SPAWNS' for ENTITY_LOG ---------+ 
20:36:51 [INFO]  Starting InstantQueue 'ENTITY_LOG_ReadilyVeteransPowell'... 
20:36:51 [INFO]  Queue 'ENTITY_LOG_ReadilyVeteransPowell' Executing: IF 
                   "<context.reason>" "==" "SPAWNER" "flag" "<context.entity>" 
                   "spawn_cause:<context.reason>" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='false' 
20:36:51 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:51 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(SPAWNER)' --> OUTCOME='false' 
20:36:51 [INFO]  Completing queue 'ENTITY_LOG_ReadilyVeteransPowell' in 0ms. 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_HairOxideNcaa' Executing: IF 
                   "<context.location.world>" "==" "w@guildworld" "{" "-" "if" 
                   "<context.reason>" "==" "default" "queue" "clear" "-" 
                   "determine" "cancelled" "passively" "-" "queue" "clear" "}" 
                   "else" "if" "<context.location.cuboids.size>" ">" "0" "{" "-" 
                   "foreach" "<context.cuboids>" "{" "-" "if" 
                   "<yaml[SERVER_CUBOIDS].read[server.<def[value].notable_name>.spawning]>" 
                   "==" "disabled" "{" "-" "determine" "cancelled" "passively" 
                   "-" "queue" "clear" "}" "}" "}" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='true' 
20:36:51 [INFO]  Filled tag <context.location.world> with 'w@guildworld'. 
20:36:51 [INFO]  Comparable='Element(w@guildworld)', Operator='EQUALS', 
                   ComparedTo='Element(w@guildworld)' --> OUTCOME='true' 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_HairOxideNcaa' Executing: IF 
                   "<context.reason>" "==" "default" "queue" "clear" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='false' 
20:36:51 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:51 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(default)' --> OUTCOME='false' 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_HairOxideNcaa' Executing: DETERMINE 
                   "cancelled" "passively" 
20:36:51 [INFO] +- Executing dCommand: DETERMINE ---------+ 
20:36:51 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='true' 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_HairOxideNcaa' Executing: QUEUE 
                   "clear" 
20:36:51 [INFO] +- Executing dCommand: QUEUE ---------+ 
20:36:51 [INFO] +> Executing 'QUEUE': queue='q@PROTECTED_AREAS_HairOxideNcaa'  
                   Action='CLEAR' 
20:36:51 [INFO]  Completing queue 'PROTECTED_AREAS_HairOxideNcaa' in 1ms. 
20:36:51 [INFO] +> Executing 'Event': Type='on entity spawns'  
                   Container='ENTITY_LOG(WORLD)'  
                   Context='{cuboids=li@cu@2b2dd57d-97f9-4a3c-8788-acae64ed9d0c_guild, 
                   reason=NATURAL, 
                   location=l@1261.5,37.0,280.5,0.0,176.7033,guildworld, 
                   entity=e@2de2479a-bc7a-4e5f-921d-9b18a93b3482}' 
20:36:51 [INFO] +- Building event 'ON ENTITY SPAWNS' for ENTITY_LOG ---------+ 
20:36:51 [INFO]  Starting InstantQueue 
                   'ENTITY_LOG_AcquisitionsKelkooExercise'... 
20:36:51 [INFO]  Queue 'ENTITY_LOG_AcquisitionsKelkooExercise' Executing: IF 
                   "<context.reason>" "==" "SPAWNER" "flag" "<context.entity>" 
                   "spawn_cause:<context.reason>" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='false' 
20:36:51 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:51 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(SPAWNER)' --> OUTCOME='false' 
20:36:51 [INFO]  Completing queue 'ENTITY_LOG_AcquisitionsKelkooExercise' in 
                   0ms. 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_AtiAdaptersPower' Executing: IF 
                   "<context.location.world>" "==" "w@guildworld" "{" "-" "if" 
                   "<context.reason>" "==" "default" "queue" "clear" "-" 
                   "determine" "cancelled" "passively" "-" "queue" "clear" "}" 
                   "else" "if" "<context.location.cuboids.size>" ">" "0" "{" "-" 
                   "foreach" "<context.cuboids>" "{" "-" "if" 
                   "<yaml[SERVER_CUBOIDS].read[server.<def[value].notable_name>.spawning]>" 
                   "==" "disabled" "{" "-" "determine" "cancelled" "passively" 
                   "-" "queue" "clear" "}" "}" "}" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='true' 
20:36:51 [INFO]  Filled tag <context.location.world> with 'w@guildworld'. 
20:36:51 [INFO]  Comparable='Element(w@guildworld)', Operator='EQUALS', 
                   ComparedTo='Element(w@guildworld)' --> OUTCOME='true' 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_AtiAdaptersPower' Executing: IF 
                   "<context.reason>" "==" "default" "queue" "clear" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='false' 
20:36:51 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:51 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(default)' --> OUTCOME='false' 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_AtiAdaptersPower' Executing: DETERMINE 
                   "cancelled" "passively" 
20:36:51 [INFO] +- Executing dCommand: DETERMINE ---------+ 
20:36:51 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='true' 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_AtiAdaptersPower' Executing: QUEUE 
                   "clear" 
20:36:51 [INFO] +- Executing dCommand: QUEUE ---------+ 
20:36:51 [INFO] +> Executing 'QUEUE': 
                   queue='q@PROTECTED_AREAS_AtiAdaptersPower'  Action='CLEAR' 
20:36:51 [INFO]  Completing queue 'PROTECTED_AREAS_AtiAdaptersPower' in 1ms. 
20:36:51 [INFO] +> Executing 'Event': Type='on entity spawns'  
                   Container='ENTITY_LOG(WORLD)'  
                   Context='{cuboids=li@cu@2b2dd57d-97f9-4a3c-8788-acae64ed9d0c_guild, 
                   reason=NATURAL, 
                   location=l@1255.5,37.0,278.5,0.0,32.64585,guildworld, 
                   entity=e@195583ad-03bb-4934-b640-a347a50fe964}' 
20:36:51 [INFO] +- Building event 'ON ENTITY SPAWNS' for ENTITY_LOG ---------+ 
20:36:51 [INFO]  Starting InstantQueue 'ENTITY_LOG_AtomBosniaQuit'... 
20:36:51 [INFO]  Queue 'ENTITY_LOG_AtomBosniaQuit' Executing: IF 
                   "<context.reason>" "==" "SPAWNER" "flag" "<context.entity>" 
                   "spawn_cause:<context.reason>" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='false' 
20:36:51 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:51 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(SPAWNER)' --> OUTCOME='false' 
20:36:51 [INFO]  Completing queue 'ENTITY_LOG_AtomBosniaQuit' in 0ms. 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_SpasPowerfulExpanded' Executing: IF 
                   "<context.location.world>" "==" "w@guildworld" "{" "-" "if" 
                   "<context.reason>" "==" "default" "queue" "clear" "-" 
                   "determine" "cancelled" "passively" "-" "queue" "clear" "}" 
                   "else" "if" "<context.location.cuboids.size>" ">" "0" "{" "-" 
                   "foreach" "<context.cuboids>" "{" "-" "if" 
                   "<yaml[SERVER_CUBOIDS].read[server.<def[value].notable_name>.spawning]>" 
                   "==" "disabled" "{" "-" "determine" "cancelled" "passively" 
                   "-" "queue" "clear" "}" "}" "}" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='true' 
20:36:51 [INFO]  Filled tag <context.location.world> with 'w@guildworld'. 
20:36:51 [INFO]  Comparable='Element(w@guildworld)', Operator='EQUALS', 
                   ComparedTo='Element(w@guildworld)' --> OUTCOME='true' 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_SpasPowerfulExpanded' Executing: IF 
                   "<context.reason>" "==" "default" "queue" "clear" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='false' 
20:36:51 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:51 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(default)' --> OUTCOME='false' 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_SpasPowerfulExpanded' Executing: 
                   DETERMINE "cancelled" "passively" 
20:36:51 [INFO] +- Executing dCommand: DETERMINE ---------+ 
20:36:51 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='true' 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_SpasPowerfulExpanded' Executing: QUEUE 
                   "clear" 
20:36:51 [INFO] +- Executing dCommand: QUEUE ---------+ 
20:36:51 [INFO] +> Executing 'QUEUE': 
                   queue='q@PROTECTED_AREAS_SpasPowerfulExpanded'  Action='CLEAR' 
20:36:51 [INFO]  Completing queue 'PROTECTED_AREAS_SpasPowerfulExpanded' in 
                   1ms. 
20:36:51 [INFO] +> Executing 'Event': Type='on entity spawns'  
                   Container='ENTITY_LOG(WORLD)'  
                   Context='{cuboids=li@cu@2b2dd57d-97f9-4a3c-8788-acae64ed9d0c_guild, 
                   reason=NATURAL, 
                   location=l@1254.5,37.0,278.5,0.0,70.66964,guildworld, 
                   entity=e@0ffd24a6-6014-4e67-af98-b5c90e67543c}' 
20:36:51 [INFO] +- Building event 'ON ENTITY SPAWNS' for ENTITY_LOG ---------+ 
20:36:51 [INFO]  Starting InstantQueue 'ENTITY_LOG_NursingDenizenFunk'... 
20:36:51 [INFO]  Queue 'ENTITY_LOG_NursingDenizenFunk' Executing: IF 
                   "<context.reason>" "==" "SPAWNER" "flag" "<context.entity>" 
                   "spawn_cause:<context.reason>" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='false' 
20:36:51 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:51 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(SPAWNER)' --> OUTCOME='false' 
20:36:51 [INFO]  Completing queue 'ENTITY_LOG_NursingDenizenFunk' in 0ms. 
20:36:51 [INFO]  ERROR in script 'ABILITY_COOLDOWN_VISUALIZER'! Scoreboard 
                   TheBlackCoyote1434681408868 does not exist! 
20:36:51 [INFO] +> Executing 'Event': Type='on player fishes'  
                   Container='EXPERIENCE_GAINS_FISHING(WORLD)'  
                   player=p@xArieContext='{item=i@raw_fish, 
                   hook=e@6ed6838a-4f9f-40c1-8779-e7c33fef6165, 
                   state=CAUGHT_FISH, entity=e@dropped_item}' 
20:36:51 [INFO] +- Building event 'ON PLAYER FISHES' for 
                   EXPERIENCE_GAINS_FISHING ---------+ 
20:36:51 [INFO]  Starting InstantQueue 
                   'EXPERIENCE_GAINS_FISHING_RandyCyclesIntel'... 
20:36:51 [INFO]  Queue 'EXPERIENCE_GAINS_FISHING_RandyCyclesIntel' Executing: 
                   DETERMINE "fulfilled" "passively" 
20:36:51 [INFO] +- Executing dCommand: DETERMINE/p@xArie ---------+ 
20:36:51 [INFO] +> Executing 'DETERMINE': outcome='fulfilled'  
                   passively='true' 
20:36:51 [INFO]  Queue 'EXPERIENCE_GAINS_FISHING_RandyCyclesIntel' Executing: 
                   IF "<context.item||null>" "==" "null" "queue" "clear" 
20:36:51 [INFO] +- Executing dCommand: IF/p@xArie ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='false' 
20:36:51 [INFO]  Filled tag <context.item||null> with 'i@raw_fish'. 
20:36:51 [INFO]  Comparable='Element(i@raw_fish)', Operator='EQUALS', 
                   ComparedTo='Element(null)' --> OUTCOME='false' 
20:36:51 [INFO]  Queue 'EXPERIENCE_GAINS_FISHING_RandyCyclesIntel' Executing: 
                   RUN "give_exp" "def:fishing|250|none" "instantly" 
20:36:51 [INFO] +- Executing dCommand: RUN/p@xArie ---------+ 
20:36:51 [INFO] +> Executing 'RUN': script='GIVE_EXP(TASK)'  instant='true'  
                   definitions='li@fishing|250|none' 
20:36:51 [INFO]  Adding definition %1% as fishing 
20:36:51 [INFO]  Adding definition %2% as 250 
20:36:51 [INFO]  Adding definition %3% as none 
20:36:51 [INFO]  Starting InstantQueue 'GIVE_EXP_MineVipGpl'... 
20:36:51 [INFO]  Queue 'GIVE_EXP_MineVipGpl' Executing: IF "<def[3]>" "==" 
                   "reduce" "{" "-" "define" "2" "<def[2].div[100].round_up>" "}" 
20:36:51 [INFO] +- Executing dCommand: IF/p@xArie ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='true' 
20:36:51 [INFO]  Filled tag <def[3]> with 'none'. 
20:36:51 [INFO]  Comparable='Element(none)', Operator='EQUALS', 
                   ComparedTo='Element(reduce)' --> OUTCOME='false' 
20:36:51 [INFO]  Queue 'GIVE_EXP_MineVipGpl' Executing: DEFINE "2" 
                   "<proc[exp_modifier].context[<def[2]>]>" 
20:36:51 [INFO] +- Executing dCommand: DEFINE/p@xArie ---------+ 
20:36:51 [INFO]  Filled tag <def[2]> with '250'. 
20:36:51 [INFO]  Adding definition %exp% as 250 
20:36:51 [INFO]  Starting InstantQueue 'EXP_MODIFIER_EnglandCatherine'... 
20:36:51 [INFO]  Queue 'EXP_MODIFIER_EnglandCatherine' Executing: DETERMINE 
                   "<def[exp].mul[1]>" 
20:36:51 [INFO] +- Executing dCommand: DETERMINE/p@xArie ---------+ 
20:36:51 [INFO]  Filled tag <def[exp].mul[1]> with '250'. 
20:36:51 [INFO] +> Executing 'DETERMINE': outcome='250'  passively='false' 
20:36:51 [INFO]  Completing queue 'EXP_MODIFIER_EnglandCatherine' in 0ms. 
20:36:51 [INFO]  Filled tag <proc[exp_modifier].context[250]> with '250'. 
20:36:51 [INFO] +> Executing 'DEFINE': queue='GIVE_EXP_MineVipGpl'  
                   definition='2'  value='250' 
20:36:51 [INFO]  Queue 'GIVE_EXP_MineVipGpl' Executing: YAML "ID:XP_SAVES" 
                   "set" "players.<player>.<def[1]>_xp:+:<def[2]>" 
20:36:51 [INFO] +- Executing dCommand: YAML/p@xArie ---------+ 
20:36:51 [INFO]  Filled tag <player> with 
                   'p@0650c8c9-57be-4963-8354-3337bdb7c350'. 
20:36:51 [INFO]  Filled tag <def[1]> with 'fishing'. 
20:36:51 [INFO]  Filled tag <def[2]> with '250'. 
20:36:51 [INFO] +> Executing 'YAML': id='XP_SAVES'  action='SET'  
                   yaml_action='INCREASE'  
                   key='players.p@0650c8c9-57be-4963-8354-3337bdb7c350.fishing_xp' 
                    value='250'  fix_formatting='false' 
20:36:51 [INFO]  Queue 'GIVE_EXP_MineVipGpl' Executing: TITLE "subtitle:<&f>   
                                            
                   <&7>+<player.flag[exp_drop].add[<def[2]>].as_int||<def[2]>> 
                   xp" "targets:<player>" "fade_in:1t" "stay:10t" "fade_out:2s" 
20:36:51 [INFO] +- Executing dCommand: TITLE/p@xArie ---------+ 
20:36:51 [INFO]  Filled tag <&f> with ''. 
20:36:51 [INFO]  Filled tag <&7> with ''. 
20:36:51 [INFO]  Filled tag <def[2]> with '250'. 
20:36:51 [INFO]  Filled tag <player.flag[exp_drop].add[<def[2]>].as_int||250> 
                   with '250'. 
20:36:51 [INFO]  Filled tag <player> with 
                   'p@0650c8c9-57be-4963-8354-3337bdb7c350'. 
20:36:51 [INFO] +> Executing 'TITLE': subtitle='                            
                   +250 xp'  fade_in='d@1t'  stay='d@10t'  fade_out='d@40t'  
                   targets='[p@0650c8c9-57be-4963-8354-3337bdb7c350]' 
20:36:51 [INFO]  Queue 'GIVE_EXP_MineVipGpl' Executing: FLAG "<player>" 
                   "exp_drop:+:<def[2]>" "duration:2s" 
20:36:51 [INFO] +- Executing dCommand: FLAG/p@xArie ---------+ 
20:36:51 [INFO]  Filled tag <player> with 
                   'p@0650c8c9-57be-4963-8354-3337bdb7c350'. 
20:36:51 [INFO]  Filled tag <def[2]> with '250'. 
20:36:51 [INFO] +> Executing 'FLAG': flag_name='EXP_DROP'  
                   Action/Value='INCREASE(250)'  duration='d@40t'  
                   flag_target='p@xArie' 
20:36:51 [INFO]  Queue 'GIVE_EXP_MineVipGpl' Executing: RUN "check_level" 
                   "def:<def[1]>" "instantly" 
20:36:51 [INFO] +- Executing dCommand: RUN/p@xArie ---------+ 
20:36:51 [INFO]  Filled tag <def[1]> with 'fishing'. 
20:36:51 [INFO] +> Executing 'RUN': script='CHECK_LEVEL(TASK)'  instant='true' 
                    definitions='li@fishing' 
20:36:51 [INFO]  Adding definition %1% as fishing 
20:36:51 [INFO]  Starting InstantQueue 
                   'CHECK_LEVEL_MetabolismBibliographic'... 
20:36:51 [INFO]  Queue 'CHECK_LEVEL_MetabolismBibliographic' Executing: IF 
                   "<yaml[XP_SAVES].read[players.<player>.<def[1]>_level]||1>" 
                   ">=" "99" "queue" "clear" 
20:36:51 [INFO] +- Executing dCommand: IF/p@xArie ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='false' 
20:36:51 [INFO]  Filled tag <player> with 
                   'p@0650c8c9-57be-4963-8354-3337bdb7c350'. 
20:36:51 [INFO]  Filled tag <def[1]> with 'fishing'. 
20:36:51 [INFO]  Filled tag 
                   <yaml[XP_SAVES].read[players.p@0650c8c9-57be-4963-8354-3337bdb7c350.fishing_level]||1> 
                   with '6.0'. 
20:36:51 [INFO]  Comparable='Decimal(6.0)', Operator='OR_MORE', 
                   ComparedTo='Number(99)' --> OUTCOME='false' 
20:36:51 [INFO]  Queue 'CHECK_LEVEL_MetabolismBibliographic' Executing: IF 
                   "<yaml[XP_SAVES].read[players.<player>.<def[1]>_xp]||0>" ">=" 
                   "<proc[exp_for_level].context[<yaml[XP_SAVES].read[players.<player>.<def[1]>_level]||0>]>" 
                   "run" "level_up" "def:<def[1]>" "instantly" 
20:36:51 [INFO] +- Executing dCommand: IF/p@xArie ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='false' 
20:36:51 [INFO]  Filled tag <player> with 
                   'p@0650c8c9-57be-4963-8354-3337bdb7c350'. 
20:36:51 [INFO]  Filled tag <def[1]> with 'fishing'. 
20:36:51 [INFO]  Filled tag 
                   <yaml[XP_SAVES].read[players.p@0650c8c9-57be-4963-8354-3337bdb7c350.fishing_xp]||0> 
                   with '7250.0'. 
20:36:51 [INFO]  Filled tag <player> with 
                   'p@0650c8c9-57be-4963-8354-3337bdb7c350'. 
20:36:51 [INFO]  Filled tag <def[1]> with 'fishing'. 
20:36:51 [INFO]  Filled tag 
                   <yaml[XP_SAVES].read[players.p@0650c8c9-57be-4963-8354-3337bdb7c350.fishing_level]||0> 
                   with '6.0'. 
20:36:51 [INFO]  Adding definition %level% as 6.0 
20:36:51 [INFO]  Starting InstantQueue 'EXP_FOR_LEVEL_ComingStemChicken'... 
20:36:51 [INFO]  Queue 'EXP_FOR_LEVEL_ComingStemChicken' Executing: DETERMINE 
                   "<def[level].power[2.6].mul[84]||1>" 
20:36:51 [INFO] +- Executing dCommand: DETERMINE/p@xArie ---------+ 
20:36:51 [INFO]  Filled tag <def[level].power[2.6].mul[84]||1> with 
                   '8860.79189998857036'. 
20:36:51 [INFO] +> Executing 'DETERMINE': outcome='8860.79189998857036'  
                   passively='false' 
20:36:51 [INFO]  Completing queue 'EXP_FOR_LEVEL_ComingStemChicken' in 0ms. 
20:36:51 [INFO]  Filled tag <proc[exp_for_level].context[6.0]> with 
                   '8860.79189998857036'. 
20:36:51 [INFO]  Comparable='Decimal(7250.0)', Operator='OR_MORE', 
                   ComparedTo='Decimal(8860.79189998857)' --> OUTCOME='false' 
20:36:51 [INFO]  Completing queue 'CHECK_LEVEL_MetabolismBibliographic' in 
                   1ms. 
20:36:51 [INFO]  Queue 'GIVE_EXP_MineVipGpl' Executing: RUN 
                   "show_exp_boss_bar" "def:<def[1]>" 
20:36:51 [INFO] +- Executing dCommand: RUN/p@xArie ---------+ 
20:36:51 [INFO]  Filled tag <def[1]> with 'fishing'. 
20:36:51 [INFO] +> Executing 'RUN': script='SHOW_EXP_BOSS_BAR(TASK)'  
                   definitions='li@fishing' 
20:36:51 [INFO]  Adding definition %1% as fishing 
20:36:51 [INFO]  Starting TimedQueue 'SHOW_EXP_BOSS_BAR_LargeMosesSlovak'... 
20:36:51 [INFO]  Queue 'SHOW_EXP_BOSS_BAR_LargeMosesSlovak' Executing: IF 
                   "<player.flag[show_boss_bar]>" "queue" "clear" 
20:36:51 [INFO] +- Executing dCommand: IF/p@xArie ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='false' 
20:36:51 [INFO]  Unfilled attributes '[flag[show_boss_bar]]' for tag 
                   <player.flag[show_boss_bar]>! 
20:36:51 [INFO]  Filled tag <player.flag[show_boss_bar]> with 'null'. 
20:36:51 [INFO]  ERROR in script 'SHOW_EXP_BOSS_BAR'! Tag 
                   <player.flag[show_boss_bar]> is invalid! 
20:36:51 [INFO]  Completing queue 'GIVE_EXP_MineVipGpl' in 7ms. 
20:36:51 [INFO]  Completing queue 'EXPERIENCE_GAINS_FISHING_RandyCyclesIntel' 
                   in 8ms. 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_WhatsBoringAuthentication' Executing: 
                   IF "<context.location.world>" "==" "w@guildworld" "{" "-" "if" 
                   "<context.reason>" "==" "default" "queue" "clear" "-" 
                   "determine" "cancelled" "passively" "-" "queue" "clear" "}" 
                   "else" "if" "<context.location.cuboids.size>" ">" "0" "{" "-" 
                   "foreach" "<context.cuboids>" "{" "-" "if" 
                   "<yaml[SERVER_CUBOIDS].read[server.<def[value].notable_name>.spawning]>" 
                   "==" "disabled" "{" "-" "determine" "cancelled" "passively" 
                   "-" "queue" "clear" "}" "}" "}" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='true' 
20:36:51 [INFO]  Filled tag <context.location.world> with 'w@guildworld'. 
20:36:51 [INFO]  Comparable='Element(w@guildworld)', Operator='EQUALS', 
                   ComparedTo='Element(w@guildworld)' --> OUTCOME='true' 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_WhatsBoringAuthentication' Executing: 
                   IF "<context.reason>" "==" "default" "queue" "clear" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='false' 
20:36:51 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:51 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(default)' --> OUTCOME='false' 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_WhatsBoringAuthentication' Executing: 
                   DETERMINE "cancelled" "passively" 
20:36:51 [INFO] +- Executing dCommand: DETERMINE ---------+ 
20:36:51 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='true' 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_WhatsBoringAuthentication' Executing: 
                   QUEUE "clear" 
20:36:51 [INFO] +- Executing dCommand: QUEUE ---------+ 
20:36:51 [INFO] +> Executing 'QUEUE': 
                   queue='q@PROTECTED_AREAS_WhatsBoringAuthentication'  
                   Action='CLEAR' 
20:36:51 [INFO]  Completing queue 'PROTECTED_AREAS_WhatsBoringAuthentication' 
                   in 1ms. 
20:36:51 [INFO] +> Executing 'Event': Type='on entity spawns'  
                   Container='ENTITY_LOG(WORLD)'  Context='{cuboids=li@, 
                   reason=NATURAL, 
                   location=l@1281.5,22.0,211.5,0.0,178.78856,guildworld, 
                   entity=e@dd173c9f-2623-4bc3-9bfa-7c22eb9c87c3}' 
20:36:51 [INFO] +- Building event 'ON ENTITY SPAWNS' for ENTITY_LOG ---------+ 
20:36:51 [INFO]  Starting InstantQueue 'ENTITY_LOG_ShorterCoursesCommunity'... 
20:36:51 [INFO]  Queue 'ENTITY_LOG_ShorterCoursesCommunity' Executing: IF 
                   "<context.reason>" "==" "SPAWNER" "flag" "<context.entity>" 
                   "spawn_cause:<context.reason>" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='false' 
20:36:51 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:51 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(SPAWNER)' --> OUTCOME='false' 
20:36:51 [INFO]  Completing queue 'ENTITY_LOG_ShorterCoursesCommunity' in 0ms. 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_CioHomelandArrangement' Executing: IF 
                   "<context.location.world>" "==" "w@guildworld" "{" "-" "if" 
                   "<context.reason>" "==" "default" "queue" "clear" "-" 
                   "determine" "cancelled" "passively" "-" "queue" "clear" "}" 
                   "else" "if" "<context.location.cuboids.size>" ">" "0" "{" "-" 
                   "foreach" "<context.cuboids>" "{" "-" "if" 
                   "<yaml[SERVER_CUBOIDS].read[server.<def[value].notable_name>.spawning]>" 
                   "==" "disabled" "{" "-" "determine" "cancelled" "passively" 
                   "-" "queue" "clear" "}" "}" "}" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='true' 
20:36:51 [INFO]  Filled tag <context.location.world> with 'w@guildworld'. 
20:36:51 [INFO]  Comparable='Element(w@guildworld)', Operator='EQUALS', 
                   ComparedTo='Element(w@guildworld)' --> OUTCOME='true' 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_CioHomelandArrangement' Executing: IF 
                   "<context.reason>" "==" "default" "queue" "clear" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='false' 
20:36:51 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:51 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(default)' --> OUTCOME='false' 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_CioHomelandArrangement' Executing: 
                   DETERMINE "cancelled" "passively" 
20:36:51 [INFO] +- Executing dCommand: DETERMINE ---------+ 
20:36:51 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='true' 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_CioHomelandArrangement' Executing: 
                   QUEUE "clear" 
20:36:51 [INFO] +- Executing dCommand: QUEUE ---------+ 
20:36:51 [INFO] +> Executing 'QUEUE': 
                   queue='q@PROTECTED_AREAS_CioHomelandArrangement'  
                   Action='CLEAR' 
20:36:51 [INFO]  Completing queue 'PROTECTED_AREAS_CioHomelandArrangement' in 
                   1ms. 
20:36:51 [INFO] +> Executing 'Event': Type='on entity spawns'  
                   Container='ENTITY_LOG(WORLD)'  Context='{cuboids=li@, 
                   reason=NATURAL, 
                   location=l@1285.5,22.0,211.5,0.0,125.80519,guildworld, 
                   entity=e@af09df30-d45d-421f-a656-41582c9f91d3}' 
20:36:51 [INFO] +- Building event 'ON ENTITY SPAWNS' for ENTITY_LOG ---------+ 
20:36:51 [INFO]  Starting InstantQueue 
                   'ENTITY_LOG_EnvironmentProposalsArchitectural'... 
20:36:51 [INFO]  Queue 'ENTITY_LOG_EnvironmentProposalsArchitectural' 
                   Executing: IF "<context.reason>" "==" "SPAWNER" "flag" 
                   "<context.entity>" "spawn_cause:<context.reason>" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='false' 
20:36:51 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:51 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(SPAWNER)' --> OUTCOME='false' 
20:36:51 [INFO]  Completing queue 
                   'ENTITY_LOG_EnvironmentProposalsArchitectural' in 0ms. 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_ActivatedTechnoDns' Executing: IF 
                   "<context.location.world>" "==" "w@guildworld" "{" "-" "if" 
                   "<context.reason>" "==" "default" "queue" "clear" "-" 
                   "determine" "cancelled" "passively" "-" "queue" "clear" "}" 
                   "else" "if" "<context.location.cuboids.size>" ">" "0" "{" "-" 
                   "foreach" "<context.cuboids>" "{" "-" "if" 
                   "<yaml[SERVER_CUBOIDS].read[server.<def[value].notable_name>.spawning]>" 
                   "==" "disabled" "{" "-" "determine" "cancelled" "passively" 
                   "-" "queue" "clear" "}" "}" "}" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='true' 
20:36:51 [INFO]  Filled tag <context.location.world> with 'w@world'. 
20:36:51 [INFO]  Comparable='Element(w@world)', Operator='EQUALS', 
                   ComparedTo='Element(w@guildworld)' --> OUTCOME='false' 
20:36:51 [INFO]  Filled tag <context.location.cuboids.size> with '0'. 
20:36:51 [INFO]  Comparable='Number(0)', Operator='MORE', 
                   ComparedTo='Number(0)' --> OUTCOME='false' 
20:36:51 [INFO]  Completing queue 'PROTECTED_AREAS_ActivatedTechnoDns' in 0ms. 
20:36:51 [INFO] +> Executing 'Event': Type='on entity spawns'  
                   Container='ENTITY_LOG(WORLD)'  Context='{cuboids=li@, 
                   reason=NATURAL, 
                   location=l@4181.5,31.0,-2118.5,0.0,78.63432,world, 
                   entity=e@cb2e9f63-8fab-492f-8aa1-49156b1fb638}' 
20:36:51 [INFO] +- Building event 'ON ENTITY SPAWNS' for ENTITY_LOG ---------+ 
20:36:51 [INFO]  Starting InstantQueue 'ENTITY_LOG_DetailsKoTruth'... 
20:36:51 [INFO]  Queue 'ENTITY_LOG_DetailsKoTruth' Executing: IF 
                   "<context.reason>" "==" "SPAWNER" "flag" "<context.entity>" 
                   "spawn_cause:<context.reason>" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='false' 
20:36:51 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:51 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(SPAWNER)' --> OUTCOME='false' 
20:36:51 [INFO]  Completing queue 'ENTITY_LOG_DetailsKoTruth' in 0ms. 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_MinistersAnotherMine' Executing: IF 
                   "<context.location.world>" "==" "w@guildworld" "{" "-" "if" 
                   "<context.reason>" "==" "default" "queue" "clear" "-" 
                   "determine" "cancelled" "passively" "-" "queue" "clear" "}" 
                   "else" "if" "<context.location.cuboids.size>" ">" "0" "{" "-" 
                   "foreach" "<context.cuboids>" "{" "-" "if" 
                   "<yaml[SERVER_CUBOIDS].read[server.<def[value].notable_name>.spawning]>" 
                   "==" "disabled" "{" "-" "determine" "cancelled" "passively" 
                   "-" "queue" "clear" "}" "}" "}" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='true' 
20:36:51 [INFO]  Filled tag <context.location.world> with 'w@world'. 
20:36:51 [INFO]  Comparable='Element(w@world)', Operator='EQUALS', 
                   ComparedTo='Element(w@guildworld)' --> OUTCOME='false' 
20:36:51 [INFO]  Filled tag <context.location.cuboids.size> with '0'. 
20:36:51 [INFO]  Comparable='Number(0)', Operator='MORE', 
                   ComparedTo='Number(0)' --> OUTCOME='false' 
20:36:51 [INFO]  Completing queue 'PROTECTED_AREAS_MinistersAnotherMine' in 
                   0ms. 
20:36:51 [INFO] +> Executing 'Event': Type='on entity spawns'  
                   Container='ENTITY_LOG(WORLD)'  Context='{cuboids=li@, 
                   reason=NATURAL, 
                   location=l@4177.5,31.0,-2116.5,0.0,197.78152,world, 
                   entity=e@52a53f50-4671-48dc-93a2-2ff97d118985}' 
20:36:51 [INFO] +- Building event 'ON ENTITY SPAWNS' for ENTITY_LOG ---------+ 
20:36:51 [INFO]  Starting InstantQueue 
                   'ENTITY_LOG_InteractiveForgeElectoral'... 
20:36:51 [INFO]  Queue 'ENTITY_LOG_InteractiveForgeElectoral' Executing: IF 
                   "<context.reason>" "==" "SPAWNER" "flag" "<context.entity>" 
                   "spawn_cause:<context.reason>" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='false' 
20:36:51 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:51 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(SPAWNER)' --> OUTCOME='false' 
20:36:51 [INFO]  Completing queue 'ENTITY_LOG_InteractiveForgeElectoral' in 
                   0ms. 
20:36:51 [INFO]  Queue 'PROTECTED_AREAS_VirusOvernightClaim' Executing: IF 
                   "<context.location.world>" "==" "w@guildworld" "{" "-" "if" 
                   "<context.reason>" "==" "default" "queue" "clear" "-" 
                   "determine" "cancelled" "passively" "-" "queue" "clear" "}" 
                   "else" "if" "<context.location.cuboids.size>" ">" "0" "{" "-" 
                   "foreach" "<context.cuboids>" "{" "-" "if" 
                   "<yaml[SERVER_CUBOIDS].read[server.<def[value].notable_name>.spawning]>" 
                   "==" "disabled" "{" "-" "determine" "cancelled" "passively" 
                   "-" "queue" "clear" "}" "}" "}" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='true' 
20:36:51 [INFO]  Filled tag <context.location.world> with 'w@world'. 
20:36:51 [INFO]  Comparable='Element(w@world)', Operator='EQUALS', 
                   ComparedTo='Element(w@guildworld)' --> OUTCOME='false' 
20:36:51 [INFO]  Filled tag <context.location.cuboids.size> with '0'. 
20:36:51 [INFO]  Comparable='Number(0)', Operator='MORE', 
                   ComparedTo='Number(0)' --> OUTCOME='false' 
20:36:51 [INFO]  Completing queue 'PROTECTED_AREAS_VirusOvernightClaim' in 
                   0ms. 
20:36:51 [INFO] +> Executing 'Event': Type='on entity spawns'  
                   Container='ENTITY_LOG(WORLD)'  Context='{cuboids=li@, 
                   reason=NATURAL, 
                   location=l@208.5,72.0,1438.5,0.0,204.15428,world, 
                   entity=e@c98e2d07-3425-40a9-acc5-f37830fe23d9}' 
20:36:51 [INFO] +- Building event 'ON ENTITY SPAWNS' for ENTITY_LOG ---------+ 
20:36:51 [INFO]  Starting InstantQueue 'ENTITY_LOG_LibsUnusualDistributor'... 
20:36:51 [INFO]  Queue 'ENTITY_LOG_LibsUnusualDistributor' Executing: IF 
                   "<context.reason>" "==" "SPAWNER" "flag" "<context.entity>" 
                   "spawn_cause:<context.reason>" 
20:36:51 [INFO] +- Executing dCommand: IF ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='false' 
20:36:51 [INFO]  Filled tag <context.reason> with 'NATURAL'. 
20:36:51 [INFO]  Comparable='Element(NATURAL)', Operator='EQUALS', 
                   ComparedTo='Element(SPAWNER)' --> OUTCOME='false' 
20:36:51 [INFO]  Completing queue 'ENTITY_LOG_LibsUnusualDistributor' in 0ms. 
20:36:51 [INFO]  Queue 'SHOW_EXP_BOSS_BAR_LargeMosesSlovak' Executing: FLAG 
                   "<player>" "show_boss_bar" "duration:4s" 
20:36:51 [INFO] +- Executing dCommand: FLAG/p@xArie ---------+ 
20:36:51 [INFO]  Filled tag <player> with 
                   'p@0650c8c9-57be-4963-8354-3337bdb7c350'. 
20:36:51 [INFO] +> Executing 'FLAG': flag_name='show_boss_bar'  
                   Action/Value='SET_BOOLEAN(true)'  duration='d@80t'  
                   flag_target='p@xArie' 
20:36:51 [INFO] +> Executing 'Event': Type='on DENIZEN command'  
                   Container='YAML_MANAGER(WORLD)'  
                   player=p@TheBlackCoyoteContext='{args=li@submit, cuboids=li@, 
                   server=false, parsed_args=li@submit, command=DENIZEN, 
                   raw_args=submit}' 
20:36:51 [INFO] +- Building event 'ON DENIZEN COMMAND' for YAML_MANAGER 
                   ---------+ 
20:36:51 [INFO]  Starting InstantQueue 'YAML_MANAGER_RawNoneOrleans'... 
20:36:51 [INFO]  Queue 'YAML_MANAGER_RawNoneOrleans' Executing: IF 
                   "<context.args.get[1]>" "==" "reload" "{" "-" "yaml" 
                   "load:/ECMMO_SAVES/A_SKILL_ABILITY_CONFIG.yml" "id:SKILLS" "-" 
                   "yaml" "load:/ECMMO_SAVES/C_CRAFTING_XP.yml" "id:CRAFTING_EXP" 
                   "}" 
20:36:51 [INFO] +- Executing dCommand: IF/p@TheBlackCoyote ---------+ 
20:36:51 [INFO] +> Executing 'IF': use_braces='true' 
20:36:51 [INFO]  Filled tag <context.args.get[1]> with 'submit'. 
20:36:51 [INFO]  Comparable='Element(submit)', Operator='EQUALS', 
                   ComparedTo='Element(reload)' --> OUTCOME='false' 
20:36:51 [INFO]  Completing queue 'YAML_MANAGER_RawNoneOrleans' in 0ms.