Paste #28062: Untitled Paste

Date: 2016/01/08 18:22:10 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


[20:19:28] [Server thread/INFO]: Starting minecraft server version 1.8.8
[20:19:28] [Server thread/INFO]: Loading properties
[20:19:28] [Server thread/INFO]: Default game type: ADVENTURE
[20:19:28] [Server thread/INFO]: This server is running CraftBukkit version git-Spigot-db6de12-d3e0b6f (MC: 1.8.8) (Implementing API version 1.8.8-R0.1-SNAPSHOT)
[20:19:28] [Server thread/WARN]: *** WARNING *** stats.disable-saving is true but stats.forced-stats.achievement.openInventory isn't set to 1. Disabling stat saving without forcing the achievement may cause it to get stuck on the player's screen.
[20:19:28] [Server thread/INFO]: Server Ping Player Sample Count: 12
[20:19:28] [Server thread/INFO]: Using 4 threads for Netty based IO
[20:19:28] [Server thread/INFO]: Debug logging is disabled
[20:19:28] [Server thread/INFO]: Generating keypair
[20:19:28] [Server thread/INFO]: Starting Minecraft server on *:7777
[20:19:28] [Server thread/INFO]: Using epoll channel type
[20:19:28] [Server thread/INFO]: Set PluginClassLoader as parallel capable
[20:19:29] [Server thread/INFO]: [INFO][NoCheatPlus] Fri Jan 08 20:19:29 CST 2016
[20:19:29] [Server thread/INFO]: Player instances are stored for efficiency.
[20:19:29] [Server thread/INFO]: [AsyncWorldEditInjector] Loading AsyncWorldEditInjector v2.2.2
[20:19:29] [Server thread/INFO]: [dynmap] Loading dynmap v2.1-SNAPSHOT-1091
[20:19:29] [Server thread/INFO]: [dynmap] version=git-Spigot-db6de12-d3e0b6f (MC: 1.8.8)
[20:19:29] [Server thread/INFO]: [dynmap] inhabitedTicks field not found - inhabited shader not functional
[20:19:29] [Server thread/INFO]: [dynmap] Mod Support API available
[20:19:29] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v6.1;no_git_id
[20:19:29] [Server thread/INFO]: [TerrainControl] Loading TerrainControl v2.7.1
[20:19:29] [Server thread/INFO]: [Essentials] Loading Essentials vTeamCity
[20:19:29] [Server thread/INFO]: [RemoteToolkitPlugin] Loading RemoteToolkitPlugin vR10_A15.3
[20:19:29] [Server thread/INFO]: [zPermissions] Loading zPermissions v1.3-SNAPSHOT
[20:19:29] [Server thread/INFO]: [CustomCrafting] Loading CustomCrafting v1.0
[20:19:29] [Server thread/INFO]: [Commons] Loading Commons v1.8-SNAPSHOT-889f88b
[20:19:29] [Server thread/INFO]: [WorldBorder] Loading WorldBorder v1.7.5
[20:19:29] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v3.6.5-SNAPSHOT-b382
[20:19:29] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v2.5-b689
[20:19:29] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v6.1
[20:19:29] [Server thread/INFO]: [LibsDisguises] Loading LibsDisguises v8.6.7
[20:19:29] [Server thread/INFO]: [AsyncWorldEdit] Loading AsyncWorldEdit v2.2.2
[20:19:29] [Server thread/INFO]: [VoxelSniper] Loading VoxelSniper v5.170.0-SNAPSHOT-jnks317-gitfcb8fe1
[20:19:29] [Server thread/INFO]: [Microblocks] Loading Microblocks v2.2
[20:19:29] [Server thread/INFO]: [Crafty] Loading Crafty v1.0.0-SNAPSHOT
[20:19:29] [Server thread/INFO]: [Vault] Loading Vault v1.5.6-b49
[20:19:29] [Server thread/INFO]: [Prism] Loading Prism v2.0.6-35
[20:19:29] [Server thread/INFO]: [BO3Tools] Loading BO3Tools v1.4
[20:19:29] [Server thread/INFO]: [HeroTitles] Loading HeroTitles v1.1.1-b000
[20:19:29] [Server thread/INFO]: [Herochat] Loading Herochat v5.6.5-b214
[20:19:29] [Server thread/INFO]: [Dynmap-WorldGuard] Loading Dynmap-WorldGuard v0.80
[20:19:29] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.16-SNAPSHOT (build 1282)
[20:19:29] [Server thread/INFO]: [PhatLoots] Loading PhatLoots v4.1.0
[20:19:29] [Server thread/INFO]: [Denizen] Loading Denizen v0.9.7-SNAPSHOT (build 434)
[20:19:29] [Server thread/INFO]: [CompatNoCheatPlus] Loading CompatNoCheatPlus v6.5.0-RC-sMD5NET-b68
[20:19:29] [Server thread/INFO]: [NoCheatPlus] Loading NoCheatPlus v3.13.4-BETA-sMD5NET-b901
[20:19:29] [Server thread/INFO]: onLoad: Early set up of static API, configuration, logging.
[20:19:29] [Server thread/INFO]: [NoCheatPlus] Logging system initialized.
[20:19:29] [Server thread/INFO]: [NoCheatPlus] Detected Minecraft version: 1.8.8
[20:19:29] [Server thread/INFO]: [ecoCreature] Loading ecoCreature v0.3.0-SNAPSHOT-b106
[20:19:29] [Server thread/INFO]: [Items] Loading Items v1.0.0
[20:19:29] [Server thread/INFO]: [CommandItems] Loading CommandItems v1.0.0
[20:19:29] [Server thread/INFO]: [MythicMobs] Loading MythicMobs v2.1.1
[20:19:29] [Server thread/INFO]: [Heroes] Loading Heroes v1.8.5-SNAPSHOT-b23
[20:19:29] [Server thread/INFO]: [HeroFeatures] Loading HeroFeatures v1.2.1-SNAPSHOT-b120
[20:19:29] [Server thread/INFO]: [Depenizen] Loading Depenizen v0.2.2 (build 282)
[20:19:29] [Server thread/INFO]: [AsyncWorldEditInjector] Enabling AsyncWorldEditInjector v2.2.2
[20:19:29] [Server thread/INFO]: [AsyncWorldEditInjector] Injector platform set to: InjectorBukkit
[20:19:29] [Server thread/INFO]: [AsyncWorldEditInjector] Injecting WorldEdit classes...
[20:19:29] [Server thread/INFO]: [AsyncWorldEditInjector] Class com.sk89q.worldedit.EditSession injected.
[20:19:29] [Server thread/INFO]: [AsyncWorldEditInjector] Class com.sk89q.worldedit.function.operation.Operations injected.
[20:19:29] [Server thread/INFO]: [AsyncWorldEditInjector] Class com.sk89q.worldedit.command.SchematicCommands injected.
[20:19:29] [Server thread/INFO]: [AsyncWorldEditInjector] Class com.sk89q.worldedit.command.ScriptingCommands injected.
[20:19:29] [Server thread/INFO]: [AsyncWorldEditInjector] Enabled
[20:19:29] [Server thread/INFO]: [TerrainControl] Enabling TerrainControl v2.7.1
[20:19:34] [User Authenticator #1/INFO]: UUID of player Devotedworker is 7044db58-0801-4a47-986b-ac6d27baee80
[20:19:35] [Server thread/INFO]: [TerrainControl] [INFO] 714 Global custom objects loaded
[20:19:35] [Server thread/INFO]: [TerrainControl] [INFO] Global objects loaded, waiting for worlds to load
[20:19:35] [Server thread/INFO]: [zPermissions] Enabling zPermissions v1.3-SNAPSHOT
[20:19:35] [Server thread/INFO]: [zPermissions] 1.3-SNAPSHOT (build: ) starting...
[20:19:35] [Server thread/INFO]: [zPermissions] Using file-based storage strategy.
[20:19:35] [Server thread/INFO]: [zPermissions] 0 players to migrate
[20:19:35] [Server thread/INFO]: [zPermissions] 0 groups to migrate
[20:19:35] [Server thread/INFO]: [zPermissions] Nothing to migrate
[20:19:36] [Server thread/INFO]: [zPermissions] Installed native Vault Permissions bridge
[20:19:36] [Server thread/INFO]: [zPermissions] Installed native Vault Chat bridge
[20:19:36] [Server thread/INFO]: [zPermissions] 1.3-SNAPSHOT (build: ) enabled.
[20:19:36] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v3.6.5-SNAPSHOT-b382
[20:19:36] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread.
[20:19:36] [Server thread/INFO]: [Vault] Enabling Vault v1.5.6-b49
[20:19:36] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[20:19:36] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[20:19:36] [Server thread/INFO]: [Vault] Enabled Version 1.5.6-b49
[20:19:36] [Server thread/INFO]: [HeroTitles] Enabling HeroTitles v1.1.1-b000
[20:19:36] [Server thread/INFO]: [HeroTitles] - hooked Heroes!
[20:19:36] [Server thread/INFO]: [HeroTitles] - v1.1.1-b000 by HeroCraft Coding - ENABLED!
[20:19:36] [Server thread/INFO]: [HeroTitles][Chat] HeroTitles hooked.
[20:19:36] [Server thread/INFO]: [HeroTitles][Chat] HeroTitles found: Loaded
[20:19:36] [Server thread/INFO]: **** Beginning UUID conversion, this may take A LONG time ****
[20:19:36] [Server thread/INFO]: Preparing level "Zolaria"
[20:19:36] [Server thread/INFO]: -------- World Settings For [Zolaria] --------
[20:19:36] [Server thread/INFO]: Mob Spawn Range: 4
[20:19:36] [Server thread/INFO]: Cactus Growth Modifier: 1%
[20:19:36] [Server thread/INFO]: Cane Growth Modifier: 1%
[20:19:36] [Server thread/INFO]: Melon Growth Modifier: 10%
[20:19:36] [Server thread/INFO]: Mushroom Growth Modifier: 10%
[20:19:36] [Server thread/INFO]: Pumpkin Growth Modifier: 10%
[20:19:36] [Server thread/INFO]: Sapling Growth Modifier: 10%
[20:19:36] [Server thread/INFO]: Wheat Growth Modifier: 1%
[20:19:36] [Server thread/INFO]: NetherWart Growth Modifier: 1%
[20:19:36] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[20:19:36] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[20:19:36] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[20:19:36] [Server thread/INFO]: Anti X-Ray: true
[20:19:36] [Server thread/INFO]:     Engine Mode: 1
[20:19:36] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[20:19:36] [Server thread/INFO]:     Replace Blocks: [1, 5]
[20:19:36] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[20:19:36] [Server thread/INFO]: Random Lighting Updates: true
[20:19:36] [Server thread/INFO]: Structure Info Saving: true
[20:19:36] [Server thread/INFO]: Sending up to 5 chunks per packet
[20:19:36] [Server thread/INFO]: Max Entity Collisions: 8
[20:19:36] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[20:19:36] [Server thread/INFO]: Max TNT Explosions: 100
[20:19:36] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[20:19:36] [Server thread/INFO]: Item Despawn Rate: 6000
[20:19:36] [Server thread/INFO]: Item Merge Radius: 2.5
[20:19:36] [Server thread/INFO]: Arrow Despawn Rate: 1200
[20:19:36] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[20:19:36] [Server thread/INFO]: View Distance: 15
[20:19:36] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[20:19:36] [Server thread/INFO]: Chunks to Grow per Tick: 650
[20:19:36] [Server thread/INFO]: Clear tick list: false
[20:19:36] [Server thread/INFO]: Experience Merge Radius: 3.0
[20:19:36] [Server thread/INFO]: Preparing start region for level 0 (Seed: 8441558644484694908)
[20:19:37] [Server thread/INFO]: Preparing spawn area: 78%
[20:19:37] [Server thread/INFO]: [dynmap] Enabling dynmap v2.1-SNAPSHOT-1091
[20:19:37] [Server thread/INFO]: [dynmap] Using Bukkit Permissions (superperms) for access control
[20:19:37] [Server thread/INFO]: [dynmap] Web interface permissions only available for online users
[20:19:44] [Server thread/INFO]: [dynmap] Mod Support processing completed
[20:19:45] [Server thread/INFO]: [dynmap] Loaded 23 shaders.
[20:19:45] [Server thread/INFO]: [dynmap] Loaded 82 perspectives.
[20:19:45] [Server thread/INFO]: [dynmap] Loaded 14 lightings.
[20:19:45] [Server thread/INFO]: [dynmap] Web server started on address 0.0.0.0:6700
[20:19:45] [Server thread/INFO]: [dynmap] version 2.1-SNAPSHOT-1091 is enabled - core version 2.1-SNAPSHOT-2032
[20:19:45] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'Zolaria'.
[20:19:45] [Server thread/INFO]: [dynmap] Loaded 11 pending tile renders for world 'Zolaria'
[20:19:45] [Server thread/INFO]: [dynmap] Enabled
[20:19:45] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v6.1;no_git_id
[20:19:45] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[20:19:45] [Server thread/INFO]: [WorldEdit] Using com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_8_R3 as the Bukkit adapter
[20:19:45] [Server thread/INFO]: [Essentials] Enabling Essentials vTeamCity
[20:19:45] [Server thread/INFO]: Bukkit version format changed. Version not checked.
[20:19:45] [Server thread/INFO]: git-Spigot-db6de12-d3e0b6f (MC: 1.8.8)
[20:19:45] [Server thread/INFO]: 1.8.8-R0.1-SNAPSHOT
[20:19:45] [Server thread/INFO]: Using locale en_GB
[20:19:45] [Server thread/INFO]: Using locale en_GB
[20:19:45] [Server thread/INFO]: [Vault][Economy] Essentials Economy hooked.
[20:19:45] [Server thread/INFO]: Essentials: Using zPermissions based permissions.
[20:19:45] [Server thread/INFO]: [RemoteToolkitPlugin] Enabling RemoteToolkitPlugin vR10_A15.3
[20:19:45] [Server thread/INFO]: Memory max: 5726797824 bytes
[20:19:45] [Server thread/INFO]: Memory total: 2338848768 bytes
[20:19:45] [Server thread/INFO]: Remote Toolkit Plugin R10_A15.3 enabled!
[20:19:45] [Server thread/INFO]: [CustomCrafting] Enabling CustomCrafting v1.0
[20:19:46] [Server thread/INFO]: [Commons] Enabling Commons v1.8-SNAPSHOT-889f88b
[20:19:46] [Server thread/INFO]: [WorldBorder] Enabling WorldBorder v1.7.5
[20:19:46] [Server thread/INFO]: [WorldBorder] [CONFIG] Using rectangular/square border, knockback of 3.0 blocks, and timer delay of 5.
[20:19:46] [Server thread/INFO]: [WorldBorder] [CONFIG] Border-checking timed task started.
[20:19:46] [Server thread/INFO]: [WorldBorder] [CONFIG] World "world" has border radius 5000 at X: 0.3 Z: -0.8
[20:19:46] [Server thread/INFO]: [WorldBorder] [CONFIG] World "test" has border radius 6100 at X: 1110.7 Z: 998.9
[20:19:46] [Server thread/INFO]: [WorldBorder] [CONFIG] World "Zolaria" has border radius 5500 at X: -629.5 Z: 0.5
[20:19:46] [Server thread/INFO]: [WorldBorder] [CONFIG] World "x" has border radius 500 at X: 0.0 Z: 0.0
[20:19:46] [Server thread/INFO]: [WorldBorder] [CONFIG] World "Alpha1" has border radius 5200 at X: -649.5 Z: 60.5
[20:19:46] [Server thread/INFO]: [WorldBorder] [CONFIG] World "Alpha2" has border radius 5300 at X: -599.5 Z: 60.5
[20:19:46] [Server thread/INFO]: [WorldBorder] [CONFIG] World "Alpha3" has border radius 5500 at X: -699.5 Z: 60.5
[20:19:46] [Server thread/INFO]: [WorldBorder] [CONFIG] World "Alpha4" has border radius 5500 at X: -699.5 Z: 60.5
[20:19:46] [Server thread/INFO]: [WorldBorder] [CONFIG] World "Alpha5" has border radius 5600 at X: -699.5 Z: 60.5
[20:19:46] [Server thread/INFO]: [WorldBorder] [CONFIG] World "Alpha6" has border radius 5500 at X: -699.5 Z: 60.5
[20:19:46] [Server thread/INFO]: [WorldBorder] [CONFIG] World "Alpha7" has border radius 5500 at X: -699.5 Z: 60.5
[20:19:46] [Server thread/INFO]: [WorldBorder] [CONFIG] World "Alpha8" has border radius 5600 at X: -699.5 Z: 100.5
[20:19:46] [Server thread/INFO]: [WorldBorder] [CONFIG] Successfully hooked into DynMap for the ability to display borders.
[20:19:46] [Server thread/INFO]: For reference, the main world's spawn location is at X: -3736.0 Y: 79.0 Z: -4044.0
[20:19:46] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v2.5-b689
[20:19:46] [Server thread/INFO]: [Multiverse-Core] [AllPay] - Version 13.0 - hooked into Essentials Economy for Multiverse-Core v2.5-b689
[20:19:46] [Server thread/INFO]: [TerrainControl] [INFO] Starting to enable world ''test''...
[20:19:50] [Server thread/INFO]: [TerrainControl] [INFO] 558 world custom objects loaded.
[20:19:51] [Server thread/INFO]: [TerrainControl] [INFO] 284 biomes Loaded
[20:19:51] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: test
[20:19:51] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[20:19:51] [Server thread/INFO]: [TerrainControl] [INFO] Starting to enable world ''Zolaria''...
[20:19:58] [Server thread/INFO]: [TerrainControl] [INFO] 558 world custom objects loaded.
[20:19:59] [Server thread/INFO]: [TerrainControl] [INFO] 284 biomes Loaded
[20:19:59] [Server thread/INFO]: -------- World Settings For [Abeyance] --------
[20:19:59] [Server thread/INFO]: Mob Spawn Range: 4
[20:19:59] [Server thread/INFO]: Cactus Growth Modifier: 1%
[20:19:59] [Server thread/INFO]: Cane Growth Modifier: 1%
[20:19:59] [Server thread/INFO]: Melon Growth Modifier: 10%
[20:19:59] [Server thread/INFO]: Mushroom Growth Modifier: 10%
[20:19:59] [Server thread/INFO]: Pumpkin Growth Modifier: 10%
[20:19:59] [Server thread/INFO]: Sapling Growth Modifier: 10%
[20:19:59] [Server thread/INFO]: Wheat Growth Modifier: 1%
[20:19:59] [Server thread/INFO]: NetherWart Growth Modifier: 1%
[20:19:59] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[20:19:59] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[20:19:59] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[20:19:59] [Server thread/INFO]: Anti X-Ray: true
[20:19:59] [Server thread/INFO]:     Engine Mode: 1
[20:19:59] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[20:19:59] [Server thread/INFO]:     Replace Blocks: [1, 5]
[20:19:59] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[20:19:59] [Server thread/INFO]: Random Lighting Updates: true
[20:19:59] [Server thread/INFO]: Structure Info Saving: true
[20:19:59] [Server thread/INFO]: Sending up to 5 chunks per packet
[20:19:59] [Server thread/INFO]: Max Entity Collisions: 8
[20:19:59] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[20:19:59] [Server thread/INFO]: Max TNT Explosions: 100
[20:19:59] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[20:19:59] [Server thread/INFO]: Item Despawn Rate: 6000
[20:19:59] [Server thread/INFO]: Item Merge Radius: 2.5
[20:19:59] [Server thread/INFO]: Arrow Despawn Rate: 1200
[20:19:59] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[20:19:59] [Server thread/INFO]: View Distance: 15
[20:19:59] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[20:19:59] [Server thread/INFO]: Chunks to Grow per Tick: 650
[20:19:59] [Server thread/INFO]: Clear tick list: false
[20:19:59] [Server thread/INFO]: Experience Merge Radius: 3.0
[20:19:59] [Server thread/INFO]: Preparing start region for level 1 (Seed: 5936633904876577133)
[20:19:59] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'Abeyance'.
[20:19:59] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v6.1
[20:19:59] [Server thread/INFO]: [WorldGuard] Loading region data...
[20:20:00] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v8.6.7
[20:20:00] [Server thread/INFO]: [AsyncWorldEdit] Enabling AsyncWorldEdit v2.2.2
[20:20:00] [Server thread/INFO]: [AsyncWorldEdit] BlocksHub plugin not found.
[20:20:00] [Server thread/INFO]: [AsyncWorldEdit] PlotMeFix set to class org.primesoft.asyncworldedit.plotme.NullFix
[20:20:00] [Server thread/INFO]: [AsyncWorldEditInjector] New class factory set to: org.primesoft.asyncworldedit.injector.async.AsyncClassFactory
[20:20:00] [Server thread/INFO]: [AsyncWorldEdit] Enabled
[20:20:00] [Server thread/INFO]: [VoxelSniper] Enabling VoxelSniper v5.170.0-SNAPSHOT-jnks317-gitfcb8fe1
[20:20:00] [Server thread/INFO]: [VoxelSniper] Registered 75 Sniper Brushes with 149 handles.
[20:20:00] [Server thread/INFO]: [VoxelSniper] Registered Sniper Listener.
[20:20:00] [Server thread/INFO]: [Microblocks] Enabling Microblocks v2.2
[20:20:00] [Server thread/INFO]: [Microblocks] Please report any head mismatches to itsCrafted on SpigotMC, or infiniteForge on BukkitDev.
[20:20:00] [Server thread/INFO]: [Microblocks] The current plugin version is 2.2. Please use this when sending reports of mismatched heads and such.
[20:20:00] [Server thread/INFO]: [Crafty] Enabling Crafty v1.0.0-SNAPSHOT
[20:20:00] [Server thread/INFO]: [Prism] Enabling Prism v2.0.6-35
[20:20:00] [Server thread/INFO]: [Prism]: Initializing Prism 2.0.6-35. By Viveleroi.
[20:20:00] [Server thread/INFO]: Elixr: Loaded items directory
[20:20:00] [Server thread/INFO]: Elixr: Loaded items directory
[20:20:00] [Server thread/INFO]: [Prism]: WorldEdit found. Associated features enabled.
[20:20:00] [pool-4-thread-1/INFO]: [Prism]: Scheduled purge executor beginning new run...
[20:20:00] [Server thread/INFO]: [BO3Tools] Enabling BO3Tools v1.4
[20:20:00] [Server thread/INFO]: [Herochat] Enabling Herochat v5.6.5-b214
[20:20:01] [Server thread/INFO]: [Herochat] Saving channels
[20:20:01] [Server thread/INFO]: [Herochat] Save complete
[20:20:01] [Server thread/INFO]: [Herochat] Version 5.6.5-b214 is enabled.
[20:20:01] [Server thread/INFO]: [Dynmap-WorldGuard] Enabling Dynmap-WorldGuard v0.80
[20:20:01] [Server thread/INFO]: [Dynmap-WorldGuard] initializing
[20:20:01] [Server thread/INFO]: [Dynmap-WorldGuard] Custom flag 'dynmap-boost' not registered - WGCustomFlags not found
[20:20:01] [Server thread/INFO]: [Dynmap-WorldGuard] version 0.80 is activated
[20:20:01] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.16-SNAPSHOT (build 1282)
[20:20:01] [Server thread/INFO]: [PhatLoots] Enabling PhatLoots v4.1.0
[20:20:01] [Server thread/INFO]: [PhatLoots] Listening for Citizens NPC deaths
[20:20:01] [Server thread/INFO]: [PhatLoots] Listening for Dispensers
[20:20:01] [Server thread/INFO]: [PhatLoots] Listening for Mob deaths w/ MultiWorld support and WorldGuard Regions
[20:20:01] [Server thread/INFO]: [PhatLoots] Listening for Mob spawns w/ MultiWorld support and WorldGuard support
[20:20:01] [Server thread/INFO]: [PhatLoots] Listening for Players fishing
[20:20:01] [Server thread/INFO]: [PhatLoots] PhatLoots 4.1.0 (Build 1,905) is enabled!
[20:20:01] [Server thread/INFO]: [Denizen] Enabling Denizen v0.9.7-SNAPSHOT (build 434)
[20:20:01] [Server thread/INFO]: +> [Denizen] Initializing Denizen Core v1.10 (Build Unknown), 
                   implementation for Bukkit version 0.9.7-SNAPSHOT (build 434) 
[20:20:01] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[20:20:01] [Server thread/INFO]: +> [Denizen]  _/_ _  ._  _ _ 
[20:20:01] [Server thread/INFO]: +> [Denizen] (/(-/ )/ /_(-/ )  scriptable minecraft 
[20:20:01] [Server thread/INFO]: +> [Denizen]  
[20:20:01] [Server thread/INFO]: +> [Denizen] by: aufdemrand 
[20:20:01] [Server thread/INFO]: +> [Denizen] version: 0.9.7-SNAPSHOT (build 434) 
[20:20:01] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[20:20:01] [Server thread/INFO]:  OKAY! Loaded core commands: [showfake, invisible, animate, 
                   ban, modifyblock, cast, midi, explode, sidebar, cooldown, 
                   weather, action, scoreboard, if, give, chunkload, lookclose, 
                   zap, execute, mount, announce, push, fail, firework, light, 
                   reset, hurt, viewer, wait, flag, log, despawn, goto, attack, 
                   event, stand, map, resume, break, strike, health, team, 
                   trigger, fly, disengage, kick, playsound, rename, chat, 
                   anchor, fish, leash, queue, rotate, sign, run, experience, 
                   while, listen, playeffect, narrate, vulnerable, pushable, 
                   create, trait, finish, shoot, oxygen, walkto, group, yaml, 
                   statistic, pose, schematic, sync, look, pause, feed, take, 
                   compass, adjust, animatechest, drop, note, teleport, choose, 
                   inventory, title, remove, sql, switch, head, foreach, random, 
                   repeat, define, heal, copyblock, sit, burn, runtask, debug, 
                   determine, assignment, permission, follow, displayitem, 
                   scribe, async, createworld, spawn, equip, engage, time, 
                   inject, mark, age, walk] 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loading external dependencies for 
                   run-time compiler. 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] No dependencies to load or error loading 
                   dependencies: null 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loading plugins as dependencies for 
                   run-time compiler. 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  Items.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  Essentials-2.x-SNAPSHOT.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  prism-2.0.6.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  VoxelSniper-5.170.0-SNAPSHOT.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  commons-bukkit-1.8-SNAPSHOT.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  denizen-0.9.7-SNAPSHOT.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  HeroFeatures (4).jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  Depenizen.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  ProtocolLib.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  CustomCrafting.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  Multiverse-Core-2.5.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  Herochat.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  AsyncWorldEditInjector.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  citizens-2.0.16-SNAPSHOT.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  WorldBorder.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  ecoCreature-0.3.0-SNAPSHOT.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  dynmap-2.1.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  zPermissions-1.3-SNAPSHOT-b6.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  TerrainControl.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  PhatLoots.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  MythicMobs-2.1.1.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  WorldEdit.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  AsyncWorldEdit.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  Heroes (29).jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  BO3Tools.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  Microblocks.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  Crafty.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  cncp.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  Vault.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  Dynmap-WorldGuard-0.80.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  HeroTitles.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  WorldGuard.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  CommandItems.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  LibsDisguises.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  NoCheatPlus.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  MinecraftRKitPlugin.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Attempting to add CraftBukkit as 
                   dependency for run-time compiler. 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  spigot-alpha.jar 
[20:20:01] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  Minecraft_RKit.jar 
[20:20:01] [Server thread/INFO]:  OKAY! Loaded core triggers: [CHAT, CLICK, PROXIMITY, DAMAGE] 
[20:20:01] [Server thread/INFO]:  OKAY! Loaded core requirements: [PERMISSION, OP, MONEY, 
                   FLAGGED, PROCEDURE, RAINY, TIME, ISPOWERED, SUNNY, INREGION, 
                   ISLIQUID, OXYGEN, ITEM, OWNER, SCRIPT, SNEAKING, INGROUP, 
                   STORMING, ENCHANTED, HOLDING] 
[20:20:01] [Server thread/INFO]: +> [Denizen] Registered: dBiome as b 
[20:20:01] [Server thread/INFO]: +> [Denizen] Registered: dChunk as ch 
[20:20:01] [Server thread/INFO]: +> [Denizen] Registered: dColor as co 
[20:20:01] [Server thread/INFO]: +> [Denizen] Registered: dCuboid as cu 
[20:20:01] [Server thread/INFO]: +> [Denizen] Registered: dEllipsoid as ellipsoid 
[20:20:01] [Server thread/INFO]: +> [Denizen] Registered: dEntity as e 
[20:20:01] [Server thread/INFO]: +> [Denizen] Registered: dInventory as in 
[20:20:01] [Server thread/INFO]: +> [Denizen] Registered: dItem as i 
[20:20:01] [Server thread/INFO]: +> [Denizen] Registered: dLocation as l 
[20:20:01] [Server thread/INFO]: +> [Denizen] Registered: dMaterial as m 
[20:20:01] [Server thread/INFO]: +> [Denizen] Registered: dNPC as n 
[20:20:01] [Server thread/INFO]: +> [Denizen] Registered: dPlayer as p 
[20:20:01] [Server thread/INFO]: +> [Denizen] Registered: dPlugin as pl 
[20:20:01] [Server thread/INFO]: +> [Denizen] Registered: dWorld as w 
[20:20:01] [Server thread/INFO]: +> [Denizen] Registered: CustomObject as custom 
[20:20:01] [Server thread/INFO]: +> [Denizen] Registered: dList as li 
[20:20:01] [Server thread/INFO]: +> [Denizen] Registered: dList as  fl 
[20:20:01] [Server thread/INFO]: +> [Denizen] Registered: dScript as s 
[20:20:01] [Server thread/INFO]: +> [Denizen] Registered: Element as el 
[20:20:01] [Server thread/INFO]: +> [Denizen] Registered: Duration as d 
[20:20:01] [Server thread/INFO]: +> [Denizen] Registered: ScriptQueue as q 
[20:20:01] [Server thread/INFO]:  OKAY! Added objects to the ObjectFetcher [b, d, ch, e, in, 
                   fl, custom, el, i, co, l, m, n, ellipsoid, p, q, cu, s, w, pl, 
                   li] 
[20:20:01] [Server thread/INFO]: [CompatNoCheatPlus] Enabling CompatNoCheatPlus v6.5.0-RC-sMD5NET-b68
[20:20:01] [Server thread/INFO]: [cncp] Ensured that the following plugin is enabled: WorldGuard
[20:20:01] [Server thread/INFO]: [cncp] Registered hook(NCPHook might get added later): Citizens2(default) / 2.2
[20:20:01] [Server thread/INFO]: [cncp] Registered hook(NCPHook might get added later): BlockBreak(default) / 1.1
[20:20:01] [Server thread/INFO]: [cncp] Registered hook(NCPHook might get added later): BlockPlace(default) / 1.0
[20:20:01] [Server thread/INFO]: [cncp] Registered hook(NCPHook might get added later): InstaBreak(default) / 1.0
[20:20:01] [Server thread/INFO]: [cncp] Registered hook(NCPHook might get added later): EntityDamageByEntity(default) / 0.0
[20:20:01] [Server thread/INFO]: [CompatNoCheatPlus] CompatNoCheatPlus v6.5.0-RC-sMD5NET-b68 is enabled. Some hooks might get registered with NoCheatPlus later on.
[20:20:01] [Server thread/INFO]: [NoCheatPlus] Enabling NoCheatPlus v3.13.4-BETA-sMD5NET-b901
[20:20:01] [Server thread/INFO]: [NoCheatPlus] McAccess set to: 1.8.4-1.8.8 / Spigot-CB-1.8_R3
[20:20:01] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.5 blocks.
[20:20:01] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.6.1 blocks.
[20:20:01] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.7.2 blocks.
[20:20:01] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.8 blocks.
[20:20:01] [Server thread/INFO]: [NoCheatPlus] Inventory checks: FastConsume is available, disabled InstantEat.
[20:20:01] [Server thread/INFO]: [NoCheatPlus] Adding packet level hooks for ProtocolLib (MC 1.8.8)...
[20:20:01] [Server thread/INFO]: [NoCheatPlus] Available (and activated) packet level hooks: UseEntityAdapter | MovingFlying | OutgoingPosition | KeepAliveAdapter | SoundDistance
[20:20:01] [Server thread/INFO]: [NoCheatPlus] Version 3.13.4-BETA-sMD5NET-b901 is enabled.
[20:20:01] [Server thread/INFO]: [CompatNoCheatPlus] [cncp] Added 1 registered hooks to NoCheatPlus.
[20:20:02] [Server thread/INFO]: [ecoCreature] Enabling ecoCreature v0.3.0-SNAPSHOT-b106
[20:20:02] [Server thread/INFO]: [ecoCreature] Found plugin: Vault
[20:20:02] [Server thread/INFO]: [ecoCreature] Found plugin: WorldGuard
[20:20:02] [Server thread/INFO]: [ecoCreature] Found permission provider zPermissions
[20:20:02] [Server thread/INFO]: [ecoCreature] Found economy provider Essentials Economy
[20:20:02] [Server thread/INFO]: [ecoCreature] Loaded config defaults.
[20:20:02] [Server thread/INFO]: [ecoCreature] 0.3.0-SNAPSHOT-b106 enabled.
[20:20:02] [Server thread/INFO]: [Items] Enabling Items v1.0.0
[20:20:02] [Server thread/ERROR]: [Items] Problem loading gem group gemGroup
[20:20:02] [Server thread/WARN]: [Items] IllegalArgumentException: Cannot find gem with name gemName
[20:20:02] [Server thread/ERROR]: [Items] Problem loading gem group exampleGemGroup
[20:20:02] [Server thread/WARN]: [Items] IllegalArgumentException: Cannot find gem with name RareGem
[20:20:02] [Server thread/ERROR]: [Items] Problem loading attribute group attributeGroup
[20:20:02] [Server thread/WARN]: [Items] IllegalArgumentException: Cannot find attribute with name gemName
[20:20:02] [Server thread/ERROR]: [Items] Problem loading attribute group exampleAttributeGroup
[20:20:02] [Server thread/WARN]: [Items] IllegalArgumentException: Cannot find attribute with name RareAttribute
[20:20:02] [Server thread/WARN]: [Items] Error loading item example_item_format:
[20:20:02] [Server thread/WARN]: [Items] IllegalArgumentException: No enum constant org.bukkit.Material.MATERIAL_TYPE
[20:20:02] [Server thread/WARN]: [Items] Error loading item example_sword_1:
[20:20:02] [Server thread/WARN]: [Items] IllegalArgumentException: exampleGemGroup is not a gem group!
[20:20:02] [Server thread/WARN]: [Items] Error loading item leatherjacket:
[20:20:02] [Server thread/WARN]: [Items] IllegalArgumentException: No enum constant com.herocraftonline.items.api.items.weapons.WeaponType.[]
[20:20:02] [Server thread/WARN]: [Items] Error loading item studdedleatherarmor:
[20:20:02] [Server thread/WARN]: [Items] IllegalArgumentException: No enum constant com.herocraftonline.items.api.items.weapons.WeaponType.[]
[20:20:02] [Server thread/WARN]: [Items] Error loading item rawhidearmor:
[20:20:02] [Server thread/WARN]: [Items] IllegalArgumentException: No enum constant com.herocraftonline.items.api.items.weapons.WeaponType.[]
[20:20:02] [Server thread/ERROR]: [Items] Problem loading group groupName - skipping!
[20:20:02] [Server thread/WARN]: [Items] IllegalArgumentException: No matching item or material found for itemNameOrMaterialEnum
[20:20:02] [Server thread/ERROR]: [Items] Problem loading group exampleGroup - skipping!
[20:20:02] [Server thread/WARN]: [Items] IllegalArgumentException: No matching item or material found for example_sword_1
[20:20:02] [Server thread/ERROR]: [Items] Problem loading group leatherArmorGroup - skipping!
[20:20:02] [Server thread/WARN]: [Items] IllegalArgumentException: No matching item or material found for leatherjacket
[20:20:02] [Server thread/ERROR]: [Items] Problem loading drops for ENTITYTYPE_ENUM_EXACT_OR_MYTHICMOB_NAME_EXACT
[20:20:02] [Server thread/WARN]: [Items] NumberFormatException: For input string: "min"
[20:20:02] [Server thread/ERROR]: [Items] Problem loading drops for CAVE_SPIDER
[20:20:02] [Server thread/WARN]: java.lang.ArrayIndexOutOfBoundsException: 2
[20:20:02] [Server thread/WARN]:     at com.herocraftonline.items.config.DropTable.<init>(DropTable.java:37)
[20:20:02] [Server thread/WARN]:     at com.herocraftonline.items.config.DropManager.loadDrops(DropManager.java:261)
[20:20:02] [Server thread/WARN]:     at com.herocraftonline.items.config.DropManager.<init>(DropManager.java:50)
[20:20:02] [Server thread/WARN]:     at com.herocraftonline.items.ItemPlugin.onEnable(ItemPlugin.java:52)
[20:20:02] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:321)
[20:20:02] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:340)
[20:20:02] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:405)
[20:20:02] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.CraftServer.loadPlugin(CraftServer.java:357)
[20:20:02] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.CraftServer.enablePlugins(CraftServer.java:317)
[20:20:02] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.s(MinecraftServer.java:414)
[20:20:02] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.k(MinecraftServer.java:378)
[20:20:02] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.a(MinecraftServer.java:333)
[20:20:02] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.DedicatedServer.init(DedicatedServer.java:263)
[20:20:02] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:525)
[20:20:02] [Server thread/WARN]:     at java.lang.Thread.run(Thread.java:745)
[20:20:02] [Server thread/ERROR]: [Items] Plugin Items v1.0.0 has failed to register events for class com.herocraftonline.items.listeners.DropsListener because net/elseland/xikage/MythicMobs/API/Events/MythicMobDeathEvent does not exist.
[20:20:02] [Server thread/INFO]: [CommandItems] Enabling CommandItems v1.0.0
[20:20:02] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v2.1.1
[20:20:02] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Bukkit v1_8_R3 (Minecraft 1.8)...
[20:20:02] [Server thread/INFO]: [MythicMobs] MythicMobs Heroes Support has been enabled!
[20:20:02] [Server thread/INFO]: [MythicMobs] MythicMobs Lib's Disguises Support has been enabled!
[20:20:02] [Server thread/INFO]: [MythicMobs] MythicMobs PhatLoots Support has been enabled!
[20:20:02] [Server thread/INFO]: [MythicMobs] MythicMobs Vault Support has been enabled!
[20:20:02] [Server thread/INFO]: [MythicMobs] MythicMobs WorldGuard Support has been enabled!
[20:20:02] [Server thread/INFO]: [MythicMobs] Loaded 18 mobs.
[20:20:02] [Server thread/INFO]: [MythicMobs] Loaded 3 vanilla mob overrides.
[20:20:02] [Server thread/INFO]: [MythicMobs] Loaded 0 mob stacks.
[20:20:02] [Server thread/INFO]: [MythicMobs] Loaded 136 skills.
[20:20:02] [Server thread/INFO]: [MythicMobs] Loaded 2 random spawns.
[20:20:02] [Server thread/INFO]: [MythicMobs] Loaded 26 mythic items.
[20:20:02] [Server thread/INFO]: [MythicMobs] Loaded 2 drop tables.
[20:20:02] [Server thread/INFO]: [MythicMobs] Loaded 0 mob spawners.
[20:20:02] [Server thread/INFO]: [MythicMobs] v2.1.1 has been successfully loaded!
[20:20:03] [Server thread/INFO]: [MythicMobs] A new version of MythicMobs is available: MythicMobs v2.1.9
[20:20:03] [Server thread/INFO]: [Heroes] Enabling Heroes v1.8.5-SNAPSHOT-b23
[20:20:03] [Server thread/INFO]: [Heroes] Minecraft version: 1.8.8
[20:20:03] [Server thread/WARN]: [Heroes] ####################################################################################################
[20:20:03] [Server thread/WARN]: [Heroes]  Can not verify Heroes compatibility with this version of Minecraft, attempting to start up anyway. 
[20:20:03] [Server thread/WARN]: [Heroes]                                         USE AT YOUR OWN RISK!                                       
[20:20:03] [Server thread/WARN]: [Heroes] ####################################################################################################
[20:20:03] [Server thread/INFO]: [Heroes] Minimum PvP Level is set to: 1
[20:20:03] [Server thread/WARN]: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
[20:20:03] [Server thread/WARN]: SLF4J: Defaulting to no-operation (NOP) logger implementation
[20:20:03] [Server thread/WARN]: SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[20:20:04] [Server thread/WARN]: [Heroes] Invalid creature type (ELDER_GUARDIAN) found in damages.yml.
[20:20:04] [Server thread/WARN]: [Heroes] Remember, creature-names are case-sensetive, and must be exactly the same as found in the defaults!
[20:20:04] [Server thread/WARN]: [Heroes] Invalid environmental damage type (ANVIL) found in damages.yml
[20:20:04] [Server thread/WARN]: [Heroes] Invalid environmental damage type (CACTUS) found in damages.yml
[20:20:04] [Server thread/WARN]: [Heroes] Invalid creature type (ELDERGUARDIAN) found in experience.yml.
[20:20:04] [Server thread/WARN]: [Heroes] Remember, creature-names are case-sensetive, and must be exactly the same as found in the defaults!
[20:20:04] [Server thread/INFO]: [Heroes] ---- Loading classes, expect verbose logging. ----
[20:20:04] [Server thread/WARN]: [Heroes] Honorblade has no pve-item-damage-multiplier section
[20:20:04] [Server thread/WARN]: [Heroes] Honorblade has no pve-item-damage-multiplier-level section
[20:20:04] [Server thread/WARN]: [Heroes] Skill WaterWalk defined for Honorblade not found.
[20:20:04] [Server thread/WARN]: [Heroes] Skill Muramasa defined for Honorblade not found.
[20:20:04] [Server thread/WARN]: [Heroes] Skill Sacrifice defined for Honorblade not found.
[20:20:04] [Server thread/WARN]: [Heroes] Skill Infernoblade defined for Honorblade not found.
[20:20:04] [Server thread/WARN]: [Heroes] Runesmith has no permitted-armor section
[20:20:04] [Server thread/WARN]: [Heroes] Runewraith has no pve-item-damage-multiplier section
[20:20:04] [Server thread/WARN]: [Heroes] Runewraith has no pve-item-damage-multiplier-level section
[20:20:04] [Server thread/WARN]: [Heroes] CRAFTER has no permitted-armor section
[20:20:04] [Server thread/WARN]: [Heroes] Alchemist has no permitted-armor section
[20:20:04] [Server thread/WARN]: [Heroes] Soothsayer has no pve-item-damage-multiplier section
[20:20:04] [Server thread/WARN]: [Heroes] Soothsayer has no pve-item-damage-multiplier-level section
[20:20:04] [Server thread/WARN]: [Heroes] Farmer has no permitted-armor section
[20:20:04] [Server thread/WARN]: [Heroes] Stormcaller has no pve-item-damage-multiplier section
[20:20:04] [Server thread/WARN]: [Heroes] Stormcaller has no pve-item-damage-multiplier-level section
[20:20:04] [Server thread/WARN]: [Heroes] Dragonknight has no pve-item-damage-multiplier section
[20:20:04] [Server thread/WARN]: [Heroes] Dragonknight has no pve-item-damage-multiplier-level section
[20:20:04] [Server thread/WARN]: [Heroes] Invalid armor type (GOLD LEGGINGS) defined for Vicar
[20:20:04] [Server thread/WARN]: [Heroes] Vicar has no pve-item-damage-multiplier section
[20:20:04] [Server thread/WARN]: [Heroes] Vicar has no pve-item-damage-multiplier-level section
[20:20:04] [Server thread/WARN]: [Heroes] Shadowblade has no pve-item-damage-multiplier section
[20:20:04] [Server thread/WARN]: [Heroes] Shadowblade has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Invalid armor type (CHAIN_HELMET) defined for Minstrel
[20:20:05] [Server thread/WARN]: [Heroes] Minstrel has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Minstrel has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Runeblade has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Runeblade has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Paladin has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Paladin has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Leach has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Leach has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Dragoon has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Dragoon has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Necromancer has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Necromancer has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Pathfinder has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Pathfinder has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Beguiler has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Beguiler has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Skill Illusion defined for Beguiler not found.
[20:20:05] [Server thread/WARN]: [Heroes] Defiler has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Defiler has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Sorcerer has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Sorcerer has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Reaver has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Reaver has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Zo has no item-damage-level section
[20:20:05] [Server thread/WARN]: [Heroes] Zo has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Zo has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Wizard has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Wizard has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Bloodmage has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Bloodmage has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] LOSTSOUL has no permitted-armor section
[20:20:05] [Server thread/WARN]: [Heroes] LOSTSOUL has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] LOSTSOUL has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Crusader has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Crusader has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Dreadknight has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Dreadknight has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Disciple has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Disciple has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Ranger has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Ranger has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Smith has no permitted-armor section
[20:20:05] [Server thread/WARN]: [Heroes] Transcendent has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Transcendent has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Merchant has no permitted-armor section
[20:20:05] [Server thread/WARN]: [Heroes] Invalid armor type (CHAIN_HELMET) defined for Bard
[20:20:05] [Server thread/WARN]: [Heroes] Bard has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Bard has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Invalid armor type (GOLD LEGGINGS) defined for Cleric
[20:20:05] [Server thread/WARN]: [Heroes] Cleric has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Cleric has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Enchanter has no permitted-armor section
[20:20:05] [Server thread/WARN]: [Heroes] Flameweaver has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Flameweaver has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Berserker has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Berserker has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Skill Rupture defined for Berserker not found.
[20:20:05] [Server thread/WARN]: [Heroes] Ninja has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Ninja has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Druid has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Druid has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Ravager has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Ravager has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Skill Rupture defined for Ravager not found.
[20:20:05] [Server thread/WARN]: [Heroes] Illusionist has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Illusionist has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Miner has no permitted-armor section
[20:20:05] [Server thread/WARN]: [Heroes] Shaman has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Shaman has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Samurai has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Samurai has no pve-item-damage-multiplier-level section
[20:20:05] [Server thread/WARN]: [Heroes] Skill WaterWalk defined for Samurai not found.
[20:20:05] [Server thread/WARN]: [Heroes] Skill Muramasa defined for Samurai not found.
[20:20:05] [Server thread/WARN]: [Heroes] Skill Sacrifice defined for Samurai not found.
[20:20:05] [Server thread/WARN]: [Heroes] Skill Infernoblade defined for Samurai not found.
[20:20:05] [Server thread/WARN]: [Heroes] Engineer has no permitted-armor section
[20:20:05] [Server thread/WARN]: [Heroes] Pyromancer has no pve-item-damage-multiplier section
[20:20:05] [Server thread/WARN]: [Heroes] Pyromancer has no pve-item-damage-multiplier-level section
[20:20:06] [Server thread/INFO]: [Heroes] version 1.8.5-SNAPSHOT-b23 is enabled!
[20:20:06] [Server thread/INFO]: [HeroFeatures] Enabling HeroFeatures v1.2.1-SNAPSHOT-b120
[20:20:06] [Server thread/INFO]: [HeroFeatures] ERROR Initializing HeroChatBridgeBukkit!
[20:20:06] [Server thread/WARN]: [HeroFeatures] LWC or Towny does not exist! LWC towny checks will not work!
[20:20:06] [Server thread/WARN]: [HeroFeatures] Could not save cmdblocker.yml to plugins/HeroFeatures/cmdblocker.yml because cmdblocker.yml already exists.
[20:20:06] [Server thread/INFO]: [Depenizen] Enabling Depenizen v0.2.2 (build 282)
[20:20:06] [Server thread/INFO]: +> [Depenizen] Denizen hooked 
[20:20:06] [Server thread/INFO]: +> [Depenizen] mcMMO not found, add-ons will not enable. 
[20:20:06] [Server thread/INFO]: +> [Depenizen] BattleNight not found, add-ons will not enable. 
[20:20:06] [Server thread/INFO]: +> [Depenizen] Towny not found, add-ons will not enable. 
[20:20:06] [Server thread/INFO]: +> [Depenizen] Factions not found, add-ons will not enable. 
[20:20:06] [Server thread/INFO]: +> [Depenizen] Votifier not found, add-ons will not enable. 
[20:20:06] [Server thread/INFO]: +> [Depenizen] Jobs not found, add-ons will not enable. 
[20:20:06] [Server thread/INFO]: +> [Depenizen] pvparena not found, add-ons will not enable. 
[20:20:06] [Server thread/INFO]: +> [Depenizen] Heroes hooked, enabling add-ons. 
[20:20:06] [Server thread/INFO]: +> [Depenizen] Dynmap not found, add-ons will not enable. 
[20:20:06] [Server thread/INFO]: +> [Depenizen] WorldEdit hooked, enabling add-ons. 
[20:20:06] [Server thread/INFO]: +> [Depenizen] WorldGuard hooked, enabling add-ons. 
[20:20:06] [Server thread/INFO]: +> [Depenizen] Essentials hooked, enabling add-ons. 
[20:20:06] [Server thread/INFO]: +> [Depenizen] pvpstats not found, add-ons will not enable. 
[20:20:06] [Server thread/INFO]: +> [Depenizen] HyperConomy not found, add-ons will not enable. 
[20:20:06] [Server thread/INFO]: +> [Depenizen] SkillAPI not found, add-ons will not enable. 
[20:20:06] [Server thread/INFO]: +> [Depenizen] Prism hooked, enabling add-ons. 
[20:20:06] [Server thread/INFO]: +> [Depenizen] TerrainControl hooked, enabling add-ons. 
[20:20:06] [Server thread/INFO]: +> [Depenizen] PlotMe not found, add-ons will not enable. 
[20:20:06] [Server thread/INFO]: +> [Depenizen] SimpleClans not found, add-ons will not enable. 
[20:20:06] [Server thread/INFO]: +> [Depenizen] BungeeCord socket disabled in config, add-ons 
                   will not enable. 
[20:20:06] [Server thread/INFO]: +> [Denizen] Registered: HeroesClass as hclass 
[20:20:06] [Server thread/INFO]: +> [Denizen] Registered: HeroesHero as hero 
[20:20:06] [Server thread/INFO]: +> [Denizen] Registered: WorldGuardRegion as region 
[20:20:06] [Server thread/INFO]: +> [Denizen] Registered: PrismAction as prism 
[20:20:06] [Server thread/INFO]:  OKAY! Added objects to the ObjectFetcher [hero, region, 
                   hclass, prism] 
[20:20:06] [Server thread/WARN]: Could not register alias reload because it contains commands that do not exist: spawn:skill recall
[20:20:06] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[20:20:06] [Server thread/INFO]: Done (30.230s)! For help, type "help" or "?"
[20:20:06] [Craft Scheduler Thread - 3/INFO]: [NoCheatPlus] Added hook: AllViolations(NCP) [1.0].
[20:20:06] [Craft Scheduler Thread - 3/INFO]: [NoCheatPlus] Added hook: Citizens2(cncp) [2.0].
[20:20:06] [Server thread/INFO]: [NoCheatPlus] Post-enable running...
[20:20:06] [Server thread/INFO]: [NoCheatPlus] Post-enable finished.
[20:20:07] [Server thread/INFO]: [Citizens] Loaded 180 NPCs.
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing outside scripts... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing unnamed script... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/NpcScripts/ShopkeeperNPCs/AliceFShopScript.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/NpcScripts/ShopkeeperNPCs/Slot9Items.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/NpcScripts/ShopkeeperNPCs/InnerInventoryCrafting.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/NpcScripts/ShopkeeperNPCs/NpcShopScriptManager.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/NpcScripts/ShopkeeperNPCs/Items.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/NpcScripts/ShopkeeperNPCs/ConsumableItems.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing '/NpcScripts/TestingNPC.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/NpcScripts/QuestNpcs/QuestManager.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/NpcScripts/QuestNpcs/BaseQuestScript.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/NpcScripts/MainCharactorScripts/GeneralFucheScript2.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/NpcScripts/MainCharactorScripts/BeginingScript1.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/NpcScripts/MainCharactorScripts/GeneralFucheScript1.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/NpcScripts/MainCharactorScripts/DomoScript1.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/NpcScripts/MainCharactorScripts/DummyWarScript.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/NpcScripts/MainCharactorScripts/JuneScript1.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/Instances/StarterIslandInstances/StarterTownChurchManager.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/Instances/StarterIslandInstances/StarterTownManager.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/Instances/StarterIslandInstances/PlayerHousingManager.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/Instances/StarterIslandInstances/StarterTownBarrackExtra.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/Instances/StarterIslandInstances/StarterTownBarrackManager.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/Instances/InstanceAreaController.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/Instances/CutSceneInstances/StarterTownInstance1.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/Instances/PrivateInstances/EnterWolfDungeon1.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/Instances/PrivateInstances/EnterPrivateInstance.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing '/Books.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/FeatureScripts/RenewableResources.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing '/FeatureScripts/TestingFile.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing '/FeatureScripts/LibrarySystem.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing '/FeatureScripts/DeathMessages.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing '/FeatureScripts/QuestCommand.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/FeatureScripts/TrackingScript.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing '/FeatureScripts/DefaultFlags.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing 
                   '/FeatureScripts/ActivityTracker.yml'... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Processing '/FeatureScripts/HelpCommand.yml'... 
[20:20:07] [Server thread/INFO]:  OKAY! All scripts loaded! 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script ALICEFSHOPINVENTORY as type 
                   INVENTORY 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script HELPCOMMAND as type WORLD 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script ESCAPEORB100S as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script SWAPPARTYORB as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script BUILTIN_LOAD_TESTER as type COMMAND 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script SHOPCLOSE as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script TOTTERORB as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script FULLTINYSOULCONTAINER as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script JAROFBUTTER3_4 as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script BUTTEREDBREAD as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script TINYSOULCONTAINER as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script STARTERTOWNBARRACKENTERVIATOWER as 
                   type TASK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script JUNESCRIPTONE as type ASSIGNMENT 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script RECALLORB as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script GUNPOWDERTNT as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script SIMPLEQUESTMANAGER as type WORLD 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script PLAYERHOUSINGEXIT as type TASK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script ACTIVITYTRACKER as type WORLD 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script STARTERTOWNBARRACKCLOSETENTER as 
                   type TASK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script STARTERTOWNBARRACKSLEEPROOMENTER as 
                   type TASK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script GENERALFUSHESCRIPTONE as type 
                   ASSIGNMENT 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script DOMOINTERACTSCRIPTONE as type 
                   INTERACT 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script INSTACEDAREAS as type WORLD 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script STARTERTOWNBARRACKENTERVIACLOSET as 
                   type TASK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script TRACKINGLOGIN as type WORLD 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script EXAMPLE BOOK SCRIPT as type BOOK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script STARTGAME as type WORLD 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script GENERALFUSHESCRIPTTWO as type 
                   ASSIGNMENT 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script REGULARBREAD as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script ADMINCOMAMNDS as type WORLD 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script PIWOLFDUNGEON1SETUP as type TASK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script PLAYERHOUSING as type WORLD 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script JAROFBUTTER2_4 as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script ADVANCEDHEALINGORB as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script JAROFBUTTER5S as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script AGROORB as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script PRIVATEINSTANCETELEPORTSOLO as type 
                   TASK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script TINYSOULCOLLECTOR as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script ALICEFSCRIPTINTERACT as type 
                   INTERACT 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script STARTERTOWNINSTANCEONEENTER as type 
                   TASK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script POEM1 as type BOOK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script STARTERTOWNBARRACKENTERVIAFRONTDOOR 
                   as type TASK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script DUMMYWARSCRIPTINTERACTSCRIPTONE as 
                   type INTERACT 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script FULLTINYREINFORCEDSOULCONTAINER as 
                   type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script DEFAULTFLAGS as type TASK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script QUESTCOMMAND as type WORLD 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script BROKENTINYSOUL as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script BASICQUESTSCRIPTONE as type 
                   ASSIGNMENT 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script GLITCHYQUARTS as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script LIBRARYBOOKS as type WORLD 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script GLITCHYQUARTS1S as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script QUANITITYITEM as type WORLD 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script GOLDCOIN as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script ENTERSOLOPIWOLFDUNGEON1 as type 
                   TASK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script JAROFBUTTER1_4 as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script GENERALFUSHEINTERACTSCRIPTONE as 
                   type INTERACT 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script CHURCH_DOOR_KEY as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script TESTNPCINTERACTSCRIPTONE as type 
                   INTERACT 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script RENEWABLERESOURCES as type WORLD 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script NEVERSTACKINGITEM as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script REGULARBREAD10S as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script ENTERPARTYPIWOLFDUNGEON1 as type 
                   TASK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script HEADOFDONALD as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script BIGAPPLE as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script BASICQUESTSCRIPTINTERACTSCRIPTONE 
                   as type INTERACT 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script STARTERTOWNENTERVIABARRACKFRONTDOOR 
                   as type TASK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script ESCAPEORB as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script BASICHEALINGORB as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script DEATHMESSAGES as type WORLD 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script DOMOSCRIPTONE as type ASSIGNMENT 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script CONSUMABLEITEMS as type WORLD 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script PLAYERHOUSINGENTER as type TASK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script TESTINGSCRIPTFORSTUFF as type WORLD 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script ALICEFSHOPKEEPEREVENTS as type 
                   WORLD 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script STARTERTOWNCHURCHENTER as type TASK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script ???SCRIPTONE as type ASSIGNMENT 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script 
                   STARTERTOWNBARRACKENTERVIAPLAYERHOUSING as type TASK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script STARTERTOWNENTERVIABARACKTOWER as 
                   type TASK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script PRIVATEINSTANCELOGCHECKER as type 
                   WORLD 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script PRIVATEINSTANCEHELPCOMMAND as type 
                   WORLD 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script TESTNPCSCRIPTONE as type ASSIGNMENT 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script DOMOSCRIPT1EVENTS as type WORLD 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script TINYREINFORCEDSOULCONTAINER as type 
                   ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script JUNEINTERACTSCRIPTONE as type 
                   INTERACT 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script GENERALFUSHEINTERACTSCRIPTTWO as 
                   type INTERACT 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script JAROFBUTTER4_4 as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script DUMMYWARSCRIPTONE as type 
                   ASSIGNMENT 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script TESTNPCSCRIPTONECONVOREG as type 
                   TASK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script STARTERTOWNENTERVIACHURCH as type 
                   TASK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script PETRIFYORB as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script PIWOLFDUNGEON1CLEANUP as type TASK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script PRIVATEINSTANCETELEPORTPARTY as 
                   type TASK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script STARTERTOWNBARRACKENTERVIASLEEPROOM 
                   as type TASK 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script ALICEFSCRIPT as type ASSIGNMENT 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script GENERALFUSHESWORD as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script INVENTORYCRAFTING as type WORLD 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script ???INTERACTSCRIPTONE as type 
                   INTERACT 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script PRIVATEINSTANCEGATEINTERACTSCRIPT 
                   as type INTERACT 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script PRIVATEINSTANCEGATESCRIPT as type 
                   ASSIGNMENT 
[20:20:07] [Server thread/INFO]: +> [Denizen] Adding script TINYSOUL as type ITEM 
[20:20:07] [Server thread/INFO]: +> [Denizen] Scanning 20 world scripts... 
[20:20:07] [Server thread/INFO]: +> [CommandSmart...] Loaded Command SmartEvent. 
[20:20:07] [Server thread/INFO]: +> [CuboidEnterE...] Loaded Cuboid Enter & Exit SmartEvent. 
[20:20:07] [Server thread/INFO]: +> [Denizen] Reloading script events... 
[20:20:07] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'Player 
                   enters portal'! 
[20:20:07] [Server thread/INFO]: +> [Denizen] Event match, EntityDies matched for 'player 
                   death'! 
[20:20:07] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersPortal matched for 
                   'Player enters portal'! 
[20:20:07] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'Player enters portal'! 
[20:20:07] [Server thread/INFO]: +> [Denizen] Event match, EntityKilled matched for 'player 
                   kills entity'! 
[20:20:07] [Server thread/INFO]: +> [Denizen] Event match, EntityKilled matched for 'entity 
                   killed by player'! 
[20:20:07] [Server thread/INFO]: +> [Denizen] Event match, ServerListPing matched for 'server 
                   list ping'! 
[20:20:07] [Server thread/INFO]: +> [Denizen] Event match, PlayerClosesInv matched for 'player 
                   closes inventory'! 
[20:20:07] [Server thread/INFO]: +> [Denizen] Event match, PlayerDropsItem matched for 'player 
                   drops item'! 
[20:20:07] [Server thread/INFO]: +> [Denizen] Event match, PlayerDropsItem matched for 'player 
                   drops item'! 
[20:20:07] [Server thread/INFO]: +> [Denizen] Event match, PlayerDropsItem matched for 'player 
                   drops item'! 
[20:20:07] [Server thread/INFO]: +> [Denizen] Event match, PlayerLogin matched for 'player 
                   login'! 
[20:20:07] [Server thread/INFO]: +> [Denizen] Event match, PlayerLogin matched for 'player 
                   login'! 
[20:20:07] [Server thread/INFO]: +> [Denizen] Event match, PlayerLogin matched for 'player 
                   login'! 
[20:20:07] [Server thread/INFO]: +> [Denizen] Event match, PlayerLogin matched for 'player logs 
                   in'! 
[20:20:07] [Server thread/INFO]: +> [Denizen] Event match, PlayerPicksUp matched for 'player 
                   picks up item'! 
[20:20:07] [Server thread/INFO]: +> [Denizen] Event match, PlayerQuits matched for 'player 
                   quit'! 
[20:20:07] [Server thread/INFO]: +> [Denizen] Event match, PlayerQuits matched for 'player 
                   quits'! 
[20:20:07] [Server thread/INFO]:  Filled tag <dark_aqua> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <yellow> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <bold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <&co> with ':'. 
[20:20:07] [Server thread/INFO]:  Filled tag <reset> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gray> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <blue> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <bold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <&co> with ':'. 
[20:20:07] [Server thread/INFO]:  Filled tag <reset> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gray> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <dark_aqua> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <yellow> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <bold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <&co> with ':'. 
[20:20:07] [Server thread/INFO]:  Filled tag <reset> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gray> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <blue> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <bold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <&co> with ':'. 
[20:20:07] [Server thread/INFO]:  Filled tag <reset> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gray> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <dark_aqua> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <yellow> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <bold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <&co> with ':'. 
[20:20:07] [Server thread/INFO]:  Filled tag <reset> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gray> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <blue> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <bold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <&co> with ':'. 
[20:20:07] [Server thread/INFO]:  Filled tag <reset> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gray> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <dark_aqua> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <yellow> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <bold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <&co> with ':'. 
[20:20:07] [Server thread/INFO]:  Filled tag <reset> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gray> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <blue> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <bold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <&co> with ':'. 
[20:20:07] [Server thread/INFO]:  Filled tag <reset> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gray> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <dark_aqua> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <yellow> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <bold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <&co> with ':'. 
[20:20:07] [Server thread/INFO]:  Filled tag <reset> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gray> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <blue> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <bold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <&co> with ':'. 
[20:20:07] [Server thread/INFO]:  Filled tag <reset> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gray> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <dark_aqua> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <yellow> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <bold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <&co> with ':'. 
[20:20:07] [Server thread/INFO]:  Filled tag <reset> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gray> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <blue> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <bold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <&co> with ':'. 
[20:20:07] [Server thread/INFO]:  Filled tag <reset> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gray> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <dark_aqua> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <yellow> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <bold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <&co> with ':'. 
[20:20:07] [Server thread/INFO]:  Filled tag <reset> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gray> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <blue> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <bold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <&co> with ':'. 
[20:20:07] [Server thread/INFO]:  Filled tag <reset> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gray> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <dark_aqua> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <yellow> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <bold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <&co> with ':'. 
[20:20:07] [Server thread/INFO]:  Filled tag <reset> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gray> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <blue> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <bold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <&co> with ':'. 
[20:20:07] [Server thread/INFO]:  Filled tag <reset> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gray> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <dark_aqua> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <yellow> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <bold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <&co> with ':'. 
[20:20:07] [Server thread/INFO]:  Filled tag <reset> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gray> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <blue> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <bold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <&co> with ':'. 
[20:20:07] [Server thread/INFO]:  Filled tag <reset> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gray> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <dark_aqua> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <yellow> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <bold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <&co> with ':'. 
[20:20:07] [Server thread/INFO]:  Filled tag <reset> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gray> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <blue> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <bold> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <&co> with ':'. 
[20:20:07] [Server thread/INFO]:  Filled tag <reset> with ''. 
[20:20:07] [Server thread/INFO]:  Filled tag <gray> with ''. 
[20:20:08] [Server thread/INFO]: +> [] +-------------------------+ 
[20:20:08] [Craft Scheduler Thread - 1/INFO]: [Vault] Checking for Updates ... 
[20:20:08] [Craft Scheduler Thread - 1/WARN]: [Vault] No files found, or Feed URL is bad.
[20:20:08] [Craft Scheduler Thread - 1/INFO]: [Vault] No new version available
[20:20:08] [Server thread/INFO]: com.mojang.authlib.GameProfile@1ac97b8e[id=7044db58-0801-4a47-986b-ac6d27baee80,name=Devotedworker,properties={textures=[com.mojang.authlib.properties.Property@46c1c04]},legacy=false] (/72.15.109.2:57426) lost connection: Disconnected
[20:20:08] [Dynmap Render Thread/INFO]: [dynmap] Loading default resource pack
[20:20:11] [Netty Epoll Server IO #3/INFO]:  Running script event 'ServerListPing', event='server list 
                   ping' for script 'TESTINGSCRIPTFORSTUFF' 
[20:20:11] [Netty Epoll Server IO #3/INFO]:  Starting InstantQueue 
                   'TESTINGSCRIPTFORSTUFF_DramaIncreasinglyDelegation'... 
[20:20:11] [Netty Epoll Server IO #3/INFO]:  Queue 'TESTINGSCRIPTFORSTUFF_DramaIncreasinglyDelegation' 
                   Executing: DETERMINE 
                   "<gold>15<&sp>Days<&sp>Till<&sp>Closed<&sp>Beta<&nl>Ouch..." 
[20:20:11] [Netty Epoll Server IO #3/INFO]: +- Executing dCommand: DETERMINE ---------+ 
[20:20:11] [Netty Epoll Server IO #3/INFO]:  Filled tag <gold> with ''. 
[20:20:11] [Netty Epoll Server IO #3/INFO]:  Filled tag <&sp> with ' '. 
[20:20:11] [Netty Epoll Server IO #3/INFO]:  Filled tag <&sp> with ' '. 
[20:20:11] [Netty Epoll Server IO #3/INFO]:  Filled tag <&sp> with ' '. 
[20:20:11] [Netty Epoll Server IO #3/INFO]:  Filled tag <&sp> with ' '. 
[20:20:11] [Netty Epoll Server IO #3/INFO]:  Filled tag <&nl> with '
'. 
[20:20:11] [Netty Epoll Server IO #3/INFO]: +> Executing 'DETERMINE': outcome='15 Days Till Closed 
                   Beta
Ouch...'  passively='false' 
[20:20:11] [Netty Epoll Server IO #3/INFO]:  Completing queue 
                   'TESTINGSCRIPTFORSTUFF_DramaIncreasinglyDelegation' in 5ms. 
[20:20:12] [User Authenticator #2/INFO]: UUID of player Devotedworker is 7044db58-0801-4a47-986b-ac6d27baee80
[20:20:12] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-48
[20:20:12] [Server thread/INFO]:  Running script event 'PlayerLogin', event='player login' for 
                   script 'TRACKINGLOGIN' 
[20:20:12] [Server thread/INFO]:  Starting InstantQueue 'TRACKINGLOGIN_LiableDealingMichel'... 
[20:20:12] [Server thread/INFO]:  Queue 'TRACKINGLOGIN_LiableDealingMichel' Executing: IF 
                   "!<player.has_flag[FirstLogin]>" "{" "-" "flag" "player" 
                   "FirstLogin:<util.date>" "}" 
[20:20:12] [Server thread/INFO]: +- Executing dCommand: IF/p@Devotedworker ---------+ 
[20:20:12] [Server thread/INFO]: +> Executing 'IF': use_braces='true' 
[20:20:12] [Server thread/INFO]:  Filled tag <player.has_flag[FirstLogin]> with 'true'. 
[20:20:12] [Server thread/INFO]:  Completing queue 'TRACKINGLOGIN_LiableDealingMichel' in 0ms. 
[20:20:12] [Server thread/INFO]:  Running script event 'PlayerLogin', event='player logs in' 
                   for script 'TESTINGSCRIPTFORSTUFF' 
[20:20:12] [Server thread/INFO]:  Starting InstantQueue 
                   'TESTINGSCRIPTFORSTUFF_DecisionFunctionsFacilities'... 
[20:20:12] [Server thread/INFO]:  Queue 'TESTINGSCRIPTFORSTUFF_DecisionFunctionsFacilities' 
                   Executing: ANNOUNCE "<gold><bold><player.name> Logged in!" 
[20:20:12] [Server thread/INFO]: +- Executing dCommand: ANNOUNCE/p@Devotedworker ---------+ 
[20:20:12] [Server thread/INFO]:  Filled tag <gold> with ''. 
[20:20:12] [Server thread/INFO]:  Filled tag <bold> with ''. 
[20:20:12] [Server thread/INFO]:  Filled tag <player.name> with 'Devotedworker'. 
[20:20:12] [Server thread/INFO]: +> Executing 'ANNOUNCE': Message='Devotedworker Logged in!'  
                   Type='ALL' 
[20:20:12] [Server thread/INFO]: Devotedworker Logged in!
[20:20:12] [Server thread/INFO]:  Completing queue 
                   'TESTINGSCRIPTFORSTUFF_DecisionFunctionsFacilities' in 6ms. 
[20:20:12] [Server thread/INFO]: Devotedworker[/72.15.109.2:57477] logged in with entity id 534 at ([Abeyance]41.87272303757789, 38.52283167335746, 206.85806294365608)
[20:20:12] [Server thread/INFO]: [Heroes] Saved hero: Adam Y
[20:20:12] [Server thread/INFO]: [Heroes] Saved hero: Belle T
[20:20:12] [Server thread/INFO]: [Heroes] Saved hero: ツァ6[ツァfG. Fusheツァ6]
[20:20:12] [Server thread/INFO]: [Heroes] Saved hero: ツァ6[ツァfG. Fusheツァ6]
[20:20:12] [Server thread/INFO]: [Heroes] Saved hero: ツァ6[ツァfG. Fusheツァ6]
[20:20:12] [Server thread/INFO]: [Heroes] Saved hero: [ツァ3Gen. Fusheツァr]
[20:20:12] [Server thread/INFO]: [Heroes] Saved hero: ツァ6[ツァfG. Fusheツァ6]
[20:20:12] [Server thread/INFO]: [Heroes] Saved hero: Lucas P
[20:20:12] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-1
[20:20:13] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-29
[20:20:13] [Server thread/INFO]: [Heroes] Saved hero: Adrian M
[20:20:13] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-38
[20:20:13] [Server thread/INFO]: [Heroes] Saved hero: Ty B
[20:20:13] [Server thread/INFO]: [Heroes] Saved hero: Thomas N
[20:20:14] [Server thread/INFO]: [Heroes] Saved hero: ツァ2<William F>
[20:20:14] [Server thread/INFO]: [Heroes] Saved hero: Amber B
[20:20:14] [Server thread/INFO]: [Heroes] Saved hero: Nobel Thomas
[20:20:14] [Server thread/INFO]: [Heroes] Saved hero: Judy P
[20:20:15] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-36
[20:20:15] [Server thread/INFO]: [Heroes] Saved hero: Pirate
[20:20:15] [Server thread/INFO]: [Heroes] Saved hero: Rogue
[20:20:15] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-32
[20:20:15] [Server thread/INFO]: [Heroes] Saved hero: Domo
[20:20:15] [Netty Epoll Server IO #1/INFO]:  Running script event 'ServerListPing', event='server list 
                   ping' for script 'TESTINGSCRIPTFORSTUFF' 
[20:20:15] [Netty Epoll Server IO #1/INFO]:  Starting InstantQueue 
                   'TESTINGSCRIPTFORSTUFF_ClothesAdmissionsGi'... 
[20:20:15] [Netty Epoll Server IO #1/INFO]:  Queue 'TESTINGSCRIPTFORSTUFF_ClothesAdmissionsGi' Executing: 
                   DETERMINE 
                   "<gold>15<&sp>Days<&sp>Till<&sp>Closed<&sp>Beta<&nl>Ouch..." 
[20:20:15] [Netty Epoll Server IO #1/INFO]: +- Executing dCommand: DETERMINE ---------+ 
[20:20:15] [Netty Epoll Server IO #1/INFO]:  Filled tag <gold> with ''. 
[20:20:15] [Netty Epoll Server IO #1/INFO]:  Filled tag <&sp> with ' '. 
[20:20:15] [Netty Epoll Server IO #1/INFO]:  Filled tag <&sp> with ' '. 
[20:20:15] [Netty Epoll Server IO #1/INFO]:  Filled tag <&sp> with ' '. 
[20:20:15] [Netty Epoll Server IO #1/INFO]:  Filled tag <&sp> with ' '. 
[20:20:15] [Netty Epoll Server IO #1/INFO]:  Filled tag <&nl> with '
'. 
[20:20:15] [Netty Epoll Server IO #1/INFO]: +> Executing 'DETERMINE': outcome='15 Days Till Closed 
                   Beta
Ouch...'  passively='false' 
[20:20:15] [Netty Epoll Server IO #1/INFO]:  Completing queue 'TESTINGSCRIPTFORSTUFF_ClothesAdmissionsGi' 
                   in 2ms. 
[20:20:15] [Server thread/INFO]: [Heroes] Saved hero: Nevia
[20:20:16] [Server thread/INFO]: [Heroes] Saved hero: Tommy N
[20:20:16] [Server thread/INFO]: [Heroes] Saved hero: Support
[20:20:16] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-28
[20:20:16] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-7
[20:20:16] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-49
[20:20:16] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-9
[20:20:17] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-2
[20:20:17] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-10
[20:20:17] [Server thread/INFO]: [Heroes] Saved hero: UTAUxyz
[20:20:17] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-30
[20:20:17] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-17
[20:20:18] [Server thread/INFO]: [Heroes] Saved hero: Ogre
[20:20:18] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-35
[20:20:18] [Server thread/INFO]: [Heroes] Saved hero: Steampunk Robot
[20:20:18] [Server thread/INFO]: [Heroes] Saved hero: NpcBot
[20:20:18] [Server thread/INFO]: [Heroes] Saved hero: Fort F
[20:20:18] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-26
[20:20:18] [Server thread/INFO]: [Heroes] Saved hero: Billy R
[20:20:18] [Server thread/INFO]: [Heroes] Saved hero: Tim J
[20:20:18] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-4
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-23
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-47
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: ツァ6[ツァaC. Donnaツァ6]
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: Lady Ni
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-44
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-43
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-42
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-41
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-19
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-22
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-20
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-60
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-59
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-58
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-57
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-56
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-55
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-54
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-53
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-52
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-51
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-50
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-49
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-48
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-47
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-46
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-39
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-38
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-37
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-36
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-35
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-34
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-33
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-32
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-31
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-28
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-29
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-10
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-6
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-30
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-26
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-25
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-24
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-17
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-16
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-14
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-13
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-11
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-9
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-8
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-7
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-5
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-4
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-3
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-2
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: Thomas N
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: [ツァ6Lightツァr]
[20:20:19] [Server thread/INFO]: [Heroes] Saved hero: [ツァ6Lightツァr]
[20:20:20] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-45
[20:20:20] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-23
[20:20:20] [Server thread/INFO]: [Heroes] Saved hero: RPG-Skin-1
[20:20:20] [Server thread/INFO]: [Heroes] Saved hero: Momo ?
[20:20:20] [Server thread/INFO]: [Heroes] Saved hero: Olivia H
[20:20:20] [Server thread/INFO]: [Heroes] Saved hero: ツァ6[ツァbLostSoulツァ6]
[20:20:20] [Server thread/INFO]: [Heroes] Saved hero: Nobel Black
[20:20:20] [Server thread/INFO]: [Heroes] Saved hero: ツァ6[ツァeK. Louisツァ6]
[20:20:20] [Server thread/INFO]: [Heroes] Saved hero: Leo M
[20:20:20] [Server thread/INFO]: [Heroes] Saved hero: ツァlツァ6[ツァ3Juneツァlツァ6]
[20:20:20] [Server thread/INFO]: [Heroes] Saved hero: ツァ6[ツァ3Juneツァ6]
[20:20:21] [Server thread/INFO]: [Heroes] Saved hero: TrainingGirl1
[20:20:21] [Server thread/INFO]: [Heroes] Saved hero: TrainingGirl1
[20:20:21] [Server thread/INFO]: +> Executing 'Event': Type='on player clicks with 
                   BASICHEALINGORB'  Container='CONSUMABLEITEMS(WORLD)'  
                   player=p@DevotedworkerContext='{click_type=RIGHT_CLICK_AIR, 
                   item=i@BASICHEALINGORB[display_name=&ssbBasic Healing 
                   Orb;enchantments=DURABILITY,0;flags=li@HIDE_ENCHANTS;lore=&sse&sslDesc&co&ssr&ss7 
                   A Enchanted Orb of Mystical Properties|&ss9&sslInfo&co&ssr&ss7 
                   Heals for &ssa250HP笙・|&ssa&sslUsage&co&ssr&ss7 Right Click]}' 
[20:20:21] [Server thread/INFO]: +- Building event 'ON PLAYER CLICKS WITH BASICHEALINGORB' for 
                   CONSUMABLEITEMS ---------+ 
[20:20:21] [Server thread/INFO]:  Starting InstantQueue 
                   'CONSUMABLEITEMS_IdolProvenPackaging'... 
[20:20:21] [Server thread/INFO]:  Queue 'CONSUMABLEITEMS_IdolProvenPackaging' Executing: 
                   DETERMINE "cancelled" "passively" 
[20:20:21] [Server thread/INFO]: +- Executing dCommand: DETERMINE/p@Devotedworker ---------+ 
[20:20:21] [Server thread/INFO]: +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='true' 
[20:20:21] [Server thread/INFO]:  Queue 'CONSUMABLEITEMS_IdolProvenPackaging' Executing: ASYNC 
                   "{" "-" "if" 
                   "<player.health.max.is[==].than[<player.health>]>" "{" "-" 
                   "narrate" "<italic><gray> Your health is already full!" "-" 
                   "narrate" "<italic><gray> The Orb Refused to Activate" "-" 
                   "queue" "clear" "}" "-" "take" "BasicHealingOrb" "-" "heal" 
                   "250" "<player>" "-" "narrate" "<italic><gray> The Healing Orb 
                   Healed you!" 
[20:20:21] [Server thread/INFO]: +- Executing dCommand: ASYNC/p@Devotedworker ---------+ 
[20:20:21] [Server thread/INFO]:  ERROR in script 'CONSUMABLEITEMS'! Woah!! An exception has 
                   been called with this command! 
[20:20:21] [Server thread/INFO]:  ERROR in script 'CONSUMABLEITEMS'! Internal exception was 
                   thrown! 
[20:20:21] [Server thread/WARN]: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
[20:20:21] [Server thread/WARN]:     at java.util.ArrayList.rangeCheck(ArrayList.java:653)
[20:20:21] [Server thread/WARN]:     at java.util.ArrayList.get(ArrayList.java:429)
[20:20:21] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.commands.core.AsyncCommand.execute(AsyncCommand.java:30)
[20:20:21] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.commands.CommandExecuter.execute(CommandExecuter.java:247)
[20:20:21] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.ScriptEngine.revolve(ScriptEngine.java:54)
[20:20:21] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.ScriptQueue.revolve(ScriptQueue.java:676)
[20:20:21] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.core.InstantQueue.onStart(InstantQueue.java:61)
[20:20:21] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.ScriptQueue$1.run(ScriptQueue.java:507)
[20:20:21] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.ScriptQueue.start(ScriptQueue.java:526)
[20:20:21] [Server thread/WARN]:     at net.aufdemrand.denizencore.events.OldEventManager.doEvents(OldEventManager.java:246)
[20:20:21] [Server thread/WARN]:     at net.aufdemrand.denizencore.events.OldEventManager.doEvents(OldEventManager.java:192)
[20:20:21] [Server thread/WARN]:     at net.aufdemrand.denizen.scripts.containers.core.BukkitWorldScriptHelper.doEvents(BukkitWorldScriptHelper.java:49)
[20:20:21] [Server thread/WARN]:     at net.aufdemrand.denizen.scripts.containers.core.BukkitWorldScriptHelper.playerInteract(BukkitWorldScriptHelper.java:622)
[20:20:21] [Server thread/WARN]:     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[20:20:21] [Server thread/WARN]:     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
[20:20:21] [Server thread/WARN]:     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[20:20:21] [Server thread/WARN]:     at java.lang.reflect.Method.invoke(Method.java:497)
[20:20:21] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306)
[20:20:21] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
[20:20:21] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:502)
[20:20:21] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:487)
[20:20:21] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:228)
[20:20:21] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:195)
[20:20:21] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:191)
[20:20:21] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.PlayerConnection.a(PlayerConnection.java:717)
[20:20:21] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.PacketPlayInBlockPlace.a(PacketPlayInBlockPlace.java:52)
[20:20:21] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.PacketPlayInBlockPlace.a(PacketPlayInBlockPlace.java:1)
[20:20:21] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.PlayerConnectionUtils$1.run(SourceFile:13)
[20:20:21] [Server thread/WARN]:     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
[20:20:21] [Server thread/WARN]:     at java.util.concurrent.FutureTask.run(FutureTask.java:266)
[20:20:21] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.SystemUtils.a(SourceFile:44)
[20:20:21] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:715)
[20:20:21] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[20:20:21] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[20:20:21] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[20:20:21] [Server thread/WARN]:     at java.lang.Thread.run(Thread.java:745)
[20:20:21] [Server thread/INFO]: +> [Denizen] (Attempted: ASYNC "{" "-" "if" 
                   "<player.health.max.is[==].than[<player.health>]>" "{" "-" 
                   "narrate" "<italic><gray> Your health is already full!" "-" 
                   "narrate" "<italic><gray> The Orb Refused to Activate" "-" 
                   "queue" "clear" "}" "-" "take" "BasicHealingOrb" "-" "heal" 
                   "250" "<player>" "-" "narrate" "<italic><gray> The Healing Orb 
                   Healed you!") 
[20:20:21] [Server thread/INFO]: +---------------------+ 
[20:20:21] [Server thread/INFO]:  Completing queue 'CONSUMABLEITEMS_IdolProvenPackaging' in 
                   2ms. 
[20:20:21] [Server thread/INFO]: [Heroes] Saved hero: Wizard
[20:20:22] [Server thread/INFO]: [Heroes] Saved hero: Louis M
[20:20:22] [Server thread/INFO]: [Heroes] Saved hero: Bandit
[20:20:22] [Server thread/INFO]: [Heroes] Saved hero: TrainingDude1
[20:20:22] [Server thread/INFO]: [Heroes] Saved hero: TrainingDude1
[20:20:22] [Server thread/INFO]: [Heroes] Saved hero: MorganFX
[20:20:22] [Server thread/INFO]: +> Executing 'Event': Type='on player clicks with 
                   BASICHEALINGORB'  Container='CONSUMABLEITEMS(WORLD)'  
                   player=p@DevotedworkerContext='{click_type=RIGHT_CLICK_AIR, 
                   item=i@BASICHEALINGORB[display_name=&ssbBasic Healing 
                   Orb;enchantments=DURABILITY,0;flags=li@HIDE_ENCHANTS;lore=&sse&sslDesc&co&ssr&ss7 
                   A Enchanted Orb of Mystical Properties|&ss9&sslInfo&co&ssr&ss7 
                   Heals for &ssa250HP笙・|&ssa&sslUsage&co&ssr&ss7 Right Click]}' 
[20:20:22] [Server thread/INFO]: +- Building event 'ON PLAYER CLICKS WITH BASICHEALINGORB' for 
                   CONSUMABLEITEMS ---------+ 
[20:20:22] [Server thread/INFO]:  Starting InstantQueue 
                   'CONSUMABLEITEMS_FederationSeemLocation'... 
[20:20:22] [Server thread/INFO]:  Queue 'CONSUMABLEITEMS_FederationSeemLocation' Executing: 
                   DETERMINE "cancelled" "passively" 
[20:20:22] [Server thread/INFO]: +- Executing dCommand: DETERMINE/p@Devotedworker ---------+ 
[20:20:22] [Server thread/INFO]: +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='true' 
[20:20:22] [Server thread/INFO]:  Queue 'CONSUMABLEITEMS_FederationSeemLocation' Executing: 
                   ASYNC "{" "-" "if" 
                   "<player.health.max.is[==].than[<player.health>]>" "{" "-" 
                   "narrate" "<italic><gray> Your health is already full!" "-" 
                   "narrate" "<italic><gray> The Orb Refused to Activate" "-" 
                   "queue" "clear" "}" "-" "take" "BasicHealingOrb" "-" "heal" 
                   "250" "<player>" "-" "narrate" "<italic><gray> The Healing Orb 
                   Healed you!" 
[20:20:22] [Server thread/INFO]: +- Executing dCommand: ASYNC/p@Devotedworker ---------+ 
[20:20:22] [Server thread/INFO]:  ERROR in script 'CONSUMABLEITEMS'! Woah!! An exception has 
                   been called with this command! 
[20:20:22] [Server thread/INFO]:  ERROR in script 'CONSUMABLEITEMS'! Internal exception was 
                   thrown! 
[20:20:22] [Server thread/WARN]: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
[20:20:22] [Server thread/WARN]:     at java.util.ArrayList.rangeCheck(ArrayList.java:653)
[20:20:22] [Server thread/WARN]:     at java.util.ArrayList.get(ArrayList.java:429)
[20:20:22] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.commands.core.AsyncCommand.execute(AsyncCommand.java:30)
[20:20:22] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.commands.CommandExecuter.execute(CommandExecuter.java:247)
[20:20:22] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.ScriptEngine.revolve(ScriptEngine.java:54)
[20:20:22] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.ScriptQueue.revolve(ScriptQueue.java:676)
[20:20:22] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.core.InstantQueue.onStart(InstantQueue.java:61)
[20:20:22] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.ScriptQueue$1.run(ScriptQueue.java:507)
[20:20:22] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.ScriptQueue.start(ScriptQueue.java:526)
[20:20:22] [Server thread/WARN]:     at net.aufdemrand.denizencore.events.OldEventManager.doEvents(OldEventManager.java:246)
[20:20:22] [Server thread/WARN]:     at net.aufdemrand.denizencore.events.OldEventManager.doEvents(OldEventManager.java:192)
[20:20:22] [Server thread/WARN]:     at net.aufdemrand.denizen.scripts.containers.core.BukkitWorldScriptHelper.doEvents(BukkitWorldScriptHelper.java:49)
[20:20:22] [Server thread/WARN]:     at net.aufdemrand.denizen.scripts.containers.core.BukkitWorldScriptHelper.playerInteract(BukkitWorldScriptHelper.java:622)
[20:20:22] [Server thread/WARN]:     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[20:20:22] [Server thread/WARN]:     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
[20:20:22] [Server thread/WARN]:     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[20:20:22] [Server thread/WARN]:     at java.lang.reflect.Method.invoke(Method.java:497)
[20:20:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306)
[20:20:22] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
[20:20:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:502)
[20:20:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:487)
[20:20:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:228)
[20:20:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:195)
[20:20:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:191)
[20:20:22] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.PlayerConnection.a(PlayerConnection.java:717)
[20:20:22] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.PacketPlayInBlockPlace.a(PacketPlayInBlockPlace.java:52)
[20:20:22] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.PacketPlayInBlockPlace.a(PacketPlayInBlockPlace.java:1)
[20:20:22] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.PlayerConnectionUtils$1.run(SourceFile:13)
[20:20:22] [Server thread/WARN]:     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
[20:20:22] [Server thread/WARN]:     at java.util.concurrent.FutureTask.run(FutureTask.java:266)
[20:20:22] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.SystemUtils.a(SourceFile:44)
[20:20:22] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:715)
[20:20:22] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[20:20:22] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[20:20:22] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[20:20:22] [Server thread/WARN]:     at java.lang.Thread.run(Thread.java:745)
[20:20:22] [Server thread/INFO]: +> [Denizen] (Attempted: ASYNC "{" "-" "if" 
                   "<player.health.max.is[==].than[<player.health>]>" "{" "-" 
                   "narrate" "<italic><gray> Your health is already full!" "-" 
                   "narrate" "<italic><gray> The Orb Refused to Activate" "-" 
                   "queue" "clear" "}" "-" "take" "BasicHealingOrb" "-" "heal" 
                   "250" "<player>" "-" "narrate" "<italic><gray> The Healing Orb 
                   Healed you!") 
[20:20:22] [Server thread/INFO]: +---------------------+ 
[20:20:22] [Server thread/INFO]:  Completing queue 'CONSUMABLEITEMS_FederationSeemLocation' in 
                   2ms. 
[20:20:22] [Server thread/INFO]: [Heroes] Saved hero: [ツァ2Nun Juneツァr]
[20:20:22] [Server thread/INFO]: [Heroes] Saved hero: Cultist
[20:20:22] [Server thread/INFO]: +> Executing 'Event': Type='on player clicks with 
                   BASICHEALINGORB'  Container='CONSUMABLEITEMS(WORLD)'  
                   player=p@DevotedworkerContext='{click_type=RIGHT_CLICK_AIR, 
                   item=i@BASICHEALINGORB[display_name=&ssbBasic Healing 
                   Orb;enchantments=DURABILITY,0;flags=li@HIDE_ENCHANTS;lore=&sse&sslDesc&co&ssr&ss7 
                   A Enchanted Orb of Mystical Properties|&ss9&sslInfo&co&ssr&ss7 
                   Heals for &ssa250HP笙・|&ssa&sslUsage&co&ssr&ss7 Right Click]}' 
[20:20:22] [Server thread/INFO]: +- Building event 'ON PLAYER CLICKS WITH BASICHEALINGORB' for 
                   CONSUMABLEITEMS ---------+ 
[20:20:22] [Server thread/INFO]:  Starting InstantQueue 
                   'CONSUMABLEITEMS_AlgebraPreventEstablishing'... 
[20:20:22] [Server thread/INFO]:  Queue 'CONSUMABLEITEMS_AlgebraPreventEstablishing' Executing: 
                   DETERMINE "cancelled" "passively" 
[20:20:22] [Server thread/INFO]: +- Executing dCommand: DETERMINE/p@Devotedworker ---------+ 
[20:20:22] [Server thread/INFO]: +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='true' 
[20:20:22] [Server thread/INFO]:  Queue 'CONSUMABLEITEMS_AlgebraPreventEstablishing' Executing: 
                   ASYNC "{" "-" "if" 
                   "<player.health.max.is[==].than[<player.health>]>" "{" "-" 
                   "narrate" "<italic><gray> Your health is already full!" "-" 
                   "narrate" "<italic><gray> The Orb Refused to Activate" "-" 
                   "queue" "clear" "}" "-" "take" "BasicHealingOrb" "-" "heal" 
                   "250" "<player>" "-" "narrate" "<italic><gray> The Healing Orb 
                   Healed you!" 
[20:20:22] [Server thread/INFO]: +- Executing dCommand: ASYNC/p@Devotedworker ---------+ 
[20:20:22] [Server thread/INFO]:  ERROR in script 'CONSUMABLEITEMS'! Woah!! An exception has 
                   been called with this command! 
[20:20:22] [Server thread/INFO]:  ERROR in script 'CONSUMABLEITEMS'! Internal exception was 
                   thrown! 
[20:20:22] [Server thread/WARN]: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
[20:20:22] [Server thread/WARN]:     at java.util.ArrayList.rangeCheck(ArrayList.java:653)
[20:20:22] [Server thread/WARN]:     at java.util.ArrayList.get(ArrayList.java:429)
[20:20:22] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.commands.core.AsyncCommand.execute(AsyncCommand.java:30)
[20:20:22] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.commands.CommandExecuter.execute(CommandExecuter.java:247)
[20:20:22] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.ScriptEngine.revolve(ScriptEngine.java:54)
[20:20:22] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.ScriptQueue.revolve(ScriptQueue.java:676)
[20:20:22] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.core.InstantQueue.onStart(InstantQueue.java:61)
[20:20:22] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.ScriptQueue$1.run(ScriptQueue.java:507)
[20:20:22] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.ScriptQueue.start(ScriptQueue.java:526)
[20:20:22] [Server thread/WARN]:     at net.aufdemrand.denizencore.events.OldEventManager.doEvents(OldEventManager.java:246)
[20:20:22] [Server thread/WARN]:     at net.aufdemrand.denizencore.events.OldEventManager.doEvents(OldEventManager.java:192)
[20:20:22] [Server thread/WARN]:     at net.aufdemrand.denizen.scripts.containers.core.BukkitWorldScriptHelper.doEvents(BukkitWorldScriptHelper.java:49)
[20:20:22] [Server thread/WARN]:     at net.aufdemrand.denizen.scripts.containers.core.BukkitWorldScriptHelper.playerInteract(BukkitWorldScriptHelper.java:622)
[20:20:22] [Server thread/WARN]:     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[20:20:22] [Server thread/WARN]:     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
[20:20:22] [Server thread/WARN]:     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[20:20:22] [Server thread/WARN]:     at java.lang.reflect.Method.invoke(Method.java:497)
[20:20:22] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306)
[20:20:22] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
[20:20:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:502)
[20:20:22] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:487)
[20:20:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:228)
[20:20:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:195)
[20:20:22] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:191)
[20:20:22] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.PlayerConnection.a(PlayerConnection.java:717)
[20:20:22] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.PacketPlayInBlockPlace.a(PacketPlayInBlockPlace.java:52)
[20:20:22] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.PacketPlayInBlockPlace.a(PacketPlayInBlockPlace.java:1)
[20:20:22] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.PlayerConnectionUtils$1.run(SourceFile:13)
[20:20:22] [Server thread/WARN]:     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
[20:20:22] [Server thread/WARN]:     at java.util.concurrent.FutureTask.run(FutureTask.java:266)
[20:20:22] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.SystemUtils.a(SourceFile:44)
[20:20:22] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:715)
[20:20:22] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[20:20:22] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[20:20:22] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[20:20:22] [Server thread/WARN]:     at java.lang.Thread.run(Thread.java:745)
[20:20:22] [Server thread/INFO]: +> [Denizen] (Attempted: ASYNC "{" "-" "if" 
                   "<player.health.max.is[==].than[<player.health>]>" "{" "-" 
                   "narrate" "<italic><gray> Your health is already full!" "-" 
                   "narrate" "<italic><gray> The Orb Refused to Activate" "-" 
                   "queue" "clear" "}" "-" "take" "BasicHealingOrb" "-" "heal" 
                   "250" "<player>" "-" "narrate" "<italic><gray> The Healing Orb 
                   Healed you!") 
[20:20:22] [Server thread/INFO]: +---------------------+ 
[20:20:22] [Server thread/INFO]:  Completing queue 'CONSUMABLEITEMS_AlgebraPreventEstablishing' 
                   in 2ms. 
[20:20:23] [Server thread/INFO]: [Heroes] Saved hero: run
[20:20:23] [Server thread/INFO]: +> Executing 'Event': Type='on player clicks with 
                   BASICHEALINGORB'  Container='CONSUMABLEITEMS(WORLD)'  
                   player=p@DevotedworkerContext='{click_type=RIGHT_CLICK_AIR, 
                   item=i@BASICHEALINGORB[display_name=&ssbBasic Healing 
                   Orb;enchantments=DURABILITY,0;flags=li@HIDE_ENCHANTS;lore=&sse&sslDesc&co&ssr&ss7 
                   A Enchanted Orb of Mystical Properties|&ss9&sslInfo&co&ssr&ss7 
                   Heals for &ssa250HP笙・|&ssa&sslUsage&co&ssr&ss7 Right Click]}' 
[20:20:23] [Server thread/INFO]: +- Building event 'ON PLAYER CLICKS WITH BASICHEALINGORB' for 
                   CONSUMABLEITEMS ---------+ 
[20:20:23] [Server thread/INFO]:  Starting InstantQueue 
                   'CONSUMABLEITEMS_VictoryAssaultSaints'... 
[20:20:23] [Server thread/INFO]:  Queue 'CONSUMABLEITEMS_VictoryAssaultSaints' Executing: 
                   DETERMINE "cancelled" "passively" 
[20:20:23] [Server thread/INFO]: +- Executing dCommand: DETERMINE/p@Devotedworker ---------+ 
[20:20:23] [Server thread/INFO]: +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='true' 
[20:20:23] [Server thread/INFO]:  Queue 'CONSUMABLEITEMS_VictoryAssaultSaints' Executing: ASYNC 
                   "{" "-" "if" 
                   "<player.health.max.is[==].than[<player.health>]>" "{" "-" 
                   "narrate" "<italic><gray> Your health is already full!" "-" 
                   "narrate" "<italic><gray> The Orb Refused to Activate" "-" 
                   "queue" "clear" "}" "-" "take" "BasicHealingOrb" "-" "heal" 
                   "250" "<player>" "-" "narrate" "<italic><gray> The Healing Orb 
                   Healed you!" 
[20:20:23] [Server thread/INFO]: +- Executing dCommand: ASYNC/p@Devotedworker ---------+ 
[20:20:23] [Server thread/INFO]:  ERROR in script 'CONSUMABLEITEMS'! Woah!! An exception has 
                   been called with this command! 
[20:20:23] [Server thread/INFO]:  ERROR in script 'CONSUMABLEITEMS'! Internal exception was 
                   thrown! 
[20:20:23] [Server thread/WARN]: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
[20:20:23] [Server thread/WARN]:     at java.util.ArrayList.rangeCheck(ArrayList.java:653)
[20:20:23] [Server thread/WARN]:     at java.util.ArrayList.get(ArrayList.java:429)
[20:20:23] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.commands.core.AsyncCommand.execute(AsyncCommand.java:30)
[20:20:23] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.commands.CommandExecuter.execute(CommandExecuter.java:247)
[20:20:23] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.ScriptEngine.revolve(ScriptEngine.java:54)
[20:20:23] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.ScriptQueue.revolve(ScriptQueue.java:676)
[20:20:23] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.core.InstantQueue.onStart(InstantQueue.java:61)
[20:20:23] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.ScriptQueue$1.run(ScriptQueue.java:507)
[20:20:23] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.ScriptQueue.start(ScriptQueue.java:526)
[20:20:23] [Server thread/WARN]:     at net.aufdemrand.denizencore.events.OldEventManager.doEvents(OldEventManager.java:246)
[20:20:23] [Server thread/WARN]:     at net.aufdemrand.denizencore.events.OldEventManager.doEvents(OldEventManager.java:192)
[20:20:23] [Server thread/WARN]:     at net.aufdemrand.denizen.scripts.containers.core.BukkitWorldScriptHelper.doEvents(BukkitWorldScriptHelper.java:49)
[20:20:23] [Server thread/WARN]:     at net.aufdemrand.denizen.scripts.containers.core.BukkitWorldScriptHelper.playerInteract(BukkitWorldScriptHelper.java:622)
[20:20:23] [Server thread/WARN]:     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[20:20:23] [Server thread/WARN]:     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
[20:20:23] [Server thread/WARN]:     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[20:20:23] [Server thread/WARN]:     at java.lang.reflect.Method.invoke(Method.java:497)
[20:20:23] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306)
[20:20:23] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
[20:20:23] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:502)
[20:20:23] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:487)
[20:20:23] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:228)
[20:20:23] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:195)
[20:20:23] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:191)
[20:20:23] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.PlayerConnection.a(PlayerConnection.java:717)
[20:20:23] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.PacketPlayInBlockPlace.a(PacketPlayInBlockPlace.java:52)
[20:20:23] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.PacketPlayInBlockPlace.a(PacketPlayInBlockPlace.java:1)
[20:20:23] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.PlayerConnectionUtils$1.run(SourceFile:13)
[20:20:23] [Server thread/WARN]:     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
[20:20:23] [Server thread/WARN]:     at java.util.concurrent.FutureTask.run(FutureTask.java:266)
[20:20:23] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.SystemUtils.a(SourceFile:44)
[20:20:23] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:715)
[20:20:23] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[20:20:23] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[20:20:23] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[20:20:23] [Server thread/WARN]:     at java.lang.Thread.run(Thread.java:745)
[20:20:23] [Server thread/INFO]: +> [Denizen] (Attempted: ASYNC "{" "-" "if" 
                   "<player.health.max.is[==].than[<player.health>]>" "{" "-" 
                   "narrate" "<italic><gray> Your health is already full!" "-" 
                   "narrate" "<italic><gray> The Orb Refused to Activate" "-" 
                   "queue" "clear" "}" "-" "take" "BasicHealingOrb" "-" "heal" 
                   "250" "<player>" "-" "narrate" "<italic><gray> The Healing Orb 
                   Healed you!") 
[20:20:23] [Server thread/INFO]: +---------------------+ 
[20:20:23] [Server thread/INFO]:  Completing queue 'CONSUMABLEITEMS_VictoryAssaultSaints' in 
                   2ms. 
[20:20:23] [Server thread/INFO]: [Heroes] Saved hero: July M
[20:20:23] [Netty Epoll Server IO #2/INFO]:  Running script event 'ServerListPing', event='server list 
                   ping' for script 'TESTINGSCRIPTFORSTUFF' 
[20:20:23] [Netty Epoll Server IO #2/INFO]:  Starting InstantQueue 
                   'TESTINGSCRIPTFORSTUFF_CanvasNetworkingFloor'... 
[20:20:23] [Netty Epoll Server IO #2/INFO]:  Queue 'TESTINGSCRIPTFORSTUFF_CanvasNetworkingFloor' 
                   Executing: DETERMINE 
                   "<gold>15<&sp>Days<&sp>Till<&sp>Closed<&sp>Beta<&nl>Ouch..." 
[20:20:23] [Netty Epoll Server IO #2/INFO]: +- Executing dCommand: DETERMINE ---------+ 
[20:20:23] [Netty Epoll Server IO #2/INFO]:  Filled tag <gold> with ''. 
[20:20:23] [Netty Epoll Server IO #2/INFO]:  Filled tag <&sp> with ' '. 
[20:20:23] [Netty Epoll Server IO #2/INFO]:  Filled tag <&sp> with ' '. 
[20:20:23] [Netty Epoll Server IO #2/INFO]:  Filled tag <&sp> with ' '. 
[20:20:23] [Netty Epoll Server IO #2/INFO]:  Filled tag <&sp> with ' '. 
[20:20:23] [Netty Epoll Server IO #2/INFO]:  Filled tag <&nl> with '
'. 
[20:20:23] [Netty Epoll Server IO #2/INFO]: +> Executing 'DETERMINE': outcome='15 Days Till Closed 
                   Beta
Ouch...'  passively='false' 
[20:20:23] [Netty Epoll Server IO #2/INFO]:  Completing queue 
                   'TESTINGSCRIPTFORSTUFF_CanvasNetworkingFloor' in 1ms. 
[20:20:24] [Server thread/INFO]: [Heroes] Saved hero: Robon G
[20:20:24] [Server thread/INFO]: [Heroes] Saved hero: Robon G
[20:20:24] [Server thread/INFO]: [Heroes] Saved hero: Miss Easterwood
[20:20:24] [Netty Epoll Server IO #3/INFO]:  Running script event 'ServerListPing', event='server list 
                   ping' for script 'TESTINGSCRIPTFORSTUFF' 
[20:20:24] [Netty Epoll Server IO #3/INFO]:  Starting InstantQueue 
                   'TESTINGSCRIPTFORSTUFF_LayoutConsiderableArrange'... 
[20:20:24] [Netty Epoll Server IO #3/INFO]:  Queue 'TESTINGSCRIPTFORSTUFF_LayoutConsiderableArrange' 
                   Executing: DETERMINE 
                   "<gold>15<&sp>Days<&sp>Till<&sp>Closed<&sp>Beta<&nl>Ouch..." 
[20:20:24] [Netty Epoll Server IO #3/INFO]: +- Executing dCommand: DETERMINE ---------+ 
[20:20:24] [Netty Epoll Server IO #3/INFO]:  Filled tag <gold> with ''. 
[20:20:24] [Netty Epoll Server IO #3/INFO]:  Filled tag <&sp> with ' '. 
[20:20:24] [Netty Epoll Server IO #3/INFO]:  Filled tag <&sp> with ' '. 
[20:20:24] [Netty Epoll Server IO #3/INFO]:  Filled tag <&sp> with ' '. 
[20:20:24] [Netty Epoll Server IO #3/INFO]:  Filled tag <&sp> with ' '. 
[20:20:24] [Netty Epoll Server IO #3/INFO]:  Filled tag <&nl> with '
'. 
[20:20:24] [Netty Epoll Server IO #3/INFO]: +> Executing 'DETERMINE': outcome='15 Days Till Closed 
                   Beta
Ouch...'  passively='false' 
[20:20:24] [Netty Epoll Server IO #3/INFO]:  Completing queue 
                   'TESTINGSCRIPTFORSTUFF_LayoutConsiderableArrange' in 2ms. 
[20:20:25] [Server thread/INFO]: [Heroes] Saved hero: Team Rocket Grun
[20:20:25] [Server thread/INFO]: [Heroes] Saved hero: ツァaツァbツァeツァl
[20:20:25] [Server thread/INFO]: [Heroes] Saved hero: Pokemon Trainer 
[20:20:26] [Server thread/INFO]: [Heroes] Saved hero: [ツァ1Jane Bツァr]
[20:20:26] [Server thread/INFO]: [Heroes] Saved hero: Ember B
[20:20:26] [Netty Epoll Server IO #0/INFO]:  Running script event 'ServerListPing', event='server list 
                   ping' for script 'TESTINGSCRIPTFORSTUFF' 
[20:20:26] [Netty Epoll Server IO #0/INFO]:  Starting InstantQueue 
                   'TESTINGSCRIPTFORSTUFF_AppealsRouteNaughty'... 
[20:20:26] [Netty Epoll Server IO #0/INFO]:  Queue 'TESTINGSCRIPTFORSTUFF_AppealsRouteNaughty' Executing: 
                   DETERMINE 
                   "<gold>15<&sp>Days<&sp>Till<&sp>Closed<&sp>Beta<&nl>Ouch..." 
[20:20:26] [Netty Epoll Server IO #0/INFO]: +- Executing dCommand: DETERMINE ---------+ 
[20:20:26] [Netty Epoll Server IO #0/INFO]:  Filled tag <gold> with ''. 
[20:20:26] [Netty Epoll Server IO #0/INFO]:  Filled tag <&sp> with ' '. 
[20:20:26] [Netty Epoll Server IO #0/INFO]:  Filled tag <&sp> with ' '. 
[20:20:26] [Netty Epoll Server IO #0/INFO]:  Filled tag <&sp> with ' '. 
[20:20:26] [Netty Epoll Server IO #0/INFO]:  Filled tag <&sp> with ' '. 
[20:20:26] [Netty Epoll Server IO #0/INFO]:  Filled tag <&nl> with '
'. 
[20:20:26] [Netty Epoll Server IO #0/INFO]: +> Executing 'DETERMINE': outcome='15 Days Till Closed 
                   Beta
Ouch...'  passively='false' 
[20:20:26] [Netty Epoll Server IO #0/INFO]:  Completing queue 'TESTINGSCRIPTFORSTUFF_AppealsRouteNaughty' 
                   in 2ms. 
[20:20:26] [Server thread/INFO]: [Heroes] Saved hero: Ty L
[20:20:26] [Server thread/INFO]: [Heroes] Saved hero: Reaper
[20:20:26] [Server thread/INFO]: [Heroes] Saved hero: ツァdツァr
[20:20:27] [Server thread/INFO]: [Heroes] Saved hero: (ツァbDonald Bツァr)
[20:20:27] [User Authenticator #3/INFO]: UUID of player bradleyley is 0dae5aee-eefc-4f94-9f01-b40b10ad591f
[20:20:27] [Server thread/INFO]:  Running script event 'PlayerLogin', event='player login' for 
                   script 'TRACKINGLOGIN' 
[20:20:27] [Server thread/INFO]:  Starting InstantQueue 'TRACKINGLOGIN_NhlColeBuffer'... 
[20:20:27] [Server thread/INFO]:  Queue 'TRACKINGLOGIN_NhlColeBuffer' Executing: IF 
                   "!<player.has_flag[FirstLogin]>" "{" "-" "flag" "player" 
                   "FirstLogin:<util.date>" "}" 
[20:20:27] [Server thread/INFO]: +- Executing dCommand: IF/p@bradleyley ---------+ 
[20:20:27] [Server thread/INFO]: +> Executing 'IF': use_braces='true' 
[20:20:27] [Server thread/INFO]:  Filled tag <player.has_flag[FirstLogin]> with 'true'. 
[20:20:27] [Server thread/INFO]:  Completing queue 'TRACKINGLOGIN_NhlColeBuffer' in 0ms. 
[20:20:27] [Server thread/INFO]:  Running script event 'PlayerLogin', event='player logs in' 
                   for script 'TESTINGSCRIPTFORSTUFF' 
[20:20:27] [Server thread/INFO]:  Starting InstantQueue 
                   'TESTINGSCRIPTFORSTUFF_InvoiceDenizenFox'... 
[20:20:27] [Server thread/INFO]:  Queue 'TESTINGSCRIPTFORSTUFF_InvoiceDenizenFox' Executing: 
                   ANNOUNCE "<gold><bold><player.name> Logged in!" 
[20:20:27] [Server thread/INFO]: +- Executing dCommand: ANNOUNCE/p@bradleyley ---------+ 
[20:20:27] [Server thread/INFO]:  Filled tag <gold> with ''. 
[20:20:27] [Server thread/INFO]:  Filled tag <bold> with ''. 
[20:20:27] [Server thread/INFO]:  Filled tag <player.name> with 'bradleyley'. 
[20:20:27] [Server thread/INFO]: +> Executing 'ANNOUNCE': Message='bradleyley Logged in!'  
                   Type='ALL' 
[20:20:27] [Server thread/INFO]: bradleyley Logged in!
[20:20:27] [Server thread/INFO]:  Completing queue 'TESTINGSCRIPTFORSTUFF_InvoiceDenizenFox' in 
                   5ms. 
[20:20:27] [Server thread/INFO]: bradleyley[/203.94.48.207:39004] logged in with entity id 788 at ([Zolaria]-3803.7888024280865, 96.15155960357139, -3421.8092934604)
[20:20:27] [Server thread/INFO]: [Heroes] Saved hero: ツァ2<Alice F>
[20:20:27] [Server thread/INFO]: [Heroes] Saved hero: King Louis
[20:20:27] [Server thread/INFO]: [Heroes] Saved hero: Caster
[20:20:28] [Server thread/INFO]: [Heroes] Saved hero: Blake R
[20:20:28] [Server thread/INFO]: [Heroes] Saved hero: Don Hannah
[20:20:28] [Server thread/INFO]: [Heroes] Saved hero: SupportClassGuy
[20:20:28] [Server thread/INFO]: [Heroes] Saved hero: SupportClassGuy
[20:20:28] [Server thread/INFO]: [Heroes] Saved hero: Warrior
[20:20:28] [Server thread/INFO]: [Heroes] Saved hero: Brian J
[20:20:29] [Server thread/INFO]: [Heroes] Saved hero: Ty L Alternate
[20:20:29] [Server thread/INFO]: [Heroes] Saved hero: ツァ3
[20:20:31] [Netty Epoll Server IO #2/INFO]:  Running script event 'ServerListPing', event='server list 
                   ping' for script 'TESTINGSCRIPTFORSTUFF' 
[20:20:31] [Netty Epoll Server IO #2/INFO]:  Starting InstantQueue 
                   'TESTINGSCRIPTFORSTUFF_WeldingSunriseRouter'... 
[20:20:31] [Netty Epoll Server IO #2/INFO]:  Queue 'TESTINGSCRIPTFORSTUFF_WeldingSunriseRouter' Executing: 
                   DETERMINE 
                   "<gold>15<&sp>Days<&sp>Till<&sp>Closed<&sp>Beta<&nl>Ouch..." 
[20:20:31] [Netty Epoll Server IO #2/INFO]: +- Executing dCommand: DETERMINE ---------+ 
[20:20:31] [Netty Epoll Server IO #2/INFO]:  Filled tag <gold> with ''. 
[20:20:31] [Netty Epoll Server IO #2/INFO]:  Filled tag <&sp> with ' '. 
[20:20:31] [Netty Epoll Server IO #2/INFO]:  Filled tag <&sp> with ' '. 
[20:20:31] [Netty Epoll Server IO #2/INFO]:  Filled tag <&sp> with ' '. 
[20:20:31] [Netty Epoll Server IO #2/INFO]:  Filled tag <&sp> with ' '. 
[20:20:31] [Netty Epoll Server IO #2/INFO]:  Filled tag <&nl> with '
'. 
[20:20:31] [Netty Epoll Server IO #2/INFO]: +> Executing 'DETERMINE': outcome='15 Days Till Closed 
                   Beta
Ouch...'  passively='false' 
[20:20:31] [Netty Epoll Server IO #2/INFO]:  Completing queue 'TESTINGSCRIPTFORSTUFF_WeldingSunriseRouter' 
                   in 3ms. 
[20:20:32] [Server thread/INFO]: bradleyley issued server command: /tp Devotedworker
[20:20:37] [Server thread/INFO]:  ERROR! Tag 
                   <context.item.lore.contains[<gold>Click<&sp>To<&sp>Buy]> is 
                   invalid! 
[20:20:37] [Netty Epoll Server IO #3/INFO]:  Running script event 'ServerListPing', event='server list 
                   ping' for script 'TESTINGSCRIPTFORSTUFF' 
[20:20:37] [Netty Epoll Server IO #3/INFO]:  Starting InstantQueue 
                   'TESTINGSCRIPTFORSTUFF_PointingOgHarvard'... 
[20:20:37] [Netty Epoll Server IO #3/INFO]:  Queue 'TESTINGSCRIPTFORSTUFF_PointingOgHarvard' Executing: 
                   DETERMINE 
                   "<gold>15<&sp>Days<&sp>Till<&sp>Closed<&sp>Beta<&nl>Ouch..." 
[20:20:37] [Netty Epoll Server IO #3/INFO]: +- Executing dCommand: DETERMINE ---------+ 
[20:20:37] [Netty Epoll Server IO #3/INFO]:  Filled tag <gold> with ''. 
[20:20:37] [Netty Epoll Server IO #3/INFO]:  Filled tag <&sp> with ' '. 
[20:20:37] [Netty Epoll Server IO #3/INFO]:  Filled tag <&sp> with ' '. 
[20:20:37] [Netty Epoll Server IO #3/INFO]:  Filled tag <&sp> with ' '. 
[20:20:37] [Netty Epoll Server IO #3/INFO]:  Filled tag <&sp> with ' '. 
[20:20:37] [Netty Epoll Server IO #3/INFO]:  Filled tag <&nl> with '
'. 
[20:20:37] [Netty Epoll Server IO #3/INFO]: +> Executing 'DETERMINE': outcome='15 Days Till Closed 
                   Beta
Ouch...'  passively='false' 
[20:20:37] [Netty Epoll Server IO #3/INFO]:  Completing queue 'TESTINGSCRIPTFORSTUFF_PointingOgHarvard' in 
                   1ms. 
[20:20:38] [Server thread/INFO]:  ERROR! Tag 
                   <context.item.lore.contains[<gold>Click<&sp>To<&sp>Buy]> is 
                   invalid! 
[20:20:38] [Server thread/INFO]:  ERROR! Tag 
                   <context.item.lore.contains[<gold>Click<&sp>To<&sp>Buy]> is 
                   invalid! 
[20:20:38] [Server thread/INFO]:  ERROR! Tag 
                   <context.item.lore.contains[<gold>Click<&sp>To<&sp>Buy]> is 
                   invalid! 
[20:20:38] [Server thread/INFO]:  ERROR! Tag 
                   <context.item.lore.contains[<gold>Click<&sp>To<&sp>Buy]> is 
                   invalid! 
[20:20:45] [Server thread/INFO]: +- Getting interact script: n@Domo/p@bradleyley ---------+ 
[20:20:45] [Server thread/INFO]:  OKAY! '1 DOMOINTERACTSCRIPTONE' meets requirements. 
[20:20:45] [Server thread/INFO]:  
[20:20:45] [Server thread/INFO]:  OKAY! Highest scoring script is DOMOINTERACTSCRIPTONE. 
[20:20:45] [Server thread/INFO]: +> [InteractScri...] Current step for this script is: 1 
[20:20:45] [Server thread/INFO]: +---------------------+ 
[20:20:45] [Server thread/INFO]: +> Executing 'CHAT': Player='bradleyley'  NPC='Domo/444'  
                   Radius(Max)='1.867399333657039(10.0)'  Trigger text='i dont 
                   trust this one'  LOS='true'  Facing='true' 
[20:20:45] [Server thread/INFO]:  bradleyley says to Domo, i dont trust this one 
[20:20:45] [Server thread/INFO]: [o]bradleyley: i dont trust this one
[20:20:45] [Netty Epoll Server IO #0/INFO]:  Running script event 'ServerListPing', event='server list 
                   ping' for script 'TESTINGSCRIPTFORSTUFF' 
[20:20:45] [Netty Epoll Server IO #0/INFO]:  Starting InstantQueue 'TESTINGSCRIPTFORSTUFF_WmaGotVerde'... 
[20:20:45] [Netty Epoll Server IO #0/INFO]:  Queue 'TESTINGSCRIPTFORSTUFF_WmaGotVerde' Executing: 
                   DETERMINE 
                   "<gold>15<&sp>Days<&sp>Till<&sp>Closed<&sp>Beta<&nl>Ouch..." 
[20:20:45] [Netty Epoll Server IO #0/INFO]: +- Executing dCommand: DETERMINE ---------+ 
[20:20:45] [Netty Epoll Server IO #0/INFO]:  Filled tag <gold> with ''. 
[20:20:45] [Netty Epoll Server IO #0/INFO]:  Filled tag <&sp> with ' '. 
[20:20:45] [Netty Epoll Server IO #0/INFO]:  Filled tag <&sp> with ' '. 
[20:20:45] [Netty Epoll Server IO #0/INFO]:  Filled tag <&sp> with ' '. 
[20:20:45] [Netty Epoll Server IO #0/INFO]:  Filled tag <&sp> with ' '. 
[20:20:45] [Netty Epoll Server IO #0/INFO]:  Filled tag <&nl> with '
'. 
[20:20:45] [Netty Epoll Server IO #0/INFO]: +> Executing 'DETERMINE': outcome='15 Days Till Closed 
                   Beta
Ouch...'  passively='false' 
[20:20:45] [Netty Epoll Server IO #0/INFO]:  Completing queue 'TESTINGSCRIPTFORSTUFF_WmaGotVerde' in 2ms. 
[20:20:47] [Netty Epoll Server IO #1/INFO]:  Running script event 'ServerListPing', event='server list 
                   ping' for script 'TESTINGSCRIPTFORSTUFF' 
[20:20:47] [Netty Epoll Server IO #1/INFO]:  Starting InstantQueue 
                   'TESTINGSCRIPTFORSTUFF_NycAaBracelet'... 
[20:20:47] [Netty Epoll Server IO #1/INFO]:  Queue 'TESTINGSCRIPTFORSTUFF_NycAaBracelet' Executing: 
                   DETERMINE 
                   "<gold>15<&sp>Days<&sp>Till<&sp>Closed<&sp>Beta<&nl>Ouch..." 
[20:20:47] [Netty Epoll Server IO #1/INFO]: +- Executing dCommand: DETERMINE ---------+ 
[20:20:47] [Netty Epoll Server IO #1/INFO]:  Filled tag <gold> with ''. 
[20:20:47] [Netty Epoll Server IO #1/INFO]:  Filled tag <&sp> with ' '. 
[20:20:47] [Netty Epoll Server IO #1/INFO]:  Filled tag <&sp> with ' '. 
[20:20:47] [Netty Epoll Server IO #1/INFO]:  Filled tag <&sp> with ' '. 
[20:20:47] [Netty Epoll Server IO #1/INFO]:  Filled tag <&sp> with ' '. 
[20:20:47] [Netty Epoll Server IO #1/INFO]:  Filled tag <&nl> with '
'. 
[20:20:47] [Netty Epoll Server IO #1/INFO]: +> Executing 'DETERMINE': outcome='15 Days Till Closed 
                   Beta
Ouch...'  passively='false' 
[20:20:47] [Netty Epoll Server IO #1/INFO]:  Completing queue 'TESTINGSCRIPTFORSTUFF_NycAaBracelet' in 
                   2ms. 
[20:21:02] [Server thread/INFO]: +- Getting interact script: n@Domo/p@bradleyley ---------+ 
[20:21:02] [Server thread/INFO]:  OKAY! '1 DOMOINTERACTSCRIPTONE' meets requirements. 
[20:21:02] [Server thread/INFO]:  
[20:21:02] [Server thread/INFO]:  OKAY! Highest scoring script is DOMOINTERACTSCRIPTONE. 
[20:21:02] [Server thread/INFO]: +> [InteractScri...] Current step for this script is: 1 
[20:21:02] [Server thread/INFO]: +---------------------+ 
[20:21:02] [Server thread/INFO]: +> Executing 'CHAT': Player='bradleyley'  NPC='Domo/444'  
                   Radius(Max)='1.1735082706106061(10.0)'  Trigger text='look at 
                   him'  LOS='true'  Facing='true' 
[20:21:02] [Server thread/INFO]:  bradleyley says to Domo, look at him 
[20:21:02] [Server thread/INFO]: [o]bradleyley: look at him
[20:21:10] [Craft Scheduler Thread - 5/INFO]: Save of mana/stamina started
[20:21:10] [Craft Scheduler Thread - 5/INFO]: Save of mana/stamina ended
[20:21:27] [Server thread/INFO]: +- Getting interact script: n@Domo/p@Devotedworker ---------+ 
[20:21:27] [Server thread/INFO]:  OKAY! '1 DOMOINTERACTSCRIPTONE' meets requirements. 
[20:21:27] [Server thread/INFO]:  
[20:21:27] [Server thread/INFO]:  OKAY! Highest scoring script is DOMOINTERACTSCRIPTONE. 
[20:21:27] [Server thread/INFO]: +> [InteractScri...] Current step for this script is: 1 
[20:21:27] [Server thread/INFO]: +---------------------+ 
[20:21:27] [Server thread/INFO]: +> Executing 'CHAT': Player='Devotedworker'  NPC='Domo/444'  
                   Radius(Max)='7.842978753333603(10.0)'  Trigger text='He's a 
                   good dude'  LOS='true'  Facing='true' 
[20:21:27] [Server thread/INFO]:  Devotedworker says to Domo, He's a good dude 
[20:21:27] [Server thread/INFO]: [o]Devotedworker: He's a good dude
[20:21:28] [Server thread/INFO]: +- Getting interact script: n@Domo/p@bradleyley ---------+ 
[20:21:28] [Server thread/INFO]:  OKAY! '1 DOMOINTERACTSCRIPTONE' meets requirements. 
[20:21:28] [Server thread/INFO]:  
[20:21:28] [Server thread/INFO]:  OKAY! Highest scoring script is DOMOINTERACTSCRIPTONE. 
[20:21:28] [Server thread/INFO]: +> [InteractScri...] Current step for this script is: 1 
[20:21:28] [Server thread/INFO]: +---------------------+ 
[20:21:28] [Server thread/INFO]: +> Executing 'CHAT': Player='bradleyley'  NPC='Domo/444'  
                   Radius(Max)='1.1526501617334641(10.0)'  Trigger text='hes a 
                   robot'  LOS='true'  Facing='true' 
[20:21:28] [Server thread/INFO]:  bradleyley says to Domo, hes a robot 
[20:21:28] [Server thread/INFO]: [o]bradleyley: hes a robot
[20:21:43] [Server thread/INFO]: [o]bradleyley: domo arogoto mr roboto