Paste #44457: Denizen Debug Logs From A Minecraft Server

Date: 2017/09/14 22:38:14 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


Java Version: 1.8.0_131
Up-time: 3m 28s
CraftBukkit Version: git-Spigot-65e8124-bde2a93 (MC: 1.12.1)
Denizen Version: Core: 1.15 (Build 91), CraftBukkit: 1.0.2-SNAPSHOT (build 239)
Active Plugins (16): FastAsyncWorldEdit: 17.09.07-477ae2a-882-16.5.0, FastAsyncVoxelSniper: 17.09.07-477ae2a-882-16.5.0, 
PermissionsEx: 1.23.4, WorldBorder: 1.8.4, Vault: 1.5.6-b49, ProtocolLib: 4.3.0, 
Fe: 0.8.3, LibsDisguises: 9.1.2, NoCheatPlus: 3.15.0-SNAPSHOT-sMD5NET-b1016, 
WorldEdit: 6.1.7;dd00bb1, Citizens: 2.0.22-SNAPSHOT (build 1493), Denizen: 1.0.2-SNAPSHOT (build 239), 
VoxelSniper: 5.171.0-SNAPSHOT, dIRCBot: 0.3 (build 8), Sentinel: 1.3.5 (build 145), 
Depenizen: 1.0.0 (build 384)
Loaded Worlds (1): Ichebod
Online Players (2): mcmonkey4eva(mcmonkey4eva), Luthien(Luthien)
Offline Players: 140
Mode: offline

07:38:11 [INFO] +> [Denizen] Processing outside scripts... 
07:38:11 [INFO] +> [Denizen] Processing unnamed script... 
07:38:11 [INFO] +> [Denizen] Processing '/Roleplay/invsync_rp.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/NPCs/Barkeep.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/NPCs/Barkeep2.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/NPCs/aodh.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/IRC Helper.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/Command - NPC Species.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/Command - Workbench.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/magicpowertools.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/borko.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/Command - BungeeTP.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/lobbycmd.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/System - Block Control.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/autorestart.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/Command - Speed.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/Command - OTP.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/customsworkers.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/Command - Lore.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/Universal Stuff.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/Command - Seen.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/skincommand.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/Command - Backpack.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/flide.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/System - Infoboard.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/iteminfo command.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/torch_light.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/System - Banking.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/autosave.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/Command - Global Script 
                   Reload.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/System - Cards.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/dRegions/wg_importer.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/dRegions/messages.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/dRegions/dWorldEditor.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/dRegions/flags.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/dRegions/cfg.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/dRegions/commands.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/dRegions/dRegions.yml'... 
07:38:11 [INFO] +> [Denizen] Processing 
                   '/All/dRegions/MessageConstructors.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/denizzlin.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/Command - Friends.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/dCommander/Commands - 
                   Warp.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/dCommander/Main.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/dCommander/Commands - 
                   Player.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/dCommander/Commands - 
                   Inventory.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/dCommander/Utilities - 
                   Player.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/dCommander/Commands - 
                   Teleport.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/dCommander/Commands - 
                   Items.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/dCommander/Commands - 
                   Seen.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/dCommander/Commands - 
                   GodMode.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/dCommander/Commands - 
                   Home.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/dCommander/Commands - 
                   Back.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/Command - Nickname.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/ooc command.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/stick_o_levitation.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/Command - Warning.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/SunExposure.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/brooooooooooooms.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/flyweb.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/beetlevendor.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/nodeathmessage.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/listcommand.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/System - Chat.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/Config Control.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/scaley.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/nighvision command.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/Command - Server (World).yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/noaccidentalbreak.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/top.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/hat.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/oculo.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/dispnamecommand.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/Species.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/Command - Help.yml'... 
07:38:11 [INFO] +> [Denizen] Processing '/All/nophysics.yml'... 
07:38:11 [INFO]  OKAY! All scripts loaded! 
07:38:11 [INFO] +> [Denizen] Adding script HELP MENU CONTROL as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script COMMAND_OFFLINE_TELEPORT as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DWE_HASPERM_COMMAND as type 
                   PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_EVENTS_PLAYER_CHANGES_FOODLEVEL as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COMMAND_SETWARP as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script HAT_CMD as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script NO_SWEARS as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_CONTRACT as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_EXIT-VIA-TELEPORT as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_HASPERM_COMMAND as type 
                   PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script SPECIES_COROKO_HELPER as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script IPC as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_MOB-TARGETLIST as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_LIGHTNING-FIRE as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script CHAT_NOTIFY_PROC as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script MSGPREFIXED as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_VEHICLE-DESTROY as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script OCULO as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COMMAND_DELETEHOME as 
                   type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DENIZZLE as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DWE_VERSION as type VERSION 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_SCHEM as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_PLAYERMATCHREGIONGROUP as 
                   type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_FORMAT as type FORMAT 
07:38:11 [INFO] +> [Denizen] Adding script WARNINGS CHECK COMMAND as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_EVENTS_PLAYER_PLACE_HANGING as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_SPHERE as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_FALLING-SAND as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script BEETLE_VENDOR1 as type INTERACT 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAGS_PROCESSORS_B as type 
                   TASK 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_AUTHOR_ANTHONY as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DRINK_ALE as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAGS_PROCESSORS_STSG as 
                   type TASK 
07:38:11 [INFO] +> [Denizen] Adding script COMMAND_WORKBENCH as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script WARNINGS CLEAR COMMAND as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_PLAYER_THROW_EGG as 
                   type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_MOB-ATTACK as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script SPEEDCOMMAND as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_BUILD as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_EVE-MOBLIST as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_HEAL-MIN as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_WARPS_LOCATION as type 
                   PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DISPNAME_COMMAND as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_WARPS_SAVE as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_POTION_SPLASH as 
                   type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_PASTE as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script CHAR_CARD_SAVE_DESCRIPTION as type 
                   WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_ISOWNER as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_LAVA-SPREAD as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGION_FLAGTYPEMATCH as type 
                   PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script BORKO as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_SEND-CHAT as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_DOOR-ACCESS-DOORS as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DBANKERCOIN as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAGS_PROCESSORS_STRING as 
                   type TASK 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_ENTRY-OVERRIDE as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script MAGICPOWERTOOLS_WORLD as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_ENTITY-DROPS-ONDEATH 
                   as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_MSG_BOXED as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_REQUIRE_PLAYER_HANDLER 
                   as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_SNOW-MELT as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_EXPLOSION-FIRE as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script SPECIES_GLASHTYN_HELPER as type 
                   WORLD 
07:38:11 [INFO] +> [Denizen] Adding script JOIN_MESSAGE_SUPPRESSION as type 
                   WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_FAREWELL as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_GRASS-SPREAD as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COMMAND_TELEPORT as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_VINES-SPREAD as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script SPECIES_CMD as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_WEATHER-LOCK as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_LINEWRAP as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script SAVE_BACKPACKS as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_PLAYER_EXITS_REGION 
                   as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DENIZZLIN_COMMAND as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_EVE as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_SPAWN as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_LIGHTER as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script SYNC_INVENTORY as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAGS_PROCESSORS_NUMBER as 
                   type TASK 
07:38:11 [INFO] +> [Denizen] Adding script ICHEBROOM as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_TIME-LOCK as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script SCALEME_WORLD as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_COMMANDS as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script FLIDE2_CMD as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COMMAND_FLY as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script COMMAND_BUNGEE_TELEPORT as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script NOACCBREAK as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_EVENTS_FALLINGBLOCK_CHANGE_BLOCK as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script CUSTOMS_INTERACT as type INTERACT 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_HEAL-AMOUNT as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script TORCH_LIGHT_VERSION as type VERSION 
07:38:11 [INFO] +> [Denizen] Adding script LINEWRAP as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_EVENTS_PLAYER_THROWS_POTION as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_TRAMPLE-CROPS-PLAYER 
                   as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COMMAND_CLEARINVENTORY 
                   as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script OOC_WORLD as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script IRC_MESSAGE_STAFF as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_LAVA-SPREADBLOCKS as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script LISTCOMMAND as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script SUNEXPOSURE_COMMAND as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script COMMAND_CHANNEL as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_USE-SWITCHES-LIST as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_HEAL-DELAY as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_BLOCK-BREAK as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_ICE_FORMS as type 
                   WORLD 
07:38:11 [INFO] +> [Denizen] Adding script HC as type YAML DATA 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_MOB-TARGET as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_REPLACE as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_CHORUSFRUIT as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script HELP_INV as type INVENTORY 
07:38:11 [INFO] +> [Denizen] Adding script GLASHTYN_FEET as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_HOMES_LOCATION as type 
                   PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_SNOW_FADES as type 
                   WORLD 
07:38:11 [INFO] +> [Denizen] Adding script BARKEEP ASSIGNMENT2 as type 
                   ASSIGNMENT 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_VERSION as type VERSION 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_FIRE-SPREADBLOCKS as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script CUSTOMS_EXIT_INTERACT as type 
                   INTERACT 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_INITIALISE_MAIN as type 
                   WORLD 
07:38:11 [INFO] +> [Denizen] Adding script BARKEEP2 as type INTERACT 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_MOB-SPAWN as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script COMMAND_CHARACTER_CARDS as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_MYCEL-SPREAD as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DRINK_VODKA as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_RECEIVE-CHAT as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script AODH as type INTERACT 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_GETRELATIVELOCATION as 
                   type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_ENTITY_FORM_BLOCK 
                   as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_ENTITY_DIES as type 
                   WORLD 
07:38:11 [INFO] +> [Denizen] Adding script MSGCENTERED as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMAND_COMMAND_INVENTORYSEE as 
                   type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script FLYWEB_AND_FLYLOG as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_ENTER-VIA-TELEPORT as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_REGIONEXISTS as type 
                   PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_MOB-ATTACK-MOBLIST as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_PLAYER_USE_BONEMEAL 
                   as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COMMAND_ITEM as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_ITEM_SPAWN as type 
                   WORLD 
07:38:11 [INFO] +> [Denizen] Adding script COMMAND_QC as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_GREETING as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_CHUNK as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script PARAGRAPH as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_MSG_FLAGS as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_UNDO as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_ENTITY-EXPLODELIST as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script COMMAND_RELOAD_GLOBAL_SCRIPTS as 
                   type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_PLAYER_CHAT as type 
                   WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_COMMANDS-LIST as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script HELP ME COMMAND as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DWE_MSG as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_OUTSET as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script OCULO_CMD as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAGS_COMMANDPROCESSORS as 
                   type TASK 
07:38:11 [INFO] +> [Denizen] Adding script DPC as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_CUBOIDISWITHINCUBOID as 
                   type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_PLAYER-KEEPITEMS as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_INSET as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_FALLING-GRAVEL as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script MSG_VERSION as type VERSION 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_BACK_SAVES as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_MSG as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_TRAMPLE-CROPS-ENTITY 
                   as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script SPECIES_HELPER as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_UTILITY_SIGN_COLOR as 
                   type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script PLAYERS_SAVE as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_EXPAND as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_COPYWORLD as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_ENTITY_EXPLODE as 
                   type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_HANGING-PLACE as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script SELECTIONSIZE as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script COMMAND_FRIENDS as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script FLIDE_VERSION as type VERSION 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_FIRE-SPREAD as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COMMAND_SETHOME as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_WATER-SPREADBLOCKS as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script NODEATHMESSAGE as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_LAVA-FIRE as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script MSGHOVER as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script MSGHINT as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_PLAYER_DROPS_ITEM 
                   as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_SNOW-FALL as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DCFL as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COMMAND_WARP as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script COROKO_BEAK as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_INVENTORY as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script SPECIES_GLASHTYN_HIDE as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script GLIDING_MAGIC as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAGS_PROCESSORS_STG as 
                   type TASK 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_ICE_FADES as type 
                   WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_ROTATE as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_BLOCK-PLACE as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script TORCH_LIGHT_WORLD as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_POS2 as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DWE_DREGIONCHECK as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_PVE-MOBLIST as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_WATER-SPREAD as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script COINNAME as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_POS1 as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_EXIT as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DBANKERUCOST as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAGLOOKUP_H as type 
                   PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DWE_AUTHOR_ANTHONY as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_CONFIGFILEGENERATOR as 
                   type TASK 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_PLAYER_PLACE_BLOCK 
                   as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_PLAYER-DAMAGE-TYPES 
                   as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_SET as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAGLOOKUP_O as type 
                   PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_PLAYER_DAMAGED as 
                   type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script NIGHTVISION_CMD_WORLD as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_FIREBALL-FIRE as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script SPECIES_PUCA_HELPER as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_EVENTS_PLAYER_INTERACT_ENTITY as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script GETFACING as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script ICHEBROOMS_WORLD as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_ABOUT as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script CUSTOMS_EXIT_ASSIGN as type 
                   ASSIGNMENT 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_WARPS_SET as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_DOOR-ACCESS as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_HOMES_GET as type 
                   PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script CHAT_HAPPENER as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_EVENTS_ENTITY_BREAK_HANGING as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script COMMAND_BACKPACK as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script CHAT_CONTROLLER as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_NOTIFY-EXIT as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_PISTONS as type 
                   WORLD 
07:38:11 [INFO] +> [Denizen] Adding script NICKNAME_HANDLER as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DRINK_WINE as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COMMAND_DCOMMANDER as 
                   type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script BARKEEP as type INTERACT 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_CUT as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_ENTITY-GRIEFLIST as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script COMMAND_NPC_SPECIES as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_ENTITY_CHANGE_BLOCK 
                   as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_PLAYER_STANDS_ON as 
                   type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script MSGCHAT as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script LOUNGE_CMD as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAGS_PROCESSORS_SG as 
                   type TASK 
07:38:11 [INFO] +> [Denizen] Adding script BROOMS_COMMAND as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_MSG_BOXED_CONSOLE as type 
                   TASK 
07:38:11 [INFO] +> [Denizen] Adding script DWE_ISN as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COMMAND_SPAWN as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script AUTOSAVER as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DWE_PS as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COMMAND_SEEN as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_BLOCK-PLACELIST as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script OPEN BOOK as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAGS_PROCESSORS_CUSTOM as 
                   type TASK 
07:38:11 [INFO] +> [Denizen] Adding script BARKEEP ASSIGNMENT as type 
                   ASSIGNMENT 
07:38:11 [INFO] +> [Denizen] Adding script COMMAND_VIEW_CHARACTER_CARDS as 
                   type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script NAME_COLOR as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_USE-SWITCHES as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_BLOCK-BREAKLIST as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_PLAYER_ENTERS_BED 
                   as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DWE_TOOLS as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_MOB-DAMAGELIST as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_PLAYER_TELEPORTS as 
                   type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script BEETLE_VENDOR_ASSIGN1 as type 
                   ASSIGNMENT 
07:38:11 [INFO] +> [Denizen] Adding script CONFIG AND SAVE CONTROL as type 
                   WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_POTION-DRINK as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COMMAND_SETSPAWN as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_FIRE-DESTROY as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script COMMAND_SEEN as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script MSGPARSER as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script NOPHYSICS_CMD as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script LEVITATION_STICK as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_FLY as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_SHIFT as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAGS_PROCESSORS_ST as 
                   type TASK 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_SNOW-FALLBLOCKS as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_FEED-AMOUNT as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script SPECIES_GLASHTYN_WETNESS as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_FIRE-DESTROYBLOCKS as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DCPP as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_EVENTS_PLAYER_ENTERS_REGION as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_BLOCK_BURNS as type 
                   WORLD 
07:38:11 [INFO] +> [Denizen] Adding script WARNING COMMAND as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_REGIONOVERLAPS as type 
                   PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_NOTIFY-ENTER as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DWE_ERROR as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script AUTORESTARTER as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_BUCKET-EMPTY as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DENIZZLIN_VERSION as type VERSION 
07:38:11 [INFO] +> [Denizen] Adding script AODH_ASSIGN as type ASSIGNMENT 
07:38:11 [INFO] +> [Denizen] Adding script DWE_AUTHOR_MORPHAN1 as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_SHOW as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_ENTITY-GRIEF as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script OCULO_TASK as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script RAGALOS_WINGS as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_CANUSE_BLOCK as type 
                   PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script LORE COMMAND as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_BLOCK_SPREAD as 
                   type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COMMAND_FEED as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script PAGINATION as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COMMAND_HEAL as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_GAMEMODE as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_HANGING-BREAK as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_MOB-SPAWNLIST as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script MSGURL as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_USE-UTILITIES as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_MUSHROOM-SPREAD as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script SCALEME_COMMAND as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_HPOS2 as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script MCL_EVENTS as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_GETINHERITEDFLAG as type 
                   PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_ENTRY as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script SPECIES_CONFIG as type YAML DATA 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_HPOS1 as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script HELPBOOKCHAT as type BOOK 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_ENTITY-INTERACTLIST 
                   as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_COPY as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_UTILITY_CHAT_COLOR as 
                   type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script BLOCK_CONTROLS_WORLD as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_EVENTS_PLAYER_EXITED_DREGION as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script COMMAND_INFOBOARD as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script MSGCOMMAND as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_SOIL_FADES as type 
                   WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DCPS as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script SUNEXPOSURE_WORLD as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_HELP as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_FLAG_ENTITY-BREAK-ITEMFRAME as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script SKIN_WORLD as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_HOMES_GET_MAX as type 
                   PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COMMAND_TELEPORT_POS as 
                   type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_LIGHTNING-STRIKES as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_CHEST-ACCESS as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_ISMEMBER as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_EVENTS_PLAYER_EMPTIES_BUCKET as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_LEAF_DECAY as type 
                   WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COL_FORMAT as type 
                   FORMAT 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_FEED-MAX as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_HIGHESTPRIORITY as type 
                   PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script MSGTRIM as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DWE_EVENTS as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_EVENTS_ENTITY_TRAMPLE_CROPS as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_PLAYER-DROPS-ONDEATH 
                   as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_EVENTS_PLAYER_USE_MONSTEREGG as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script BUILTIN_LOAD_TESTER as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_PLAYER_PICKUP_ITEM 
                   as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DBANKERCHAT as type FORMAT 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_EVENTS_ENTITY_TARGET_ENTITY as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_NPC-INTERACT as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script REFRESH_SPAM as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script CUSTOMS_ASSIGN as type ASSIGNMENT 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_SOIL-DRY as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script NIGHTVISION_COMMAND as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DWE_AUTHOR_MCMONKEY as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_COMMANDS_HELP as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script OOC_COMMAND as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COMMAND_GODMODE as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_HEAL-MAX as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DWE_WAND as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_SIAPI_HOOK as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_LIQUID_SPREAD as 
                   type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_WARPS_GET as type 
                   PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_ENTITY_SPAWN as 
                   type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_PLAYER_CHANGEWORLD 
                   as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_PISTONS as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_LIGHTNING_STRIKES 
                   as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_POTION-THROW as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script TOP_CMD as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script COMMAND_NICKNAME as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_COMMANDS as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_FLAG_LIGHTNING-STRIKESBLOCKS as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script COMMAND_WORLD as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_MOB-DAMAGE as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_PLAYER_FILLS_BUCKET 
                   as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_CONFIGURATIONS as type 
                   YAML DATA 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_INITIALISE_PLAYERS as 
                   type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DWE_SNV as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DBANKERCONFIG as type YAML DATA 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_DESTROYWORLD as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script IRC_HANDLER_WORLD as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_USE-UTILITIES-BLOCKS 
                   as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_ENTITY-INTERACT as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DRINK_WATER as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_WG_IMPORTER as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script MSGBOXED as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script INFOBOARD_LOOP as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_EVENTS_PLAYER_PLACE_ARMORSTAND as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_ENDERPEARL as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script SPECIES_RAGALOS_HELPER as type 
                   WORLD 
07:38:11 [INFO] +> [Denizen] Adding script BAR_CHAT as type FORMAT 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COMMAND_ENDERSEE as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script EMOTE_CHAT as type FORMAT 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COMMAND_DELETEWARP as 
                   type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_TOOLS as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script COMMAND_BLOCKING as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_ENTITY-BREAK-PAINTING 
                   as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_PLAYER_INTERACT_NPC 
                   as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_ENTITY-EXPLODE as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script IRC_MESSAGE_HELP as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_VEHICLE-PLACE as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script NOPHYS_WORLD as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_ICE-MELT as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_EVENTS_PLAYER_EXTINGUISH_BLOCKFIRE as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script FLIDE_CMD as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script COMMAND_RELOAD as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_PLAYERS_SAVE as type 
                   TASK 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COMMAND_TELEPORT_HERE as 
                   type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script HELPBOOKNICKNAME as type BOOK 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_PLAYER-DROPS as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_SNOW_FORM as type 
                   WORLD 
07:38:11 [INFO] +> [Denizen] Adding script ITEMINFO_COMMAND as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_EVENTS_PLAYER_BREAK_VEHICLE as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_REDO as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_PLAYER-DAMAGE as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_LANGUAGES_DEFAULT as type 
                   YAML DATA 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS_WAND as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_ISSUE_COMMAND as 
                   type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script SKIN_COMMAND as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COMMAND_ENCHANT as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_REQUIRE_INGAME_HANDLER 
                   as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_PVE as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_EVENTS_ENTITY_DAMAGE_ENTITY as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DRINK_JUICE as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_PVP as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_MAP_INTERACTIONS as type 
                   YAML DATA 
07:38:11 [INFO] +> [Denizen] Adding script FRIEND_ICON as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_LEAF-DECAY as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_EXIT-OVERRIDE as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_EVENTS_PLAYER_ENTERED_DREGION as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COMMAND_BACK as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_BUCKET-FILL as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DENIZZLIN_WORLD as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_PLAYER-PICKUP as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAGS_PROCESSORS_LOCATION 
                   as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_ENDERCRYSTAL-FIRE as 
                   type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_PLAYER_RIGHT_CLICK 
                   as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_CHEST-ACCESS-BLOCKS 
                   as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script LOCFORMAT as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DWE_COMMANDS as type COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COMMAND_GAMEMODE as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_FLAG_ENTITY-DROPS-ONDEATHLIST as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_EVENTS_PLAYER_BREAK_HANGING as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_ICE-FORM as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script IPCP as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script IRC_MESSAGE_GLOBAL as type TASK 
07:38:11 [INFO] +> [Denizen] Adding script IPCS as type PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_EVENTS_PLAYER_DRINKS_POTION as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_REGIONSORT as type 
                   PROCEDURE 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_HANDLER_GODMODE as type 
                   WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_FEED-MIN as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_BLOCK_IGNITES as 
                   type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DBANKER as type ASSIGNMENT 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_PLAYER_PLACE_BOAT 
                   as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_HUNGER as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script DCOMMANDER_COMMAND_HOME as type 
                   COMMAND 
07:38:11 [INFO] +> [Denizen] Adding script FORMAT_BROADCAST as type FORMAT 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_EVENTS_PLAYER_INTERACT_ITEMFRAME as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_EVENTS_PLAYER_BREAK_BLOCK 
                   as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_SLEEP as type ITEM 
07:38:11 [INFO] +> [Denizen] Adding script 
                   DREGIONS_EVENTS_PLAYER_INTERACT_ARMORSTAND as type WORLD 
07:38:11 [INFO] +> [Denizen] Adding script DREGIONS_FLAG_FEED-DELAY as type 
                   ITEM 
07:38:11 [INFO] +> [Denizen] Scanning 105 world scripts... 
07:38:11 [INFO] +> [CuboidEnterE...] Loaded Cuboid Enter & Exit SmartEvent. 
07:38:11 [INFO] +> [CommandSmart...] Loaded Command SmartEvent. 
07:38:11 [INFO] +> [Denizen] Reloading script events... 
07:38:11 [INFO] +> [Denizen] Event match, ReloadScripts matched for 'script 
                   reload'! 
07:38:11 [INFO] +> [Denizen] Event match, ReloadScripts matched for 'reload 
                   scripts'! 
07:38:11 [INFO] +> [Denizen] Event match, ReloadScripts matched for 'script 
                   reload'! 
07:38:11 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   minutely'! 
07:38:11 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   minutely'! 
07:38:11 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   minutely'! 
07:38:11 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   hourly'! 
07:38:11 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   minutely'! 
07:38:11 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   minutely'! 
07:38:11 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   minutely'! 
07:38:11 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   minutely'! 
07:38:11 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   hourly'! 
07:38:11 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   19:00'! 
07:38:11 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   hourly'! 
07:38:11 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   minutely'! 
07:38:11 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   hourly'! 
07:38:11 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   minutely'! 
07:38:11 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   hourly'! 
07:38:11 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   minutely'! 
07:38:11 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   exits notable cuboid'! 
07:38:11 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters bed'! 
07:38:11 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters notable cuboid'! 
07:38:11 [INFO] +> [Denizen] Event match, BlockBurns matched for 'block 
                   burns'! 
07:38:11 [INFO] +> [Denizen] Event match, BlockFades matched for 'snow fades'! 
07:38:11 [INFO] +> [Denizen] Event match, BlockFades matched for 'ice fades'! 
07:38:11 [INFO] +> [Denizen] Event match, BlockFades matched for 'soil fades'! 
07:38:11 [INFO] +> [Denizen] Event match, BlockForms matched for 'ice forms'! 
07:38:11 [INFO] +> [Denizen] Event match, BlockForms matched for 'entity forms 
                   block'! 
07:38:11 [INFO] +> [Denizen] Event match, BlockForms matched for 'snow forms'! 
07:38:11 [INFO] +> [Denizen] Event match, BlockIgnites matched for 'block 
                   ignites'! 
07:38:11 [INFO] +> [Denizen] Event match, BlockPhysics matched for 'block 
                   physics'! 
07:38:11 [INFO] +> [Denizen] Event match, BlockSpreads matched for 'block 
                   spreads'! 
07:38:11 [INFO] +> [Denizen] Event match, Chat matched for 'player chats'! 
07:38:11 [INFO] +> [Denizen] Event match, Chat matched for 'player chats'! 
07:38:11 [INFO] +> [Denizen] Event match, Chat matched for 'player chats'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks block'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks block'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks block'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'entity breaks hanging'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks hanging'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks block'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 
                   'player changes food level'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 
                   'falling_block changes block'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 
                   'player changes sign'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 
                   'entity changes block'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 
                   'entity changes soil'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages block'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged by fall'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'entity 
                   damaged by player'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages block'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged by entity'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages player'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'entity 
                   damaged by player'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged by fire'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages entity'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged by fall'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged by entity'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'entity 
                   damaged by player'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages entity'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged by FALL'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged by arrow'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged by EXPLOSION'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'entity 
                   damaged by player'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged by BLOCK_EXPLOSION'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged by ENTITY_EXPLOSION'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged by FIRE'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'entity 
                   damages entity'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDies matched for 'entity 
                   dies'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDies matched for 'player 
                   death'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityDies matched for 'player 
                   death'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityEntersPortal matched for 
                   'entity enters portal'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters bed'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters notable cuboid'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'entity enters portal'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityExitsVehicle matched for 
                   'player exits notable cuboid'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityExplodes matched for 'entity 
                   explodes'! 
07:38:11 [INFO] +> [Denizen] Event match, FoodLevelChanged matched for 'player 
                   changes food level'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityFormsBlock matched for 'ice 
                   forms'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityFormsBlock matched for 'entity 
                   forms block'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityFormsBlock matched for 'snow 
                   forms'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityGlide matched for 'player 
                   stops gliding'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityGlide matched for 'entity 
                   stops gliding'! 
07:38:11 [INFO] +> [Denizen] Event match, EntitySpawn matched for 'entity 
                   spawns'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityTargets matched for 'entity 
                   targets player'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityTargets matched for 'entity 
                   targets entity'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityTargets matched for 'entity 
                   targets player'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityTeleports matched for 'player 
                   teleports'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityTeleports matched for 'player 
                   teleports'! 
07:38:11 [INFO] +> [Denizen] Event match, EntityTeleports matched for 'player 
                   teleports'! 
07:38:11 [INFO] +> [Denizen] Event match, HorseJumps matched for 'player 
                   jumps'! 
07:38:11 [INFO] +> [Denizen] Event match, ItemSpawns matched for 'item 
                   spawns'! 
07:38:11 [INFO] +> [Denizen] Event match, ItemSpawns matched for 'entity 
                   spawns'! 
07:38:11 [INFO] +> [Denizen] Event match, LeafDecays matched for 'leaves 
                   decay'! 
07:38:11 [INFO] +> [Denizen] Event match, LightningStrikes matched for 
                   'lightning strikes'! 
07:38:11 [INFO] +> [Denizen] Event match, LiquidSpreads matched for 'liquid 
                   spreads'! 
07:38:11 [INFO] +> [Denizen] Event match, LiquidSpreads matched for 'liquid 
                   spreads'! 
07:38:11 [INFO] +> [Denizen] Event match, PistonExtends matched for 'piston 
                   extends'! 
07:38:11 [INFO] +> [Denizen] Event match, PistonRetracts matched for 'piston 
                   retracts'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks block'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks block'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks block'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks hanging'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks block'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks block'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks block'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks block'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks hanging'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks block'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerChangesSign matched for 
                   'player changes sign'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerClicksBlock matched for 
                   'player right clicks block'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerClicksBlock matched for 
                   'player left clicks air'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerClicksBlock matched for 
                   'player clicks air'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerClicksBlock matched for 
                   'player left clicks'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerClicksBlock matched for 
                   'player right clicks with potion'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerClicksBlock matched for 
                   'player clicks block with bone_meal'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerClicksBlock matched for 
                   'player right clicks with ichebroom'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerClicksBlock matched for 
                   'player clicks'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerClicksBlock matched for 
                   'player clicks block'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerClicksBlock matched for 
                   'player right clicks block with monster_egg'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerClicksBlock matched for 
                   'player right clicks block with armor_stand'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerClicksBlock matched for 
                   'player clicks'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerClicksBlock matched for 
                   'player left clicks block'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerClicksBlock matched for 
                   'player right clicks'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerClicksBlock matched for 
                   'player right clicks block with boat'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerClosesInv matched for 'player 
                   closes inventory'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerConsumes matched for 'player 
                   consumes item'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerConsumes matched for 'player 
                   consumes potion'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerConsumes matched for 'player 
                   consumes item'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerConsumes matched for 'player 
                   consumes item'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerConsumes matched for 'player 
                   consumes item'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerConsumes matched for 'player 
                   consumes potion'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages block'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages block'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerDragsInInventory matched for 
                   'player drags in Help_Inv'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerDropsItem matched for 'player 
                   drops book_and_quill'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerDropsItem matched for 'player 
                   drops item'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerDropsItem matched for 'player 
                   drops item'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerEditsBook matched for 'player 
                   edits book'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerEmptiesBucket matched for 
                   'player empties bucket'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerEntersBed matched for 'player 
                   enters bed'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerFillsBucket matched for 
                   'player fills bucket'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   join'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   join'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   join'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   join'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerJumps matched for 'player 
                   jumps'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerPicksUp matched for 'player 
                   picks up item'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places block'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places block'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places hanging'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places block'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places block'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerQuits matched for 'player 
                   quit'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerQuits matched for 'player 
                   quit'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerQuits matched for 'player 
                   quits'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerQuits matched for 'player 
                   quits'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerQuits matched for 'player 
                   quit'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerReceivesMessage matched for 
                   'player receives message'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerRespawns matched for 'player 
                   respawns'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerRespawns matched for 'player 
                   respawns'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerRightClicksAtEntity matched 
                   for 'player right clicks at armor_stand'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerRightClicksEntity matched for 
                   'player right clicks block'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerRightClicksEntity matched for 
                   'player right clicks with potion'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerRightClicksEntity matched for 
                   'player right clicks entity'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerRightClicksEntity matched for 
                   'player right clicks with ichebroom'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerRightClicksEntity matched for 
                   'player right clicks block with monster_egg'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerRightClicksEntity matched for 
                   'player right clicks block with armor_stand'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerRightClicksEntity matched for 
                   'player right clicks npc'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerRightClicksEntity matched for 
                   'player right clicks'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerRightClicksEntity matched for 
                   'player right clicks block with boat'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerRightClicksEntity matched for 
                   'player right clicks item_frame'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerStandsOn matched for 'player 
                   stands on'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerStepsOn matched for 'player 
                   steps on block'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerThrowsEgg matched for 'player 
                   throws egg'! 
07:38:11 [INFO] +> [Denizen] Event match, PlayerWalks matched for 'player 
                   walks'! 
07:38:11 [INFO] +> [Denizen] Event match, PortalCreate matched for 'portal 
                   created'! 
07:38:11 [INFO] +> [Denizen] Event match, PotionSplash matched for 'potion 
                   splash'! 
07:38:11 [INFO] +> [Denizen] Event match, VehicleCreated matched for 'instance 
                   created'! 
07:38:11 [INFO] +> [Denizen] Event match, VehicleCreated matched for 'portal 
                   created'! 
07:38:11 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages block'! 
07:38:11 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged by fall'! 
07:38:11 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages block'! 
07:38:11 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged by entity'! 
07:38:11 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages player'! 
07:38:11 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged by fire'! 
07:38:11 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages entity'! 
07:38:11 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged'! 
07:38:11 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged by fall'! 
07:38:11 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged by entity'! 
07:38:11 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages entity'! 
07:38:11 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged by FALL'! 
07:38:11 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged by arrow'! 
07:38:11 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged by EXPLOSION'! 
07:38:11 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged by BLOCK_EXPLOSION'! 
07:38:11 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged by ENTITY_EXPLOSION'! 
07:38:11 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged by FIRE'! 
07:38:11 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'entity 
                   damages entity'! 
07:38:11 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged'! 
07:38:11 [INFO] +> [Denizen] Event match, VehicleDestroyed matched for 'player 
                   destroys vehicle'! 
07:38:11 [INFO] +> [Denizen] Event match, WorldInits matched for 'world 
                   initializes'! 
07:38:11 [INFO] +> [Denizen] Event match, WorldLoads matched for 'world 
                   loads'! 
07:38:11 [INFO] +> [DepenizenPlugin] Loaded dynamic client script file: 
                   scaler.yml 
07:38:11 [INFO] +> [DepenizenPlugin] Sent client scripts to 2 and not to 0!