Paste #22508: Denizen Debug Logs From Server loading... Please wait to join.

Date: 2015/11/13 15:09:06 UTC-08: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


Java Version: 1.7.0_65
Up-time: 1d 5h
CraftBukkit Version: git-Spigot-5f38d38-18fbb24 (MC: 1.8.8)
Denizen Version: Core: 1.10 (Build Unknown), CraftBukkit: 0.9.7-SNAPSHOT (build 404)
Active Plugins (17): WorldEdit: 6.0.2-SNAPSHOT;3370-58aac973, NoCheatPlus: 3.12.0-BETA2-sASO-b813, 
ClientPermissions: 1.1.0, Buycraft: 6.8, Vault: 1.5.3-b37, PermissionsEx: 1.22.7-SNAPSHOT, 
AskGoogle: 1.0.0, AutoSaveWorld: 4.14.2, Votifier: 1.9, Prism: 2.0.6-31, 
WorldGuard: 6.0.0-SNAPSHOT.1590-, Essentials: TeamCity, Citizens: 2.0.16-SNAPSHOT (build 1251), 
ArmorStandEditor: 1.8-0.1.5BETA, Denizen: 0.9.7-SNAPSHOT (build 404), Depenizen: 0.2.2 (build 268), 
Webizen: ${project.version} (build ${BUILD_NUMBER})
Loaded Worlds (4): Keangdom, Keangdom_nether, Keangdom_the_end, Keangdom_Creative
Online Players (1): AKeangDavid(KeangDavid)
Offline Players: 150
Mode: online

16:09:04 [INFO]  Completing queue 'EXCOMMAND_DealtimeRetentionHereby' in 9ms. 
16:09:04 [INFO]  ERROR! Tag <player.iteminhand.lore.is[!=].to[null]> is 
                   invalid! 
16:09:05 [INFO]  Starting InstantQueue 'EXCOMMAND_GrossBedsMinecraft'... 
16:09:05 [INFO]  Queue 'EXCOMMAND_GrossBedsMinecraft' Executing: WAIT "1s" 
16:09:05 [INFO] +- Executing dCommand: WAIT/p@KeangDavid ---------+ 
16:09:05 [INFO] +> Executing 'WAIT': queue='EXCOMMAND_GrossBedsMinecraft'  
                   delay='d@20t' 
16:09:05 [INFO]  Forcing queue EXCOMMAND_GrossBedsMinecraft into a timed 
                   queue... 
16:09:05 [INFO]  Completing queue 'EXCOMMAND_GrossBedsMinecraft' in 0ms. 
16:09:05 [INFO]  Starting TimedQueue 'EXCOMMAND_GrossBedsMinecraft'... 
16:09:05 [INFO]  Completing queue 'EXCOMMAND_GrossBedsMinecraft' in 0ms. 
16:09:05 [INFO]  Starting InstantQueue 'EXCOMMAND_SymbolAssignedRising'... 
16:09:05 [INFO]  Queue 'EXCOMMAND_SymbolAssignedRising' Executing: EXECUTE 
                   "as_op" "denizen reload scripts" 
16:09:05 [INFO] +- Executing dCommand: EXECUTE/p@KeangDavid ---------+ 
16:09:05 [INFO] +> Executing 'EXECUTE': type='AS_OP'  command='denizen reload 
                   scripts'  silent='false' 
16:09:05 [INFO] +> [Denizen] Processing outside scripts... 
16:09:05 [INFO] +> [Denizen] Processing unnamed script... 
16:09:05 [INFO] +> [Denizen] Processing '/Entities/LootChest.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Entities/DEDEgg.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Playerzen/main.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Items/LoreAxe.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Items/itemghost.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Items/MusicMixer.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Items/Parachute.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Items/Trail.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Items/Quest.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Items/GrapplingHook.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Items/NaturesGift.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Items/TunnlePick.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Items/Saddle.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Items/Net.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Items/XpTome.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/yamler.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Denizen/d.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Denizen/Speedometer.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Duel.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Hostile.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Report.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/PVP.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Claim.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Spectate.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Random.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Create.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Player_Trading.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Around.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Recipe.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Sudo.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Players.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Yaml.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Sign.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Alerts.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Command.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Sounds.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Teleport.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Settings.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Credit.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Math.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Announce.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Horse.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Mail.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Friends.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/1Basic.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/News.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Banners.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commands/Chat.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/NPCs/Commander.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/NPCs/Companion.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Skills/SkillCommand.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Skills/SkillHandler.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Skills/Combat.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Skills/SkillCui.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Skills/Mining.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Skills/Farming.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/The_End.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Quest.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Info.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Site/Password.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Sys/DED.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Sys/SQL.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Sys/EntityControl.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Sys/Fixes.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Sys/System.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Sys/Tutorial.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Sys/Logging.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Sys/Debug.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Sys/Admin.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Sys/BaseScripts.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Sys/Smelt.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Barrutilities.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Quests/NewBeginning.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Villagers.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Mechanics/Torch.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Mechanics/Zombies.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Mechanics/NPC.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Mechanics/ping.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Mechanics/Fish.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Mechanics/YAML.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Mechanics/Tree.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Mechanics/Chairs.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Mechanics/Death.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Mechanics/Clan.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Mechanics/DynamicDiffaculty.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Mechanics/Health.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Mechanics/Paths.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Mechanics/Chat.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Mechanics/Fishing.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Mechanics/Spawner.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/Commanding.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/bound.yml'... 
16:09:05 [INFO] +> [Denizen] Processing '/MobMerge.yml'... 
16:09:05 [INFO]  OKAY! All scripts loaded! 
16:09:05 [INFO] +> [Denizen] Adding script VILLAGERFOLLOW as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script PLAYER_TRADE_DECLINE as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script FISH as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script DEDFAIL as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script BUILTIN_LOAD_TESTER as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script SKILLSCOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script COMPUTER_EDIT as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script EMPTYNETITEM as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script GOLDFROMSPADE as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script CLANCOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script SADDLELISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script VILLAGERATTRACT as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script BLOCKLOG as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script INSTANT as type PROCEDURE 
16:09:05 [INFO] +> [Denizen] Adding script BUI_PLAYER as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script FIXESLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script DDENIZENCOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script TELEPORTTASK as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script TORCHTASK as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script DEATH as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script IRONFROMSWORD as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script NOTE_STICKS as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script RANDOMTELEPORT as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script SYSTEM as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script CLAIMREMOVELEGACY as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script AUTOANNOUNCELISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script DEDCHARGETASK as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script SQLCOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script SURVIVAL as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script CREATEIMPORT as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script DEDMAIN as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script COMMANDCOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script YAML as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script DEDUPDATE as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script VEINALGORITHEM as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script RANDOMCOMMAND as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script CHAIRS as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script IRONFROMLEGGINGS as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script CLAIMEXPAND as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script DEBUG as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script PLAYERSETTINGSLISTENER as type 
                   WORLD 
16:09:05 [INFO] +> [Denizen] Adding script DENIZENHELPERLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script TELEPORTREQUEST as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script QUESTLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script QUESTWELCOMELISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_PERCENT as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script GRAPPLINGHOOKITEM as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_ARROWLEFT as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_APOSTROPHE as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script COMPUTERLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script CLAIMINFORMATION as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script SPEEDOMETERCOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script INVENTORYLOAD as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script LOGGER as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script SPEEDOMETERTASK as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script DO as type PROCEDURE 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_EXCLAMATION as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script PARACHUTE as type ENTITY 
16:09:05 [INFO] +> [Denizen] Adding script ITEMGHOST as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script GOLDFROMCHESTPLATE as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script TRAILCOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script CLAIMCREATE as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script TUNNLEPICKLISTERNER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script MAILCOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script GOLDFROMHELMET as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_ASTERISK as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script QUESTUPDATE as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script FRONT as type PROCEDURE 
16:09:05 [INFO] +> [Denizen] Adding script HORSECOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script DCLOSE as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script IRONFROMCHESTPLATE as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script RECIPELISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script CHATBASIC as type FORMAT 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_BACKSLASH as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script SILLMINING as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script ADDMINLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script EMPTYXPTOMEITEM as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script LOREAXEITEM as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script SKILLSHANDLER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script RECIPEINVENTORY as type INVENTORY 
16:09:05 [INFO] +> [Denizen] Adding script NOTE_BASS as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script CLAIMIN as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script BOUND as type PROCEDURE 
16:09:05 [INFO] +> [Denizen] Adding script PLAYER_TRADE_ITEM_S as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script CHESTLOOT as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script PLAYER_TRADE_ITEM_W as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNERRANDOMTASK as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script PLAYER_TRADE_ITEM_Y as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script CARRYANIMALS as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script PLAYER_TRADE_ITEM_Z as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script MEDICINEITEM as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script MAILDELETE as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script PLAYER_TRADE_LISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script BUI_PLAYERS as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script TRAILLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script INVSKAB as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script IRONFROMAXE as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script GOLDFROMAXE as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script SKAB as type PROCEDURE 
16:09:05 [INFO] +> [Denizen] Adding script RANLOC as type PROCEDURE 
16:09:05 [INFO] +> [Denizen] Adding script NOTE_PIANO as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script PLAYER_TRADE_COMMAND as type 
                   COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script TEST_FRONT as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script NPCLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_PLUS as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script MAILREAD as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script PVPLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script DUELREQUEST as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script QUEUE_LISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script CHATCOMMAND as type COMMAND 
16:09:05 [INFO]  ERROR! Tag <message> is invalid! 
16:09:05 [INFO] +> [Denizen] Adding script BANNERSINV as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script PLAYER_TRADE_ITEM_A as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script PLAYER_TRADE_ITEM_B as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script LOOTCHEST as type ENTITY 
16:09:05 [INFO] +> [Denizen] Adding script MININGSKILLDETECTORE as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script CREATEEXPORT as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script NEWSBOOK as type BOOK 
16:09:05 [INFO] +> [Denizen] Adding script NOTE_BASS_DRUM as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script LOREAXELISTERNER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script PLAYERYAML as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script PLAYER_TRADING_VERSION as type 
                   VERSION 
16:09:05 [INFO] +> [Denizen] Adding script MATHCOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script CHATBUTTON as type PROCEDURE 
16:09:05 [INFO] +> [Denizen] Adding script NATURESGIFT as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script CREATEIMPORTAREA as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script BANNERRANDOMITEM as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script PLAYER_TRADE_ITEM_R as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script RTAG as type PROCEDURE 
16:09:05 [INFO] +> [Denizen] Adding script DUELWIN as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script IRONFROMHOE as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script TOG as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script NATURESGIFTLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script TELEPORT_VERSION as type VERSION 
16:09:05 [INFO] +> [Denizen] Adding script AROUNDCOMMAND as type COMMAND 
16:09:05 [INFO]  ERROR! Tag <range> is invalid! 
16:09:05 [INFO]  ERROR! Tag <range> is invalid! 
16:09:05 [INFO] +> [Denizen] Adding script BANNERS_VERSION as type VERSION 
16:09:05 [INFO] +> [Denizen] Adding script CHATWORLD as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script PLAYER_TRADE_WAIT as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script MOBSPAWNERLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script REPORTTASK as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script COMMANDERTASK as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script EXPORTFIX as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script SKILLXP as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script PARACHUTEITEM as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script TALK as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script PLAYER_TRADE_UPDATE as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script HEALTHLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script CHATFORMAT as type FORMAT 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_MINUS as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script INVDENIZENYAMLS as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script BANNERSCOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script SQLKEEPALIVE as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script DEBUGTASK as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script REPORTCOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script ALARM as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script CHATPLAYER as type PROCEDURE 
16:09:05 [INFO] +> [Denizen] Adding script INVENTORYSAVE as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script BANNERLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script CHATMESSAGE as type PROCEDURE 
16:09:05 [INFO] +> [Denizen] Adding script BIND as type PROCEDURE 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_2 as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_P as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script DSUDO as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_1 as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_O as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_0 as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_R as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script DEATHDIE as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_Q as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script PVPCOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script TRAILITEM as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script FIRSTJOIN as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_L as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script FISHLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_K as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script DAMAGESPLASH as type ENTITY 
16:09:05 [INFO] +> [Denizen] Adding script FRIENDSCOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_N as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script CLAIMREMOVE as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script HOSTILECOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_M as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_H as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script INVPLAYERINFO as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_G as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script MININGSKILLTORCH as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script CREDITCHANGE as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_J as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_I as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_D as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_C as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script YAMLCOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script BARRIUSEFULL as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_F as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script INFO as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_E as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script AUTOANNOUNCER as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_A as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script DEDEGG as type ENTITY 
16:09:05 [INFO] +> [Denizen] Adding script CREDITCHECK as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script TICKER as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_B as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script CREATIVELISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script PAGE as type PROCEDURE 
16:09:05 [INFO] +> [Denizen] Adding script MAILCLAIM as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script DEDIGNITER as type ENTITY 
16:09:05 [INFO] +> [Denizen] Adding script VEINTASK as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script DRAGONEGGDEFENCE as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script INVENTORYLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script COMMANDING as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script INVDENIZENQUEUES as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script NPCCHAT as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script CREDITCOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script XPTOMEITEM as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script NOTE_PLING as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script INVENTITYCONTROL as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script STASK as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script BOUND_HANDLER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script INVDENIZENHELPER as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script COMMANDGROUP as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script DUELACCEPT as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script BOOKINFO as type BOOK 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_7 as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_Y as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_8 as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_Z as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_9 as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_W as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_X as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_3 as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_U as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_4 as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script TRAILTASK as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_V as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_SEMICOLON as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_5 as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_S as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script DEATHTIMER as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script SKILLBOOK as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script IRONFROMHELMET as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_6 as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_T as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script MAILLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script MUSICMIXER as type INVENTORY 
16:09:05 [INFO] +> [Denizen] Adding script CANCELBUTCHER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script PLAYER_TRADE_ITEM_1 as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script SQLLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script PLAYER_TRADE_ITEM_2 as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script DYNAMICDIFF as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_SPACE as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script KEANGDAVID_API as type VERSION 
16:09:05 [INFO] +> [Denizen] Adding script IRONFROMBOOTS as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script INVPLAYERSETTINGS as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script SQLFIRSTJOIN as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script SAVEPLAYERS as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script SETTINGSCOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script NOTE_BASS_GUITAR as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script SPECTATE as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script CLAIMMANAGELAND as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script VELOCITY as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script DUELCOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script TELEPORTCOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script QLER as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script SKILLLEVELUP as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script CREDITLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script GOLDFROMHOE as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script ZOMBIESLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script RPAGE as type PROCEDURE 
16:09:05 [INFO] +> [Denizen] Adding script XPTOMELISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script RANDOMTELEPORTLISTENER as type 
                   WORLD 
16:09:05 [INFO] +> [Denizen] Adding script TICK as type PROCEDURE 
16:09:05 [INFO] +> [Denizen] Adding script DEDMOBLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script SQL as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script GPLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script DEATHHAUNT as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script ENDER_DRAGON as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script DUELLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_FORWARDSLASH as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script PINGWORLD as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script FISHING as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script NOTE_SNARE_DRUM as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script MAILSEND as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script HORSEITEM as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script CLAIMSELECTLAND as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script DEATHLIVE as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script SIGNWORLD as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script COMBAT_SKILL_LEAP as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script IRONFROMPICKAXE as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script RBOOK as type PROCEDURE 
16:09:05 [INFO] +> [Denizen] Adding script ITEMGHOSTTASK as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script RIPCORDITEM as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script SUDO as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_ARROWUP as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script PASSWORD as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script PLAYERLIST as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_COMA as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script SKILLCOMBAT as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script INVDENIZENPLUGINS as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script LEVEL as type PROCEDURE 
16:09:05 [INFO] +> [Denizen] Adding script CREDITTIMER as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script PLAYER_TRADE_ACCEPT as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script SILLFARMING as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script BLOCKCHECK as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script IRONFROMSPADE as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_PIPE as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script NATURESGIFTITEM as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script CLAIMLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script CLAIMCOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script ALERTLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script COLNUM as type PROCEDURE 
16:09:05 [INFO] +> [Denizen] Adding script TELEPORTLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_QUOTATION as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BLACKMAGIC as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script MUSICMIXERLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script YAMLER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script GOLDFROMSWORD as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script HORSEWORLD as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script GOLDFROMPICKAXE as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script SIGNCOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script CLAIMMANAGELISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script ITEMGHOSTLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script INV as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script DEDCHARGE as type ENTITY 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_COLON as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script RANDOMTELEPORTLOCATION as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_ARROWRIGHT as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_ARROWDOWN as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script SOUNDCOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script ENTITYCONTROLLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script PLAYERWORLD as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_QUESTION as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script CHEST as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script NEWSCOMMAND as type COMMAND 
16:09:05 [INFO] +> [Denizen] Adding script ANTICHEAT as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script VEIN as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script TORCHLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script BANNER_PERIOD as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script SUDOTASK as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script GOLDFROMBOOTS as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script LAYOUT as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script DEDBEGIN as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script CLAIMNEWLAND as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script COMPUTE as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script SKABSORT as type PROCEDURE 
16:09:05 [INFO] +> [Denizen] Adding script NOTSQLQUEUE as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script LOGGERLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script TUNNLEPICKITEM as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script GOLDFROMLEGGINGS as type ITEM 
16:09:05 [INFO] +> [Denizen] Adding script INVDUEL as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script AGREEMENT as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script MOBMERGE as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script PVPCHECK as type PROCEDURE 
16:09:05 [INFO] +> [Denizen] Adding script PATHTRAMPELING as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script SIGNTASK as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script MOBMERGELISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script COMPANIONTASK as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script BOOK as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script TELEPORTBACK as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script TUTORIALLISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script PARACHUTELISTENER as type WORLD 
16:09:05 [INFO] +> [Denizen] Adding script INVPLAYERLIST as type TASK 
16:09:05 [INFO] +> [Denizen] Adding script NEWBEGINNING_QUEST as type TASK 
16:09:05 [INFO] +> [Denizen] Scanning 78 world scripts... 
16:09:05 [INFO] +> [FlagSmartEvent] Loaded Flag SmartEvent. 
16:09:05 [INFO] +> [CommandSmart...] Loaded Command SmartEvent. 
16:09:05 [INFO] +> [Denizen] Reloading script events... 
16:09:05 [INFO] +> [Denizen] Event match, BlockDispenses matched for 'block 
                   dispenses item'! 
16:09:05 [INFO] +> [Denizen] Event match, BlockDispenses matched for 'block 
                   dispenses item'! 
16:09:05 [INFO] +> [Denizen] Event match, BlockGrows matched for 'block 
                   grows'! 
16:09:05 [INFO] +> [Denizen] Event match, Chat matched for 'player chats 
                   priority:-112'! 
16:09:05 [INFO] +> [Denizen] Event match, Chat matched for 'player chats'! 
16:09:05 [INFO] +> [Denizen] Event match, ChunkUnloads matched for 'chunk 
                   unloads'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks block with VEIN'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks STONE with TUNNLEPICKITEM'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks block with TUNNLEPICKITEM'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks granite'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks iron_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks cobblestone'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks diamond_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks gravel'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks lapis_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks obsidian'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks netherrack'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks diorite'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks dirt'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks coal_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks andesite'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks stone'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks quartz_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks glowing_redstone_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks gold_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks emerald_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks soul_sand'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks block'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks SIGN'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks mob_spawner'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks oak_log'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks block'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks block'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks melon_block'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks carrot,7'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks potato,7'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks nether_warts,3'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks pumpkin'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks crops,7'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 
                   'player changes food level'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 'time 
                   changes in Keangdom'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 'time 
                   changes'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 'time 
                   changes in Keangdom'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 
                   'player changes world to Keangdom_Creative'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 
                   'player changes world from Keangdom_Creative'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 
                   'player changes xp'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 
                   'player changes world to DED'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 'time 
                   changes in Keangdom'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 
                   'ender_dragon changes block'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'WITCH 
                   damaged'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages VILLAGER'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages entity'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages armor_stand priority:-1'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'entity 
                   damaged'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'villager 
                   damaged'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages entity'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'entity 
                   damaged'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages HORSE'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages entity'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityDies matched for 'entity 
                   dies'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityDies matched for 'villager 
                   dies'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityDies matched for 'player 
                   dies'! 
16:09:05 [INFO] +> [Denizen] Event match, FoodLevelChanged matched for 'player 
                   changes food level'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityHeals matched for 'entity 
                   heals'! 
16:09:05 [INFO] +> [Denizen] Event match, EntitySpawn matched for 'entity 
                   spawns because spawner_egg'! 
16:09:05 [INFO] +> [Denizen] Event match, EntitySpawn matched for 'entity 
                   spawns because dispense_egg'! 
16:09:05 [INFO] +> [Denizen] Event match, EntitySpawn matched for 'ZOMBIE 
                   spawns because NATURAL'! 
16:09:05 [INFO] +> [Denizen] Event match, EntitySpawn matched for 'zombie 
                   spawns'! 
16:09:05 [INFO] +> [Denizen] Event match, EntitySpawn matched for 'entity 
                   spawns because breeding'! 
16:09:05 [INFO] +> [Denizen] Event match, EntitySpawn matched for 'entity 
                   spawns because NATURAL'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityTargets matched for 'entity 
                   targets player'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityTargets matched for 'entity 
                   targets entity'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityTeleports matched for 'player 
                   teleports'! 
16:09:05 [INFO] +> [Denizen] Event match, EntityTeleports matched for 'player 
                   teleports'! 
16:09:05 [INFO] +> [Denizen] Event match, HorseJumps matched for 'player 
                   jumps'! 
16:09:05 [INFO] +> [Denizen] Event match, HorseJumps matched for ' player 
                   jumps'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerScrollsItem matched for 
                   'player holds item'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerScrollsItem matched for 
                   'player holds item'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerScrollsItem matched for 
                   'player holds item'! 
16:09:05 [INFO] +> [Denizen] Event match, ItemSpawns matched for 'entity 
                   spawns because spawner_egg'! 
16:09:05 [INFO] +> [Denizen] Event match, ItemSpawns matched for 'entity 
                   spawns because dispense_egg'! 
16:09:05 [INFO] +> [Denizen] Event match, ItemSpawns matched for 'ZOMBIE 
                   spawns because NATURAL'! 
16:09:05 [INFO] +> [Denizen] Event match, ItemSpawns matched for 'zombie 
                   spawns'! 
16:09:05 [INFO] +> [Denizen] Event match, ItemSpawns matched for 'entity 
                   spawns because breeding'! 
16:09:05 [INFO] +> [Denizen] Event match, ItemSpawns matched for 'entity 
                   spawns because NATURAL'! 
16:09:05 [INFO] +> [Denizen] Event match, ServerListPing matched for 'server 
                   list ping'! 
16:09:05 [INFO] +> [Denizen] Event match, ServerListPing matched for 'server 
                   list ping'! 
16:09:05 [INFO] +> [Denizen] Event match, PistonExtends matched for 'piston 
                   extends'! 
16:09:05 [INFO] +> [Denizen] Event match, PistonRetracts matched for 'piston 
                   retracts'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks block with VEIN'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks STONE with TUNNLEPICKITEM'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks block with TUNNLEPICKITEM'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks granite'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks iron_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks cobblestone'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks diamond_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks gravel'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks lapis_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks obsidian'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks netherrack'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks diorite'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks dirt'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks coal_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks andesite'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks stone'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks quartz_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks glowing_redstone_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks gold_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks emerald_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks soul_sand'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks block'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks SIGN'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks mob_spawner'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks oak_log'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks block'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks block'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks melon_block'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks carrot,7'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks potato,7'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks nether_warts,3'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks pumpkin'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks crops,7'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks block with VEIN'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks STONE with TUNNLEPICKITEM'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks block with TUNNLEPICKITEM'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks granite'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks iron_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks cobblestone'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks diamond_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks gravel'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks lapis_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks obsidian'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks netherrack'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks diorite'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks dirt'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks coal_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks andesite'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks stone'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks quartz_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks glowing_redstone_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks gold_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks emerald_ore'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks soul_sand'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks block'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks SIGN'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks mob_spawner'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks oak_log'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks block'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks block'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks melon_block'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks carrot,7'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks potato,7'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks nether_warts,3'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks pumpkin'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks crops,7'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerChangesWorld matched for 
                   'player changes world to Keangdom_Creative'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerChangesWorld matched for 
                   'player changes world from Keangdom_Creative'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerChangesWorld matched for 
                   'player changes world to DED'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerChangesXP matched for 'player 
                   changes xp'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerClosesInv matched for 'player 
                   closes inventory'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerClosesInv matched for 'player 
                   closes inventory'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerConsumes matched for 'player 
                   consumes itemghost'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages armor_stand priority:-1'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerDropsItem matched for 'player 
                   drops item'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerDropsItem matched for 'player 
                   drops item'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerFishes matched for 'player 
                   fishes'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   join'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerJumps matched for 'player 
                   jumps'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerOpensInv matched for 'player 
                   opens inventory'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerPicksUp matched for 'player 
                   picks up item'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerPicksUp matched for 'player 
                   picks up item'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places WORKBENCH'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places block'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places NATURESGIFTITEM'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places mob_spawner'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places BANNERRANDOMITEM'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places block'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places TNT'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places DRAGON_EGG'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places block'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places sign'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places WORKBENCH'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places block'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places NATURESGIFTITEM'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places mob_spawner'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places BANNERRANDOMITEM'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places block'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places TNT'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places DRAGON_EGG'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places block'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places sign'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerQuits matched for 'player 
                   quits'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerQuits matched for 'player 
                   quits'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerQuits matched for 'player 
                   quits'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerRespawns matched for 'player 
                   respawns'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerSpring matched for 'player 
                   toggles sneaking'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerStepsOn matched for 'player 
                   steps on block'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerStepsOn matched for 'player 
                   steps on slime_block'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerStepsOn matched for 'player 
                   steps on block'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerStepsOn matched for 'player 
                   steps on command'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerStepsOn matched for 'player 
                   steps on block'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerStepsOn matched for 'player 
                   steps on grass'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerStepsOn matched for 'player 
                   steps on block'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerStepsOn matched for 'player 
                   steps on cobblestone'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerStepsOn matched for 'player 
                   steps on gravel'! 
16:09:05 [INFO] +> [Denizen] Event match, PlayerStepsOn matched for 'player 
                   steps on dirt'! 
16:09:05 [INFO] +> [Denizen] Event match, PotionSplash matched for 'potion 
                   splash'! 
16:09:05 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'WITCH 
                   damaged'! 
16:09:05 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages VILLAGER'! 
16:09:05 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages entity'! 
16:09:05 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages armor_stand priority:-1'! 
16:09:05 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged'! 
16:09:05 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged'! 
16:09:05 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'entity 
                   damaged'! 
16:09:05 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged'! 
16:09:05 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'villager 
                   damaged'! 
16:09:05 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages entity'! 
16:09:05 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged'! 
16:09:05 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'entity 
                   damaged'! 
16:09:05 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages HORSE'! 
16:09:05 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages entity'! 
16:09:05 [INFO]  Completing queue 'EXCOMMAND_SymbolAssignedRising' in 252ms. 
16:09:06 [INFO]  Starting InstantQueue 'EXCOMMAND_NationsRenewalListed'... 
16:09:06 [INFO]  Queue 'EXCOMMAND_NationsRenewalListed' Executing: WAIT "1s" 
16:09:06 [INFO] +- Executing dCommand: WAIT/p@KeangDavid ---------+ 
16:09:06 [INFO] +> Executing 'WAIT': queue='EXCOMMAND_NationsRenewalListed'  
                   delay='d@20t' 
16:09:06 [INFO]  Forcing queue EXCOMMAND_NationsRenewalListed into a timed 
                   queue... 
16:09:06 [INFO]  Completing queue 'EXCOMMAND_NationsRenewalListed' in 0ms. 
16:09:06 [INFO]  Starting TimedQueue 'EXCOMMAND_NationsRenewalListed'... 
16:09:06 [INFO]  Completing queue 'EXCOMMAND_NationsRenewalListed' in 0ms. 
16:09:06 [INFO]  Starting InstantQueue 'EXCOMMAND_BibleTelecomFurthermore'... 
16:09:06 [INFO]  Queue 'EXCOMMAND_BibleTelecomFurthermore' Executing: EXECUTE 
                   "as_op" "denizen submit" 
16:09:06 [INFO] +- Executing dCommand: EXECUTE/p@KeangDavid ---------+ 
16:09:06 [INFO] +> Executing 'EXECUTE': type='AS_OP'  command='denizen submit' 
                    silent='false'