Paste #22405: Denizen Debug Logs From A Minecraft Server

Date: 2015/11/08 23:02:41 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
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354


Java Version: 1.8.0_45
Up-time: 34m
CraftBukkit Version: git-Spigot-5f38d38-12698ea (MC: 1.8.8)
Denizen Version: Core: 1.10 (Build Unknown), CraftBukkit: 0.9.7-SNAPSHOT (build 401)
Active Plugins (9): AsyncWorldEditInjector: 2.1.3, Buycraft: 6.8.2, Citizens: 2.0.16-SNAPSHOT (build 1267), 
WorldEdit: 6.0.2-SNAPSHOT;3370-58aac973, AsyncWorldEdit: 2.1.5, Denizen: 0.9.7-SNAPSHOT (build 401), 
Votifier: 1.9, Webizen: 0.2.0, Depenizen: 0.2.2 (build 268)
Loaded Worlds (7): world, world_nether, world_the_end, guildworld, minigameworld, flat, dungeonworld,
Online Players (2): TheBlackCoyote(TheBlackCoyote), L33tkill3r(L33tkill3r)
Offline Players: 363
Mode: online

00:02:38 [INFO]  ERROR in script 'FARM_PATCH_RIVENHALL'! Woah! Invalid 
                   arguments were specified! 
00:02:38 [INFO] +> [Denizen] +> MESSAGE follows: 'Must specify at least one 
                   valid location!' 
00:02:38 [INFO] +> [Denizen] Usage: showfake [<material>|.../cancel] 
                   [<location>|...] (players:<player>|...) (d:<duration>{10s}) 
00:02:38 [INFO] +> [Denizen] (Attempted: SHOWFAKE "m@air" 
                   "<pl.location.find.blocks[stone_slab2].within[10].parse[block].exclude[<yaml[<player>].list_keys[<player>.enviromentals.<def[cuboid].replace[_shell]>].parse[as_location.above]||li@>]>") 
00:02:38 [INFO]  ERROR in script 'FARM_PATCH_RIVENHALL'! Using deprecated form 
                   of tag 'blocks': 'get_blocks'. 
00:02:38 [INFO] +> [Denizen] Processing outside scripts... 
00:02:38 [INFO] +> [Denizen] Processing unnamed script... 
00:02:38 [INFO] +> [Denizen] Processing 
                   '\ANIMATIONS\ADAMANT_ANIMATIONS.yml'... 
00:02:38 [INFO] +> [Denizen] Processing 
                   '\ANIMATIONS\animated_wing_test_animation.yml'... 
00:02:38 [INFO] +> [Denizen] Processing 
                   '\ANIMATIONS\level_up_animations.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\ANIMATIONS\model_generator.yml'... 
00:02:38 [INFO] +> [Denizen] Processing 
                   '\ANIMATIONS\npc_appear_animations.yml'... 
00:02:38 [INFO] +> [Denizen] Processing 
                   '\ANIMATIONS\NPC_WANDERING_ANIMATION.yml'... 
00:02:38 [INFO] +> [Denizen] Processing 
                   '\ANIMATIONS\quest_speaking_animation.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\ANIMATIONS\ship_animation.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\ANIMATIONS\SLOW_TELEPORT.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\ANIMATIONS\test_animations.yml'... 
00:02:38 [INFO] +> [Denizen] Processing 
                   '\ANIMATIONS\winged_chestplate_animations.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\CHAT\chat_handler.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\CHAT\NAMETAG_HANDLER.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\CUSTOM_ITEMS\ADAMANT_ARMOUR.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\CUSTOM_ITEMS\Binding_Scroll.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\CUSTOM_ITEMS\huntsman_axe.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\CUSTOM_ITEMS\nametag.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\CUSTOM_ITEMS\slime_boots.yml'... 
00:02:38 [INFO] +> [Denizen] Processing 
                   '\CUSTOM_ITEMS\smoke_chestplate.yml'... 
00:02:38 [INFO] +> [Denizen] Processing 
                   '\CUSTOM_ITEMS\winged_chestplate.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\ECONOMY\GOLD COINS.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\ECONOMY\MARKET.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\GUILDS\GUILDMEMBER CLEANUP.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\GUILDS\GUILDWORLD_SECURITY.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\GUILDS\GUILD_BANNERS.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\GUILDS\GUILD_MANAGER.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\GUILDS\GUILD_NEXUS.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\GUILDS\GUILD_POINTS.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\GUILDS\GUILD_PORTALS.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\GUILDS\GUILD_TAGS.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\GUILDS\GUILD_YAML_MANAGER.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\METACURRENCY\premium_rank.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\METACURRENCY\VOTIFIER.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\MINIGAMES\GUILDWARS.yml'... 
00:02:38 [INFO] +> [Denizen] Processing 
                   '\MINIGAMES\MINIGAMEWORLD_MANAGER.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\MOBS DUNGEONS AND 
                   BOSSES\BOSSES\death_dungeon.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\MOBS DUNGEONS AND 
                   BOSSES\BOSSES\ender_dragon_dungeon.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\MOBS DUNGEONS AND 
                   BOSSES\BOSSES\headles_horseman.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\MOBS DUNGEONS AND 
                   BOSSES\BOSSES\slime_dungeon.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\MOBS DUNGEONS AND BOSSES\ENTITY 
                   SPAWNPOINTS\rivenhall_chicken_spawn.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\MOBS DUNGEONS AND 
                   BOSSES\UTILITIES\boss_log.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\MOBS DUNGEONS AND 
                   BOSSES\UTILITIES\DUNGEONWORLD_MANAGER.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\MOBS DUNGEONS AND 
                   BOSSES\UTILITIES\DUNGEON_SIDEBAR.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\MOBS DUNGEONS AND 
                   BOSSES\UTILITIES\PERSONAL_LOOT_UTILITY.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\NEWS\NEWS_BOOK.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\NEWS\server_list_ping.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\PLAYER HELP 
                   TOOLS\FAKE_BOOK_UTILITY.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\PLAYER HELP 
                   TOOLS\HELP_COMMAND.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\PLAYER HELP 
                   TOOLS\HIGHSCORES_COMMAND.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\PLAYER HELP 
                   TOOLS\INFO_POP_REOPENER.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\PLAYER HELP 
                   TOOLS\SIGN_INPUT_MECHANISM.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\PLAYER_DATA\FILE_HANDLER.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\PLAYER_DATA\ONLINE_TRACKER.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\POLL\poll.yml'... 
00:02:38 [INFO] +> [Denizen] Processing '\QUESTS\bridge_basher.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\QUESTS\crazy_teleport_wizard.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\QUESTS\lumber_party.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\QUESTS\quest 
                   utilities\A_QUEST_PAGE.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\QUESTS\quest 
                   utilities\A_YAML_manager_quests.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\QUESTS\quest 
                   utilities\cutscene_task.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\QUESTS\quest 
                   utilities\QUEST_FORMAT.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\QUESTS\quest 
                   utilities\QUEST_RESPONSE_SELECTOR.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\QUESTS\quest 
                   utilities\TEMPLATE.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\QUESTS\rat_repeller.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\QUESTS\tutorial.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\QUESTS\witch_hunter.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\RANDOMS\meteor_random.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\RANDOMS\RANDOM_FORMAT.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\RANDOMS\RANDOM_INITIATOR.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SERVER AND STAFF 
                   UTILITIES\SECURITY\ANTI_AFK.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SERVER AND STAFF 
                   UTILITIES\SECURITY\AUTOSAVE.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SERVER AND STAFF 
                   UTILITIES\SECURITY\auto_restart.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SERVER AND STAFF 
                   UTILITIES\SECURITY\BETA_HANDLER.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SERVER AND STAFF 
                   UTILITIES\SECURITY\DATA_SECURITY_HANDLER.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SERVER AND STAFF 
                   UTILITIES\SECURITY\LAND_PROTECTION_HANDLER.yml'... 
00:02:39 [INFO]  ERROR! Woah! Error parsing \SERVER AND STAFF 
                   UTILITIES\SECURITY\LAND_PROTECTION_HANDLER.yml! 
00:02:39 [INFO]  ERROR! Internal exception was thrown! 
00:02:39 [SEVERE] while parsing a block mapping
 in 'string', line 5, column 5:
        on server start:
        ^
expected <block end>, but found BlockEntry
 in 'string', line 26, column 5:
        - inject can_edit_terrain
        ^

00:02:39 [SEVERE] org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:570)
00:02:39 [SEVERE] org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:158)
00:02:39 [SEVERE] org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:143)
00:02:39 [SEVERE] org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:224)
00:02:39 [SEVERE] org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:155)
00:02:39 [SEVERE] org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:229)
00:02:39 [SEVERE] org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:155)
00:02:39 [SEVERE] org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:229)
00:02:39 [SEVERE] org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:155)
00:02:39 [SEVERE] org.yaml.snakeyaml.composer.Composer.composeDocument(Composer.java:122)
00:02:39 [SEVERE] org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:105)
00:02:39 [SEVERE] org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:120)
00:02:39 [SEVERE] org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:450)
00:02:39 [SEVERE] org.yaml.snakeyaml.Yaml.load(Yaml.java:369)
00:02:39 [SEVERE] net.aufdemrand.denizencore.utilities.YamlConfiguration.load(YamlConfiguration.java:20)
00:02:39 [SEVERE] net.aufdemrand.denizencore.scripts.ScriptHelper.loadConfig(ScriptHelper.java:134)
00:02:39 [SEVERE] net.aufdemrand.denizencore.scripts.ScriptHelper._concatenateCoreScripts(ScriptHelper.java:182)
00:02:39 [SEVERE] net.aufdemrand.denizencore.scripts.ScriptHelper.reloadScripts(ScriptHelper.java:26)
00:02:39 [SEVERE] net.aufdemrand.denizencore.DenizenCore.loadScripts(DenizenCore.java:102)
00:02:39 [SEVERE] net.aufdemrand.denizencore.DenizenCore.reloadScripts(DenizenCore.java:118)
00:02:39 [SEVERE] net.aufdemrand.denizen.DenizenCommandHandler.reload(DenizenCommandHandler.java:408)
00:02:39 [SEVERE] sun.reflect.GeneratedMethodAccessor214.invoke(Unknown Source)
00:02:39 [SEVERE] sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
00:02:39 [SEVERE] java.lang.reflect.Method.invoke(Unknown Source)
00:02:39 [SEVERE] net.aufdemrand.denizen.utilities.command.CommandManager.executeMethod(CommandManager.java:130)
00:02:39 [SEVERE] net.aufdemrand.denizen.utilities.command.CommandManager.execute(CommandManager.java:65)
00:02:39 [SEVERE] net.aufdemrand.denizen.utilities.command.CommandManager.executeSafe(CommandManager.java:157)
00:02:39 [SEVERE] net.aufdemrand.denizen.Denizen.onCommand(Denizen.java:1155)
00:02:39 [SEVERE] org.bukkit.command.PluginCommand.execute(PluginCommand.java:44)
00:02:39 [SEVERE] org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:141)
00:02:39 [SEVERE] org.bukkit.craftbukkit.v1_8_R3.CraftServer.dispatchCommand(CraftServer.java:641)
00:02:39 [SEVERE] net.minecraft.server.v1_8_R3.PlayerConnection.handleCommand(PlayerConnection.java:1162)
00:02:39 [SEVERE] net.minecraft.server.v1_8_R3.PlayerConnection.a(PlayerConnection.java:997)
00:02:39 [SEVERE] net.aufdemrand.denizen.utilities.packets.intercept.AbstractListenerPlayIn.a(AbstractListenerPlayIn.java:87)
00:02:39 [SEVERE] net.minecraft.server.v1_8_R3.PacketPlayInChat.a(PacketPlayInChat.java:45)
00:02:39 [SEVERE] net.minecraft.server.v1_8_R3.PacketPlayInChat.a(PacketPlayInChat.java:1)
00:02:39 [SEVERE] net.minecraft.server.v1_8_R3.PlayerConnectionUtils$1.run(SourceFile:13)
00:02:39 [SEVERE] java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
00:02:39 [SEVERE] java.util.concurrent.FutureTask.run(Unknown Source)
00:02:39 [SEVERE] net.minecraft.server.v1_8_R3.SystemUtils.a(SourceFile:44)
00:02:39 [SEVERE] net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:715)
00:02:39 [SEVERE] net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
00:02:39 [SEVERE] net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
00:02:39 [SEVERE] net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
00:02:39 [SEVERE] java.lang.Thread.run(Unknown Source)
00:02:39 [INFO] +> [Denizen] Processing '\SERVER AND STAFF 
                   UTILITIES\SECURITY\securizen.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SERVER AND STAFF 
                   UTILITIES\SECURITY\statistizen.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SERVER AND STAFF 
                   UTILITIES\STAFF&MODERATORY\ADMIN TOOLS.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SERVER AND STAFF 
                   UTILITIES\STAFF&MODERATORY\Build_command.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SERVER AND STAFF 
                   UTILITIES\STAFF&MODERATORY\lumibans.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SERVER AND STAFF 
                   UTILITIES\STAFF&MODERATORY\motion_capturing.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SERVER AND STAFF 
                   UTILITIES\STAFF&MODERATORY\potato_menu.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SERVER AND STAFF 
                   UTILITIES\STAFF&MODERATORY\RANKS.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SERVER AND STAFF 
                   UTILITIES\STAFF&MODERATORY\shortcuts.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SERVER AND STAFF 
                   UTILITIES\STAFF&MODERATORY\stat_generator.yml'... 
00:02:39 [INFO] +> [Denizen] Processing 
                   '\SKILLS\ABILITIES\crafting_abilities_active.yml'... 
00:02:39 [INFO] +> [Denizen] Processing 
                   '\SKILLS\ABILITIES\defence_abilities_active.yml'... 
00:02:39 [INFO] +> [Denizen] Processing 
                   '\SKILLS\ABILITIES\excavating_abilities_active.yml'... 
00:02:39 [INFO] +> [Denizen] Processing 
                   '\SKILLS\ABILITIES\farming_abilities_active.yml'... 
00:02:39 [INFO] +> [Denizen] Processing 
                   '\SKILLS\ABILITIES\fishing_abilities_active.yml'... 
00:02:39 [INFO] +> [Denizen] Processing 
                   '\SKILLS\ABILITIES\hunting_abilities_active.yml'... 
00:02:39 [INFO] +> [Denizen] Processing 
                   '\SKILLS\ABILITIES\husbandry_abilities_active.yml'... 
00:02:39 [INFO] +> [Denizen] Processing 
                   '\SKILLS\ABILITIES\magic_abilities_active.yml'... 
00:02:39 [INFO] +> [Denizen] Processing 
                   '\SKILLS\ABILITIES\melee_abilities_active.yml'... 
00:02:39 [INFO] +> [Denizen] Processing 
                   '\SKILLS\ABILITIES\mining_abilities_active.yml'... 
00:02:39 [INFO] +> [Denizen] Processing 
                   '\SKILLS\ABILITIES\ranged_abilities_active.yml'... 
00:02:39 [INFO] +> [Denizen] Processing 
                   '\SKILLS\ABILITIES\smelting_abilities_active.yml'... 
00:02:39 [INFO] +> [Denizen] Processing 
                   '\SKILLS\ABILITIES\woodcutting_abilities_active.yml'... 
00:02:39 [INFO] +> [Denizen] Processing 
                   '\SKILLS\ENVIROMENTALS\farming_patches.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SKILLS\TOOLS\B_CUSTOM_TOOLS.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SKILLS\TOOLS\gathering_tools.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SKILLS\TOOLS\magic_tools.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SKILLS\TOOLS\melee_tools.yml'... 
00:02:39 [INFO] +> [Denizen] Processing 
                   '\SKILLS\UTILITIES\ability_cooldown_visualizer.yml'... 
00:02:39 [INFO] +> [Denizen] Processing 
                   '\SKILLS\UTILITIES\ability_selector_v2.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SKILLS\UTILITIES\A_block_log.yml'... 
00:02:39 [INFO] +> [Denizen] Processing 
                   '\SKILLS\UTILITIES\A_ECMMO_TAGS.yml'... 
00:02:39 [INFO] +> [Denizen] Processing 
                   '\SKILLS\UTILITIES\a_entity_log.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SKILLS\UTILITIES\A_leveler.yml'... 
00:02:39 [INFO] +> [Denizen] Processing 
                   '\SKILLS\UTILITIES\A_Skill_Page.yml'... 
00:02:39 [INFO] +> [Denizen] Processing 
                   '\SKILLS\UTILITIES\A_YAML_manager.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SKILLS\XP\crafting_exp.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SKILLS\XP\defence_exp.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SKILLS\XP\enchanting_exp.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SKILLS\XP\excavating_exp.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SKILLS\XP\farming_exp.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SKILLS\XP\fishing_exp.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SKILLS\XP\husbandry_exp.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SKILLS\XP\magic_exp.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SKILLS\XP\melee_exp.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SKILLS\XP\mining_exp.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SKILLS\XP\ranged_exp.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SKILLS\XP\repairing_exp.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SKILLS\XP\smelting_exp.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\SKILLS\XP\woodcutting_exp.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\WEBSITESCRIPTS\highscores.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\WEBSITESCRIPTS\map page.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\WEBSITESCRIPTS\recipes_page.yml'... 
00:02:39 [INFO] +> [Denizen] Processing '\WEBSITESCRIPTS\status page.yml'... 
00:02:39 [INFO]  OKAY! All scripts loaded! 
00:02:39 [INFO] +> [Denizen] Adding script CUSTOM_WAND as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script RESIZE_PLOT_STARTUP as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script SKILLS_BOOK_FARMING as type BOOK 
00:02:39 [INFO] +> [Denizen] Adding script SKILLS_BOOK_MELEE as type BOOK 
00:02:39 [INFO] +> [Denizen] Adding script SERVER_LIST_PING as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script PREMIUM_BOND as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script 
                   POTATO_TELEPORT_TO_COORDINATES_RESULT as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script SKILLS_BOOK_CONSTRUCTING as type 
                   BOOK 
00:02:39 [INFO] +> [Denizen] Adding script LEVEL_UP_ANIMATION as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script GUILDPOINTS_REDEEMING as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script WITCH_HUNTER_ASSIGNMENT as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script SLIME_DUNGEON as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script HIDE_COMMANDS as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script MARKET_SET_OFFER_ITEM_BUYING as 
                   type TASK 
00:02:39 [INFO] +> [Denizen] Adding script WITCH_HUNTER_INITIATE_BOSS as type 
                   TASK 
00:02:39 [INFO] +> [Denizen] Adding script MAX_MANA as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script MARKET_SELLING_INTERFACE_OFFER as 
                   type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script GUILD as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script POTATO_MENU as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script INDIVIDUAL_SKILL as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script GUILD_SPAWNPOINT as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script ENDER_KEY as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script BCHALLOWEENLAVASORTBLOCKS as type 
                   PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script SECURIZEN_ROLLBACK_TASK as type 
                   TASK 
00:02:39 [INFO] +> [Denizen] Adding script RANK as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script RESET_METEOR_BLOCK as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script SKILLS_BOOK_DEFENCE as type BOOK 
00:02:39 [INFO] +> [Denizen] Adding script SKILLS_BOOK_ENCHANTING as type BOOK 
00:02:39 [INFO] +> [Denizen] Adding script CALL_LOCKED_MODEL as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script EXP_FOR_LEVEL as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script STATIONARY_CUTSCENE as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script POTATO_TELEPORT_TO_PLAYER as type 
                   TASK 
00:02:39 [INFO] +> [Denizen] Adding script GUILD_AUTOSAVE as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script WINGED_CHESTPLATE as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script GOLD_COINS_SIMPLE_DROPS as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script CONFIGURE_WINDOW as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script GUILD_PROCEDURE as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script CUSTOM_SWORD as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script POTATO_TELEPORT_PLAYER_HERE as type 
                   TASK 
00:02:39 [INFO] +> [Denizen] Adding script MARKET_OFFER_COMPLETER as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script BRIDGE_BASHER_JUDGEMENT_SUB1 as 
                   type TASK 
00:02:39 [INFO] +> [Denizen] Adding script ADAMANT_BLOCK as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script SKILLS_BOOK_CRAFTING as type BOOK 
00:02:39 [INFO] +> [Denizen] Adding script MARKET_EVENT_HANDLERS as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script SECURIZEN_COMMANDS as type COMMAND 
00:02:39 [INFO] +> [Denizen] Adding script DEATH_ENTITY_PART2_SPAWN as type 
                   TASK 
00:02:39 [INFO] +> [Denizen] Adding script LEATHER_GLOVES_DURABILITY as type 
                   TASK 
00:02:39 [INFO] +> [Denizen] Adding script SORT_ABILITIES_BY_REQUIRED_LEVEL as 
                   type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script GUILD_NAME as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script CALL_TRACING_MODEL as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script WITCH_HUNTER_RESPONSES as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script TEMPLATE_QUEST_ASSIGNMENT as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script MINIGAMEWORLD_MANAGER as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script LIGHTNING_BOLT as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script SERVER_RESTART_INITIATOR as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script ADAMANT_ARMOUR_ANIMATION as type 
                   TASK 
00:02:39 [INFO] +> [Denizen] Adding script RECIPES_WEBPAGE as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script FARM_PATCH_RIVENHALL as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script MARKET_INTERFACE as type INVENTORY 
00:02:39 [INFO] +> [Denizen] Adding script GUILD_BANNERS_EVENTS as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script TUTORIAL_QUEST_RESPONSES as type 
                   TASK 
00:02:39 [INFO] +> [Denizen] Adding script DEATH_TRAP_ATTACK as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script STATISTIZEN_RELOAD_CONFIG as type 
                   TASK 
00:02:39 [INFO] +> [Denizen] Adding script GLOBAL as type FORMAT 
00:02:39 [INFO] +> [Denizen] Adding script ROTTEN_POTATO as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script GUILDWORLD_SECURITY as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script POTATO_TELEPORT_TO_COORDINATES as 
                   type TASK 
00:02:39 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_MELEE as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script SKILLS_BOOK_MAGIC as type BOOK 
00:02:39 [INFO] +> [Denizen] Adding script BINDING_SCROLL_INVENTORY as type 
                   INVENTORY 
00:02:39 [INFO] +> [Denizen] Adding script MAINTAIN_WORLD as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script AUTOSAVE_INITIATE as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script SPAWNMINIONS as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script SMELTING_ABILITIES as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script TUTORIAL_WORLD as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script CHECK_COMMAND as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script BCHALLOWEENLAVAEFFECTUNDO as type 
                   TASK 
00:02:39 [INFO] +> [Denizen] Adding script WANDERER as type ASSIGNMENT 
00:02:39 [INFO] +> [Denizen] Adding script INITIATE_GUILDWARS as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script MARKET_INTERFACE_SLOT as type 
                   PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script HUNTSMAN_AXE as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script METEOR_RANDOM as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script SLOW_TELEPORT_ANIMATION as type 
                   TASK 
00:02:39 [INFO] +> [Denizen] Adding script ADAMANT_ARMOUR_EVENTS as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script STATISTIZEN_DATA_COLLECTING as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script LIGHTNING_BOLT_DAMAGE as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script GUILD_NEXUS as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script CHECK_LEVEL as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script OPEN_SIGN_INPUT as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script AUTOSAVE as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script STATUS_WEBPAGE_PROC as type 
                   PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script TEST3_ANIMATION as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script REMOVE_FENCE as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script BINDING_SCROLL_ITEM_ADJUST as type 
                   PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script RANGED_ABILITIES as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_MINING as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script DUNGEONWORLD_MANAGER as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script QUEST_BOOK as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script QUEST_RESPONSE_SELECTOR as type 
                   TASK 
00:02:39 [INFO] +> [Denizen] Adding script RAT_REPELLENT as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script LAVA_RAIN_SUB1 as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script MARKET_BUYING_INTERFACE_QUANTITY as 
                   type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script BRIDGE_BASHER_QUEST_RESPONSES as 
                   type TASK 
00:02:39 [INFO] +> [Denizen] Adding script ENDER_DRAGON_DUNGEON as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_FARMING as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script ARCANE_WAND as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script COOLDOWN_DURATION as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script GOLD_COINS as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script SKILLS_BOOK_PROCEDURE_SKILL as type 
                   PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script LIGHTNING_WAND as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script GUILD_GUILDPORTALS as type 
                   PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script UPDATE_NAMETAG as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script PREMIUM_CHECK as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script CRAZY_TELEPORT_WIZARD_MINIQUEST as 
                   type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script ADAMANT as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script DEATH_ENTITY_SPAWN as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script HIGHSCORES_COMMAND as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script NPCWANDERINGSTART as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script GUILDPOINTS as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script SKILLS_BOOK_RANGED as type BOOK 
00:02:39 [INFO] +> [Denizen] Adding script GUILD_TAG as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script GUILD_GUILDBANNERS as type 
                   PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script FIRE_WAND as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script TEST_TOOLS as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script 
                   SLOW_TELEPORT_ANIMATION_FIXED_FOR_BRIDGE_BASHER as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script QUESTS_RESPONSE as type FORMAT 
00:02:39 [INFO] +> [Denizen] Adding script HIGHSCORE_PAGE as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script MANA_POTION_1 as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script SECURIZEN_CORE as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script 
                   EXPERIENCE_GAINS_HUSBANDRY_DUPLICATE_EVENTS as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script MANA_POTION_2 as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script STATISTIZEN_SHOW_DATA as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script MANA_POTION_3 as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script STATISTICS_SLIME_QUEEN_DROPS as 
                   type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script BRIDGE_BASHER_CUTSCENE1 as type 
                   TASK 
00:02:39 [INFO] +> [Denizen] Adding script QUESTS as type FORMAT 
00:02:39 [INFO] +> [Denizen] Adding script MARKET_BUYING_INTERFACE_PRICE as 
                   type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script NPC_APPEAR_ANIMATION1 as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script GIVE_GP as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script GET_LEVEL as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script MARKET_SELLING_INTERFACE as type 
                   INVENTORY 
00:02:39 [INFO] +> [Denizen] Adding script POTATO_BAN_RESULT as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script 
                   STATIONARY_CUTSCENE_CAMERA_INVULNERABILITY as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script MOST_DAMAGE_DONE as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script POTATO_BAN as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script SLIME_BOOTS as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script EARTH_WAND as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script PREMIUM_BOND_EVENTS as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script WATER_WAND as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script MAGIC_TOOLS_EVENTS as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script QUESTS_OTHER_NPC as type FORMAT 
00:02:39 [INFO] +> [Denizen] Adding script MARKET_GET_OFFERS as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script HELP_COMMAND as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script WINGED_CHESTPLATE_ANIMATION as type 
                   TASK 
00:02:39 [INFO] +> [Denizen] Adding script GUILD_BANNER as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script RANDOM_INITIATOR as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script RANDOM as type FORMAT 
00:02:39 [INFO] +> [Denizen] Adding script FIND_LAST_CAUSE as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script SKILLS_BOOK_PROCEDURE_1 as type 
                   PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script MARKET_SELLING_INTERFACE_PRICE as 
                   type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script BOSS_LOG_BOOK as type BOOK 
00:02:39 [INFO] +> [Denizen] Adding script POTATO_TELEPORT as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script SKILLS_COMMAND as type COMMAND 
00:02:39 [INFO] +> [Denizen] Adding script PLAYER_SAVES_AUTOSAVE as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script POTATO_KICK_RESULT as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script STAT_GENERATOR as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script PAGE1_GUILDS as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script GUILD_GUILDPOINTS as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script GUILD_BOOK as type BOOK 
00:02:39 [INFO] +> [Denizen] Adding script PROC_FOR_RECIPES_FOR_WEB as type 
                   PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script SECURIZEN_PERIODICAL_UNLOAD as type 
                   TASK 
00:02:39 [INFO] +> [Denizen] Adding script RAT_REPELLER_QUEST_RESPONSES as 
                   type TASK 
00:02:39 [INFO] +> [Denizen] Adding script GUILD_PORTAL as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script MARKET_SET_OFFER_PRICE_SELLING as 
                   type TASK 
00:02:39 [INFO] +> [Denizen] Adding script GIVE_EXP as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script HANDLE_BOSS_DAMAGE as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script BRIDGE_BASHER_JUDGEMENT as type 
                   TASK 
00:02:39 [INFO] +> [Denizen] Adding script SHIP_ANIMATION as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script SECURIZEN as type VERSION 
00:02:39 [INFO] +> [Denizen] Adding script GLOBAL_MANA_LOOP as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script PREMIUMSHIP_DURATION as type 
                   PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script YAML_MANAGER_ECMMO as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script INFO_COMMAND as type COMMAND 
00:02:39 [INFO] +> [Denizen] Adding script HUSBANDRY_ABILITIES as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script GUILD_GUILDBANNERDESIGN as type 
                   PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script STACKER_INVENTORY as type INVENTORY 
00:02:39 [INFO] +> [Denizen] Adding script UNLOAD_LOOP as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script GIVE_PREMIUMBOND as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script GET_KILLER as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script BINDING_SCROLL as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script MARKET_SAVES_YAML_HANDLER as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script YESNO_VOTE_INVENTORY as type 
                   INVENTORY 
00:02:39 [INFO] +> [Denizen] Adding script SORT_PLAYERS_FOR_HIGHSCORES as type 
                   TASK 
00:02:39 [INFO] +> [Denizen] Adding script PREFIX as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script STATISTIZEN_CYCLE_HOURLY_DATA as 
                   type TASK 
00:02:39 [INFO] +> [Denizen] Adding script QUESTS_COMMAND as type COMMAND 
00:02:39 [INFO] +> [Denizen] Adding script SKILLS_BOOK_MINING as type BOOK 
00:02:39 [INFO] +> [Denizen] Adding script BUILTIN_LOAD_TESTER as type COMMAND 
00:02:39 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_SMELTING as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script LEADERBOARDS as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script AUTOSAVE_LOOP as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script ADAMANT_BOOTS as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script MARKET_SET_OFFER_PRICE_BUYING as 
                   type TASK 
00:02:39 [INFO] +> [Denizen] Adding script OPEN_BOOK_SECURITY as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script MARKET_OFFER_COMPLETER_INITIATOR as 
                   type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script SIGN_INPUT_FALLBACK as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script GUILDWARS as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_ENCHANTING as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script SMOKE_CHESTPLATE as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script STORM_SUB1 as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script POTATO_SET_QUEST_STEP as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script POTATO_MODERATION as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script SHOW_EXP_BOSS_BAR as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script TUTORIAL_ASSIGNMENT as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script AUTO_REDEFINE_PLOTS as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script TESTWING_1_ANIMATION as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script OPEN_NEXUS_GUI as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script TELEKINETIC_WAND as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script DEFENCE_ABILITIES as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script SKILLS_BOOK_FISHING as type BOOK 
00:02:39 [INFO] +> [Denizen] Adding script BINDING_SCROLL_EVENTS as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script SECURIZEN_LOCATION_GET_EDITS as 
                   type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script POTATO_KICK as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script CHECKPLAYER as type COMMAND 
00:02:39 [INFO] +> [Denizen] Adding script GUILDWARS_CHECKGAME as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script NEWS_BOOK as type BOOK 
00:02:39 [INFO] +> [Denizen] Adding script DEATH_ENTITY_PART2 as type ENTITY 
00:02:39 [INFO] +> [Denizen] Adding script ADAMANT_HELMET as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script PLAYER_SAVES_YAML_MANAGER as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script GUILD_MEMBERS as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script ENTITY_LOG as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script BCHALLOWEEN_LAVA_ROOM_EVENTS as 
                   type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script 
                   CRAZY_TELEPORT_WIZARD_MINIQUEST_RESPONSES as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script RAT_REPELLER_QUEST_ASSIGNMENT as 
                   type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script GUILD_PORTAL_EVENTS as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script TUTORIAL_BOOK_3 as type BOOK 
00:02:39 [INFO] +> [Denizen] Adding script TUTORIAL_BOOK_4 as type BOOK 
00:02:39 [INFO] +> [Denizen] Adding script STATUS_WEBPAGE as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script VOTIFIER_EVENT as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script TUTORIAL_BOOK_1 as type BOOK 
00:02:39 [INFO] +> [Denizen] Adding script TUTORIAL_BOOK_2 as type BOOK 
00:02:39 [INFO] +> [Denizen] Adding script ADAMANT_LEGGINGS as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script LUMBER_PARTY_QUEST_ASSIGNMENT as 
                   type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script LUMBER_PARTY_QUEST_RESPONSES as 
                   type TASK 
00:02:39 [INFO] +> [Denizen] Adding script POTATO_MUTE as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script SERVER_RESTART as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script ABILITY_DURATION as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script DEATH_MASS_ATTACK_SUB as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script PREMIUMSHIP_DECREASE_LOOP as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script SLIME_BOOTS_EVENTS as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script CALL_TRACING_MODEL_ENTITY as type 
                   TASK 
00:02:39 [INFO] +> [Denizen] Adding script MAP as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script SKILLS_BOOK_EXCAVATING as type BOOK 
00:02:39 [INFO] +> [Denizen] Adding script QUEST_SPEAKING_SOUND_EFFECT as type 
                   TASK 
00:02:39 [INFO] +> [Denizen] Adding script MARKET_SET_OFFER_QUANTITY_SELLING 
                   as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script STATISTIZEN_WEB_PAGE as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script SKILLS_BOOK_WOODCUTTING as type 
                   BOOK 
00:02:39 [INFO] +> [Denizen] Adding script SPAWN_SLIME_BOSS as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script QUESTION as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script BUILD_COMMAND as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script POTATO_SET_LEVEL as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script STATISTIZEN as type VERSION 
00:02:39 [INFO] +> [Denizen] Adding script SKILLS_BOOK_HUSBANDRY as type BOOK 
00:02:39 [INFO] +> [Denizen] Adding script RIVENHALL_CHICKEN_SPAWN as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script AIR_WAND as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script ABILITY_COOLDOWN_VISUALIZER as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script PM_COMMAND as type COMMAND 
00:02:39 [INFO] +> [Denizen] Adding script SMOKE_CHESTPLATE_EVENTS as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script MARKET_SELLING_INTERFACE_QUANTITY 
                   as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script CHAT as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script TESTWING_2_ANIMATION as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script WOODCUTTING_ABILITIES as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script STATISTIZEN_CONFIG_MANAGER as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script NAMETAG_LOGIN as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script DEATH_WHITE_WINGS as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script DUNGEON_SIDERBAR_REMOVE as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script POTATO_TELEPORT_TO_PLAYER_RESULT as 
                   type TASK 
00:02:39 [INFO] +> [Denizen] Adding script NEWS_COMMAND as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script ANIMATED_WING_ANIMATION as type 
                   TASK 
00:02:39 [INFO] +> [Denizen] Adding script CRAFTING_ABILITIES as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script SKILLS_BOOK_REPAIRING as type BOOK 
00:02:39 [INFO] +> [Denizen] Adding script EXCAVATING_ABILITIES as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script UPDATE_PLAYER_HIGHSCORE_FLAGS as 
                   type TASK 
00:02:39 [INFO] +> [Denizen] Adding script SKILLS_BOOK as type BOOK 
00:02:39 [INFO] +> [Denizen] Adding script HAS_GUILD as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script MARKET_BUYING_INTERFACE_OFFER as 
                   type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script MARKET_SET_OFFER_QUANTITY_BUYING as 
                   type TASK 
00:02:39 [INFO] +> [Denizen] Adding script TEMPLATE_QUEST_RESPONSES as type 
                   TASK 
00:02:39 [INFO] +> [Denizen] Adding script POLL as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script NAMETAG as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script GUILD_MEMBER_CLEANUP as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script MARKETSAVES_AUTOSAVE as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script MINING_ABILITIES as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script FISHING_ABILITIES as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script SLIME_KEY as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script MODEL_GENERATOR as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script ADAMANT_CHESTPLATE as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script GUILDPOINTS_DECAY_LOOP as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script POTATO_MUTE_RESULT as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script GENERIC_MODEL_ANIMATION as type 
                   TASK 
00:02:39 [INFO] +> [Denizen] Adding script PERSONAL_LOOT_EVENT_HANDLER as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_DEFENCE as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script BLOCK_LOGGING as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_HUSBANDRY as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_FISHING as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script JUDGEMENT_SUB1 as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script EXP_MODIFIER as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_MAGIC as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script GUILD_RANK as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script GIVE_PREMIUM as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script LEVEL_FOR_XP as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script OPEN_BOOK as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script POTATO_TELEPORT_PLAYER_HERE_RESULT 
                   as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script CHAT_NAME as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script BRIDGE_BASHER_QUEST_ASSIGNMENT as 
                   type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script PAGE2_GUILDS as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script MELEE_ABILITIES as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script MAGIC_ABILITIES as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script PREPAREPLOT as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script HUNTSMAN_AXE_EVENTS as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script BCHALLOWEENLAVAEFFECT as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script 
                   ABILITY_COOLDOWN_VISUALIZER_GLOBAL_LOOP as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script UPDATE_ABILITY_COOLDOWN_BOARD as 
                   type TASK 
00:02:39 [INFO] +> [Denizen] Adding script BRIDGE_BASHER_ANIMATED_SHOOTING as 
                   type TASK 
00:02:39 [INFO] +> [Denizen] Adding script BRIDGE_BASHER_FIGHTING_SEQUENCE as 
                   type TASK 
00:02:39 [INFO] +> [Denizen] Adding script BOSS_LOG as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script LOG_ONLINE_TIME as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script WINGED_CHESTPLATE_EVENTS as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script 
                   SLIME_BOSS_RESET_COOLDOWN_INDICATORS as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_WOODCUTTING as 
                   type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script LAVA_WAND as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script LEATHER_GLOVES as type ITEM 
00:02:39 [INFO] +> [Denizen] Adding script SKILLS_BOOK_SMELTING as type BOOK 
00:02:39 [INFO] +> [Denizen] Adding script GUILDPOINTS_DECAY as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script SIGN_INPUT_MECHANISM as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script GET_COMBAT_FOR_CHAT as type 
                   PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script LEVEL_UP as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script STATISTICS_ENDER_DRAGON_DROPS as 
                   type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script SHORTCUTS as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script DEATH_PATH_ATTACK as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script COMBAT as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_REPAIRING as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script CALL_GUI_MODEL as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script MARKET_BUYING_INTERFACE as type 
                   INVENTORY 
00:02:39 [INFO] +> [Denizen] Adding script GIVE_RANKS as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script DEATH_ENTITY_EVENTS as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_EXCAVATING as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script GET_RANDOM as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script POTATO_SET_QUEST_STEP_RESULT as 
                   type TASK 
00:02:39 [INFO] +> [Denizen] Adding script HUNTING_ABILITIES as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script SKILLS_BOOK_HUNTING as type BOOK 
00:02:39 [INFO] +> [Denizen] Adding script QUEST_RESPONSE_SELECTOR_EVENTS as 
                   type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script BETA as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script LUMIBANSEVENTHANDLER as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script ANTI_AFKING as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script GET_ITEM_FOR_TOOLCONFIGURE as type 
                   PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script YAML_MANAGER_QUESTS as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script PERSONAL_LOOT as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script RESIZE_PLOT as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script BOSS_LOG_PAGE_2 as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script BOSS_LOG_PAGE_1 as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script ABILITY_SELECTOR_V2 as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_CRAFTING as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script MOTION_CAPTURE_EVENTS as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script SECURIZEN_WRITE_DATA as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script DEATH_MASS_ATTACK as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script DEATH_ENTITY as type ENTITY 
00:02:39 [INFO] +> [Denizen] Adding script MC_RECORD as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script GUILD_COMMANDS as type COMMAND 
00:02:39 [INFO] +> [Denizen] Adding script LUMIBANSCOMMANDHANDLER11 as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script GUILD_YAML_MANAGER as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script MAGIC_WAND_DURABILITY as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script GUILD_NEXUS_EVENTS as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script QUEST_BOOK_INDIVIDUAL as type 
                   PROCEDURE 
00:02:39 [INFO] +> [Denizen] Adding script DUNGEON_SIDEBAR as type TASK 
00:02:39 [INFO] +> [Denizen] Adding script BRIDGE_BASHER_ANIMATED_KILLING as 
                   type TASK 
00:02:39 [INFO] +> [Denizen] Adding script GOLD_COINS_NOPLACE as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script FARMING_ABILITIES as type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script EXPERIENCE_GAINS_RANGED as type 
                   WORLD 
00:02:39 [INFO] +> [Denizen] Adding script HEADLESS_HORSEMAN_ASSIGNMENT as 
                   type WORLD 
00:02:39 [INFO] +> [Denizen] Adding script PREMIUMSHIP as type PROCEDURE 
00:02:39 [INFO] +> [Denizen] Scanning 122 world scripts... 
00:02:39 [INFO]  ERROR! Script 'FISHING_ABILITIES' does not have an events 
                   block! 
00:02:39 [INFO]  ERROR! Script 'HUSBANDRY_ABILITIES' does not have an events 
                   block! 
00:02:39 [INFO]  ERROR! Script 'HUNTING_ABILITIES' does not have an events 
                   block! 
00:02:39 [INFO]  ERROR! Script 'FARMING_ABILITIES' does not have an events 
                   block! 
00:02:39 [INFO] +> [CommandSmart...] Loaded Command SmartEvent. 
00:02:39 [INFO] +> [CuboidEnterE...] Loaded Cuboid Enter & Exit SmartEvent. 
00:02:39 [INFO] +> [PlayerEquips...] Loaded Player Equips Armor SmartEvent. 
00:02:39 [INFO] +> [Denizen] Reloading script events... 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, ReloadScripts matched for 'reload 
                   scripts'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   minutely'! 
00:02:39 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   minutely'! 
00:02:39 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   minutely'! 
00:02:39 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   hourly'! 
00:02:39 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   minutely'! 
00:02:39 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   hourly'! 
00:02:39 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   hourly'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   hourly'! 
00:02:39 [INFO] +> [Denizen] Event match, SystemTime matched for 'system time 
                   minutely'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters witch_hunter_boss_room'! 
00:02:39 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters witch_hunter_exit'! 
00:02:39 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters exit2_slime_dungeon_boss'! 
00:02:39 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters exit3_slime_dungeon_boss'! 
00:02:39 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   exits platform_slime_dungeon_boss'! 
00:02:39 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters exit1_slime_dungeon_boss'! 
00:02:39 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters room_slime_dungeon_boss'! 
00:02:39 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters platform_slime_dungeon_boss'! 
00:02:39 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters notable cuboid'! 
00:02:39 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters notable cuboid'! 
00:02:39 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   exits notable cuboid'! 
00:02:39 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters tutorial_fightpit'! 
00:02:39 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters tutorial_quest_gate'! 
00:02:39 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters endleave'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters guildwarslobby'! 
00:02:39 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters rat_repeller_basement'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters bridge_basher_archer_tower'! 
00:02:39 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters bridge_basher_entrance'! 
00:02:39 [INFO] +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters bridge_basher_guild_tower'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, BlockBurns matched for 'block 
                   burns'! 
00:02:39 [INFO] +> [Denizen] Event match, BlockBurns matched for 'block 
                   burns'! 
00:02:39 [INFO] +> [Denizen] Event match, BlockBurns matched for 'block burns 
                   priority:999'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, BlockBurns matched for 'block burns 
                   in death_arena'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, BlockFalls matched for 'block falls 
                   in death_arena'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, BlockSpreads matched for 'fire 
                   spreads'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, BlockSpreads matched for 'block 
                   spreads in death_arena'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, BlockIgnites matched for 'block 
                   ignites in death_arena'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, BucketEmpty matched for 'player 
                   empties bucket priority:999'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, BucketFill matched for 'player fills 
                   bucket priority:999'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, Chat matched for 'player chats'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, Chat matched for 'player chats'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, Chat matched for 'player chats'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, ChunkUnloads matched for 'chunk 
                   unloads'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, ChunkUnloads matched for 'chunk 
                   unloads'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks emerald_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks block'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks stone_slab2'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks wall_banner in notable cuboid priority:500'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks standing_banner in notable cuboid 
                   priority:500'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks iron_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks gold_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks diamond_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks lapis_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks obsidian'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks stone'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks granite'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks andesite'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks diorite'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks cobblestone'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks iron_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks emerald_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks netherrack'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks redstone_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks quartz_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks glowing_redstone_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks coal_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks gold_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks sugar_cane_block'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks nether_warts'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks potato'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks carrot'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks cocoa_plant'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks crops'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks block priority:999'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks ender_portal_frame'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks oak_log in lumber_party_quest_garden 
                   ignorecancelled:true'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks block'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks jungle_log'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks darkoak_log'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks spruce_log'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks birch_log'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks oak_log'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks sand'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks gravel'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks grass'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks dirt'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks enchantment_table'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 
                   'weather changes in world'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 
                   'weather changes in guildworld'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 
                   'ender_dragon changes block'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 
                   'ender_crystal changes block'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 'time 
                   changes in world'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 
                   'player changes xp'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 'time 
                   changes in world'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 
                   'player changes sign'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityChangesBlock matched for 'time 
                   changes in world'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages witch in witch_hunter_main_area'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages slime in room_slime_dungeon_boss'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages player'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages emerald_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages stone_slab2'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages entity in guildworld'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages entity priority:1000'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages zombie in tutorial_fightpit'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged priority:750'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 
                   'ender_dragon damaged in world_the_end'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages ender_dragon'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'pig 
                   damaged'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged priority:500'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages ender_portal_frame'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged by FALL ignorecancelled:true'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages leaves'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages oak_leaves'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages acacia_leaves'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages birch_leaves'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages jungle_leaves'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages dark_oak_leaves'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages spruce_leaves'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages sand'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages grass'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages dirt'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages soul_sand'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages diorite'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages sandstone'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages hardened_clay'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages granite'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages netherrack'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages andesite'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages cobblestone'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages stone'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages entity priority:1000'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'zombie 
                   damaged by player in bridge_basher_main_area'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages creeper in bridge_basher_main_area'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'zombie 
                   damaged by fall in bridge_basher_main_area'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages entity priority:100'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged priority:200'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged by FALL ignorecancelled:true'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 
                   'death_entity damages player in death_arena'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 
                   'death_entity_part2 damaged in death_arena'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 
                   'death_entity_part2 damages player in death_arena'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damaged in death_arena'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 
                   'death_entity damaged in death_arena'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages iron_fence in death_arena'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages death_entity_part2 in death_arena'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages death_entity in death_arena'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityDamaged matched for 'player 
                   damages entity priority:1000'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDies matched for 'player death 
                   in witch_hunter_main_area'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDies matched for 'player 
                   dies'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDies matched for 'player 
                   dies'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityDies matched for 'player 
                   death'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDies matched for 'player death 
                   in rat_repeller_basement'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDies matched for 'chicken 
                   death'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityDies matched for 'player death 
                   in bridge_basher_main_area'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDies matched for 'skeleton 
                   dies in death_arena'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityDies matched for 'zombie dies 
                   in death_arena'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters witch_hunter_boss_room'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters witch_hunter_exit'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters exit2_slime_dungeon_boss'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters exit3_slime_dungeon_boss'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters exit1_slime_dungeon_boss'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters room_slime_dungeon_boss'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters platform_slime_dungeon_boss'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters notable cuboid'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters notable cuboid'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters tutorial_fightpit'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters tutorial_quest_gate'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters endleave'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters guildwarslobby'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters rat_repeller_basement'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters bridge_basher_archer_tower'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters bridge_basher_entrance'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters bridge_basher_guild_tower'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityExplodes matched for 'entity 
                   explodes priority:999'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityHeals matched for 
                   'ender_dragon heals in world_the_end'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityKilled matched for 'player 
                   kills entity priority:500'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityKilled matched for 'player 
                   killed in witch_hunter_main_area'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityKilled matched for 'witch 
                   killed in witch_hunter_main_area'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityKilled matched for 'entity 
                   kills slime in room_slime_dungeon_boss'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityKilled matched for 'player 
                   kills slime'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityKilled matched for 'player 
                   kills entity priority:500'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityKilled matched for 'player 
                   kills enderman'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityKilled matched for 'player 
                   killed in guildwarsarena1 priority:-1'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityKilled matched for 'player 
                   killed in rat_repeller_basement'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityKilled matched for 'player 
                   kills zombie in bridge_basher_main_area'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityKilled matched for 'player 
                   killed in bridge_basher_main_area'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityKilled matched for 'player 
                   kills player priority:500'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityKilled matched for 'entity 
                   killed in death_arena'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityKilled matched for 
                   'death_entity_part2 killed in death_arena'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityKilled matched for 
                   'death_entity killed in death_arena'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityExitsVehicle matched for 
                   'player exits platform_slime_dungeon_boss'! 
00:02:39 [INFO] +> [Denizen] Event match, EntityExitsVehicle matched for 
                   'player exits notable cuboid'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntitySpawn matched for 'entity 
                   spawns in witch_hunter_main_area'! 
00:02:39 [INFO] +> [Denizen] Event match, EntitySpawn matched for 'slime 
                   spawns in room_slime_dungeon_boss'! 
00:02:39 [INFO] +> [Denizen] Event match, EntitySpawn matched for 'zombie 
                   spawns in room_slime_dungeon_parkour'! 
00:02:39 [INFO] +> [Denizen] Event match, EntitySpawn matched for 'entity 
                   spawns in minigameworld'! 
00:02:39 [INFO] +> [Denizen] Event match, EntitySpawn matched for 'entity 
                   spawns in dungeonworld'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntitySpawn matched for 'entity 
                   spawns because SPAWNER priority:10'! 
00:02:39 [INFO] +> [Denizen] Event match, EntitySpawn matched for 'zombie 
                   spawns because SPAWNER in rat_repeller_basement 
                   ignorecancelled:true'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityTames matched for 'player 
                   tames entity'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityTargets matched for 
                   'ender_dragon targets player in world_the_end'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, EntityTeleports matched for 'player 
                   teleports'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, FurnaceSmelts matched for 'furnace 
                   smelts item'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, HorseJumps matched for 'player 
                   jumps'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, HorseJumps matched for 'player 
                   jumps'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, ItemEnchanted matched for 'item 
                   enchanted'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, ItemMerges matched for 'item 
                   merges'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerScrollsItem matched for 
                   'player scrolls their hotbar'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerScrollsItem matched for 
                   'player scrolls their hotbar'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, ItemSpawns matched for 'entity 
                   spawns in witch_hunter_main_area'! 
00:02:39 [INFO] +> [Denizen] Event match, ItemSpawns matched for 'slime spawns 
                   in room_slime_dungeon_boss'! 
00:02:39 [INFO] +> [Denizen] Event match, ItemSpawns matched for 'zombie 
                   spawns in room_slime_dungeon_parkour'! 
00:02:39 [INFO] +> [Denizen] Event match, ItemSpawns matched for 'entity 
                   spawns in minigameworld'! 
00:02:39 [INFO] +> [Denizen] Event match, ItemSpawns matched for 'entity 
                   spawns in dungeonworld'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, ItemSpawns matched for 'entity 
                   spawns because SPAWNER priority:10'! 
00:02:39 [INFO] +> [Denizen] Event match, ItemSpawns matched for 'zombie 
                   spawns because SPAWNER in rat_repeller_basement 
                   ignorecancelled:true'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, LiquidSpreads matched for 'fire 
                   spreads'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, ServerListPing matched for 'server 
                   list ping'! 
00:02:39 [INFO] +> [Denizen] Event match, ServerListPing matched for 'server 
                   list ping'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PistonExtends matched for 'piston 
                   extends'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks emerald_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks block'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks stone_slab2'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks wall_banner in notable cuboid priority:500'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks standing_banner in notable cuboid 
                   priority:500'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks iron_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks gold_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks diamond_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks lapis_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks obsidian'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks stone'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks granite'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks andesite'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks diorite'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks cobblestone'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks iron_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks emerald_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks netherrack'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks redstone_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks quartz_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks glowing_redstone_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks coal_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks gold_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks sugar_cane_block'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks nether_warts'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks potato'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks carrot'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks cocoa_plant'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks crops'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks block priority:999'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks ender_portal_frame'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks oak_log in lumber_party_quest_garden 
                   ignorecancelled:true'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks block'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks jungle_log'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks darkoak_log'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks spruce_log'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks birch_log'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks oak_log'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks sand'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks gravel'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks grass'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks dirt'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks enchantment_table'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks emerald_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks block'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks stone_slab2'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks wall_banner in notable cuboid priority:500'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks standing_banner in notable cuboid priority:500'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks iron_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks gold_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks diamond_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks lapis_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks obsidian'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks stone'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks granite'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks andesite'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks diorite'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks cobblestone'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks iron_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks emerald_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks netherrack'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks redstone_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks quartz_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks glowing_redstone_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks coal_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks gold_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks sugar_cane_block'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks nether_warts'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks potato'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks carrot'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks cocoa_plant'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks crops'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks block priority:999'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks ender_portal_frame'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks oak_log in lumber_party_quest_garden 
                   ignorecancelled:true'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks block'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks jungle_log'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks darkoak_log'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks spruce_log'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks birch_log'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks oak_log'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks sand'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks gravel'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks grass'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks dirt'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks enchantment_table'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerChangesSign matched for 
                   'player changes sign'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerChangesXP matched for 'player 
                   changes xp'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerClosesInv matched for 'player 
                   closes inventory'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerClosesInv matched for 'player 
                   closes inventory'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerConsumes matched for 'player 
                   consumes mana_potion_3'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerConsumes matched for 'player 
                   consumes mana_potion_2'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerConsumes matched for 'player 
                   consumes mana_potion_1'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages emerald_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages stone_slab2'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages ender_portal_frame'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages leaves'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages oak_leaves'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages acacia_leaves'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages birch_leaves'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages jungle_leaves'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages spruce_leaves'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages sand'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages grass'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages dirt'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages soul_sand'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages diorite'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages sandstone'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages granite'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages netherrack'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages andesite'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages cobblestone'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages stone'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDamagesBlock matched for 
                   'player damages iron_fence in death_arena'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDropsItem matched for 'player 
                   drops item'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDropsItem matched for 'player 
                   drops seeds'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerDropsItem matched for 'player 
                   drops item'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerFishes matched for 'player 
                   fishes'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerJumps matched for 'player 
                   jumps'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerJumps matched for 'player 
                   jumps'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerLogin matched for 'player logs 
                   in for the first time'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerLogin matched for 'player logs 
                   in'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerLogin matched for 'player logs 
                   in priority:500'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerLogin matched for 'player logs 
                   in for the first time'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerLogin matched for 'player logs 
                   in'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerLogin matched for 'player logs 
                   in priority:-1'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerOpensInv matched for 'player 
                   opens ender_chest'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerOpensInv matched for 'player 
                   opens inventory'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerPicksUp matched for 'player 
                   picks up guildpoints'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerPicksUp matched for 'player 
                   picks up item'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places slime_key'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places guild_banner priority:500'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places ender_key'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places block priority:999'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places guild_portal'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places block'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places guild_nexus'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places gold_coins'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places slime_key'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places guild_banner priority:500'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places ender_key'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places block priority:999'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places guild_portal'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places block'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places guild_nexus'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places gold_coins'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerQuits matched for 'player 
                   quits'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerQuits matched for 'player 
                   quits'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerQuits matched for 'player 
                   quit'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerQuits matched for 'player 
                   quits'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerQuits matched for 'player 
                   quits'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerQuits matched for 'player 
                   quits in bridge_basher_main_area'! 
00:02:39 [INFO] +> [Denizen] Event match, PlayerQuits matched for 'player 
                   quits'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerRespawns matched for 'player 
                   respawns'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerSpring matched for 'player 
                   toggles sneak'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerSpring matched for 'player 
                   starts sneaking'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerSpring matched for 'player 
                   starts sneaking'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PlayerSpring matched for 'player 
                   starts sneaking'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, PotionSplash matched for 'potion 
                   splash'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, StructureGrow matched for 'structure 
                   grows'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages witch in witch_hunter_main_area'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages slime in room_slime_dungeon_boss'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages player'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages emerald_ore'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages stone_slab2'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages entity in guildworld'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages entity priority:1000'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages zombie in tutorial_fightpit'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged priority:750'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 
                   'ender_dragon damaged in world_the_end'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages ender_dragon'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'pig 
                   damaged'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged priority:500'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages ender_portal_frame'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged by FALL ignorecancelled:true'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages leaves'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages oak_leaves'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages acacia_leaves'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages birch_leaves'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages jungle_leaves'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages dark_oak_leaves'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages spruce_leaves'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages sand'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages grass'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages dirt'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages soul_sand'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages diorite'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages sandstone'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages hardened_clay'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages granite'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages netherrack'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages andesite'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages cobblestone'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages stone'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages entity priority:1000'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'zombie 
                   damaged by player in bridge_basher_main_area'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages creeper in bridge_basher_main_area'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'zombie 
                   damaged by fall in bridge_basher_main_area'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages entity priority:100'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged priority:200'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged by FALL ignorecancelled:true'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 
                   'death_entity damages player in death_arena'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 
                   'death_entity_part2 damaged in death_arena'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 
                   'death_entity_part2 damages player in death_arena'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damaged in death_arena'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 
                   'death_entity damaged in death_arena'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages iron_fence in death_arena'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages death_entity_part2 in death_arena'! 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages death_entity in death_arena'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, VehicleDamaged matched for 'player 
                   damages entity priority:1000'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, WeatherChanges matched for 'weather 
                   changes in world'! 
00:02:39 [INFO] +> [Denizen] Event match, WeatherChanges matched for 'weather 
                   changes in guildworld'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, GetRequest matched for 'GET 
                   request'! 
00:02:39 [INFO] +> [Denizen] Event match, GetRequest matched for 'GET 
                   request'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO] +> [Denizen] Event match, GetRequest matched for 'GET 
                   request'! 
00:02:39 [INFO] +> [Denizen] Event match, GetRequest matched for 'GET 
                   request'! 
00:02:39 [INFO] +> [Denizen] Event match, GetRequest matched for 'get 
                   request'! 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for 
                   HUSBANDRY_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FISHING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for HUNTING_ABILITIES 
00:02:39 [INFO]  ERROR! Missing or invalid events block for FARMING_ABILITIES 
00:02:39 [INFO]  ERROR in script 'FARM_PATCH_RIVENHALL'! Woah! Invalid 
                   arguments were specified! 
00:02:39 [INFO] +> [Denizen] +> MESSAGE follows: 'Must specify at least one 
                   valid location!' 
00:02:39 [INFO] +> [Denizen] Usage: showfake [<material>|.../cancel] 
                   [<location>|...] (players:<player>|...) (d:<duration>{10s}) 
00:02:39 [INFO] +> [Denizen] (Attempted: SHOWFAKE "m@air" 
                   "<pl.location.find.blocks[stone_slab2].within[10].parse[block].exclude[<yaml[<player>].list_keys[<player>.enviromentals.<def[cuboid].replace[_shell]>].parse[as_location.above]||li@>]>") 
00:02:39 [INFO]  ERROR in script 'FARM_PATCH_RIVENHALL'! Using deprecated form 
                   of tag 'blocks': 'get_blocks'. 
00:02:39 [INFO]  ERROR in script 'FARM_PATCH_RIVENHALL'! Woah! Invalid 
                   arguments were specified! 
00:02:39 [INFO] +> [Denizen] +> MESSAGE follows: 'Must specify at least one 
                   valid location!' 
00:02:39 [INFO] +> [Denizen] Usage: showfake [<material>|.../cancel] 
                   [<location>|...] (players:<player>|...) (d:<duration>{10s}) 
00:02:39 [INFO] +> [Denizen] (Attempted: SHOWFAKE "m@air" 
                   "<pl.location.find.blocks[stone_slab2].within[10].parse[block].exclude[<yaml[<player>].list_keys[<player>.enviromentals.<def[cuboid].replace[_shell]>].parse[as_location.above]||li@>]>") 
00:02:39 [INFO]  ERROR in script 'FARM_PATCH_RIVENHALL'! Using deprecated form 
                   of tag 'blocks': 'get_blocks'. 
00:02:40 [INFO]  ERROR in script 'FARM_PATCH_RIVENHALL'! Woah! Invalid 
                   arguments were specified! 
00:02:40 [INFO] +> [Denizen] +> MESSAGE follows: 'Must specify at least one 
                   valid location!' 
00:02:40 [INFO] +> [Denizen] Usage: showfake [<material>|.../cancel] 
                   [<location>|...] (players:<player>|...) (d:<duration>{10s}) 
00:02:40 [INFO] +> [Denizen] (Attempted: SHOWFAKE "m@air" 
                   "<pl.location.find.blocks[stone_slab2].within[10].parse[block].exclude[<yaml[<player>].list_keys[<player>.enviromentals.<def[cuboid].replace[_shell]>].parse[as_location.above]||li@>]>") 
00:02:40 [INFO]  ERROR in script 'FARM_PATCH_RIVENHALL'! Using deprecated form 
                   of tag 'blocks': 'get_blocks'. 
00:02:40 [INFO]  ERROR in script 'FARM_PATCH_RIVENHALL'! Woah! Invalid 
                   arguments were specified! 
00:02:40 [INFO] +> [Denizen] +> MESSAGE follows: 'Must specify at least one 
                   valid location!' 
00:02:40 [INFO] +> [Denizen] Usage: showfake [<material>|.../cancel] 
                   [<location>|...] (players:<player>|...) (d:<duration>{10s}) 
00:02:40 [INFO] +> [Denizen] (Attempted: SHOWFAKE "m@air" 
                   "<pl.location.find.blocks[stone_slab2].within[10].parse[block].exclude[<yaml[<player>].list_keys[<player>.enviromentals.<def[cuboid].replace[_shell]>].parse[as_location.above]||li@>]>") 
00:02:40 [INFO]  ERROR in script 'FARM_PATCH_RIVENHALL'! Using deprecated form 
                   of tag 'blocks': 'get_blocks'.