Paste #22269: Untitled Paste

Date: 2015/11/05 09:26:46 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922


[16:57:17] [Server thread/INFO]: Starting minecraft server version 1.8.8
[16:57:17] [Server thread/INFO]: Loading properties
[16:57:17] [Server thread/INFO]: Default game type: SURVIVAL
[16:57:17] [Server thread/INFO]: This server is running CraftBukkit version git-Spigot-76236cb-62a2169 (MC: 1.8.8) (Implementing API version 1.8.8-R0.1-SNAPSHOT)
[16:57:17] [Server thread/INFO]: Debug logging is disabled
[16:57:17] [Server thread/INFO]: Server Ping Player Sample Count: 12
[16:57:17] [Server thread/INFO]: Using 4 threads for Netty based IO
[16:57:17] [Server thread/INFO]: Generating keypair
[16:57:17] [Server thread/INFO]: Starting Minecraft server on 23.94.1.83:25665
[16:57:17] [Server thread/INFO]: Using default channel type
[16:57:17] [Server thread/ERROR]: Could not load 'plugins\citizensapi-2.0.16-SNAPSHOT.jar' in folder 'plugins'
org.bukkit.plugin.InvalidDescriptionException: Invalid plugin.yml
    at org.bukkit.plugin.java.JavaPluginLoader.getPluginDescription(JavaPluginLoader.java:154) ~[spigot.jar:git-Spigot-76236cb-62a2169]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:133) [spigot.jar:git-Spigot-76236cb-62a2169]
    at org.bukkit.craftbukkit.v1_8_R3.CraftServer.loadPlugins(CraftServer.java:292) [spigot.jar:git-Spigot-76236cb-62a2169]
    at net.minecraft.server.v1_8_R3.DedicatedServer.init(DedicatedServer.java:198) [spigot.jar:git-Spigot-76236cb-62a2169]
    at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:525) [spigot.jar:git-Spigot-76236cb-62a2169]
    at java.lang.Thread.run(Unknown Source) [?:1.8.0_51]
Caused by: java.io.FileNotFoundException: Jar does not contain plugin.yml
    ... 6 more
[16:57:17] [Server thread/WARN]: Plugin `GriefPrevention_Flags v3.1' uses the space-character (0x20) in its name `GriefPrevention Flags' - this is discouraged
[16:57:17] [Server thread/INFO]: Set PluginClassLoader as parallel capable
[16:57:17] [Server thread/ERROR]: Could not load 'plugins\BlocksHub-CoreProtect.jar' in folder 'plugins'
org.bukkit.plugin.UnknownDependencyException: CoreProtect
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:219) [spigot.jar:git-Spigot-76236cb-62a2169]
    at org.bukkit.craftbukkit.v1_8_R3.CraftServer.loadPlugins(CraftServer.java:292) [spigot.jar:git-Spigot-76236cb-62a2169]
    at net.minecraft.server.v1_8_R3.DedicatedServer.init(DedicatedServer.java:198) [spigot.jar:git-Spigot-76236cb-62a2169]
    at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:525) [spigot.jar:git-Spigot-76236cb-62a2169]
    at java.lang.Thread.run(Unknown Source) [?:1.8.0_51]
[16:57:18] [Server thread/INFO]: [SGM4_Undead_Players] Loading SGM4_Undead_Players v1.0
[16:57:18] [Server thread/INFO]: [ChestDrop] Loading ChestDrop v1.0
[16:57:18] [Server thread/INFO]: [DropVote] Loading DropVote v0.3
[16:57:18] [Server thread/INFO]: [GroupManager] Loading GroupManager v2.1.31 (Phoenix)
[16:57:18] [Server thread/INFO]: [TuxTwoLib] Loading TuxTwoLib v1.8.4-b6
[16:57:18] [Server thread/INFO]: [PauseChat] Loading PauseChat v1.1-2
[16:57:18] [Server thread/INFO]: [ChatTranslationPlus] Loading ChatTranslationPlus v1.7
[16:57:18] [Server thread/INFO]: [CClearChat] Loading CClearChat v1.5
[16:57:18] [Server thread/INFO]: [AutomaticInventory] Loading AutomaticInventory v2.2
[16:57:18] [Server thread/INFO]: [HorseTpWithMeBeta4] Loading HorseTpWithMeBeta4 v1.2.7
[16:57:18] [Server thread/INFO]: [NoteBlockAPI] Loading NoteBlockAPI v1.1.0
[16:57:18] [Server thread/INFO]: [Backpacks] Loading Backpacks v0.1.3
[16:57:18] [Server thread/INFO]: [LightAPI] Loading LightAPI v1.4.2
[16:57:18] [Server thread/INFO]: [AsyncWorldEditInjector] Loading AsyncWorldEditInjector v3.2.2
[16:57:18] [Server thread/INFO]: [dynmap] Loading dynmap v2.2-SNAPSHOT-1110
[16:57:18] [Server thread/INFO]: [dynmap] version=git-Spigot-76236cb-62a2169 (MC: 1.8.8)
[16:57:18] [Server thread/INFO]: [dynmap] inhabitedTicks field not found - inhabited shader not functional
[16:57:18] [Server thread/INFO]: [dynmap] Mod Support API available
[16:57:18] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v6.1;no_git_id
[16:57:18] [Server thread/INFO]: [BetterMcmmoStats] Loading BetterMcmmoStats v1.2.1
[16:57:18] [Server thread/INFO]: [BetterBeds] Loading BetterBeds v0.6.1-SNAPSHOT (build #4)
[16:57:18] [Server thread/INFO]: [Essentials] Loading Essentials vTeamCity
[16:57:18] [Server thread/INFO]: [Lobby] Loading Static_Particles v1.7
[16:57:18] [Server thread/INFO]: [BukkitCompat] Loading BukkitCompat vR22A
[16:57:18] [Server thread/INFO]: [Votifier] Loading Votifier v1.0.7
[16:57:18] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v3.6.4
[16:57:18] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.8.8) has not yet been tested! Proceed with caution.
[16:57:18] [Server thread/INFO]: [MergedMob] Loading MergedMob v3.1.0
[16:57:18] [Server thread/INFO]: [SimpleSignEdit] Loading SimpleSignEdit v1.0.0
[16:57:18] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat vTeamCity
[16:57:18] [Server thread/INFO]: [BlocksHub] Loading BlocksHub v1.2
[16:57:18] [Server thread/INFO]: [SQLibrary] Loading SQLibrary v7.1
[16:57:18] [Server thread/INFO]: [Effect Library] Loading EffectLib v3.4
[16:57:18] [Server thread/INFO]: [mcMMO] Loading mcMMO v1.5.04-SNAPSHOT-b67
[16:57:18] [Server thread/INFO]: [FerrisWheel] Loading FerrisWheel v1.0
[16:57:18] [Server thread/INFO]: [GAListener] Loading GAListener v1.3.1
[16:57:18] [Server thread/INFO]: [Vault] Loading Vault v1.5.6-b49
[16:57:18] [Server thread/INFO]: [ToolRemains] Loading ToolRemains v1.4
[16:57:18] [Server thread/INFO]: [lshp] Loading lshp v1.0.0 Release
[16:57:18] [Server thread/INFO]: [EnjinMinecraftPlugin] Loading EnjinMinecraftPlugin v2.7.2
[16:57:18] [Server thread/INFO]: [Dynmap-Essentials] Loading Dynmap-Essentials v0.80
[16:57:18] [Server thread/INFO]: [UltraCosmetics] Loading UltraCosmetics vRelease 1.1.3
[16:57:18] [Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v2.1.10
[16:57:18] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v6.1
[16:57:18] [Server thread/INFO]: [BlocksHub-WorldGuard] Loading BlocksHub-WorldGuard v1.2
[16:57:18] [Server thread/INFO]: [FurnitureLib] Loading FurnitureLib v1.3.5
[16:57:18] [Server thread/INFO]: [EssentialsGeoIP] Loading EssentialsGeoIP vTeamCity
[16:57:18] [Server thread/INFO]: [MoneyFormat] Loading MoneyFormat v1.1
[16:57:18] [Server thread/INFO]: [LibelulaLogger] Loading LibelulaLogger v1.1.1 Release
[16:57:18] [Server thread/INFO]: [Dynmap-WorldGuard] Loading Dynmap-WorldGuard v0.80
[16:57:18] [Server thread/INFO]: [SimpleClans] Loading SimpleClans v2.5.5
[16:57:18] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.16-SNAPSHOT (build 1267)
[16:57:18] [Server thread/INFO]: [AsyncWorldEdit] Loading AsyncWorldEdit v3.2.2
[16:57:18] [Server thread/INFO]: [DragonSlayer] Loading DragonSlayer v0.3.0
[16:57:18] [Server thread/INFO]: [GlobalChestShop] Loading GlobalChestShop v1.2.062
[16:57:18] [Server thread/INFO]: [GriefPrevention] Loading GriefPrevention v13.0
[16:57:18] [Server thread/INFO]: [Bookshelves] Loading Bookshelves v1.0.4
[16:57:18] [Server thread/INFO]: [DiceFurniture] Loading DiceFurniture v2.4.3
[16:57:18] [Server thread/INFO]: [StockMarket] Loading StockMarket v1.10.3
[16:57:18] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v1.8.6
[16:57:18] [Server thread/INFO]: [GriefPrevention_Flags] Loading GriefPrevention_Flags v3.1
[16:57:18] [Server thread/INFO]: [Dynmap-GriefPrevention] Loading Dynmap-GriefPrevention v0.80
[16:57:18] [Server thread/INFO]: [Denizen] Loading Denizen v0.9.7-SNAPSHOT (build 404)
[16:57:18] [Server thread/INFO]: [LegendQuest] Loading LegendQuest v1.9.7
[16:57:18] [Server thread/INFO]: [GoldenLasso] Loading GoldenLasso v1.1
[16:57:18] [Server thread/INFO]: [BlocksHub-GriefPrevention] Loading BlocksHub-GriefPrevention v1.2
[16:57:18] [Server thread/INFO]: [Builder] Loading Builder v0.9.1
[16:57:18] [Server thread/INFO]: [Sentry] Loading Sentry v1.8.5
[16:57:18] [Server thread/INFO]: [Depenizen] Loading Depenizen v0.2.2 (build 268)
[16:57:18] [Server thread/INFO]: [AsyncWorldEditInjector] Enabling AsyncWorldEditInjector v3.2.2
[16:57:18] [Server thread/INFO]: [AsyncWorldEditInjector] Injector platform set to: InjectorBukkit
[16:57:18] [Server thread/INFO]: [AsyncWorldEditInjector] Injecting WorldEdit classes...
[16:57:18] [Server thread/INFO]: [AsyncWorldEditInjector] Class com.sk89q.worldedit.EditSession injected.
[16:57:18] [Server thread/INFO]: [AsyncWorldEditInjector] Class com.sk89q.worldedit.function.operation.Operations injected.
[16:57:18] [Server thread/INFO]: [AsyncWorldEditInjector] Class com.sk89q.worldedit.command.SchematicCommands injected.
[16:57:18] [Server thread/INFO]: [AsyncWorldEditInjector] Class com.sk89q.worldedit.command.ScriptingCommands injected.
[16:57:18] [Server thread/INFO]: [AsyncWorldEditInjector] Enabled
[16:57:18] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v3.6.4
[16:57:18] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread.
[16:57:18] [Server thread/INFO]: [mcMMO] Enabling mcMMO v1.5.04-SNAPSHOT-b67
[16:57:19] [Thread-9/INFO]: UUID of player CorporalBruno is d0437f98-dc14-419e-ab16-a0a21b23c8b0
[16:57:19] [Server thread/INFO]: [mcMMO] Killing orphans
[16:57:19] [Server thread/INFO]: [Vault] Enabling Vault v1.5.6-b49
[16:57:19] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[16:57:19] [Server thread/INFO]: [Vault] [Permission] GroupManager found: Waiting
[16:57:19] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[16:57:19] [Server thread/INFO]: [Vault] [Chat] GroupManager found: Waiting
[16:57:19] [Server thread/INFO]: [Vault] Enabled Version 1.5.6-b49
[16:57:19] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[16:57:19] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[16:57:19] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[16:57:19] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[16:57:19] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[16:57:19] [Server thread/INFO]: **** Beginning UUID conversion, this may take A LONG time ****
[16:57:19] [Server thread/INFO]: Preparing level "world"
[16:57:19] [Server thread/INFO]: -------- World Settings For [world] --------
[16:57:19] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[16:57:19] [Server thread/INFO]: Item Merge Radius: 5.0
[16:57:19] [Server thread/INFO]: Item Despawn Rate: 6000
[16:57:19] [Server thread/INFO]: Arrow Despawn Rate: 1200
[16:57:19] [Server thread/INFO]: View Distance: 10
[16:57:19] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[16:57:19] [Server thread/INFO]: Chunks to Grow per Tick: 650
[16:57:19] [Server thread/INFO]: Clear tick list: false
[16:57:19] [Server thread/INFO]: Experience Merge Radius: 5.0
[16:57:19] [Server thread/INFO]: Max Entity Collisions: 8
[16:57:19] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[16:57:19] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[16:57:19] [Server thread/INFO]: Mob Spawn Range: 4
[16:57:19] [Server thread/INFO]: Anti X-Ray: true
[16:57:19] [Server thread/INFO]:     Engine Mode: 1
[16:57:19] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[16:57:19] [Server thread/INFO]:     Replace Blocks: [1, 5]
[16:57:19] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[16:57:19] [Server thread/INFO]: Random Lighting Updates: false
[16:57:19] [Server thread/INFO]: Structure Info Saving: true
[16:57:19] [Server thread/INFO]: Max TNT Explosions: 100
[16:57:19] [Server thread/INFO]: Cactus Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: Cane Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: Melon Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: Sapling Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: Wheat Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[16:57:19] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[16:57:19] [Server thread/INFO]: Sending up to 10 chunks per packet
[16:57:19] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[16:57:19] [Server thread/INFO]: -------- World Settings For [world_nether] --------
[16:57:19] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[16:57:19] [Server thread/INFO]: Item Merge Radius: 5.0
[16:57:19] [Server thread/INFO]: Item Despawn Rate: 6000
[16:57:19] [Server thread/INFO]: Arrow Despawn Rate: 1200
[16:57:19] [Server thread/INFO]: View Distance: 10
[16:57:19] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[16:57:19] [Server thread/INFO]: Chunks to Grow per Tick: 650
[16:57:19] [Server thread/INFO]: Clear tick list: false
[16:57:19] [Server thread/INFO]: Experience Merge Radius: 5.0
[16:57:19] [Server thread/INFO]: Max Entity Collisions: 8
[16:57:19] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[16:57:19] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[16:57:19] [Server thread/INFO]: Mob Spawn Range: 4
[16:57:19] [Server thread/INFO]: Anti X-Ray: true
[16:57:19] [Server thread/INFO]:     Engine Mode: 1
[16:57:19] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[16:57:19] [Server thread/INFO]:     Replace Blocks: [1, 5]
[16:57:19] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[16:57:19] [Server thread/INFO]: Random Lighting Updates: false
[16:57:19] [Server thread/INFO]: Structure Info Saving: true
[16:57:19] [Server thread/INFO]: Max TNT Explosions: 100
[16:57:19] [Server thread/INFO]: Cactus Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: Cane Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: Melon Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: Sapling Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: Wheat Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[16:57:19] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[16:57:19] [Server thread/INFO]: Sending up to 10 chunks per packet
[16:57:19] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[16:57:19] [Server thread/INFO]: -------- World Settings For [world_the_end] --------
[16:57:19] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[16:57:19] [Server thread/INFO]: Item Merge Radius: 5.0
[16:57:19] [Server thread/INFO]: Item Despawn Rate: 6000
[16:57:19] [Server thread/INFO]: Arrow Despawn Rate: 1200
[16:57:19] [Server thread/INFO]: View Distance: 10
[16:57:19] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[16:57:19] [Server thread/INFO]: Chunks to Grow per Tick: 650
[16:57:19] [Server thread/INFO]: Clear tick list: false
[16:57:19] [Server thread/INFO]: Experience Merge Radius: 5.0
[16:57:19] [Server thread/INFO]: Max Entity Collisions: 8
[16:57:19] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[16:57:19] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[16:57:19] [Server thread/INFO]: Mob Spawn Range: 4
[16:57:19] [Server thread/INFO]: Anti X-Ray: true
[16:57:19] [Server thread/INFO]:     Engine Mode: 1
[16:57:19] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[16:57:19] [Server thread/INFO]:     Replace Blocks: [1, 5]
[16:57:19] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[16:57:19] [Server thread/INFO]: Random Lighting Updates: false
[16:57:19] [Server thread/INFO]: Structure Info Saving: true
[16:57:19] [Server thread/INFO]: Max TNT Explosions: 100
[16:57:19] [Server thread/INFO]: Cactus Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: Cane Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: Melon Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: Sapling Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: Wheat Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[16:57:19] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Mi 16
[16:57:19] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[16:57:19] [Server thread/INFO]: Sending up to 10 chunks per packet
[16:57:19] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 8 Hopper Amount: 1
[16:57:19] [Server thread/INFO]: Preparing start region for level 0 (Seed: -2581827528583769720)
[16:57:20] [Server thread/INFO]: Preparing start region for level 1 (Seed: -2581827528583769720)
[16:57:20] [Server thread/INFO]: Preparing start region for level 2 (Seed: -2581827528583769720)
[16:57:20] [Server thread/INFO]: [SGM4_Undead_Players] Enabling SGM4_Undead_Players v1.0
[16:57:20] [Server thread/INFO]: [ChestDrop] Enabling ChestDrop v1.0
[16:57:20] [Server thread/INFO]: [ChestDrop] Loaded trade 'Mellohi by C418'
[16:57:20] [Server thread/INFO]: [ChestDrop] Loaded trade 'Mall by C418'
[16:57:20] [Server thread/INFO]: [ChestDrop] Loaded trade 'Chirp by C418'
[16:57:20] [Server thread/INFO]: [ChestDrop] Loaded trade 'Far by C418'
[16:57:20] [Server thread/INFO]: [ChestDrop] Loaded trade 'Gold Horse Armor'
[16:57:20] [Server thread/INFO]: [ChestDrop] Loaded trade 'Iron Horse Armor'
[16:57:20] [Server thread/INFO]: [ChestDrop] Loaded trade 'Diamond Horse Armor'
[16:57:20] [Server thread/INFO]: [ChestDrop] Loaded trade 'Blocks by C418'
[16:57:20] [Server thread/INFO]: [ChestDrop] Loaded trade 'Cat by C418'
[16:57:20] [Server thread/INFO]: [ChestDrop] Loaded trade 'Thirteen by C418'
[16:57:20] [Server thread/INFO]: [ChestDrop] Loaded trade 'Wait by C418'
[16:57:20] [Server thread/INFO]: [ChestDrop] Loaded trade 'Eleven by C418'
[16:57:20] [Server thread/INFO]: [ChestDrop] Loaded trade 'Ward by C418'
[16:57:20] [Server thread/INFO]: [ChestDrop] Loaded trade 'Strad by C418'
[16:57:20] [Server thread/INFO]: [ChestDrop] Loaded trade 'Stal by C418'
[16:57:20] [Server thread/INFO]: [ChestDrop] Enabled
[16:57:20] [Server thread/INFO]: [DropVote] Enabling DropVote v0.3
[16:57:21] [Server thread/INFO]: [GroupManager] Enabling GroupManager v2.1.31 (Phoenix)
[16:57:21] [Server thread/INFO]: GroupManager - INFO - World Found: world
[16:57:21] [Server thread/INFO]: GroupManager - INFO - World Found: world-griefed
[16:57:21] [Server thread/INFO]: GroupManager - INFO - World Found: world_nether
[16:57:21] [Server thread/INFO]: GroupManager - INFO - World Found: world_the_end
[16:57:21] [Server thread/INFO]: GroupManager - INFO - Superperms support enabled.
[16:57:21] [Server thread/INFO]: GroupManager - INFO - Scheduled Data Saving is set for every 10 minutes!
[16:57:21] [Server thread/INFO]: GroupManager - INFO - Backups will be retained for 96 hours!
[16:57:21] [Server thread/INFO]: GroupManager version 2.1.31 (Phoenix) is enabled!
[16:57:21] [Server thread/INFO]: [Vault][Permission] GroupManager hooked.
[16:57:21] [Server thread/INFO]: [Vault][Chat] GroupManager - Chat hooked.
[16:57:21] [Server thread/INFO]: [TuxTwoLib] Enabling TuxTwoLib v1.8.4-b6
[16:57:21] [Server thread/INFO]: [PauseChat] Enabling PauseChat v1.1-2
[16:57:21] [Server thread/INFO]: [PauseChat] Plugin has been enabled
[16:57:21] [Server thread/INFO]: [ChatTranslationPlus] Enabling ChatTranslationPlus v1.7
[16:57:21] [Server thread/WARN]: java.lang.ClassNotFoundException: net.minecraft.server.v1_8_R3.ChatSerializer
[16:57:21] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:91)
[16:57:21] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:86)
[16:57:21] [Server thread/WARN]:     at java.lang.ClassLoader.loadClass(Unknown Source)
[16:57:21] [Server thread/WARN]:     at java.lang.ClassLoader.loadClass(Unknown Source)
[16:57:21] [Server thread/WARN]:     at java.lang.Class.forName0(Native Method)
[16:57:21] [Server thread/WARN]:     at java.lang.Class.forName(Unknown Source)
[16:57:21] [Server thread/WARN]:     at me.ayush_03.chattranslationplus.Reflection.getNMSClass(Reflection.java:21)
[16:57:21] [Server thread/WARN]:     at me.ayush_03.chattranslationplus.TalkEvent.<clinit>(TalkEvent.java:23)
[16:57:21] [Server thread/WARN]:     at me.ayush_03.chattranslationplus.Main.onEnable(Main.java:22)
[16:57:21] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:321)
[16:57:21] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:340)
[16:57:21] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:405)
[16:57:21] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.CraftServer.loadPlugin(CraftServer.java:357)
[16:57:21] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.CraftServer.enablePlugins(CraftServer.java:317)
[16:57:21] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.s(MinecraftServer.java:414)
[16:57:21] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.k(MinecraftServer.java:378)
[16:57:21] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.a(MinecraftServer.java:333)
[16:57:21] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.DedicatedServer.init(DedicatedServer.java:263)
[16:57:21] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:525)
[16:57:21] [Server thread/WARN]:     at java.lang.Thread.run(Unknown Source)
[16:57:21] [Server thread/INFO]: [CClearChat] Enabling CClearChat v1.5
[16:57:21] [Server thread/INFO]: [AutomaticInventory] Enabling AutomaticInventory v2.2
[16:57:21] [Server thread/INFO]: AutomaticInventory: AutomaticInventory enabled.
[16:57:21] [Server thread/INFO]: [HorseTpWithMeBeta4] Enabling HorseTpWithMeBeta4 v1.2.7
[16:57:21] [Server thread/INFO]: [HorseTpWithMeBeta4] HorseTpWithMe is Enabled
[16:57:21] [Server thread/INFO]: [HorseTpWithMeBeta4] Congrats, HorseTpWithMe is working!
[16:57:21] [Server thread/INFO]: [NoteBlockAPI] Enabling NoteBlockAPI v1.1.0
[16:57:21] [Server thread/INFO]: [Backpacks] Enabling Backpacks v0.1.3
[16:57:21] [Server thread/INFO]: [Backpacks] Loading backpacks. Please wait...
[16:57:21] [Thread-10/INFO]: UUID of player pilchplays is acd74c68-1d35-4354-bd94-f8ed96490122
[16:57:21] [Server thread/INFO]: [Backpacks] 136 backpack(s) have been loaded.
[16:57:21] [Server thread/INFO]: [Backpacks] Backpacks has been enabled!
[16:57:21] [Server thread/INFO]: [LightAPI] Enabling LightAPI v1.4.2
[16:57:21] [Server thread/INFO]: <LightAPI>: Loading support for Spigot git-Spigot-76236cb-62a2169 (MC: 1.8.8)
[16:57:21] [Server thread/INFO]: [dynmap] Enabling dynmap v2.2-SNAPSHOT-1110
[16:57:21] [Server thread/INFO]: [dynmap] Using GroupManager 2.1.31 (Phoenix) for access control
[16:57:22] [Server thread/INFO]: [dynmap] Opening MySQL database localhost:3306/bruno as map store
[16:57:24] [Server thread/INFO]: [dynmap] Mod Support processing completed
[16:57:24] [Server thread/INFO]: [dynmap] Loaded 23 shaders.
[16:57:24] [Server thread/INFO]: [dynmap] Loaded 82 perspectives.
[16:57:24] [Server thread/INFO]: [dynmap] Loaded 14 lightings.
[16:57:43] [Thread-18/INFO]: UUID of player Ste3et_C0st is ff5f37d0-c1ea-4736-b6c3-ebbfdd67a810
[16:57:46] [Server thread/INFO]: [dynmap] Web server started on address 23.94.1.83:25666
[16:57:46] [Server thread/INFO]: [dynmap] version 2.2-SNAPSHOT-1110 is enabled - core version 2.2-SNAPSHOT-2048
[16:57:46] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'world'.
[16:57:46] [Server thread/INFO]: [dynmap] Loaded 132 pending tile renders for world 'world'
[16:57:46] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'world_nether'.
[16:57:46] [Server thread/INFO]: [dynmap] Loaded 3 pending tile renders for world 'world_nether'
[16:57:46] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'world_the_end'.
[16:57:46] [Server thread/INFO]: [dynmap] Enabled
[16:57:46] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v6.1;no_git_id
[16:57:47] [Server thread/INFO]: WEPIF: GroupManager detected! Using GroupManager for permissions.
[16:57:47] [Server thread/INFO]: [WorldEdit] Using com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_8_R3 as the Bukkit adapter
[16:57:47] [Server thread/INFO]: [BetterMcmmoStats] Enabling BetterMcmmoStats v1.2.1
[16:57:47] [Server thread/INFO]: BetterMcmmoStats Has Been Enabled!
[16:57:47] [Server thread/INFO]: [BetterBeds] Enabling BetterBeds v0.6.1-SNAPSHOT (build #4)
[16:57:47] [Server thread/INFO]: [Essentials] Enabling Essentials vTeamCity
[16:57:47] [Server thread/INFO]: Bukkit version format changed. Version not checked.
[16:57:47] [Server thread/INFO]: git-Spigot-76236cb-62a2169 (MC: 1.8.8)
[16:57:47] [Server thread/INFO]: 1.8.8-R0.1-SNAPSHOT
[16:57:47] [Server thread/INFO]: Using locale en_US
[16:57:47] [Server thread/INFO]: Using locale en_US
[16:57:47] [Server thread/INFO]: [Vault][Economy] Essentials Economy hooked.
[16:57:47] [Server thread/INFO]: Essentials: Using GroupManager based permissions.
[16:57:47] [Server thread/INFO]: [Lobby] Enabling Static_Particles v1.7
[16:57:47] [Server thread/INFO]: [BukkitCompat] Enabling BukkitCompat vR22A
[16:57:47] [Server thread/INFO]: McMyAdmin Compatibility Plugin version R22A started.
[16:57:47] [Server thread/INFO]: [Votifier] Enabling Votifier v1.0.7
[16:57:47] [Server thread/WARN]: [Votifier] No listeners loaded! Cannot find listener directory 'plugins\Votifier\listeners' 
[16:57:47] [Server thread/INFO]: [Votifier] Votifier enabled.
[16:57:47] [Server thread/INFO]: [Votifier] [BV] Shutting down the listener!
[16:57:47] [Server thread/INFO]: [Votifier] [BV] Init BVConfig.
[16:57:47] [Server thread/INFO]: [Votifier] [BV] Registered the PluginMessageListener.
[16:57:47] [Server thread/INFO]: [Votifier] [BV] Registered "BVotifier" as an incoming channel!
[16:57:47] [Server thread/INFO]: [MergedMob] Enabling MergedMob v3.1.0
[16:57:47] [Server thread/INFO]: [MergedMob] MergedMob version 3.1.0 is Enabled
[16:57:47] [Server thread/INFO]: [SimpleSignEdit] Enabling SimpleSignEdit v1.0.0
[16:57:47] [Server thread/INFO]: [SimpleSignEdit] [SimpleSignEdit] Plugin is loading..
[16:57:47] [Server thread/INFO]: [SimpleSignEdit] [SimpleSignEdit] Plugin loaded!
[16:57:47] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat vTeamCity
[16:57:47] [Server thread/INFO]: [BlocksHub] Enabling BlocksHub v1.2
[16:57:47] [Server thread/INFO]: [BlocksHub] Initializing access controllers
[16:57:47] [Server thread/INFO]: [BlocksHub] Initializing block loggers
[16:57:47] [Server thread/INFO]: [BlocksHub] Enabled
[16:57:47] [Server thread/INFO]: [SQLibrary] Enabling SQLibrary v7.1
[16:57:47] [Server thread/INFO]: SQLibrary loaded.
[16:57:47] [Server thread/INFO]: [Effect Library] Enabling EffectLib v3.4
[16:57:47] [Server thread/INFO]: [FerrisWheel] Enabling FerrisWheel v1.0
[16:57:47] [Server thread/INFO]: [GAListener] Enabling GAListener v1.3.1
[16:57:47] [Server thread/INFO]: [GAListener] GAListener v1.3.1 Enabled
[16:57:47] [Server thread/INFO]: [ToolRemains] Enabling ToolRemains v1.4
[16:57:47] [Server thread/INFO]: [lshp] Enabling lshp v1.0.0 Release
[16:57:47] [Server thread/INFO]: [EnjinMinecraftPlugin] Enabling EnjinMinecraftPlugin v2.7.2
[16:57:47] [Server thread/INFO]: [EnjinMinecraftPlugin] MC 1.3 or above found, enabling version 2 XP handling.
[16:57:47] [Server thread/INFO]: [EnjinMinecraftPlugin] MC 1.7.2 or above found, enabling version 2 log handling.
[16:57:47] [Server thread/INFO]: [EnjinMinecraftPlugin] MC 1.7.10 or above found, enabling version 2 player handling.
[16:57:47] [Server thread/INFO]: [Enjin Minecraft Plugin] Votifier plugin found, enabling Votifier support.
[16:57:47] [Server thread/INFO]: [Dynmap-Essentials] Enabling Dynmap-Essentials v0.80
[16:57:47] [Server thread/INFO]: [Dynmap-Essentials] initializing
[16:57:47] [Server thread/INFO]: [Dynmap-Essentials] version 0.80 is activated
[16:57:47] [Server thread/INFO]: [UltraCosmetics] Enabling UltraCosmetics vRelease 1.1.3
[16:57:47] [Server thread/INFO]: [UltraCosmetics] Failed to check for an update on spigot. 
[16:57:47] [Server thread/INFO]: ----------------------------
[16:57:47] [Server thread/INFO]:   NoteBlockAPI found! Using it!
[16:57:47] [Server thread/INFO]: ----------------------------
[16:57:48] [Server thread/INFO]: 
[16:57:48] [Server thread/INFO]: Morphs require Lib's Disguises!
[16:57:48] [Server thread/INFO]: 
[16:57:48] [Server thread/INFO]: Morphs are disabling..
[16:57:48] [Server thread/INFO]: 
[16:57:48] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v2.1.10
[16:57:48] [Server thread/INFO]: [HolographicDisplays] Found ProtocolLib, adding support for player relative variables.
[16:57:48] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v6.1
[16:57:48] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[16:57:48] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[16:57:48] [Server thread/INFO]: [WorldGuard] (world) Lava fire is blocked.
[16:57:48] [Server thread/INFO]: [WorldGuard] (world) All fire spread is disabled.
[16:57:48] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[16:57:48] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[16:57:48] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[16:57:48] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is blocked.
[16:57:48] [Server thread/INFO]: [WorldGuard] (world_nether) All fire spread is disabled.
[16:57:48] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[16:57:48] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[16:57:48] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[16:57:48] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is blocked.
[16:57:48] [Server thread/INFO]: [WorldGuard] (world_the_end) All fire spread is disabled.
[16:57:48] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[16:57:48] [Server thread/INFO]: [WorldGuard] Loading region data...
[16:57:48] [Server thread/INFO]: [WorldGuard] Database: jdbc:mysql://localhost/bruno (MySQL 5.6)
[16:57:49] [Server thread/INFO]: [WorldGuard] Current version of schema `bruno`: 2
[16:57:49] [Server thread/INFO]: [WorldGuard] Schema `bruno` is up to date. No migration necessary.
[16:57:49] [Server thread/INFO]: [BlocksHub-WorldGuard] Enabling BlocksHub-WorldGuard v1.2
[16:57:49] [Server thread/INFO]: [BlocksHub-WorldGuard] Enabled
[16:57:49] [Server thread/INFO]: [FurnitureLib] Enabling FurnitureLib v1.3.5
[16:57:49] [Server thread/INFO]: [FurnitureLib] ==========================================
[16:57:49] [Server thread/INFO]: [FurnitureLib] FurnitureLibary Version: 1.3.5
[16:57:49] [Server thread/INFO]: [FurnitureLib] Furniture Autor: Ste3et_C0st
[16:57:49] [Server thread/INFO]: [FurnitureLib] Furniture Website: http://dicecraft.de
[16:57:49] [Server thread/INFO]: [FurnitureLib] Furniture start load
[16:58:00] [Thread-27/INFO]: UUID of player pilchplays is acd74c68-1d35-4354-bd94-f8ed96490122
[16:58:08] [Server thread/INFO]: [FurnitureLib] FurnitureLib load 0 Objects from: MySQL Database
[16:58:08] [Server thread/INFO]: [FurnitureLib] Furniture load finish
[16:58:08] [Server thread/INFO]: [FurnitureLib] ==========================================
[16:58:08] [Server thread/INFO]: [EssentialsGeoIP] Enabling EssentialsGeoIP vTeamCity
[16:58:08] [Server thread/INFO]: [EssentialsGeoIP] This product includes GeoLite data created by MaxMind, available from http://www.maxmind.com/.
[16:58:08] [Server thread/INFO]: [MoneyFormat] Enabling MoneyFormat v1.1
[16:58:08] [Server thread/INFO]: [MoneyFormat] Plugin starting up...
[16:58:08] [Server thread/INFO]: [MoneyFormat] Sorting through player balances
[16:58:08] [Server thread/INFO]: [MoneyFormat] Enabling formatter
[16:58:08] [Server thread/INFO]: [MoneyFormat] Startup complete
[16:58:08] [Server thread/INFO]: [LibelulaLogger] Enabling LibelulaLogger v1.1.1 Release
[16:58:08] [Server thread/INFO]: [Dynmap-WorldGuard] Enabling Dynmap-WorldGuard v0.80
[16:58:08] [Server thread/INFO]: [Dynmap-WorldGuard] initializing
[16:58:08] [Server thread/INFO]: [Dynmap-WorldGuard] Custom flag 'dynmap-boost' not registered - WGCustomFlags not found
[16:58:08] [Server thread/INFO]: [Dynmap-WorldGuard] version 0.80 is activated
[16:58:08] [Server thread/INFO]: [SimpleClans] Enabling SimpleClans v2.5.5
[16:58:08] [Server thread/INFO]: [SimpleClans] MySQL Connection successful
[16:58:08] [Server thread/INFO]: [SimpleClans] Clans: 15
[16:58:08] [Server thread/INFO]: [SimpleClans] Clan players: 154
[16:58:08] [Server thread/INFO]: [SimpleClans] Version 2.5.5 loaded
[16:58:08] [Server thread/INFO]: [SimpleClans] Modo Multithreading: true
[16:58:08] [Server thread/INFO]: [SimpleClans] Modo BungeeCord: true
[16:58:08] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.16-SNAPSHOT (build 1267)
[16:58:08] [Server thread/INFO]: [AsyncWorldEdit] Enabling AsyncWorldEdit v3.2.2
[16:58:08] [Server thread/INFO]: [AsyncWorldEdit] PlotMeFix set to class org.primesoft.asyncworldedit.plotme.NullFix.
[16:58:08] [Server thread/INFO]: [AsyncWorldEditInjector] New class factory set to: org.primesoft.asyncworldedit.injector.async.AsyncClassFactory
[16:58:08] [Server thread/INFO]: [AsyncWorldEdit] You have the latest version of the plugin.
[16:58:08] [Server thread/INFO]: [AsyncWorldEdit] Enabled
[16:58:08] [Server thread/INFO]: [DragonSlayer] Enabling DragonSlayer v0.3.0
[16:58:08] [Server thread/INFO]: [DragonSlayer] Vault dependency found, rewards will be enabled!
[16:58:08] [Server thread/INFO]: [GlobalChestShop] Enabling GlobalChestShop v1.2.062
[16:58:08] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v13.0
[16:58:08] [Server thread/INFO]: GriefPrevention: Grief Prevention boot start.
[16:58:08] [Server thread/INFO]: GriefPrevention: Finished loading configuration.
[16:58:09] [Server thread/INFO]: GriefPrevention: 718 total claims loaded.
[16:58:09] [Server thread/INFO]: GriefPrevention: Customizable messages loaded.
[16:58:09] [Server thread/INFO]: GriefPrevention: Successfully hooked into WorldGuard.
[16:58:09] [Server thread/INFO]: GriefPrevention: Finished loading data (Database Mode).
[16:58:09] [Server thread/INFO]: GriefPrevention: GriefPrevention requires Vault for economy integration.
[16:58:09] [Server thread/INFO]: GriefPrevention: Attempting to load Vault...
[16:58:09] [Server thread/INFO]: GriefPrevention: Vault loaded successfully!
[16:58:09] [Server thread/INFO]: GriefPrevention: Looking for a Vault-compatible economy plugin...
[16:58:09] [Server thread/INFO]: GriefPrevention: Hooked into economy: Essentials Economy.
[16:58:09] [Server thread/INFO]: GriefPrevention: Ready to buy/sell claim blocks!
[16:58:09] [Server thread/INFO]: GriefPrevention: Boot finished.
[16:58:09] [Server thread/INFO]: [Bookshelves] Enabling Bookshelves v1.0.4
[16:58:09] [Server thread/INFO]: [Bookshelves] Found GriefPrevention plugin
[16:58:09] [Server thread/INFO]: [Bookshelves] Injected Bookshelf as container type into GriefPrevention
[16:58:09] [Server thread/INFO]: [Bookshelves] Metrics started
[16:58:09] [Server thread/INFO]: [DiceFurniture] Enabling DiceFurniture v2.4.3
[16:58:10] [Server thread/ERROR]: Error occurred while enabling DiceFurniture v2.4.3 (Is it up to date?)
java.lang.NullPointerException
    at de.Ste3et_C0st.Furniture.Objects.RPG.guillotine.setDefault(guillotine.java:94) ~[?:?]
    at de.Ste3et_C0st.Furniture.Objects.RPG.guillotine.<init>(guillotine.java:63) ~[?:?]
    at de.Ste3et_C0st.Furniture.Main.main.onEnable(main.java:154) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:321) ~[spigot.jar:git-Spigot-76236cb-62a2169]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:340) [spigot.jar:git-Spigot-76236cb-62a2169]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:405) [spigot.jar:git-Spigot-76236cb-62a2169]
    at org.bukkit.craftbukkit.v1_8_R3.CraftServer.loadPlugin(CraftServer.java:357) [spigot.jar:git-Spigot-76236cb-62a2169]
    at org.bukkit.craftbukkit.v1_8_R3.CraftServer.enablePlugins(CraftServer.java:317) [spigot.jar:git-Spigot-76236cb-62a2169]
    at net.minecraft.server.v1_8_R3.MinecraftServer.s(MinecraftServer.java:414) [spigot.jar:git-Spigot-76236cb-62a2169]
    at net.minecraft.server.v1_8_R3.MinecraftServer.k(MinecraftServer.java:378) [spigot.jar:git-Spigot-76236cb-62a2169]
    at net.minecraft.server.v1_8_R3.MinecraftServer.a(MinecraftServer.java:333) [spigot.jar:git-Spigot-76236cb-62a2169]
    at net.minecraft.server.v1_8_R3.DedicatedServer.init(DedicatedServer.java:263) [spigot.jar:git-Spigot-76236cb-62a2169]
    at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:525) [spigot.jar:git-Spigot-76236cb-62a2169]
    at java.lang.Thread.run(Unknown Source) [?:1.8.0_51]
[16:58:10] [Server thread/INFO]: [StockMarket] Enabling StockMarket v1.10.3
[16:58:10] [Server thread/INFO]: [StockMarket] Stock Market - Enabling...
[16:58:10] [Server thread/INFO]: [StockMarket] Stock Market - Registering commands...
[16:58:10] [Server thread/INFO]: [StockMarket] Stock Market - Registering listeners...
[16:58:10] [Server thread/INFO]: [StockMarket] Stock Market - Loading configuration...
[16:58:10] [Server thread/INFO]: [StockMarket] Stock Market - Connecting to database...
[16:58:10] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v1.8.6
[16:58:10] [Server thread/INFO]: [PlaceholderAPI] Player placeholders registered!
[16:58:10] [Server thread/INFO]: [PlaceholderAPI] Server placeholders registered!
[16:58:10] [Server thread/INFO]: [PlaceholderAPI] Javascript boolean placeholder %javascript_millionaire% has been loaded!
[16:58:10] [Server thread/INFO]: [PlaceholderAPI] Javascript boolean placeholder %javascript_is_staff% has been loaded!
[16:58:10] [Server thread/INFO]: [PlaceholderAPI] Javascript string placeholder %javascript_health_rounded% has been loaded!
[16:58:10] [Server thread/WARN]: [PlaceholderAPI] Javascript string placeholder staff_online is invalid!
[16:58:10] [Server thread/INFO]: [PlaceholderAPI] 3 Javascript placeholders registered!
[16:58:10] [Server thread/INFO]: [PlaceholderAPI] Spigot 1.8.3 Player statistic placeholders enabled!
[16:58:10] [Server thread/INFO]: [PlaceholderAPI] Hooked into BungeeCord for placeholders!
[16:58:10] [Server thread/INFO]: [PlaceholderAPI] Hooked into EnjinMinecraftPlugin for placeholders!
[16:58:10] [Server thread/INFO]: [PlaceholderAPI] Hooked into Essentials for placeholders!
[16:58:10] [Server thread/INFO]: [PlaceholderAPI] Hooked into GAListener for placeholders!
[16:58:10] [Server thread/INFO]: [PlaceholderAPI] Hooked into mcMMO for placeholders!
[16:58:10] [Server thread/INFO]: [PlaceholderAPI] Hooked into SimpleClans for placeholders!
[16:58:10] [Server thread/INFO]: [PlaceholderAPI] Hooked into Vault for economy placeholders!
[16:58:10] [Server thread/INFO]: [PlaceholderAPI] Hooked into Vault for permissions placeholders!
[16:58:10] [Server thread/INFO]: [PlaceholderAPI] 12 placeholder hooks successfully registered!
[16:58:10] [Server thread/INFO]: [GriefPrevention_Flags] Enabling GriefPrevention_Flags v3.1
[16:58:10] [Server thread/INFO]: GPFlags: Finished loading configuration.
[16:58:11] [Server thread/INFO]: GPFlags: Finished loading data.
[16:58:11] [Server thread/INFO]: GPFlags: Boot finished.
[16:58:11] [Server thread/INFO]: [Dynmap-GriefPrevention] Enabling Dynmap-GriefPrevention v0.80
[16:58:11] [Server thread/INFO]: [Dynmap-GriefPrevention] initializing
[16:58:11] [Server thread/INFO]: [Dynmap-GriefPrevention] version 0.80 is activated
[16:58:11] [Server thread/INFO]: [Denizen] Enabling Denizen v0.9.7-SNAPSHOT (build 404)
[16:58:11] [Server thread/INFO]: +> [Denizen] Initializing Denizen Core v1.10 (Build Unknown), 
                   implementation for Bukkit version 0.9.7-SNAPSHOT (build 404) 
[16:58:11] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[16:58:11] [Server thread/INFO]: +> [Denizen]  _/_ _  ._  _ _ 
[16:58:11] [Server thread/INFO]: +> [Denizen] (/(-/ )/ /_(-/ )  scriptable minecraft 
[16:58:11] [Server thread/INFO]: +> [Denizen]  
[16:58:11] [Server thread/INFO]: +> [Denizen] by: aufdemrand 
[16:58:11] [Server thread/INFO]: +> [Denizen] version: 0.9.7-SNAPSHOT (build 404) 
[16:58:11] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[16:58:11] [Server thread/INFO]:  ERROR! Null player 
                   CraftOfflinePlayer[UUID=c7887f20-1b4f-49c1-bec1-4abac1bfca5c] 
[16:58:11] [Server thread/INFO]:  ERROR! Null player 
                   CraftOfflinePlayer[UUID=bbdd3ab5-e0b2-446e-b691-fef3615702f5] 
[16:58:11] [Server thread/INFO]:  ERROR! Null player 
                   CraftOfflinePlayer[UUID=5c094634-0430-4b9e-99a7-6b329877c7ab] 
[16:58:11] [Server thread/INFO]:  ERROR! Null player 
                   CraftOfflinePlayer[UUID=9238f9fd-1f2e-4621-b1a2-cbd7e59dc177] 
[16:58:11] [Server thread/INFO]:  OKAY! Loaded core commands: [showfake, invisible, animate, 
                   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, 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] 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loading external dependencies for 
                   run-time compiler. 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] No dependencies to load or error loading 
                   dependencies: null 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loading plugins as dependencies for 
                   run-time compiler. 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  AsyncWorldEdit.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  AsyncWorldEditInjector.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  AutomaticInventory.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  Backpacks-0.1.3.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  Balance Formatter 1.1.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  BetterBeds.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  BetterMcmmoStats.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  BlocksHub-CoreProtect.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  BlocksHub-GriefPrevention.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  BlocksHub-WorldGuard.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  BlocksHub.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  Bookshelves_v1.0.4.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  Builder.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  BVotifier.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  CClearChat.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  ChatTranslationPlus.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  chestdrop-1.0-alpha-5.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  citizens-2.0.16-SNAPSHOT.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  citizensapi-2.0.16-SNAPSHOT.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  denizen-0.9.7-SNAPSHOT.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  Depenizen.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  DiceFurniture.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  DragonSlayer.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  DropVote.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  dynmap-2.2-alpha-2.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  Dynmap-Essentials-0.80.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  Dynmap-GriefPrevention-0.80.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  Dynmap-WorldGuard-0.80.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  EffectLib-3.4.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  EnjinMinecraftPlugin.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  Essentials-2.x-SNAPSHOT.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  EssentialsChat-2.x-SNAPSHOT.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  EssentialsGeoIP-2.x-SNAPSHOT.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  EssentialsGroupManager.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  FerrisWheel.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  FurnitureLib.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  GAListener.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  GlobalChestShop.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  GoldenLasso.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  GriefPrevention.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  GriefPreventionFlags.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  HolographicDisplays.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  HorseTpWithMeBeta4.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  LegendQuest.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  LibelulaLogger.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  LibelulaSimpleHorseProtect.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  LightAPI.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  MCMA_compat.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  mcMMO.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  MergedMob-release.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  NoteBlockAPI-1.1.0.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  PauseChat_1.1-2.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  PlaceholderAPI.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  ProtocolLib.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  sentry.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  SGM4_Undead_Players.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  SimpleClans.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  simplesignedit.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  SQLibrary-7.1.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  StaticParticles.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  StockMarket.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  ToolRemains.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  TuxTwoLib.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  UltraCosmetics.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  Vault.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  worldedit-bukkit-6.1.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  worldguard-6.1.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Attempting to add CraftBukkit as 
                   dependency for run-time compiler. 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  craftbukkit.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  LibelulaSimpleHorseProtect.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  minecraft_server.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  spigot.jar 
[16:58:11] [Server thread/INFO]: +> [RuntimeCompiler] Loaded  spigotold.jar 
[16:58:11] [Server thread/INFO]:  OKAY! Loaded core triggers: [CHAT, CLICK, PROXIMITY, DAMAGE] 
[16:58:11] [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] 
[16:58:11] [Server thread/INFO]: +> [Denizen] Registered: dBiome as b 
[16:58:11] [Server thread/INFO]: +> [Denizen] Registered: dChunk as ch 
[16:58:11] [Server thread/INFO]: +> [Denizen] Registered: dColor as co 
[16:58:11] [Server thread/INFO]: +> [Denizen] Registered: dCuboid as cu 
[16:58:11] [Server thread/INFO]: +> [Denizen] Registered: dEllipsoid as ellipsoid 
[16:58:11] [Server thread/INFO]: +> [Denizen] Registered: dEntity as e 
[16:58:11] [Server thread/INFO]: +> [Denizen] Registered: dInventory as in 
[16:58:11] [Server thread/INFO]: +> [Denizen] Registered: dItem as i 
[16:58:11] [Server thread/INFO]: +> [Denizen] Registered: dLocation as l 
[16:58:11] [Server thread/INFO]: +> [Denizen] Registered: dMaterial as m 
[16:58:11] [Server thread/INFO]: +> [Denizen] Registered: dNPC as n 
[16:58:11] [Server thread/INFO]: +> [Denizen] Registered: dPlayer as p 
[16:58:11] [Server thread/INFO]: +> [Denizen] Registered: dPlugin as pl 
[16:58:11] [Server thread/INFO]: +> [Denizen] Registered: dWorld as w 
[16:58:11] [Server thread/INFO]: +> [Denizen] Registered: CustomObject as custom 
[16:58:11] [Server thread/INFO]: +> [Denizen] Registered: dList as li 
[16:58:11] [Server thread/INFO]: +> [Denizen] Registered: dList as  fl 
[16:58:11] [Server thread/INFO]: +> [Denizen] Registered: dScript as s 
[16:58:11] [Server thread/INFO]: +> [Denizen] Registered: Element as el 
[16:58:11] [Server thread/INFO]: +> [Denizen] Registered: Duration as d 
[16:58:11] [Server thread/INFO]: +> [Denizen] Registered: ScriptQueue as q 
[16:58:11] [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] 
[16:58:12] [Server thread/INFO]: [LegendQuest] Enabling LegendQuest v1.9.7
[16:58:12] [Server thread/INFO]: [LegendQuest] The sky above the port was the color of television, tuned to a dead channel.
[16:58:12] [Server thread/INFO]: [LegendQuest] Vault detected.
[16:58:12] [Server thread/INFO]: [LegendQuest] WorldGuard detected. 6.1
[16:58:12] [Server thread/INFO]: [LegendQuest] Scanning for race files in folder: : plugins\LegendQuest\races
[16:58:12] [Server thread/INFO]: [LegendQuest] Found race: fantasy-dwarf.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Found race: fantasy-elf.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Found race: fantasy-half-elf.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Found race: fantasy-half-orc.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Found race: fantasy-hobbit.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Found race: fantasy-human.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Found race: fantasy-orc.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Found race: minecraft-ender.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Found race: minecraft-wither.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Found race: undecided.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Scanning for race files completed.
[16:58:12] [Server thread/INFO]: [LegendQuest] Scanning for class files in folder: : plugins\LegendQuest\classes
[16:58:12] [Server thread/INFO]: [LegendQuest] Found class: citizen.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Found class: fantasy-cleric.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Found class: fantasy-fighter.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Found class: fantasy-mage.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Found class: fantasy-ranger.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Found class: fantasy-rogue.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Found class: prof-architect.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Found class: prof-blacksmith.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Found class: prof-brewer.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Found class: prof-carpenter.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Found class: prof-engineer.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Found class: prof-farmer.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Found class: prof-merchant.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Found class: prof-miner.yml
[16:58:12] [Server thread/INFO]: [LegendQuest] Scanning for class files completed.
[16:58:12] [Server thread/INFO]: [LegendQuest] opening db...
[16:58:12] [Server thread/INFO]: [LegendQuest] PlaceholderAPI detected.
[16:58:12] [Server thread/INFO]: [LegendQuest] PlaceholderAPI handler registered!
[16:58:12] [Server thread/INFO]: [GoldenLasso] Enabling GoldenLasso v1.1
[16:58:12] [Server thread/INFO]: [GoldenLasso] Found block protection plugin(s): [WorldGuard, GriefPrevention]
[16:58:12] [Server thread/INFO]: [BlocksHub-GriefPrevention] Enabling BlocksHub-GriefPrevention v1.2
[16:58:12] [Server thread/INFO]: [BlocksHub-GriefPrevention] Enabled
[16:58:12] [Server thread/INFO]: [Builder] Enabling Builder v0.9.1
[16:58:12] [Server thread/INFO]: [Builder] Builder registered sucessfully with Denizen
[16:58:12] [Server thread/INFO]: [Sentry] Enabling Sentry v1.8.5
[16:58:12] [Server thread/INFO]: [Sentry] NPCDeath Triggers and DIE/LIVE command registered sucessfully with Denizen
[16:58:12] [Server thread/INFO]: [Sentry] Could not find or register with Towny
[16:58:12] [Server thread/INFO]: [Sentry] Could not find or register with Factions.
[16:58:12] [Server thread/INFO]: [Sentry] Could not find or register with War. 
[16:58:12] [Server thread/INFO]: [Sentry] Registered with SimpleClans sucessfully. The CLAN: target will function
[16:58:12] [Server thread/INFO]: [Depenizen] Enabling Depenizen v0.2.2 (build 268)
[16:58:12] [Server thread/INFO]: +> [Depenizen] Denizen hooked 
[16:58:12] [Server thread/INFO]: +> [Depenizen] mcMMO hooked, enabling add-ons. 
[16:58:12] [Server thread/INFO]: +> [Depenizen] BattleNight not found, add-ons will not enable. 
[16:58:12] [Server thread/INFO]: +> [Depenizen] Towny not found, add-ons will not enable. 
[16:58:12] [Server thread/INFO]: +> [Depenizen] Factions not found, add-ons will not enable. 
[16:58:12] [Server thread/INFO]: +> [Depenizen] Votifier hooked, enabling add-ons. 
[16:58:12] [Server thread/INFO]: +> [Depenizen] Jobs not found, add-ons will not enable. 
[16:58:12] [Server thread/INFO]: +> [Depenizen] Heroes not found, add-ons will not enable. 
[16:58:12] [Server thread/INFO]: +> [Depenizen] pvparena not found, add-ons will not enable. 
[16:58:12] [Server thread/INFO]: +> [Depenizen] Dynmap not found, add-ons will not enable. 
[16:58:12] [Server thread/INFO]: +> [Depenizen] WorldEdit hooked, enabling add-ons. 
[16:58:12] [Server thread/INFO]: +> [Depenizen] WorldGuard hooked, enabling add-ons. 
[16:58:12] [Server thread/INFO]: +> [Depenizen] Essentials hooked, enabling add-ons. 
[16:58:12] [Server thread/INFO]: +> [Depenizen] pvpstats not found, add-ons will not enable. 
[16:58:12] [Server thread/INFO]: +> [Depenizen] HyperConomy not found, add-ons will not enable. 
[16:58:12] [Server thread/INFO]: +> [Depenizen] SkillAPI not found, add-ons will not enable. 
[16:58:12] [Server thread/INFO]: +> [Depenizen] Prism not found, add-ons will not enable. 
[16:58:12] [Server thread/INFO]: +> [Depenizen] BungeeCord socket disabled in config, add-ons 
                   will not enable. 
[16:58:12] [Server thread/INFO]: +> [Denizen] Registered: WorldGuardRegion as region 
[16:58:12] [Server thread/INFO]:  OKAY! Added objects to the ObjectFetcher [region] 
[16:58:12] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[16:58:12] [Server thread/INFO]: Done (53.054s)! For help, type "help" or "?"
[16:58:12] [Server thread/INFO]: Starting GS4 status listener
[16:58:12] [Query Listener #1/INFO]: Query running on 23.94.1.83:25665
[16:58:12] [Server thread/INFO]: [FurnitureLib] Furniture Saved
[16:58:12] [Craft Scheduler Thread - 6/INFO]: [GAListener] Connection established!
[16:58:12] [Craft Scheduler Thread - 6/INFO]: [GAListener] Found database: bruno
[16:58:12] [Craft Scheduler Thread - 6/INFO]: [GAListener] Using database: bruno
[16:58:12] [Craft Scheduler Thread - 4/ERROR]: [LibelulaLogger] java.util.zip.ZipException: invalid stored block lengths
[16:58:12] [Craft Scheduler Thread - 4/ERROR]: [LibelulaLogger] Database will work with low performance.
[16:58:12] [Craft Scheduler Thread - 4/INFO]: [LibelulaLogger] MEODE Database loaded.
[16:58:12] [Craft Scheduler Thread - 6/INFO]: [GAListener] Loading queued votes
[16:58:12] [Craft Scheduler Thread - 6/INFO]: [GAListener] Loaded 43 queued votes
[16:58:12] [Thread-31/INFO]: [StockMarket] Stock Market - Updater - Checking for updates.
[16:58:12] [Server thread/INFO]: GroupManager - INFO - Bukkit Permissions Updated!
[16:58:12] [Server thread/INFO]: [Sentry] Registered sucessfully with Vault: 10 groups found. The GROUP: target will function
[16:58:12] [Server thread/ERROR]: [Citizens] The trait blacksmith failed to load for NPC ID: 59.
[16:58:13] [Server thread/INFO]: [Citizens] Loaded 73 NPCs.
[16:58:13] [Thread-31/INFO]: [StockMarket] Stock Market - Updater - Plugin is up-to-date.
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing outside scripts... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing unnamed script... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\BrunosRealmQuests.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\bruno_badspiderkey.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\bruno_bonusmine.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\bruno_buildchallenge.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\bruno_code_keypad.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\bruno_fluffybossroomdoor.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\bruno_fluffykeycode.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\bruno_pumpkingame.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\bruno_register.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\bruno_rufuspit.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\bruno_superstar.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\bruno_survival.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\bruno_swapinventory.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\bruno_ticketmaster.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\bruno_tnttrap.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\bruno_tnttrap2.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\bruno_warlordsoutpostarena.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\chat_ping_world.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\CUICommand.yml'... 
[16:58:13] [Thread-32/INFO]: UUID of player CorporalBruno is d0437f98-dc14-419e-ab16-a0a21b23c8b0
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\CustomArrowTypes.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\dontswear.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\first_time.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\icecave.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\interface\class.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\interface\enterGoogleTower.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\interface\exitHospital.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\interface\exitSurviveTower.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\interface\race.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\interface\stupidmenu.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\interface\subwayelevator.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\interface\TicketMaster.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\interface\WarlordsArena.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\interface\WarlordsArena2.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\interface\welcome.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\itemcommand.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\keangdavid_IDAD.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\public_farm_listener.yml'... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Processing '\warpsmenu.yml'... 
[16:58:13] [Server thread/INFO]:  OKAY! All scripts loaded! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script ICECAVE as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script BONUSMINE as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script BADSPIDERKEY2 as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script CUI_EDITTYPE as type INVENTORY 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script SUPERSTARSYMBOL as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script CUI_ENTERGOOGLETOWER as type 
                   INVENTORY 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script BADSPIDERKEY3 as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script BADSPIDERKEY as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script BUILTIN_LOAD_TESTER as type COMMAND 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script HOWTOREGISTER as type COMMAND 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script MININUKE_BPG_SHROOMCLOUD as type 
                   TASK 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script QUEST_1 as type BOOK 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script CUICOMMAND as type COMMAND 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script CUI_WARLORDSARENA2 as type 
                   INVENTORY 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script OPEN_BOOK as type TASK 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script CODE_BREAKER as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script QUEST_0 as type BOOK 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script COMBINE as type TASK 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script WARLORDSOUTPOSTARENA as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script CUIEDITSLOTS as type TASK 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script CHAT_PING_WORLD as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script FLUFFYBOSSROOMDOOR as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script SURVIVAL as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script PUBLIC_FARM_LISTENER as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script RUFUSPIT as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script FLUFFYKEYCODE as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script PUMPKINGAME as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script DONTSWEAR_COMMANDS as type COMMAND 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script CUI_RACE as type INVENTORY 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script FAST_ARROW as type ITEM 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script FIRST_JOIN_LISTENER as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script DONTSWEAR_MSG as type ITEM 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script SUPERIOR_BPG_ARROW as type ITEM 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script DONTSWEAR_LINEWRAP as type 
                   PROCEDURE 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script CUILISTENER as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script MININUKE_BPG_ARROW as type ITEM 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script FIRST_JOIN as type TASK 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script CUI_TICKETMASTER as type INVENTORY 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script QUEST_1_AIRSHIP_PASS as type BOOK 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script CUIYAMLSAVE as type TASK 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script ITEMCOMMAND as type COMMAND 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script CUI_DELETECONFIRM as type INVENTORY 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script DONTSWEAR as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script CODE_KEYPAD as type INVENTORY 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script IDAD as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script FIREWORK_ARROW_HANDLER_INTERNAL as 
                   type TASK 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script WARPS_COMMAND as type COMMAND 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script CUI_WARLORDSARENA as type INVENTORY 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script CUI_STUPIDMENU as type INVENTORY 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script BUILDCHALLENGE as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script DONTSWEAR_AUTHOR_BRUNO as type ITEM 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script WEAK_ARROW as type ITEM 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script SHOTBLAST_ARROW as type ITEM 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script STRONG_BPG_ARROW as type ITEM 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script SHARP_ARROW as type ITEM 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script FIREWORK_ARROW_DETERMINE_TYPE as 
                   type TASK 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script SWAPINVENTORY as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script CUI_CLASS as type INVENTORY 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script DETECTTRAPTNT2 as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script TICKETMASTER as type ASSIGNMENT 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script DETECTTRAPTNT1 as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script JONSNOBOSSROOM as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script WEAK_BPG_ARROW as type ITEM 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script CUI_SUBWAYELEVATOR as type 
                   INVENTORY 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script CUI_EXITSURVIVETOWER as type 
                   INVENTORY 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script CUI_EDIT as type INVENTORY 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script CUI_WELCOME as type INVENTORY 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script CUI_EDITCONFIRM as type INVENTORY 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script CUI_EXITHOSPITAL as type INVENTORY 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script FIREWORK_ARROW as type ITEM 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script FIREWORK_ARROW_WORLD as type WORLD 
[16:58:13] [Server thread/INFO]: +> [Denizen] Adding script BPG_BOW as type ITEM 
[16:58:13] [Server thread/INFO]: +> [Denizen] Scanning 25 world scripts... 
[16:58:13] [Server thread/INFO]: +> [CuboidEnterE...] Loaded Cuboid Enter & Exit SmartEvent. 
[16:58:13] [Server thread/INFO]: +> [Denizen] Reloading script events... 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, ReloadScripts matched for 'script 
                   reload'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters snowcover2'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters cavein'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters caveinexit'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters caveinleft'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters snowcover'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters caveinright'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters caveinchoose'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   exits bonusmine'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters bonusmine'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters badspiderkey2'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters badspiderkey3'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters badspiderkey'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters WarlordsArenaDoor'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   exits fluffybossroomdoor'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters opticjoffice'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   exits opticjoffice'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters spawn'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters googletower'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters fwizoffice'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   exits googletower'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   exits hospital'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   exits fwizoffice'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters rufusPit'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters fluffykeycode'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters snowmangame'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters snowmangamepumpkin'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters worldspawn'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   exits buildchallenge'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters buildchallenge'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters tnttrapplate2'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters traptntplate1'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BiomeEnterExit matched for 'player 
                   enters jonsnobossroom'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, BlockDispenses matched for 'block 
                   dispenses item'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, Chat matched for 'player chats'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, Chat matched for 'player chats'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, Chat matched for 'player chats'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks block in icecaveladder'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks crops,7 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks crops,1 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks crops,2 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks crops,0 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks crops,4 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks crops,3 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks crops,6 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks crops,5 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks block in snowmangame'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityBreaksHanging matched for 
                   'player breaks block in snowmangameglass'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityChangesBlock matched for 
                   'player changes gamemode to creative'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityChangesBlock matched for 
                   'player changes gamemode to survival'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityDamaged matched for 'arrow 
                   damages entity'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters snowcover2'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters cavein'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters caveinexit'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters caveinleft'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters snowcover'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters caveinright'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters caveinchoose'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters bonusmine'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters badspiderkey2'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters badspiderkey3'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters badspiderkey'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters WarlordsArenaDoor'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters opticjoffice'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters spawn'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters googletower'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters fwizoffice'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters rufusPit'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters fluffykeycode'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters snowmangame'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters snowmangamepumpkin'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters worldspawn'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters buildchallenge'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters tnttrapplate2'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters traptntplate1'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityEntersVehicle matched for 
                   'player enters jonsnobossroom'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityExitsVehicle matched for 
                   'player exits bonusmine'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityExitsVehicle matched for 
                   'player exits fluffybossroomdoor'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityExitsVehicle matched for 
                   'player exits opticjoffice'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityExitsVehicle matched for 
                   'player exits googletower'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityExitsVehicle matched for 
                   'player exits hospital'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityExitsVehicle matched for 
                   'player exits fwizoffice'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityExitsVehicle matched for 
                   'player exits buildchallenge'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, EntityShootsBow matched for 'player 
                   shoots bow'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks block in icecaveladder'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks crops,7 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks crops,1 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks crops,2 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks crops,0 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks crops,4 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks crops,3 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks crops,6 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks crops,5 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks block in snowmangame'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerBreaksBlock matched for 
                   'player breaks block in snowmangameglass'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks block in icecaveladder'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks crops,7 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks crops,1 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks crops,2 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks crops,0 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks crops,4 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks crops,3 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks crops,6 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks crops,5 in publicfarm001'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks block in snowmangame'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerItemBreak matched for 'player 
                   breaks block in snowmangameglass'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerChangesGamemode matched for 
                   'player changes gamemode to creative'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerChangesGamemode matched for 
                   'player changes gamemode to survival'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerClosesInv matched for 'player 
                   closes inventory'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerJoins matched for 'player 
                   joins'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerLogin matched for 'player 
                   login'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places block in icecaveladder'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places block in snowmangamepumpkin'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places block in snowmangameair'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerPlacesBlock matched for 
                   'player places block in snowmangame'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places block in icecaveladder'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places block in snowmangamepumpkin'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places block in snowmangameair'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, PlayerPlacesHanging matched for 
                   'player places block in snowmangame'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, ProjectileHits matched for 'player 
                   shoots bow'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, ProjectileHits matched for 
                   'projectile hits block'! 
[16:58:13] [Server thread/INFO]: +> [Denizen] Event match, VehicleDamaged matched for 'arrow 
                   damages entity'! 
[16:58:13] [Server thread/INFO]: +> [] +-------------------------+ 
[16:58:13] [Server thread/WARN]: [GlobalChestShop] **********************************************************
[16:58:13] [Server thread/WARN]: [GlobalChestShop] [ERROR] An error occurred while loading a shop from the database
[16:58:13] [Server thread/WARN]: [GlobalChestShop] [ERROR] An error occurred because a SIGN was not found at expected location.
[16:58:13] [Server thread/WARN]: [GlobalChestShop] [ERROR] Your world data seems to be divergent to the shops in your database!
[16:58:13] [Server thread/WARN]: [GlobalChestShop] [ERROR] If you have renamed your world, this was not a good idea! Contact the developer or rename it back
[16:58:13] [Server thread/WARN]: [GlobalChestShop] [ERROR] If you are running BungeeCord, make sure all worlds in your network have different names!
[16:58:13] [Server thread/WARN]: [GlobalChestShop] [ERROR] This error also appears when the server has crashed and your worlds were not saved correctly
[16:58:13] [Server thread/WARN]: [GlobalChestShop] [ERROR] The ID of the damaged shop is : 1, Owned by: CorporalBruno
[16:58:13] [Server thread/WARN]: [GlobalChestShop] [ERROR] The Location of the damaged shop is : world,-7381,69,-395
[16:58:13] [Server thread/WARN]: [GlobalChestShop] [ERROR] If you want to get rid of this error, type: "/GlobalChestShop debug 1" into the chat
[16:58:13] [Server thread/WARN]: [GlobalChestShop] [ERROR] You can also use the command "/GlobalChestShop debug next" if you have multiple  errors.
[16:58:13] [Server thread/WARN]: [GlobalChestShop] [ERROR] If this did not work, you have to edit the database manually and delete the shop with id: 1
[16:58:13] [Server thread/WARN]: [GlobalChestShop] [ERROR] If you get hundreds of errors like this, contact the developer
[16:58:13] [Server thread/WARN]: [GlobalChestShop] **********************************************************
[16:58:13] [Craft Scheduler Thread - 27/INFO]: [Vault] Checking for Updates ... 
[16:58:13] [Craft Scheduler Thread - 27/INFO]: [Vault] No new version available
[16:58:13] [Server thread/INFO]: com.mojang.authlib.GameProfile@6598089f[id=d0437f98-dc14-419e-ab16-a0a21b23c8b0,name=CorporalBruno,properties={textures=[com.mojang.authlib.properties.Property@c2d1816]},legacy=false] (/71.81.192.116:52819) lost connection: Disconnected
[16:58:13] [Server thread/INFO]: com.mojang.authlib.GameProfile@1606a80a[id=acd74c68-1d35-4354-bd94-f8ed96490122,name=pilchplays,properties={textures=[com.mojang.authlib.properties.Property@494988eb]},legacy=false] (/73.177.157.176:52824) lost connection: Disconnected
[16:58:13] [Server thread/INFO]: com.mojang.authlib.GameProfile@1110e565[id=ff5f37d0-c1ea-4736-b6c3-ebbfdd67a810,name=Ste3et_C0st,properties={textures=[com.mojang.authlib.properties.Property@144c6d1]},legacy=false] (/84.146.146.35:52828) lost connection: Disconnected
[16:58:14] [Server thread/INFO]: [SimpleClans] ClanPlayer Reloaded: pilchplays, UUID: acd74c68-1d35-4354-bd94-f8ed96490122
[16:58:14] [Server thread/INFO]:  Running script event 'PlayerJoins', event='player joins' for 
                   script 'FIRST_JOIN_LISTENER' 
[16:58:14] [Server thread/INFO]:  Starting InstantQueue 
                   'FIRST_JOIN_LISTENER_WillSallyCorner'... 
[16:58:14] [Server thread/INFO]:  Queue 'FIRST_JOIN_LISTENER_WillSallyCorner' Executing: WAIT 
                   "15s" 
[16:58:14] [Server thread/INFO]: +- Executing dCommand: WAIT/p@pilchplays ---------+ 
[16:58:14] [Server thread/INFO]: +> Executing 'WAIT': 
                   queue='FIRST_JOIN_LISTENER_WillSallyCorner'  delay='d@300t' 
[16:58:14] [Server thread/INFO]:  Forcing queue FIRST_JOIN_LISTENER_WillSallyCorner into a 
                   timed queue... 
[16:58:14] [Server thread/INFO]:  Completing queue 'FIRST_JOIN_LISTENER_WillSallyCorner' in 
                   0ms. 
[16:58:14] [Server thread/INFO]:  Starting TimedQueue 'FIRST_JOIN_LISTENER_WillSallyCorner'... 
[16:58:14] [Server thread/INFO]: pilchplays[/73.177.157.176:52850] logged in with entity id 53961 at ([world]-6759.5, 69.0, -1851.5)
[16:58:14] [Server thread/INFO]: [SimpleClans] ClanPlayer Reloaded: CorporalBruno, UUID: d0437f98-dc14-419e-ab16-a0a21b23c8b0
[16:58:14] [Server thread/INFO]:  Running script event 'PlayerJoins', event='player joins' for 
                   script 'FIRST_JOIN_LISTENER' 
[16:58:14] [Server thread/INFO]:  Starting InstantQueue 
                   'FIRST_JOIN_LISTENER_AssumingExistingLimiting'... 
[16:58:14] [Server thread/INFO]:  Queue 'FIRST_JOIN_LISTENER_AssumingExistingLimiting' 
                   Executing: WAIT "15s" 
[16:58:14] [Server thread/INFO]: +- Executing dCommand: WAIT/p@CorporalBruno ---------+ 
[16:58:14] [Server thread/INFO]: +> Executing 'WAIT': 
                   queue='FIRST_JOIN_LISTENER_AssumingExistingLimiting'  
                   delay='d@300t' 
[16:58:14] [Server thread/INFO]:  Forcing queue FIRST_JOIN_LISTENER_AssumingExistingLimiting 
                   into a timed queue... 
[16:58:14] [Server thread/INFO]:  Completing queue 
                   'FIRST_JOIN_LISTENER_AssumingExistingLimiting' in 0ms. 
[16:58:14] [Server thread/INFO]:  Starting TimedQueue 
                   'FIRST_JOIN_LISTENER_AssumingExistingLimiting'... 
[16:58:14] [Server thread/INFO]: [Essentials] Found new UUID for CorporalBruno. Replacing 48ca3aa2-b572-3980-a004-1ef3c4e26a79 with d0437f98-dc14-419e-ab16-a0a21b23c8b0
[16:58:14] [Server thread/INFO]: CorporalBruno[/71.81.192.116:52942] logged in with entity id 53963 at ([world]-6169.108659765081, 76.0, -455.2885511872527)
[16:58:14] [Craft Scheduler Thread - 27/INFO]: [GAListener] Player: pilchplays has 19 votes
[16:58:14] [Craft Scheduler Thread - 32/INFO]: [GAListener] Player: CorporalBruno has 65 votes
[16:58:14] [Dynmap Render Thread/INFO]: [dynmap] Loading default resource pack
[16:58:17] [Server thread/INFO]: [Bookshelves] Loading shelves...
[16:58:17] [Server thread/INFO]: [Bookshelves] Loaded 0 shelves.
[16:58:18] [Server thread/INFO]: [CONSOLE->pilchplays] Hey there, pilchplays!
[16:58:18] [Server thread/INFO]: [CONSOLE->pilchplays] Welcome to Bruno's Realm: Adventure SMP
[16:58:19] [Server thread/INFO]: [CONSOLE->CorporalBruno] Hey there, CorporalBruno!
[16:58:19] [Server thread/INFO]: [CONSOLE->CorporalBruno] Welcome to Bruno's Realm: Adventure SMP
[16:58:19] [Thread-44/INFO]: UUID of player Ste3et_C0st is ff5f37d0-c1ea-4736-b6c3-ebbfdd67a810
[16:58:19] [Server thread/INFO]:  Running script event 'PlayerJoins', event='player joins' for 
                   script 'FIRST_JOIN_LISTENER' 
[16:58:19] [Server thread/INFO]:  Starting InstantQueue 'FIRST_JOIN_LISTENER_VoidPlugThick'... 
[16:58:19] [Server thread/INFO]:  Queue 'FIRST_JOIN_LISTENER_VoidPlugThick' Executing: WAIT 
                   "15s" 
[16:58:19] [Server thread/INFO]: +- Executing dCommand: WAIT/p@Ste3et_C0st ---------+ 
[16:58:19] [Server thread/INFO]: +> Executing 'WAIT': queue='FIRST_JOIN_LISTENER_VoidPlugThick' 
                    delay='d@300t' 
[16:58:19] [Server thread/INFO]:  Forcing queue FIRST_JOIN_LISTENER_VoidPlugThick into a timed 
                   queue... 
[16:58:19] [Server thread/INFO]:  Completing queue 'FIRST_JOIN_LISTENER_VoidPlugThick' in 0ms. 
[16:58:19] [Server thread/INFO]:  Starting TimedQueue 'FIRST_JOIN_LISTENER_VoidPlugThick'... 
[16:58:19] [Server thread/INFO]: Ste3et_C0st[/84.146.146.35:52964] logged in with entity id 56106 at ([world]-6165.845567016058, 76.0, -461.4505503573136)
[16:58:19] [Craft Scheduler Thread - 4/INFO]: [GAListener] Player: Ste3et_C0st has 0 votes
[16:58:19] [Server thread/INFO]: [CONSOLE->Ste3et_C0st] Hey there, Ste3et_C0st!
[16:58:19] [Server thread/INFO]: [CONSOLE->Ste3et_C0st] Welcome to Bruno's Realm: Adventure SMP
[16:58:25] [Server thread/INFO]: Denizen: CorporalBruno mentions Ste3et_C0st
[16:58:25] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: wb Ste3et_C0st
[16:58:25] [Server thread/INFO]: pilchplays issued server command: /vanish
[16:58:26] [Server thread/INFO]: CorporalBruno issued server command: /vanish Ste3et_C0st
[16:58:29] [Server thread/INFO]: CorporalBruno issued server command: /vanish CorporalBruno
[16:58:29] [Server thread/INFO]:  Queue 'FIRST_JOIN_LISTENER_WillSallyCorner' Executing: IF 
                   "<player.has_permission[intro.complete].not>" "{" "-" "run" 
                   "first_join" "}" 
[16:58:29] [Server thread/INFO]: +- Executing dCommand: IF/p@pilchplays ---------+ 
[16:58:29] [Server thread/INFO]: +> Executing 'IF': use_braces='true' 
[16:58:29] [Server thread/INFO]:  Filled tag <player.has_permission[intro.complete].not> with 
                   'false'. 
[16:58:29] [Server thread/INFO]:  Completing queue 'FIRST_JOIN_LISTENER_WillSallyCorner' in 
                   15016ms. 
[16:58:29] [Server thread/INFO]:  Queue 'FIRST_JOIN_LISTENER_AssumingExistingLimiting' 
                   Executing: IF "<player.has_permission[intro.complete].not>" 
                   "{" "-" "run" "first_join" "}" 
[16:58:29] [Server thread/INFO]: +- Executing dCommand: IF/p@CorporalBruno ---------+ 
[16:58:29] [Server thread/INFO]: +> Executing 'IF': use_braces='true' 
[16:58:29] [Server thread/INFO]:  Filled tag <player.has_permission[intro.complete].not> with 
                   'false'. 
[16:58:29] [Server thread/INFO]:  Completing queue 
                   'FIRST_JOIN_LISTENER_AssumingExistingLimiting' in 15009ms. 
[16:58:31] [Server thread/INFO]: CorporalBruno issued server command: /vanish pilchplays
[16:58:32] [Server thread/INFO]: CorporalBruno issued server command: /vanish pilchplays
[16:58:34] [Server thread/INFO]:  Queue 'FIRST_JOIN_LISTENER_VoidPlugThick' Executing: IF 
                   "<player.has_permission[intro.complete].not>" "{" "-" "run" 
                   "first_join" "}" 
[16:58:34] [Server thread/INFO]: +- Executing dCommand: IF/p@Ste3et_C0st ---------+ 
[16:58:34] [Server thread/INFO]: +> Executing 'IF': use_braces='true' 
[16:58:34] [Server thread/INFO]:  Filled tag <player.has_permission[intro.complete].not> with 
                   'false'. 
[16:58:34] [Server thread/INFO]:  Completing queue 'FIRST_JOIN_LISTENER_VoidPlugThick' in 
                   15026ms. 
[16:58:35] [Server thread/INFO]: Ste3et_C0st issued server command: /gamemode 1
[16:58:36] [Server thread/INFO]:  ERROR! 
                   'in@player[holder=p@ff5f37d0-c1ea-4736-b6c3-ebbfdd67a810]' is 
                   an unknown argument! 
[16:58:36] [Server thread/INFO]:  ERROR! Value of dInventory returning null. Invalid dInventory 
                   specified: in@Ste3et_C0st_creative 
[16:58:36] [Server thread/INFO]:  ERROR in script 'SWAPINVENTORY'! Missing origin argument! 
[16:58:36] [Server thread/INFO]:  ERROR in script 'SWAPINVENTORY'! Tag 
                   <player.flag[e_creative]> is invalid! 
[16:58:36] [Server thread/INFO]: +> [dItem] Does not match a valid item ID or material: null 
[16:58:36] [Server thread/INFO]: +> [dItem] valueOf dItem returning null: null 
[16:58:36] [Server thread/INFO]:  ERROR in script 'SWAPINVENTORY'! Woah!! An exception has been 
                   called with this command! 
[16:58:36] [Server thread/INFO]:  ERROR in script 'SWAPINVENTORY'! Internal exception was 
                   thrown! 
[16:58:36] [Server thread/WARN]: java.lang.NullPointerException
[16:58:36] [Server thread/WARN]:     at net.aufdemrand.denizen.objects.properties.entity.EntityEquipment.adjust(EntityEquipment.java:171)
[16:58:36] [Server thread/WARN]:     at net.aufdemrand.denizen.objects.dEntity.adjust(dEntity.java:2542)
[16:58:36] [Server thread/WARN]:     at net.aufdemrand.denizen.objects.dPlayer.adjust(dPlayer.java:2587)
[16:58:36] [Server thread/WARN]:     at net.aufdemrand.denizen.scripts.commands.core.AdjustCommand.execute(AdjustCommand.java:96)
[16:58:36] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.commands.CommandExecuter.execute(CommandExecuter.java:234)
[16:58:36] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.ScriptEngine.revolve(ScriptEngine.java:52)
[16:58:36] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.ScriptQueue.revolve(ScriptQueue.java:661)
[16:58:36] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.core.TimedQueue.access$000(TimedQueue.java:12)
[16:58:36] [Server thread/WARN]:     at net.aufdemrand.denizencore.scripts.queues.core.TimedQueue$1.run(TimedQueue.java:151)
[16:58:36] [Server thread/WARN]:     at net.aufdemrand.denizencore.utilities.scheduling.RepeatingSchedulable.tick(RepeatingSchedulable.java:20)
[16:58:36] [Server thread/WARN]:     at net.aufdemrand.denizencore.DenizenCore.tick(DenizenCore.java:151)
[16:58:36] [Server thread/WARN]:     at net.aufdemrand.denizen.Denizen$2.run(Denizen.java:832)
[16:58:36] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftTask.run(CraftTask.java:71)
[16:58:36] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:350)
[16:58:36] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:723)
[16:58:36] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374)
[16:58:36] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654)
[16:58:36] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557)
[16:58:36] [Server thread/WARN]:     at java.lang.Thread.run(Unknown Source)
[16:58:36] [Server thread/INFO]: +> [Denizen] (Attempted: ADJUST "<player>" 
                   "equipment:<player.flag[e_creative]>") 
[16:58:46] [Server thread/INFO]: Ste3et_C0st issued server command: /furnture debug
[16:58:51] [Server thread/INFO]: Chillville: Administrator: pilchplays[e|䢉]: going to ask for a bit more. Some randomness in the angle at which the catapult shoots would be good
[16:58:52] [Server thread/INFO]: Ste3et_C0st issued server command: /furniture
[16:59:00] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: i listed that
[16:59:06] [Server thread/INFO]: Ste3et_C0st issued server command: /furniture debug
[16:59:21] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: any christmas furniture ideas throw em out
[16:59:27] [Server thread/INFO]: Ste3et_C0st issued server command: /furniture remove YX0I0UMT8i
[16:59:39] [Server thread/INFO]: Denizen: CorporalBruno mentions Ste3et_C0st
[16:59:39] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: what do you think Ste3et_C0st
[16:59:49] [Server thread/INFO]: CorporalBruno issued server command: /ignoreclaims
[16:59:59] [Server thread/INFO]: pilchplays lost connection: Disconnected
[17:00:00] [Server thread/INFO]: Saving...
[17:00:00] [Server thread/INFO]: Saved the world
[17:00:01] [Server thread/INFO]: CorporalBruno issued server command: /warp glitch2
[17:00:03] [Server thread/INFO]: Builder: Ste3et_C0st[O|⚔]: it was only ont table but the color was wrong -.-
[17:00:06] [Server thread/INFO]: CorporalBruno issued server command: /tp Ste3et_C0st CorporalBruno
[17:00:22] [Server thread/INFO]: Ste3et_C0st issued server command: /furniture debug
[17:00:34] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: its like it places 3 or more items
[17:00:47] [Thread-57/INFO]: UUID of player pilchplays is acd74c68-1d35-4354-bd94-f8ed96490122
[17:00:47] [Server thread/INFO]: [SimpleClans] ClanPlayer Reloaded: pilchplays, UUID: acd74c68-1d35-4354-bd94-f8ed96490122
[17:00:47] [Server thread/INFO]:  Running script event 'PlayerJoins', event='player joins' for 
                   script 'FIRST_JOIN_LISTENER' 
[17:00:47] [Server thread/INFO]:  Starting InstantQueue 
                   'FIRST_JOIN_LISTENER_DenizenPartnerMinecraft'... 
[17:00:47] [Server thread/INFO]:  Queue 'FIRST_JOIN_LISTENER_DenizenPartnerMinecraft' 
                   Executing: WAIT "15s" 
[17:00:47] [Server thread/INFO]: +- Executing dCommand: WAIT/p@pilchplays ---------+ 
[17:00:47] [Server thread/INFO]: +> Executing 'WAIT': 
                   queue='FIRST_JOIN_LISTENER_DenizenPartnerMinecraft'  
                   delay='d@300t' 
[17:00:47] [Server thread/INFO]:  Forcing queue FIRST_JOIN_LISTENER_DenizenPartnerMinecraft 
                   into a timed queue... 
[17:00:47] [Server thread/INFO]:  Completing queue 
                   'FIRST_JOIN_LISTENER_DenizenPartnerMinecraft' in 0ms. 
[17:00:47] [Server thread/INFO]:  Starting TimedQueue 
                   'FIRST_JOIN_LISTENER_DenizenPartnerMinecraft'... 
[17:00:47] [Server thread/INFO]: pilchplays[/73.177.157.176:52994] logged in with entity id 59521 at ([world]-6816.043983807825, 64.5, -1844.4650385691284)
[17:00:47] [Craft Scheduler Thread - 4/INFO]: [GAListener] Player: pilchplays has 19 votes
[17:00:47] [Server thread/INFO]: [CONSOLE->pilchplays] Hey there, pilchplays!
[17:00:47] [Server thread/INFO]: [CONSOLE->pilchplays] Welcome to Bruno's Realm: Adventure SMP
[17:00:49] [Thread-65/INFO]: UUID of player KeangDavid is 2b2dd57d-97f9-4a3c-8788-acae64ed9d0c
[17:00:49] [Server thread/INFO]:  Running script event 'PlayerJoins', event='player joins' for 
                   script 'FIRST_JOIN_LISTENER' 
[17:00:49] [Server thread/INFO]:  Starting InstantQueue 
                   'FIRST_JOIN_LISTENER_WebsiteWorcesterManually'... 
[17:00:49] [Server thread/INFO]:  Queue 'FIRST_JOIN_LISTENER_WebsiteWorcesterManually' 
                   Executing: WAIT "15s" 
[17:00:49] [Server thread/INFO]: +- Executing dCommand: WAIT/p@KeangDavid ---------+ 
[17:00:49] [Server thread/INFO]: +> Executing 'WAIT': 
                   queue='FIRST_JOIN_LISTENER_WebsiteWorcesterManually'  
                   delay='d@300t' 
[17:00:49] [Server thread/INFO]:  Forcing queue FIRST_JOIN_LISTENER_WebsiteWorcesterManually 
                   into a timed queue... 
[17:00:49] [Server thread/INFO]:  Completing queue 
                   'FIRST_JOIN_LISTENER_WebsiteWorcesterManually' in 0ms. 
[17:00:49] [Server thread/INFO]:  Starting TimedQueue 
                   'FIRST_JOIN_LISTENER_WebsiteWorcesterManually'... 
[17:00:49] [Server thread/INFO]: KeangDavid[/67.185.26.9:52999] logged in with entity id 60223 at ([world]-6390.63241549916, 77.98294036757694, -750.5937675694026)
[17:00:49] [Craft Scheduler Thread - 22/INFO]: [GAListener] Player: KeangDavid has 0 votes
[17:00:50] [Server thread/INFO]: [CONSOLE->KeangDavid] Hey there, KeangDavid!
[17:00:50] [Server thread/INFO]: [CONSOLE->KeangDavid] Welcome to Bruno's Realm: Adventure SMP
[17:00:50] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: you place one sofa but really 3 are ther
[17:00:52] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: there*
[17:01:00] [Server thread/INFO]: pilchplays issued server command: /gamemode 0
[17:01:00] [Server thread/INFO]:  ERROR! 
                   'in@player[holder=p@acd74c68-1d35-4354-bd94-f8ed96490122]' is 
                   an unknown argument! 
[17:01:02] [Server thread/INFO]:  Queue 'FIRST_JOIN_LISTENER_DenizenPartnerMinecraft' 
                   Executing: IF "<player.has_permission[intro.complete].not>" 
                   "{" "-" "run" "first_join" "}" 
[17:01:02] [Server thread/INFO]: +- Executing dCommand: IF/p@pilchplays ---------+ 
[17:01:02] [Server thread/INFO]: +> Executing 'IF': use_braces='true' 
[17:01:02] [Server thread/INFO]:  Filled tag <player.has_permission[intro.complete].not> with 
                   'false'. 
[17:01:02] [Server thread/INFO]:  Completing queue 
                   'FIRST_JOIN_LISTENER_DenizenPartnerMinecraft' in 15043ms. 
[17:01:04] [Server thread/INFO]: KeangDavid issued server command: /gm 1
[17:01:04] [Server thread/INFO]:  Queue 'FIRST_JOIN_LISTENER_WebsiteWorcesterManually' 
                   Executing: IF "<player.has_permission[intro.complete].not>" 
                   "{" "-" "run" "first_join" "}" 
[17:01:04] [Server thread/INFO]: +- Executing dCommand: IF/p@KeangDavid ---------+ 
[17:01:04] [Server thread/INFO]: +> Executing 'IF': use_braces='true' 
[17:01:04] [Server thread/INFO]:  Filled tag <player.has_permission[intro.complete].not> with 
                   'false'. 
[17:01:04] [Server thread/INFO]:  Completing queue 
                   'FIRST_JOIN_LISTENER_WebsiteWorcesterManually' in 15040ms. 
[17:01:04] [Server thread/INFO]:  ERROR! 
                   'in@player[holder=p@2b2dd57d-97f9-4a3c-8788-acae64ed9d0c]' is 
                   an unknown argument! 
[17:01:25] [Server thread/INFO]: pilchplays issued server command: /vanish
[17:01:27] [Server thread/INFO]: found book: QuestBook
[17:01:36] [Server thread/INFO]: found book: QuestBook
[17:01:37] [Server thread/INFO]: found book: null
[17:01:37] [Server thread/ERROR]: Could not pass event PlayerItemHeldEvent to LegendQuest v1.9.7
org.bukkit.event.EventException
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot.jar:git-Spigot-76236cb-62a2169]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62) ~[spigot.jar:git-Spigot-76236cb-62a2169]
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:502) [spigot.jar:git-Spigot-76236cb-62a2169]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:487) [spigot.jar:git-Spigot-76236cb-62a2169]
    at net.minecraft.server.v1_8_R3.PlayerConnection.a(PlayerConnection.java:931) [spigot.jar:git-Spigot-76236cb-62a2169]
    at net.minecraft.server.v1_8_R3.PacketPlayInHeldItemSlot.a(SourceFile:30) [spigot.jar:git-Spigot-76236cb-62a2169]
    at net.minecraft.server.v1_8_R3.PacketPlayInHeldItemSlot.a(SourceFile:8) [spigot.jar:git-Spigot-76236cb-62a2169]
    at net.minecraft.server.v1_8_R3.PlayerConnectionUtils$1.run(SourceFile:13) [spigot.jar:git-Spigot-76236cb-62a2169]
    at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) [?:1.8.0_51]
    at java.util.concurrent.FutureTask.run(Unknown Source) [?:1.8.0_51]
    at net.minecraft.server.v1_8_R3.SystemUtils.a(SourceFile:44) [spigot.jar:git-Spigot-76236cb-62a2169]
    at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:715) [spigot.jar:git-Spigot-76236cb-62a2169]
    at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374) [spigot.jar:git-Spigot-76236cb-62a2169]
    at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654) [spigot.jar:git-Spigot-76236cb-62a2169]
    at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557) [spigot.jar:git-Spigot-76236cb-62a2169]
    at java.lang.Thread.run(Unknown Source) [?:1.8.0_51]
Caused by: java.lang.NullPointerException
    at me.sablednah.legendquest.listeners.PlayerEvents.onPlayerItemHeldEvent(PlayerEvents.java:384) ~[?:?]
    at sun.reflect.GeneratedMethodAccessor299.invoke(Unknown Source) ~[?:?]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_51]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_51]
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot.jar:git-Spigot-76236cb-62a2169]
    ... 15 more
[17:01:37] [Thread-71/INFO]: UUID of player SashaAnn is f1e9ee91-02aa-45b9-a786-cc7e877de541
[17:01:37] [Server thread/INFO]: [SimpleClans] ClanPlayer Reloaded: SashaAnn, UUID: f1e9ee91-02aa-45b9-a786-cc7e877de541
[17:01:37] [Server thread/INFO]:  Running script event 'PlayerJoins', event='player joins' for 
                   script 'FIRST_JOIN_LISTENER' 
[17:01:37] [Server thread/INFO]:  Starting InstantQueue 'FIRST_JOIN_LISTENER_MineWallDried'... 
[17:01:37] [Server thread/INFO]:  Queue 'FIRST_JOIN_LISTENER_MineWallDried' Executing: WAIT 
                   "15s" 
[17:01:37] [Server thread/INFO]: +- Executing dCommand: WAIT/p@SashaAnn ---------+ 
[17:01:37] [Server thread/INFO]: +> Executing 'WAIT': queue='FIRST_JOIN_LISTENER_MineWallDried' 
                    delay='d@300t' 
[17:01:37] [Server thread/INFO]:  Forcing queue FIRST_JOIN_LISTENER_MineWallDried into a timed 
                   queue... 
[17:01:37] [Server thread/INFO]:  Completing queue 'FIRST_JOIN_LISTENER_MineWallDried' in 0ms. 
[17:01:37] [Server thread/INFO]:  Starting TimedQueue 'FIRST_JOIN_LISTENER_MineWallDried'... 
[17:01:37] [Server thread/INFO]: SashaAnn[/80.42.196.228:53009] logged in with entity id 62610 at ([world]-11865.759298932871, 82.0, 3886.1605008665206)
[17:01:37] [Craft Scheduler Thread - 22/INFO]: [GAListener] Player: SashaAnn has 123 votes
[17:01:37] [Server thread/INFO]: SashaAnn joined the game
[17:01:38] [Server thread/INFO]: [CONSOLE->SashaAnn] Hey there, SashaAnn!
[17:01:38] [Server thread/INFO]: [CONSOLE->SashaAnn] Welcome to Bruno's Realm: Adventure SMP
[17:01:42] [Server thread/INFO]: Denizen: CorporalBruno mentions SashaAnn
[17:01:42] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: wb SashaAnn
[17:01:45] [Server thread/INFO]: CreativePals: Apprentice: SashaAnn[E|⚔]: ty
[17:01:52] [Server thread/INFO]:  Queue 'FIRST_JOIN_LISTENER_MineWallDried' Executing: IF 
                   "<player.has_permission[intro.complete].not>" "{" "-" "run" 
                   "first_join" "}" 
[17:01:52] [Server thread/INFO]: +- Executing dCommand: IF/p@SashaAnn ---------+ 
[17:01:52] [Server thread/INFO]: +> Executing 'IF': use_braces='true' 
[17:01:52] [Server thread/INFO]:  Filled tag <player.has_permission[intro.complete].not> with 
                   'false'. 
[17:01:52] [Server thread/INFO]:  Completing queue 'FIRST_JOIN_LISTENER_MineWallDried' in 
                   15044ms. 
[17:02:16] [Server thread/INFO]: found book: QuestBook
[17:02:17] [Server thread/INFO]: found book: QuestBook
[17:02:35] [Server thread/INFO]: pilchplays issued server command: /signedit
[17:02:39] [Craft Scheduler Thread - 37/INFO]: [LibelulaLogger] New sign placed: pilchplays -6767 71 -1849 (world) "" "Creative Build" "Supplies" "" 
[17:02:49] [Server thread/INFO]: found book: QuestBook
[17:02:57] [Server thread/INFO]: pilchplays issued server command: /gamemode 1
[17:02:57] [Server thread/INFO]:  ERROR! 
                   'in@player[holder=p@acd74c68-1d35-4354-bd94-f8ed96490122]' is 
                   an unknown argument! 
[17:03:10] [Server thread/INFO]: pilchplays issued server command: /gamemode 0
[17:03:11] [Server thread/INFO]:  ERROR! 
                   'in@player[holder=p@acd74c68-1d35-4354-bd94-f8ed96490122]' is 
                   an unknown argument! 
[17:03:12] [Server thread/INFO]: found book: QuestBook
[17:03:30] [Server thread/INFO]: found book: QuestBook
[17:03:38] [Server thread/INFO]: Builder: Ste3et_C0st[O|⚔]: then an furniture was loadet from the Database it becomes an finish marker and the plugin
[17:03:40] [Server thread/INFO]: found book: QuestBook
[17:03:42] [Server thread/INFO]: pilchplays issued server command: /gamemode 1
[17:03:42] [Server thread/INFO]:  ERROR! 
                   'in@player[holder=p@acd74c68-1d35-4354-bd94-f8ed96490122]' is 
                   an unknown argument! 
[17:03:43] [Server thread/INFO]: found book: QuestBook
[17:03:43] [Server thread/INFO]: found book: QuestBook
[17:03:49] [Server thread/INFO]: found book: QuestBook
[17:03:50] [Server thread/INFO]: Builder: Ste3et_C0st[O|⚔]: DiceFurniture deos not place an new one Furniture
[17:04:15] [Server thread/INFO]: Denizen: CorporalBruno mentions Ste3et_C0st
[17:04:15] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: that was hard to understand Ste3et_C0st
[17:04:26] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: would you like to tell me in german?
[17:04:27] [Server thread/INFO]: found book: QuestBook
[17:05:01] [Server thread/INFO]: KeangDavid lost connection: Disconnected
[17:05:02] [Server thread/INFO]: CorporalBruno issued server command: /time day
[17:05:23] [Server thread/INFO]: Builder: Ste3et_C0st[O|⚔]: The Plugin FurnitureLib deos onDisable save the Furniture(sofy,chair,....) in the Database
[17:05:31] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: ok
[17:05:39] [Thread-79/INFO]: UUID of player KeangDavid is 2b2dd57d-97f9-4a3c-8788-acae64ed9d0c
[17:05:39] [Server thread/INFO]:  Running script event 'PlayerJoins', event='player joins' for 
                   script 'FIRST_JOIN_LISTENER' 
[17:05:39] [Server thread/INFO]:  Starting InstantQueue 
                   'FIRST_JOIN_LISTENER_BurstHearingsScenic'... 
[17:05:39] [Server thread/INFO]:  Queue 'FIRST_JOIN_LISTENER_BurstHearingsScenic' Executing: 
                   WAIT "15s" 
[17:05:39] [Server thread/INFO]: +- Executing dCommand: WAIT/p@KeangDavid ---------+ 
[17:05:39] [Server thread/INFO]: +> Executing 'WAIT': 
                   queue='FIRST_JOIN_LISTENER_BurstHearingsScenic'  
                   delay='d@300t' 
[17:05:39] [Server thread/INFO]:  Forcing queue FIRST_JOIN_LISTENER_BurstHearingsScenic into a 
                   timed queue... 
[17:05:39] [Server thread/INFO]:  Completing queue 'FIRST_JOIN_LISTENER_BurstHearingsScenic' in 
                   0ms. 
[17:05:39] [Server thread/INFO]:  Starting TimedQueue 
                   'FIRST_JOIN_LISTENER_BurstHearingsScenic'... 
[17:05:39] [Server thread/INFO]: KeangDavid[/67.185.26.9:53035] logged in with entity id 68769 at ([world]-6449.300000011921, 90.0, -741.6999999880791)
[17:05:39] [Craft Scheduler Thread - 42/INFO]: [GAListener] Player: KeangDavid has 0 votes
[17:05:39] [Server thread/INFO]: [CONSOLE->KeangDavid] Hey there, KeangDavid!
[17:05:39] [Server thread/INFO]: [CONSOLE->KeangDavid] Welcome to Bruno's Realm: Adventure SMP
[17:05:47] [Server thread/INFO]: KeangDavid issued server command: /sethome
[17:05:54] [Server thread/INFO]: KeangDavid issued server command: /etp CorporalBruno
[17:05:54] [Server thread/INFO]:  Queue 'FIRST_JOIN_LISTENER_BurstHearingsScenic' Executing: IF 
                   "<player.has_permission[intro.complete].not>" "{" "-" "run" 
                   "first_join" "}" 
[17:05:54] [Server thread/INFO]: +- Executing dCommand: IF/p@KeangDavid ---------+ 
[17:05:54] [Server thread/INFO]: +> Executing 'IF': use_braces='true' 
[17:05:54] [Server thread/INFO]:  Filled tag <player.has_permission[intro.complete].not> with 
                   'false'. 
[17:05:54] [Server thread/INFO]:  Completing queue 'FIRST_JOIN_LISTENER_BurstHearingsScenic' in 
                   15034ms. 
[17:06:03] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: so its getting stuck with onDisable
[17:06:06] [Server thread/INFO]: pilchplays issued server command: //sp area 5
[17:06:16] [Server thread/INFO]: KeangDavid issued server command: /v
[17:06:17] [Server thread/INFO]: [AsyncWorldEdit] [GC] Free memory: 347MB, collecting...
[17:06:18] [Server thread/INFO]: [AsyncWorldEdit] [GC] ...time: 949ms    free memory: 1520MB.
[17:06:22] [Server thread/INFO]: Builder: Ste3et_C0st[O|⚔]: And in the onenable the Plugin load all Furnitures from the Database and give him an AlreadyLoade
[17:06:23] [Server thread/INFO]: Denizen: CorporalBruno mentions Ste3et_C0st
[17:06:23] [Server thread/INFO]: Denizen: CorporalBruno mentions KeangDavid
[17:06:23] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: hi KeangDavid meet Ste3et_C0st the furniture dev
[17:06:30] [Server thread/INFO]: Administrator: Keang[O|䢉]: howdy
[17:06:36] [Server thread/INFO]: KeangDavid issued server command: /gm 3
[17:06:42] [Server thread/INFO]: pilchplays issued server command: //
[17:06:48] [Server thread/INFO]: pilchplays issued server command: /gamemode 0
[17:06:48] [Server thread/INFO]:  ERROR! 
                   'in@player[holder=p@acd74c68-1d35-4354-bd94-f8ed96490122]' is 
                   an unknown argument! 
[17:06:53] [Server thread/INFO]: KeangDavid issued server command: /gm 1
[17:06:53] [Server thread/INFO]:  ERROR! 
                   'in@player[holder=p@2b2dd57d-97f9-4a3c-8788-acae64ed9d0c]' is 
                   an unknown argument! 
[17:06:55] [Server thread/INFO]: Builder: Ste3et_C0st[O|⚔]: Marker the DiceFurniture read the Object id and deos not spawn an new Chair,Sofa,....
[17:06:59] [Server thread/INFO]: Ste3et_C0st issued server command: /furniture debug
[17:07:04] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: so how does there be 3 sofas here
[17:07:16] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: only one was crafted/placed
[17:07:21] [Thread-11/INFO]: [Backpacks] Saving 136 backpack(s)...
[17:07:22] [Thread-11/INFO]: [Backpacks] Backpacks have been saved.
[17:07:26] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: there are obviously multiple tables here too
[17:07:29] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: only one was placed
[17:07:45] [Server thread/INFO]: Builder: Ste3et_C0st[O|⚔]: dont know then you /furniture debug and right click an furniture you can say the FromDatabse marker
[17:07:53] [Server thread/INFO]: CorporalBruno issued server command: /fruniture debug
[17:07:57] [Server thread/INFO]: KeangDavid issued server command: /furniture debug
[17:07:58] [Server thread/INFO]: CorporalBruno issued server command: /furniture debug
[17:08:02] [Server thread/INFO]: Ste3et_C0st issued server command: /furniture give Sofa
[17:08:09] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: remove one though
[17:08:11] [Server thread/INFO]: Ste3et_C0st issued server command: /furniture debug
[17:08:14] [Server thread/INFO]: Ste3et_C0st issued server command: /furniture debug
[17:08:15] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: this one is 93s2bpqsrv
[17:08:20] [Server thread/INFO]: CorporalBruno issued server command: /furniture remove lookat
[17:08:28] [Server thread/INFO]: CorporalBruno issued server command: /fruniture debug
[17:08:31] [Server thread/INFO]: CorporalBruno issued server command: /furniture debug
[17:08:39] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: this one is 17tn45VR2j
[17:08:40] [Server thread/INFO]: KeangDavid issued server command: /ping
[17:08:40] [Server thread/INFO]: Builder: Ste3et_C0st[O|⚔]: look at FromDatabase is it True ?
[17:08:44] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: tyes both
[17:08:48] [Server thread/INFO]: KeangDavid issued server command: /furniture debug
[17:08:49] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: i removed one
[17:08:52] [Server thread/INFO]: Ste3et_C0st issued server command: /furniture debug
[17:08:58] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: and second one was completely unique
[17:09:05] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: but both fromDatabase: true
[17:09:05] [Server thread/INFO]: Ste3et_C0st issued server command: /furniture debug
[17:09:08] [Server thread/INFO]: Ste3et_C0st issued server command: /furniture debug
[17:09:09] [Server thread/INFO]: KeangDavid issued server command: /furniture debug
[17:09:15] [Server thread/INFO]: Ste3et_C0st issued server command: /furniture debug
[17:09:15] [Server thread/INFO]: KeangDavid issued server command: /furniture debug
[17:09:18] [Thread-84/INFO]: UUID of player MasterParkour853 is c7924657-c347-4df0-8437-03f16248b855
[17:09:18] [Server thread/INFO]: [SimpleClans] ClanPlayer Reloaded: MasterParkour853, UUID: c7924657-c347-4df0-8437-03f16248b855
[17:09:18] [Server thread/INFO]:  Running script event 'PlayerJoins', event='player joins' for 
                   script 'FIRST_JOIN_LISTENER' 
[17:09:18] [Server thread/INFO]:  Starting InstantQueue 
                   'FIRST_JOIN_LISTENER_VitalObviousMidnight'... 
[17:09:18] [Server thread/INFO]:  Queue 'FIRST_JOIN_LISTENER_VitalObviousMidnight' Executing: 
                   WAIT "15s" 
[17:09:18] [Server thread/INFO]: +- Executing dCommand: WAIT/p@MasterParkour853 ---------+ 
[17:09:18] [Server thread/INFO]: +> Executing 'WAIT': 
                   queue='FIRST_JOIN_LISTENER_VitalObviousMidnight'  
                   delay='d@300t' 
[17:09:18] [Server thread/INFO]:  Forcing queue FIRST_JOIN_LISTENER_VitalObviousMidnight into a 
                   timed queue... 
[17:09:18] [Server thread/INFO]:  Completing queue 'FIRST_JOIN_LISTENER_VitalObviousMidnight' 
                   in 0ms. 
[17:09:18] [Server thread/INFO]:  Starting TimedQueue 
                   'FIRST_JOIN_LISTENER_VitalObviousMidnight'... 
[17:09:18] [Server thread/INFO]: MasterParkour853[/173.218.181.22:53116] logged in with entity id 76269 at ([world]-6154.662642030057, 91.0, 994.310313343102)
[17:09:18] [Craft Scheduler Thread - 46/INFO]: [GAListener] Player: MasterParkour853 has 5 votes
[17:09:18] [Server thread/INFO]: MasterParkour853 joined the game
[17:09:18] [Server thread/INFO]: [CONSOLE->MasterParkour853] Hey there, MasterParkour853!
[17:09:18] [Server thread/INFO]: [CONSOLE->MasterParkour853] Welcome to Bruno's Realm: Adventure SMP
[17:09:23] [Server thread/INFO]: Denizen: CorporalBruno mentions MasterParkour853
[17:09:23] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: wb MasterParkour853
[17:09:24] [Server thread/INFO]: CreativePals: Apprentice: SashaAnn[E|⚔]: wb
[17:09:33] [Server thread/INFO]:  Queue 'FIRST_JOIN_LISTENER_VitalObviousMidnight' Executing: 
                   IF "<player.has_permission[intro.complete].not>" "{" "-" "run" 
                   "first_join" "}" 
[17:09:33] [Server thread/INFO]: +- Executing dCommand: IF/p@MasterParkour853 ---------+ 
[17:09:33] [Server thread/INFO]: +> Executing 'IF': use_braces='true' 
[17:09:33] [Server thread/INFO]:  Filled tag <player.has_permission[intro.complete].not> with 
                   'false'. 
[17:09:33] [Server thread/INFO]:  Completing queue 'FIRST_JOIN_LISTENER_VitalObviousMidnight' 
                   in 15004ms. 
[17:09:33] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: any recommendations for furniture yall have put em in chat
[17:09:40] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: also christmas ideas
[17:09:48] [Server thread/INFO]: CreativePals: Apprentice: SashaAnn[E|⚔]: ooh christmas :)
[17:09:51] [Server thread/INFO]: Builder: Ste3et_C0st[O|⚔]: i can send you an debug version moment please
[17:09:57] [Server thread/INFO]: Denizen: CorporalBruno mentions Ste3et_C0st
[17:09:57] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: no problem Ste3et_C0st
[17:10:16] [Server thread/INFO]: CorporalBruno issued server command: /msg KeangDavid sup buddy
[17:10:32] [Server thread/INFO]: BadWolf: Veteran: MasterParkour853[D|↖]: omg i have a ton of idea for christmas things
[17:10:40] [Server thread/INFO]: Denizen: KeangDavid mentions Ste3et_C0st
[17:10:40] [Server thread/INFO]: Administrator: Keang[O|䢉]: Ste3et_C0st does it list the armorstands in sql database to know what armor stand goes to what furni
[17:10:42] [Server thread/INFO]: Denizen: CorporalBruno mentions MasterParkour853
[17:10:42] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: put em in chat MasterParkour853 lets here em
[17:10:44] [Server thread/INFO]: cheking craft for TORCH
[17:10:44] [Server thread/INFO]: race Half-Elf or main Rogue can craft 
[17:10:44] [Server thread/INFO]: subclass Engineer can craft 
[17:10:46] [Server thread/INFO]: CreativePals: Apprentice: SashaAnn[E|⚔]: can we have little mini christmas trees to put on tables?
[17:11:03] [Server thread/INFO]: CreativePals: Apprentice: SashaAnn[E|⚔]: and snowmen
[17:11:08] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: ohh olaf snowmen :D
[17:11:12] [Server thread/INFO]: Builder: Ste3et_C0st[O|⚔]: yes of course
[17:11:16] [Server thread/INFO]: CreativePals: Apprentice: SashaAnn[E|⚔]: yea
[17:11:19] [Server thread/INFO]: BadWolf: Veteran: MasterParkour853[D|↖]: well i don't know wat spawn looks like any more but a giant christmas tree
[17:11:22] [Server thread/INFO]: CreativePals: Apprentice: SashaAnn[E|⚔]: an a normal snowman
[17:11:28] [Server thread/INFO]: Denizen: KeangDavid mentions CorporalBruno
[17:11:28] [Server thread/INFO]: Administrator: Keang[O|䢉]: CorporalBruno i could make a script to interact with the furniture :) like put things on table and
[17:11:30] [Server thread/INFO]: BadWolf: Veteran: MasterParkour853[D|↖]: with a few presents
[17:11:32] [Server thread/INFO]: Administrator: Keang[O|䢉]: sit in chairs :)
[17:11:48] [Server thread/INFO]: Denizen: CorporalBruno mentions KeangDavid
[17:11:48] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: KeangDavid that would be pleasant. i would love to hook mail to mailbox
[17:11:54] [Server thread/INFO]: Builder: Ste3et_C0st[O|⚔]: But the little Christmas tree can not place an the Furniture Table he have no hitbox :(
[17:12:04] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: can place on block tho
[17:12:06] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: thats fine :)
[17:12:08] [Server thread/INFO]: Builder: Ste3et_C0st[O|⚔]: yes
[17:12:13] [Server thread/INFO]: CreativePals: Apprentice: SashaAnn[E|⚔]: yea thats cool :)
[17:12:28] [Server thread/INFO]: BadWolf: Veteran: MasterParkour853[D|↖]: oh i just of something replace that giant fountain with a christmas tree
[17:12:45] [Server thread/INFO]: Administrator: Keang[O|䢉]: ohh it allready has sit
[17:12:54] [Server thread/INFO]: CreativePals: Apprentice: SashaAnn[E|⚔]: reindeers?
[17:13:17] [Server thread/INFO]: Denizen: CorporalBruno mentions Ste3et_C0st
[17:13:17] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: Ste3et_C0st we use Denizen and Citizens to script on the server. are you familiar with denizen?
[17:13:21] [Server thread/INFO]: [FurnitureLib] Furniture Saved
[17:13:23] [Server thread/INFO]: Denizen: KeangDavid mentions Ste3et_C0st
[17:13:23] [Server thread/INFO]: Administrator: Keang[O|䢉]: Ste3et_C0st just mount them on a extra armorstand for sitting?
[17:13:35] [Server thread/INFO]: BadWolf: Veteran: MasterParkour853[D|↖]: hang reefs around the town and garland coming from the tree to the places around the tree
[17:13:43] [Server thread/INFO]: CreativePals: Apprentice: SashaAnn[E|⚔]: yea
[17:14:01] [Server thread/INFO]: BadWolf: Veteran: MasterParkour853[D|↖]: reindeers and sleigh on the roof of one
[17:14:09] [Server thread/INFO]: CreativePals: Apprentice: SashaAnn[E|⚔]: and santa stockings
[17:14:18] [Server thread/INFO]: CreativePals: Apprentice: SashaAnn[E|⚔]: to hang on fireplace
[17:14:22] [Server thread/INFO]: BadWolf: Veteran: MasterParkour853[D|↖]: if you can get particle effects have it snowing
[17:14:25] [Server thread/INFO]: Denizen: KeangDavid mentions Ste3et_C0st
[17:14:25] [Server thread/INFO]: Administrator: Keang[O|䢉]: Ste3et_C0st might i sugest being able to "place" thing on tables as well. just another armor stand
[17:14:28] [Server thread/INFO]: Administrator: Keang[O|䢉]: holding the item
[17:14:48] [Server thread/INFO]: CreativePals: Apprentice: SashaAnn[E|⚔]: can u do food that u can place on tables?
[17:14:59] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: wow is there another table here stilL? haha
[17:15:00] [Server thread/INFO]: Saving...
[17:15:00] [Server thread/INFO]: Saved the world
[17:15:05] [Server thread/INFO]: CorporalBruno issued server command: /furniture remove lookat
[17:15:06] [Server thread/INFO]: BadWolf: Veteran: MasterParkour853[D|↖]: lol
[17:15:06] [Server thread/INFO]: Denizen: KeangDavid mentions CorporalBruno
[17:15:06] [Server thread/INFO]: Administrator: Keang[O|䢉]: CorporalBruno i came on here to inspect your mobMerge plugin. gona make somthing better.
[17:15:07] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: nope
[17:15:17] [Server thread/INFO]: Denizen: CorporalBruno mentions KeangDavid
[17:15:17] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: KeangDavid oh i just reinstalled it
[17:15:22] [Server thread/INFO]: Administrator: Keang[O|䢉]: noticed
[17:15:27] [Server thread/INFO]: BadWolf: Veteran: MasterParkour853[D|↖]: lol
[17:15:34] [Server thread/INFO]: cheking craft for BREAD
[17:15:34] [Server thread/INFO]: race Half-Elf or main Rogue can craft 
[17:15:34] [Server thread/INFO]: subclass Engineer can craft 
[17:15:34] [Server thread/INFO]: pilchplays has just earned the achievement [Bake Bread]
[17:15:35] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: its not merging anything i dont think. just using the code to optimize spawning
[17:15:47] [Server thread/INFO]: Administrator: Keang[O|䢉]: i noticed when you kill a mob it "spawns" a nother mob of that "type" but with random
[17:15:50] [Server thread/INFO]: Administrator: Keang[O|䢉]: atributes
[17:15:57] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: :)
[17:16:07] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: sometimes
[17:16:10] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: its a chacne
[17:16:12] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: chance*
[17:16:14] [Server thread/INFO]: Administrator: Keang[O|䢉]: so 4 sombizes an become 4 zombies and 2 chickens
[17:16:18] [Server thread/INFO]: CorporalBruno issued server command: /time day
[17:16:23] [Server thread/INFO]: Builder: Ste3et_C0st[O|⚔]: iam afk
[17:16:25] [Server thread/INFO]: Chillville: Administrator: pilchplays[e|䢉]: it's always the cahnce with Zombies in vanilla
[17:16:26] [Server thread/INFO]: Administrator: Keang[O|䢉]: pfsh idk how they made that but i can do better
[17:16:26] [Server thread/INFO]: Ste3et_C0st issued server command: /afk
[17:16:47] [Server thread/INFO]: Administrator: Keang[O|䢉]: i wan thinking if like 100 zombies combines it makes a giant zombie
[17:17:02] [Server thread/INFO]: Administrator: Keang[O|䢉]: 100 creepers a charged creeper
[17:17:03] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: haha those things are glitchy
[17:17:07] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: the giant zombies
[17:17:17] [Server thread/INFO]: BadWolf: Veteran: MasterParkour853[D|↖]: yeah they are
[17:17:17] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: they have issues walking around
[17:17:22] [Thread-11/INFO]: [Backpacks] Saving 136 backpack(s)...
[17:17:22] [Thread-11/INFO]: [Backpacks] Backpacks have been saved.
[17:17:23] [Server thread/INFO]: Administrator: Keang[O|䢉]: nahh giant zombies are not glitchy.
[17:17:25] [Server thread/INFO]: SashaAnn issued server command: /afk
[17:17:29] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: they have huge hitboxes
[17:17:33] [Server thread/INFO]: Administrator: Keang[O|䢉]: they are missunderstood and lonly
[17:17:36] [Server thread/INFO]: Denizen: CorporalBruno mentions KeangDavid
[17:17:36] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: haha KeangDavid <3
[17:17:59] [Server thread/INFO]: BadWolf: Veteran: MasterParkour853[D|↖]: keang sometimes they are esp if you put those things on tekkit
[17:18:00] [Server thread/INFO]: Administrator: Keang[O|䢉]: was just wondering before i start making it what some key fetures of it are
[17:18:11] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: oh well most important and only thing for me
[17:18:18] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: is it lets minecraft control spawns
[17:18:27] [Server thread/INFO]: Administrator: Keang[O|䢉]: ?
[17:18:29] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: and it merges any entity with its copy at a determiened radius
[17:18:37] [Server thread/INFO]: BadWolf: Veteran: MasterParkour853[D|↖]: lol
[17:18:40] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: so 2 entity become 1
[17:18:43] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: with a new name
[17:18:49] [Server thread/INFO]: Administrator: Keang[O|䢉]: ohh i wouldn't be changing how the entity spawns
[17:18:49] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: entity x2
[17:19:01] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: and then the entity gets killed
[17:19:11] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: and is renamed entityx1
[17:19:15] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: and you continue
[17:19:19] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: so enderman x32
[17:19:24] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: take one down pass it around
[17:19:28] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: enderman x31
[17:19:37] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: leaves pairs for mobs too if u like
[17:19:38] [Server thread/INFO]: BadWolf: Veteran: MasterParkour853[D|↖]: lol
[17:19:40] [Server thread/INFO]: CreativePals: Apprentice: SashaAnn[E|⚔]: i got another christmas idea. giant candy canes :)
[17:19:41] [Server thread/INFO]: Administrator: Keang[O|䢉]: what if insted of being renamed it gives it more health from the entity it combine with?
[17:19:52] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: it also allows u to change health
[17:19:59] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: so you can choose a mob to have full health
[17:20:03] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: average haelth
[17:20:07] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: or random
[17:20:14] [Server thread/INFO]: Administrator: Keang[O|䢉]: i see
[17:20:29] [Server thread/INFO]: KeangDavid issued server command: /pl
[17:20:32] [Server thread/INFO]: Denizen: MasterParkour853 mentions SashaAnn
[17:20:32] [Server thread/INFO]: BadWolf: Veteran: MasterParkour853[D|↖]: love the idea SashaAnn
[17:20:36] [Server thread/INFO]: KeangDavid issued server command: /help mob
[17:20:44] [Server thread/INFO]: CreativePals: Apprentice: SashaAnn[E|⚔]: yea same :)
[17:20:47] [Server thread/INFO]: KeangDavid issued server command: /mergedmob
[17:20:50] [Server thread/INFO]: Denizen: CorporalBruno mentions SashaAnn
[17:20:50] [Server thread/INFO]: Denizen: CorporalBruno mentions MasterParkour853
[17:20:50] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: SashaAnn / MasterParkour853 please im delegating something to you ok?
[17:20:56] [Server thread/INFO]: KeangDavid issued server command: /mergedmob help
[17:20:56] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: collect all furniture ideas
[17:21:06] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: and post them in discord for me to send to Ste3et C0st
[17:21:11] [Server thread/INFO]: BadWolf: Veteran: MasterParkour853[D|↖]: sorry
[17:21:19] [Server thread/INFO]: CreativePals: Apprentice: SashaAnn[E|⚔]: ok
[17:21:19] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: ?
[17:21:28] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: you good i love them thats why i give you this task
[17:21:34] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: its helpful so much
[17:21:40] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: he will love the ideas
[17:21:46] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: he begs for them
[17:21:48] [Server thread/INFO]: Administrator: Keang[O|䢉]: i can not sit in this chair :(
[17:21:53] [Server thread/INFO]: Denizen: CorporalBruno mentions KeangDavid
[17:21:53] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: thats the issue KeangDavid
[17:21:56] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: there are multiple chairs
[17:22:07] [Server thread/INFO]: CreativePals: Apprentice: SashaAnn[E|⚔]: i love christmas so im sure i can come up with loads of ideas :D
[17:22:09] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: when we restart server all new furniture is permanetnly disabled upon reload
[17:22:18] [Server thread/INFO]: Administrator: Keang[O|䢉]: ohh
[17:22:20] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: but if you look closely there are multple chairs there
[17:22:25] [Server thread/INFO]: KeangDavid issued server command: /gm 3
[17:22:26] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: so the database is placing 2
[17:22:29] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: insted of 1
[17:22:29] [Server thread/INFO]: BadWolf: Veteran: MasterParkour853[D|↖]: lol i love to listen you guys
[17:22:46] [Server thread/INFO]: BadWolf: Veteran: MasterParkour853[D|↖]: just talk about stuff
[17:23:05] [Server thread/INFO]: Administrator: Keang[O|䢉]: hmm looking in spectate mod the armor stand locations look wrong
[17:23:19] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: look versus the one that is new next to it
[17:23:34] [Server thread/INFO]: Administrator: Keang[O|䢉]: yeah go into spectate mod you can see the difrance in armor stands
[17:23:40] [Server thread/INFO]: Administrator: Keang[O|䢉]: *mode
[17:23:45] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: i believe u im not losing my inventory
[17:23:50] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: i m lazy
[17:23:59] [Server thread/INFO]: Administrator: Keang[O|䢉]: why would you loose your inventry?
[17:24:00] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: i havent coded spectate and adventure mode in to my inventory swap script
[17:24:07] [Server thread/INFO]: KeangDavid issued server command: /gm 0
[17:24:07] [Server thread/INFO]:  ERROR! 
                   'in@player[holder=p@2b2dd57d-97f9-4a3c-8788-acae64ed9d0c]' is 
                   an unknown argument! 
[17:24:24] [Server thread/INFO]: KeangDavid issued server command: /gm 1
[17:24:24] [Server thread/INFO]:  ERROR! 
                   'in@player[holder=p@2b2dd57d-97f9-4a3c-8788-acae64ed9d0c]' is 
                   an unknown argument! 
[17:24:29] [Server thread/INFO]: KeangDavid issued server command: /gm 2
[17:24:31] [Server thread/INFO]: KeangDavid issued server command: /gm 3
[17:24:33] [Server thread/INFO]: KeangDavid issued server command: /gm 2
[17:24:35] [Server thread/INFO]: KeangDavid issued server command: /gm 1
[17:24:36] [Server thread/INFO]:  ERROR! 
                   'in@player[holder=p@2b2dd57d-97f9-4a3c-8788-acae64ed9d0c]' is 
                   an unknown argument! 
[17:24:37] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: lol
[17:24:37] [Server thread/INFO]: KeangDavid issued server command: /gm 0
[17:24:38] [Server thread/INFO]:  ERROR! 
                   'in@player[holder=p@2b2dd57d-97f9-4a3c-8788-acae64ed9d0c]' is 
                   an unknown argument! 
[17:24:42] [Server thread/INFO]: KeangDavid issued server command: /gm 3
[17:24:42] [Server thread/INFO]: CorporalBruno issued server command: /tp KeangDavid CorporalBruno
[17:25:04] [Server thread/INFO]: Denizen: KeangDavid mentions CorporalBruno
[17:25:04] [Server thread/INFO]: Administrator: Keang[O|䢉]: ohh wow CorporalBruno changing between the gamemodes really messed up and moved around
[17:25:10] [Server thread/INFO]: Administrator: Keang[O|䢉]: my invntory.. i see what you mean
[17:25:13] [Server thread/INFO]: KeangDavid issued server command: /gm 1
[17:25:13] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: yes
[17:25:13] [Server thread/INFO]:  ERROR! 
                   'in@player[holder=p@2b2dd57d-97f9-4a3c-8788-acae64ed9d0c]' is 
                   an unknown argument! 
[17:25:21] [Server thread/INFO]: MasterParkour853 issued server command: /afk
[17:25:48] [Server thread/INFO]: found book: QuestBook
[17:25:54] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: want to look at my inventory script and add adventure and spectate for me?
[17:26:02] [Server thread/INFO]: found book: QuestBook
[17:26:03] [Server thread/INFO]: found book: QuestBook
[17:26:04] [Server thread/INFO]: found book: QuestBook
[17:26:05] [Server thread/INFO]: found book: QuestBook
[17:26:14] [Server thread/INFO]: Administrator: Keang[O|䢉]: much too busy plus good pracice for you
[17:26:18] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: true.
[17:26:24] [Server thread/INFO]: found book: QuestBook
[17:26:26] [Server thread/INFO]: found book: QuestBook
[17:26:35] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: so the merged thing
[17:26:44] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: its biggest deal is lowering lag
[17:26:55] [Server thread/INFO]: BadWolf: Veteran: MasterParkour853[D|↖]: yep
[17:26:59] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: it removes 300 mobs and turns it into 140
[17:27:09] [Server thread/INFO]: Administrator: Keang[O|䢉]: yeah i have scripts that do things for when entity is damaged
[17:27:20] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: so when you have 100+ ppl spread out the server runs nicely
[17:27:22] [Thread-11/INFO]: [Backpacks] Saving 136 backpack(s)...
[17:27:22] [Thread-11/INFO]: [Backpacks] Backpacks have been saved.
[17:27:23] [Server thread/INFO]: Administrator: Keang[O|䢉]: 600 creepers and a splash potion of damage is 2 seconds of lag
[17:27:30] [Server thread/INFO]: CreativePals: Apprentice: SashaAnn[E|⚔]: bruno i put some ideas on discord
[17:27:39] [Server thread/INFO]: found book: QuestBook
[17:27:50] [Server thread/INFO]: Denizen: CorporalBruno mentions KeangDavid
[17:27:50] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: haha yes KeangDavid but creeper x600 and a splash potionof damage is no lag
[17:27:59] [Server thread/INFO]: Administrator: Keang[O|䢉]: yeup
[17:28:02] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: even if you do enough damage to kill 300 of em
[17:28:12] [Server thread/INFO]: CreativePals: Apprentice: SashaAnn[E|⚔]: im going afk to do tea, cya
[17:28:15] [Server thread/INFO]: SashaAnn issued server command: /afk
[17:28:17] [Server thread/INFO]: BadWolf: Veteran: MasterParkour853[D|↖]: i have to get going see you guys in a couple of hours
[17:28:25] [Server thread/INFO]: BadWolf: Veteran: MasterParkour853[D|↖]: bye
[17:28:29] [Server thread/INFO]: CreativePals: Apprentice: SashaAnn[E|⚔]: bye
[17:28:31] [Server thread/INFO]: [FurnitureLib] Furniture Saved
[17:28:32] [Server thread/INFO]: MasterParkour853 lost connection: Disconnected
[17:28:32] [Server thread/INFO]: MasterParkour853 left the game.
[17:28:33] [Server thread/INFO]: SashaAnn issued server command: /afk
[17:28:38] [Server thread/INFO]: found book: QuestBook
[17:28:41] [Server thread/INFO]: found book: QuestBook
[17:29:00] [Server thread/INFO]: CorporalBruno issued server command: /time day
[17:29:17] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: lol
[17:29:40] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: i have merging off so it wont merge
[17:29:58] [Server thread/INFO]: Administrator: Keang[O|䢉]: ohh you just turned it off?
[17:30:00] [Server thread/INFO]: Saving...
[17:30:00] [Server thread/INFO]: Saved the world
[17:30:05] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: i dont think so
[17:30:11] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: oh it is on for creepers
[17:30:19] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: yes
[17:30:21] [Server thread/INFO]: Administrator: Keang[O|䢉]: just wont merge named mobs?
[17:30:31] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: nope that way you can have pets
[17:30:52] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: can put 1000 of em in there
[17:31:04] [Server thread/INFO]: KeangDavid issued server command: /spawnmob creeper 50
[17:31:17] [Server thread/INFO]: KeangDavid issued server command: /help spawnmob
[17:31:22] [Server thread/INFO]: KeangDavid issued server command: /spawnmob
[17:31:24] [Server thread/INFO]: KeangDavid issued server command: /spawnmob creeper
[17:31:37] [Server thread/INFO]: Administrator: Keang[O|䢉]: what is up with your spawnmob command?
[17:31:48] [Server thread/INFO]: Administrator: Keang[O|䢉]: index size?
[17:31:56] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: 20
[17:32:05] [Server thread/INFO]: KeangDavid issued server command: /spawnmob creeper 20 20
[17:32:13] [Server thread/INFO]: Administrator: Keang[O|䢉]: PLAYER NOT FOUND?!
[17:32:31] [Server thread/INFO]: Administrator: Keang[O|䢉]: your spawnmob is bein wierd
[17:32:32] [Server thread/INFO]: CorporalBruno issued server command: /spawnmob creeper 20
[17:32:42] [Server thread/INFO]: CorporalBruno issued server command: /spawnmob creeper 1 1
[17:32:50] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: just do it with /ex
[17:33:09] [Server thread/INFO]: Administrator: Keang[O|䢉]: but das is few at time
[17:33:18] [Server thread/INFO]: CorporalBruno issued server command: /summon
[17:33:18] [Server thread/INFO]: CorporalBruno issued server command: summon
[17:33:21] [Server thread/INFO]: CorporalBruno issued server command: /help summon
[17:33:30] [Server thread/INFO]: CorporalBruno issued server command: /help spawn
[17:33:35] [Server thread/INFO]: CorporalBruno issued server command: /spawnmob
[17:33:43] [Server thread/INFO]: Administrator: Keang[O|䢉]: what is the merge plugin called?
[17:33:46] [Server thread/INFO]: CorporalBruno issued server command: /spawnmob creeper 10 CorporalBruno
[17:33:52] [Server thread/INFO]: CorporalBruno issued server command: /spawnmob creeper 10
[17:34:01] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: mergedmobs
[17:34:03] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: i will link u
[17:34:51] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: https://www.spigotmc.org/resources/mergedmob.11399/
[17:34:52] [Server thread/INFO]: Administrator: Keang[O|䢉]: ohh it is not a curse plugin
[17:35:02] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: i only trust spigot
[17:35:21] [Server thread/INFO]: Denizen: KeangDavid mentions CorporalBruno
[17:35:21] [Server thread/INFO]: Administrator: Keang[O|䢉]: CorporalBruno must be loged in to view that linkk...
[17:35:30] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: you must probably pay for that link
[17:35:37] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: its not a free resource
[17:36:20] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: http://mcmonkey.org/haste/22266
[17:36:23] [Server thread/INFO]: Denizen: CorporalBruno mentions KeangDavid
[17:36:23] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: KeangDavid ^^
[17:36:40] [Server thread/INFO]: Denizen: KeangDavid mentions CorporalBruno
[17:36:40] [Server thread/INFO]: Administrator: Keang[O|䢉]: CorporalBruno i found a link
[17:37:22] [Thread-11/INFO]: [Backpacks] Saving 136 backpack(s)...
[17:37:22] [Thread-11/INFO]: [Backpacks] Backpacks have been saved.
[17:39:06] [Server thread/INFO]: Denizen: KeangDavid mentions CorporalBruno
[17:39:06] [Server thread/INFO]: Administrator: Keang[O|䢉]: CorporalBruno if i used a sql database i could keep all the info for each staked entity
[17:39:53] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: yeah it runs on sql
[17:39:54] [Server thread/INFO]: Ste3et_C0st issued server command: /m CorporalBruno https://dl.dropboxusercontent.com/u/79646035/FurnitureLib.jar
[17:39:57] [Server thread/INFO]: Ste3et_C0st issued server command: /afk
[17:40:02] [Server thread/INFO]: Administrator: Keang[O|䢉]: wait it allready runs on sql?
[17:40:10] [Server thread/INFO]: Ste3et_C0st issued server command: /r please install this test libary
[17:40:14] [Server thread/INFO]: Administrator: Keang[O|䢉]: it it still spawns random mobs :(
[17:40:39] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: ok
[17:40:49] [Server thread/INFO]: [LibelulaLogger] Player pilchplays has interacted with a CHEST @(world -6757 69 -1849) and removed: (DIRTx9) (DIRTx64) (DIRTx64) (DIRTx64)
[17:40:51] [Server thread/INFO]: Denizen: CorporalBruno mentions Ste3et_C0st
[17:40:51] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: bad link Ste3et_C0st
[17:40:52] [Server thread/INFO]: Administrator: Keang[O|䢉]: pfsh yeah ill start with sql and make a dumber non sql option after
[17:41:12] [Server thread/INFO]: CorporalBruno issued server command: /time day
[17:41:35] [Server thread/INFO]: Builder: Ste3et_C0st[O|⚔]: Dropbox is down ftw
[17:41:37] [Server thread/INFO]: Builder: Ste3et_C0st[O|⚔]: -.-
[17:43:32] [Server thread/INFO]: [FurnitureLib] Furniture Saved
[17:43:48] [Server thread/INFO]: [LibelulaLogger] Player pilchplays has interacted with a CHEST @(world -6762 69 -1850) and removed: (SMOOTH_STAIRSx28)
[17:44:15] [Server thread/INFO]: Denizen: CorporalBruno mentions Ste3et_C0st
[17:44:15] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: haha Ste3et_C0st
[17:44:23] [Server thread/INFO]: Denizen: CorporalBruno mentions Ste3et_C0st
[17:44:23] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: im here but also on phone let me know Ste3et_C0st
[17:45:00] [Server thread/INFO]: Saving...
[17:45:00] [Server thread/INFO]: Saved the world
[17:45:37] [Server thread/INFO]: pilchplays issued server command: /gamemode 1
[17:45:38] [Server thread/INFO]:  ERROR! 
                   'in@player[holder=p@acd74c68-1d35-4354-bd94-f8ed96490122]' is 
                   an unknown argument! 
[17:46:01] [Server thread/INFO]: [LibelulaLogger] Player pilchplays has interacted with a CHEST @(world -6751 69 -1849) and removed: (COMPASSx1) (APPLEx1) (STONE_BUTTONx8) (CARPETx1) (SAPLINGx7) (BUCKETx1) (STICKx1) (SHEARSx1) (EMERALD_OREx1) (PISTON_STICKY_BASEx3) (DIODEx1) (CACTUSx1) (WRITTEN_BOOKx1) (STONEx1) (MAPx1) (RED_ROSEx11) (SEEDSx15) (FENCEx1) (MONSTER_EGGx1) (COOKED_CHICKENx1) (GOLD_AXEx1) (SAPLINGx7) (RED_ROSEx1) (ROTTEN_FLESHx5) (SHEARSx1) (YELLOW_FLOWERx7) (GOLD_SPADEx1)
[17:46:10] [Server thread/INFO]: [LibelulaLogger] Player pilchplays has interacted with a CHEST @(world -6751 69 -1849) and removed: (ITEM_FRAMEx1) (SIGNx1) (IRON_BARDINGx1) (BARRIERx64) (STEPx1) (DIAMOND_PICKAXEx1) (DIAMOND_SWORDx1) (PACKED_ICEx1)
[17:46:22] [Server thread/INFO]: pilchplays issued server command: /gamemode 0
[17:46:23] [Server thread/INFO]:  ERROR! 
                   'in@player[holder=p@acd74c68-1d35-4354-bd94-f8ed96490122]' is 
                   an unknown argument! 
[17:46:59] [Server thread/INFO]: KeangDavid lost connection: Disconnected
[17:47:22] [Thread-11/INFO]: [Backpacks] Saving 136 backpack(s)...
[17:47:22] [Thread-11/INFO]: [Backpacks] Backpacks have been saved.
[17:47:37] [Server thread/INFO]: Ste3et_C0st issued server command: /r https://mega.nz/#!YcRG2RJK!0mSm_Notfhlsz-7XaKiu_2d-m888eJSVI7u2XG7xaRU
[17:47:44] [Server thread/INFO]: Ste3et_C0st issued server command: /afk
[17:47:58] [Server thread/INFO]: Ste3et_C0st issued server command: /furniture give largetable
[17:48:20] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: ok
[17:48:53] [Server thread/INFO]: Recieved Vote
[17:48:53] [Server thread/INFO]: [DropParty] 82/300 votes
[17:48:53] [Server thread/INFO]: [GAListener] Vote received on PlanetMinecraft.com for Offline Player: Drunkin_Donuts. Adding to Queue for later
[17:48:53] [Server thread/INFO]: [Votifier] Vote (from:PlanetMinecraft.com username:Drunkin_Donuts address:70.210.142.24 timeStamp:1446742135)
[17:49:42] [Server thread/INFO]: Recieved Vote
[17:49:42] [Server thread/INFO]: [DropParty] 83/300 votes
[17:49:42] [Server thread/INFO]: [GAListener] Vote received on Minecraft-MP.com for Offline Player: Drunkin_Donuts. Adding to Queue for later
[17:49:42] [Server thread/INFO]: [Votifier] Vote (from:Minecraft-MP.com username:Drunkin_Donuts address:70.210.142.24 timeStamp:1446742185)
[17:49:55] [Server thread/INFO]: ☆★☆★Owner: Bruno[o|⚔]: downloading done. installing. restarting.
[17:50:01] [Thread-97/INFO]: UUID of player blanketbox1 is fedbaedc-9f49-4822-8f82-6f14eb88bf1b
[17:50:01] [Server thread/INFO]:  Running script event 'PlayerJoins', event='player joins' for 
                   script 'FIRST_JOIN_LISTENER' 
[17:50:01] [Server thread/INFO]:  Starting InstantQueue 
                   'FIRST_JOIN_LISTENER_PhysicsChristineYellow'... 
[17:50:01] [Server thread/INFO]:  Queue 'FIRST_JOIN_LISTENER_PhysicsChristineYellow' Executing: 
                   WAIT "15s" 
[17:50:01] [Server thread/INFO]: +- Executing dCommand: WAIT/p@blanketbox1 ---------+ 
[17:50:01] [Server thread/INFO]: +> Executing 'WAIT': 
                   queue='FIRST_JOIN_LISTENER_PhysicsChristineYellow'  
                   delay='d@300t' 
[17:50:01] [Server thread/INFO]:  Forcing queue FIRST_JOIN_LISTENER_PhysicsChristineYellow into 
                   a timed queue... 
[17:50:01] [Server thread/INFO]:  Completing queue 'FIRST_JOIN_LISTENER_PhysicsChristineYellow' 
                   in 0ms. 
[17:50:01] [Server thread/INFO]:  Starting TimedQueue 
                   'FIRST_JOIN_LISTENER_PhysicsChristineYellow'... 
[17:50:01] [Server thread/INFO]: blanketbox1[/39.57.46.235:53576] logged in with entity id 131248 at ([world]-6677.152288735903, 64.0, -393.77391578505456)
[17:50:01] [Server thread/INFO]: blanketbox1 joined the game
[17:50:01] [Craft Scheduler Thread - 131/INFO]: [GAListener] Player: blanketbox1 has 0 votes
[17:50:01] [Server thread/INFO]: [CONSOLE->blanketbox1] Hey there, blanketbox1!
[17:50:01] [Server thread/INFO]: [CONSOLE->blanketbox1] Welcome to Bruno's Realm: Adventure SMP
[17:50:16] [Server thread/INFO]:  Queue 'FIRST_JOIN_LISTENER_PhysicsChristineYellow' Executing: 
                   IF "<player.has_permission[intro.complete].not>" "{" "-" "run" 
                   "first_join" "}" 
[17:50:16] [Server thread/INFO]: +- Executing dCommand: IF/p@blanketbox1 ---------+ 
[17:50:16] [Server thread/INFO]: +> Executing 'IF': use_braces='true' 
[17:50:16] [Server thread/INFO]:  Filled tag <player.has_permission[intro.complete].not> with 
                   'false'. 
[17:50:16] [Server thread/INFO]:  Completing queue 'FIRST_JOIN_LISTENER_PhysicsChristineYellow' 
                   in 15040ms. 
[17:50:20] [Server thread/INFO]: CorporalBruno issued server command: /broadcast &k &e attentionrestarting the server in 30 seconds exit menus to avoid loss
[17:50:25] [Server thread/INFO]: pilchplays lost connection: Disconnected
[17:50:28] [Server thread/INFO]: SashaAnn lost connection: Disconnected
[17:50:28] [Server thread/INFO]: SashaAnn left the game.
[17:50:50] [Server thread/INFO]: Recieved Vote
[17:50:50] [Server thread/INFO]: [DropParty] 84/300 votes
[17:50:50] [Server thread/INFO]: [GAListener] Vote received on minecraftserverlister.com for Offline Player: Drunkin_Donuts. Adding to Queue for later
[17:50:50] [Server thread/INFO]: [Votifier] Vote (from:minecraftserverlister.com username:Drunkin_Donuts address:70.210.142.24 timeStamp:1446742279)