Paste #116495: Unnamed Server Log Paste

Date: 2023/10/15 04:32:38 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
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


[11:31:22] [Server thread/INFO]: Starting minecraft server version 1.12.2
[11:31:22] [Server thread/INFO]: Loading properties
[11:31:22] [Server thread/INFO]: Default game type: SURVIVAL
[11:31:22] [Server thread/INFO]: This server is running Paper version git-Paper-17d0860 (MC: 1.12.2) (Implementing API version 1.12.2-R0.1-SNAPSHOT)
[11:31:22] [Server thread/INFO]: Debug logging is disabled
[11:31:22] [Server thread/INFO]: Server Ping Player Sample Count: 12
[11:31:22] [Server thread/INFO]: Using 6 threads for Netty based IO
[11:31:22] [Server thread/INFO]: Generating keypair
[11:31:22] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25566
[11:31:22] [Server thread/INFO]: Using NIO channel type
[11:31:22] [Server thread/INFO]: Set PluginClassLoader as parallel capable
[11:31:22] [Server thread/ERROR]: Could not load 'plugins/crash-1.0-SNAPSHOT.jar' in folder 'plugins'
org.bukkit.plugin.UnknownDependencyException: TokenManager
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(:218) ~[patched_1.12.2.jar:git-Paper-17d0860]
    at org.bukkit.craftbukkit.v1_12_R1.CraftServer.loadPlugins(:322) ~[patched_1.12.2.jar:git-Paper-17d0860]
    at net.minecraft.server.v1_12_R1.DedicatedServer.init(:230) ~[patched_1.12.2.jar:git-Paper-17d0860]
    at net.minecraft.server.v1_12_R1.MinecraftServer.run(:617) ~[patched_1.12.2.jar:git-Paper-17d0860]
    at java.lang.Thread.run(Thread.java:829) [?:?]
[11:31:22] [Server thread/INFO]: [helper] Initialized helper v5.6.13
[11:31:23] [Server thread/INFO]: [ArcherKeyAll] Loading ArcherKeyAll v1.0-SNAPSHOT
[11:31:23] [Server thread/INFO]: [PlugMan] Loading PlugMan v2.1.7
[11:31:23] [Server thread/INFO]: [PlotBorder] Loading PlotBorder v1.4.5-Legacy
[11:31:23] [Server thread/INFO]: [ArcherPieces] Loading ArcherPieces v1.0.0-snapshot
[11:31:23] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v4.8.1-SNAPSHOT
[11:31:23] [Server thread/INFO]: [ViaVersion] ViaVersion 4.8.1-SNAPSHOT is now loaded. Registering protocol transformers and injecting...
[11:31:23] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[11:31:23] [Server thread/INFO]: [ViaBackwards] Loading translations...
[11:31:23] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[11:31:23] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[11:31:23] [Server thread/INFO]: [ViaBackwards] Loading ViaBackwards v4.8.1-SNAPSHOT
[11:31:23] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.102
[11:31:23] [Server thread/INFO]: [ItemFlip] Loading ItemFlip v1.0
[11:31:23] [Server thread/INFO]: [VoidGen] Loading VoidGen v2.1.3
[11:31:23] [Server thread/INFO]: [InvadedLandsEvents] Loading InvadedLandsEvents v2.0.0-ALPHA.3
[11:31:23] [Server thread/INFO]: [WorldBorderAPI] Loading WorldBorderAPI v1.0
[11:31:23] [Server thread/INFO]: [ArmorEquipEvent] Loading ArmorEquipEvent v1.7.2
[11:31:23] [Server thread/INFO]: [FishingRewards] Loading FishingRewards v1.0
[11:31:23] [Server thread/INFO]: [KillStreaks] Loading KillStreaks v1.4.0
[11:31:23] [Server thread/INFO]: [bStats] Loading bStats v1.0-SNAPSHOT
[11:31:23] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.1.0
[11:31:23] [Server thread/INFO]: [MVdWPlaceholderAPI] Loading MVdWPlaceholderAPI v3.1.1
[11:31:23] [Server thread/INFO]: [FastAsyncWorldEdit] Loading FastAsyncWorldEdit v21.03.26-5ff3a9b-1286-22.3.9
[11:31:23] [Server thread/INFO]: [HelpPagePlus] Loading HelpPagePlus v1.5.0
[11:31:23] [Server thread/INFO]: [Captchas] Loading Captchas v1.3.2
[11:31:23] [Server thread/INFO]: [InventoryScanner] Loading InventoryScanner v1.0-SNAPSHOT
[11:31:23] [Server thread/INFO]: [PList] Loading PList v1.0.0
[11:31:23] [Server thread/INFO]: [DonationPlus] Loading DonationPlus v1.3.1
[11:31:23] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.4
[11:31:23] [Server thread/INFO]: [NameMCRewards] Loading NameMCRewards v1.0
[11:31:23] [Server thread/INFO]: [DeluxeCommands] Loading DeluxeCommands v1.11.2
[11:31:23] [Server thread/INFO]: [UltimateAutoRestart] Loading UltimateAutoRestart vBuild 54a
[11:31:23] [Server thread/INFO]: [PermNV] Loading PermNV v1.0.0
[11:31:23] [Server thread/INFO]: [BetterChairs] Loading BetterChairs v1.5.3
[11:31:23] [Server thread/INFO]: [itemprocessor] Loading itemprocessor v1.0
[11:31:23] [Server thread/INFO]: [Blue Slime Core] Loading BlueSlimeCore v2.9.4.377
[11:31:23] [Server thread/INFO]: [GUIHelper] Loading GUIHelper v1.0.7
[11:31:23] [Server thread/INFO]: [LightAPI] Loading LightAPI v3.5.2
[11:31:23] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v2.15.2
[11:31:23] [Server thread/INFO]: [ArcherToggles] Loading ArcherToggles v1.0
[11:31:23] [Server thread/INFO]: [VelocityReport] Loading VelocityReport v3.10.4
[11:31:23] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v6.1.9;caf0ad9
[11:31:23] [Server thread/INFO]: [DecentHolograms] Loading DecentHolograms v2.8.4
[11:31:24] [Server thread/INFO]: [PictureLogin] Loading PictureLogin v1.6
[11:31:24] [Server thread/INFO]: [PvpBuilder] Loading PvpBuilder v1.0
[11:31:24] [Server thread/INFO]: [ClearLag] Loading ClearLag v3.2.2
[11:31:24] [Server thread/INFO]: [Hub] Loading Hub v1.5
[11:31:24] [Server thread/INFO]: [BuycraftX] Loading BuycraftX v12.0.8
[11:31:24] [Server thread/INFO]: [Votifier] Loading Votifier v3.0.0-SNAPSHOT+no.git.id
[11:31:24] [Server thread/INFO]: [bAnnouncer] Loading bAnnouncer v1.2.9
[11:31:24] [Server thread/INFO]: [ChatSentinel] Loading ChatSentinel v0.5.4
[11:31:24] [Server thread/INFO]: [BlockTopWeekly] Loading BlockTopWeekly v1.0
[11:31:24] [Server thread/INFO]: [ArcherGiveaway] Loading ArcherGiveaway v1.0.0
[11:31:24] [Server thread/INFO]: [AntiLooter] Loading AntiLooter v1.0
[11:31:24] [Server thread/INFO]: [ConditionalCommands] Loading ConditionalCommands v1.5
[11:31:24] [Server thread/INFO]: [RecipesRemover] Loading RecipesRemover v1.0
[11:31:24] [Server thread/INFO]: [MCMetrics] Loading MCMetrics v1.2.6
[11:31:24] [Server thread/INFO]: [floodgate] Loading floodgate v2.2.2-SNAPSHOT (b69-492be77)
[11:31:24] [Server thread/INFO]: [floodgate] Took 261ms to boot Floodgate
[11:31:24] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[11:31:24] [Server thread/INFO]: [ViaRewind] Loading ViaRewind v3.0.1-SNAPSHOT
[11:31:24] [Server thread/INFO]: [DeluxeJoin] Loading DeluxeJoin v2.9.2
[11:31:24] [Server thread/INFO]: [ClientStats] Loading ClientStats v2.12.0
[11:31:24] [Server thread/INFO]: [InvSee++] Loading InvSeePlusPlus v0.24.1
[11:31:24] [Server thread/INFO]: [SponsoredSlots] Loading SponsoredSlots v1.3.1
[11:31:24] [Server thread/INFO]: [BungeeGuard] Loading BungeeGuard v1.3-SNAPSHOT
[11:31:24] [Server thread/INFO]: [PlayerVaults] Loading PlayerVaults v4.2.14
[11:31:24] [Server thread/INFO]: [MyCommand] Loading MyCommand v5.7.4
[11:31:24] [Server thread/INFO]: [ClearLagTimer] Loading ClearLagTimer vBuild 35a
[11:31:24] [Server thread/INFO]: [spark] Loading spark v1.10.43
[11:31:24] [Server thread/INFO]: [LPX] Loading LPX v3.3.1
[11:31:24] [Server thread/INFO]: [VotingPlugin] Loading VotingPlugin v6.14.1
[11:31:24] [Server thread/INFO]: [Vouchers] Loading Vouchers v1.9.10.1
[11:31:24] [Server thread/INFO]: [GoalPlugin] Loading GoalPlugin v1.0
[11:31:24] [Server thread/INFO]: [ArcherFixes] Loading ArcherFixes v1.0
[11:31:24] [Server thread/INFO]: [ChatGames] Loading ChatGames v1.4.1
[11:31:24] [Server thread/INFO]: [CrazyCrates] Loading CrazyCrates v1.10.2-Build#1
[11:31:24] [Server thread/INFO]: [ChatColor2] Loading ChatColor2 v1.11
[11:31:24] [Server thread/INFO]: [ZNPCsPlus] Loading ZNPCsPlus v2.0.0-SNAPSHOT
[11:31:24] [Server thread/INFO]: [PlayTimeGui] Loading PlayTimeGui v1.0
[11:31:24] [Server thread/INFO]: [PlotSquared] Loading PlotSquared v3.823
[11:31:24] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v6.2.2-SNAPSHOT;8eeab68
[11:31:24] [Server thread/INFO]: [EditableSign] [EditableSign] Loading EditableSign v8.2.0
[11:31:24] [Server thread/INFO]: [TradePlus] Loading TradePlus v3.84
[11:31:24] [Server thread/INFO]: [Dropper] Loading Dropper v1.0
[11:31:24] [Server thread/INFO]: [PinataParty] Loading PinataParty v2.63.1
[11:31:24] [Server thread/INFO]: [RestrictedCreative] Loading RestrictedCreative v1.15.7
[11:31:24] [Server thread/INFO]: [LiteBans] Loading LiteBans v2.12.5
[11:31:24] [Server thread/INFO]: [MineCrates] Loading MineCrates v2.10.0
[11:31:24] [Server thread/INFO]: [ajLeaderboards] Loading ajLeaderboards v2.8.0
[11:31:24] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[11:31:24] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[11:31:24] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[11:31:24] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[11:31:24] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[11:31:24] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[11:31:24] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[11:31:24] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[11:31:24] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[11:31:24] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[11:31:24] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[11:31:24] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[11:31:24] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[11:31:24] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[11:31:24] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[11:31:24] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[11:31:24] [Server thread/INFO]: [AbyssLib] Loading AbyssLib v1.2.8
[11:31:24] [Server thread/INFO]: [WgExtraFlags] Loading WgExtraFlags v1.0
[11:31:24] [Server thread/INFO]: [Marriage] Loading Marriage v2.0.20
[11:31:24] [Server thread/INFO]: [Marriage] Completed plugin pre-load stage.
[11:31:24] [Server thread/INFO]: [LockettePro] Loading LockettePro v2.9.0
[11:31:24] [Server thread/INFO]: [ShopGUIPlus] Loading ShopGUIPlus v1.90.1
[11:31:24] [Server thread/INFO]: [GadgetsMenu] Loading GadgetsMenu v5.9.1
[11:31:24] [Server thread/INFO]: [ParkourRun] Loading ParkourRun v0.6.1
[11:31:24] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v2.5.0-b727
[11:31:24] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.31-SNAPSHOT (build 3088)
[11:31:24] [Server thread/INFO]: [AdvancedCrates] Loading AdvancedCrates v3.9.16
[11:31:24] [Server thread/INFO]: [CrazyEnvoy] Loading CrazyEnvoy v1.4.17
[11:31:24] [Server thread/INFO]: [helper] Loading helper v5.6.13
[11:31:24] [Server thread/INFO]: [helper] helper (me.lucko.helper) bound to plugin helper - me.lucko.helper.internal.StandalonePlugin
[11:31:24] [Server thread/INFO]: [ArcherCore] Loading ArcherCore v1.0
[11:31:24] [Server thread/INFO]: not found perm plugin
[11:31:24] [Server thread/INFO]: [ItemClickActions] Loading ItemClickActions v1.0
[11:31:24] [Server thread/INFO]: [ArcherPvpMine] Loading ArcherPvpMine v1.0-SNAPSHOT
[11:31:24] [Server thread/INFO]: [BlockParticles] Loading BlockParticles v1.12-SNAPSHOT
[11:31:24] [Server thread/INFO]: [GangsPlus] Loading GangsPlus v2.28.0
[11:31:24] [Server thread/INFO]: [BattlePass] Loading BattlePass v4.0.10
[11:31:24] [Server thread/INFO]: [Shop] Loading Shop v1.8.4.2
[11:31:24] [Server thread/INFO]: [StoreStats] Loading StoreStats v3.32.0
[11:31:24] [Server thread/INFO]: [InvisRegion] Loading InvisRegion v1.0
[11:31:24] [Server thread/INFO]: [OpenAudioMc] Loading OpenAudioMc v6.8.8
[11:31:24] [Server thread/INFO]: [OldCombatKb] Loading OldCombatKb v1.11.1BETA
[11:31:24] [Server thread/INFO]: [MedoraTreasures] Loading MedoraTreasures v1.0
[11:31:24] [Server thread/INFO]: [ChatItem] Loading ChatItem v2.4.9
[11:31:24] [Server thread/INFO]: [ChatFeelings] Loading ChatFeelings v4.7
[11:31:24] [Server thread/INFO]: [ArcherUtils] Loading ArcherUtils v1.0
[11:31:24] [Server thread/INFO]: [NBTAPI] Loading NBTAPI v2.11.3
[11:31:24] [Server thread/INFO]: [NBTAPI] bStats disabled
[11:31:24] [Server thread/INFO]: [NBTAPI] Update check disabled
[11:31:24] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_12_R1! Trying to find NMS support
[11:31:24] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_12_R1' loaded!
[11:31:24] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[11:31:24] [Server thread/INFO]: [AlonsoPlus] Loading AlonsoPlus v0.5-BETA
[11:31:24] [Server thread/INFO]: [OldCombatMechanics] Loading OldCombatMechanics v1.6.4
[11:31:24] [Server thread/INFO]: [Essentials] Loading Essentials v2.21.0-dev+9-e3e52db
[11:31:24] [Server thread/INFO]: [DiscordSRV] Loading DiscordSRV v1.26.2
[11:31:24] [Server thread/INFO]: [AlonsoLeaderboards] Loading AlonsoLeaderboards v1.4-BETA
[11:31:24] [Server thread/INFO]: [AlonsoTags] Loading AlonsoTags v2.0.7-BETA-PRO
[11:31:24] [Server thread/INFO]: [AdvancedAchievements] Loading AdvancedAchievements v8.0.2
[11:31:24] [Server thread/INFO]: [DeluxeMenus] Loading DeluxeMenus v1.13.7-Release
[11:31:24] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup successfully!
[11:31:24] [Server thread/INFO]: [AdvancedVanish] Loading AdvancedVanish v1.2.6
[11:31:24] [Server thread/INFO]: [SimpleFreeze] Loading SimpleFreeze v3.2.4
[11:31:24] [Server thread/INFO]: [zAuctionHouseV3] Loading zAuctionHouseV3 v3.1.3.6
[11:31:24] [Server thread/INFO]: [DeluxeChat] Loading DeluxeChat v1.16.2
[11:31:24] [Server thread/INFO]: [TAB] Loading TAB v3.1.4
[11:31:24] [Server thread/INFO]: [ChatSentry] Loading ChatSentry v5.4.5
[11:31:24] [Server thread/INFO]: [Boss] Loading Boss v4.8.11
[11:31:24] [Server thread/INFO]: [ItemMerger] Loading ItemMerger v1.0.0
[11:31:24] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.21.0-dev+9-e3e52db
[11:31:24] [Server thread/INFO]: [ArcherMentions] Loading ArcherMentions v1.0
[11:31:24] [Server thread/INFO]: [PlayerWelcome] Loading PlayerWelcome v1.0
[11:31:24] [Server thread/INFO]: [CombatLogX] Loading CombatLogX v11.4.0.1.1193
[11:31:24] [Server thread/INFO]: [CombatLogX] Configuration version is recent, no major changes necessary.
[11:31:24] [Server thread/INFO]: [CombatLogX] Loading expansions...
[11:31:24] [Server thread/INFO]: [CombatLogX] Loading expansion 'Rewards v17.4'...
[11:31:24] [Server thread/INFO]: [CombatLogX]  
[11:31:24] [Server thread/INFO]: [CombatLogX] Loading expansion 'PlaceholderAPI Compatibility v17.1'...
[11:31:24] [Server thread/INFO]: [CombatLogX]  
[11:31:24] [Server thread/INFO]: [CombatLogX] Loading expansion 'Cheat Prevention v17.6'...
[11:31:24] [Server thread/INFO]: [CombatLogX]  
[11:31:24] [Server thread/INFO]: [CombatLogX] Loading expansion 'Action Bar v17.3'...
[11:31:24] [Server thread/INFO]: [CombatLogX]  
[11:31:24] [Server thread/INFO]: [CombatLogX] Successfully loaded 4 expansions.
[11:31:24] [Server thread/INFO]: [TitleManager] Loading TitleManager v2.3.5
[11:31:24] [Server thread/INFO]: [Duels] Loading Duels v3.5.2
[11:31:24] [Server thread/INFO]: [WorldEffects] Loading WorldEffects v1.0
[11:31:24] [Server thread/INFO]: [AutoSell] Loading AutoSell v1.10.0-DEV
[11:31:24] [Server thread/INFO]: [PermMultipliers] Loading PermMultipliers v1.0
[11:31:24] [Server thread/INFO]: [EconomyAPI] Loading EconomyAPI v1.3
[11:31:24] [Server thread/INFO]: [DeluxeCoinflip] Loading DeluxeCoinflip v1.8.7
[11:31:24] [Server thread/INFO]: [RequirementsUtil] Loading RequirementsUtil v1.2
[11:31:24] [Server thread/INFO]: [PendingItems] Loading PendingItems v1.0
[11:31:24] [Server thread/INFO]: [PendingItems] Initializing database...
[11:31:24] [Server thread/INFO]: [Withdraw] Loading Withdraw v1.0
[11:31:24] [Server thread/INFO]: [blockcommands] Loading blockcommands v1.0
[11:31:24] [Server thread/INFO]: [TokensVouchers] Loading TokensVouchers v1.0
[11:31:24] [Server thread/INFO]: [FbFix] Loading FbFix v1.0
[11:31:24] [Server thread/INFO]: [FeatherBoard] Loading FeatherBoard v4.30.0
[11:31:24] [Server thread/INFO]: [Tokens] Loading Tokens v2.15
[11:31:24] [Server thread/INFO]: [ArcherDiscordLink] Loading ArcherDiscordLink v1.0-${git.commit.id.abbrev}/${git.branch}
[11:31:24] [Server thread/INFO]: [Crystals] Loading Crystals v1.0
[11:31:24] [Server thread/INFO]: [BrokenBlocks] Loading BrokenBlocks v2.0
[11:31:24] [Server thread/INFO]: [AutoMiner] Loading AutoMiner v1.0
[11:31:24] [Server thread/INFO]: [minebomb] Loading minebomb v1.3
[11:31:24] [Server thread/INFO]: [TokensMenu] Loading TokensMenu v1.0
[11:31:24] [Server thread/INFO]: [Rankups] Loading Rankups v1.0
[11:31:24] [Server thread/INFO]: [PickaxeLevels] Loading PickaxeLevels v1.0
[11:31:24] [Server thread/INFO]: [PrivateMines] Loading PrivateMines v1.0.5
[11:31:24] [Server thread/INFO]: [ItemsPlaceholders] Loading ItemsPlaceholders v1.0
[11:31:24] [Server thread/INFO]: [Backpacks] Loading Backpacks v1.0
[11:31:24] [Server thread/INFO]: [AutoMiners] Loading AutoMiners v1.0
[11:31:24] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[11:31:24] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.102
[11:31:24] [Server thread/INFO]:         __    
[11:31:24] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.102
[11:31:24] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[11:31:24] [Server thread/INFO]: 
[11:31:24] [Server thread/INFO]: [LuckPerms] Loading configuration...
[11:31:25] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MARIADB]
[11:31:25] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[11:31:25] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[11:31:25] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[11:31:25] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[11:31:25] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[11:31:25] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 834ms)
[11:31:25] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.1.3
[11:31:25] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_1_8
[11:31:25] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.1.0
[11:31:25] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v21.03.26-5ff3a9b-1286-22.3.9
[11:31:25] [Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.9.4.377
[11:31:25] [Server thread/INFO]: [Blue Slime Core] Successfully loaded 1 language(s).
[11:31:25] [Server thread/INFO]: [Blue Slime Core] Detected server as regular SpigotMC/PaperMC (not Folia)
[11:31:25] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[11:31:25] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[11:31:25] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[11:31:25] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[11:31:25] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[11:31:25] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v3.0.1-SNAPSHOT
[11:31:25] [Server thread/INFO]: [BungeeGuard] Enabling BungeeGuard v1.3-SNAPSHOT
[11:31:25] [Server thread/INFO]: [BungeeGuard] Using Paper's PlayerHandshakeEvent to listen for connections.
[11:31:25] [Server thread/INFO]: [PlotSquared] Enabling PlotSquared v3.823
[11:31:25] [Server thread/WARN]: java.lang.NullPointerException
[11:31:25] [Server thread/WARN]:     at com.intellectualcrafters.plot.PlotVersion.<init>(PlotVersion.java:17)
[11:31:25] [Server thread/WARN]:     at com.intellectualcrafters.plot.PlotVersion.tryParse(PlotVersion.java:26)
[11:31:25] [Server thread/WARN]:     at com.intellectualcrafters.plot.PS.setupConfig(PS.java:1559)
[11:31:25] [Server thread/WARN]:     at com.intellectualcrafters.plot.PS.setupConfigs(PS.java:1595)
[11:31:25] [Server thread/WARN]:     at com.intellectualcrafters.plot.PS.<init>(PS.java:103)
[11:31:25] [Server thread/WARN]:     at com.plotsquared.bukkit.BukkitMain.onEnable(BukkitMain.java:171)
[11:31:25] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(:264)
[11:31:25] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(:316)
[11:31:25] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(:405)
[11:31:25] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_12_R1.CraftServer.enablePlugin(:399)
[11:31:25] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_12_R1.CraftServer.enablePlugins(:348)
[11:31:25] [Server thread/WARN]:     at net.minecraft.server.v1_12_R1.DedicatedServer.init(:231)
[11:31:25] [Server thread/WARN]:     at net.minecraft.server.v1_12_R1.MinecraftServer.run(:617)
[11:31:25] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:829)
[11:31:25] [Server thread/INFO]: PlotSquared version is PlotSquared-NoVer-SNAPSHOT
[11:31:26] [Server thread/INFO]: [PLOTS]  PlotSquared is using online UUIDs
[11:31:26] [Server thread/INFO]: PlotSquared is now enabled
[11:31:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: plotsquared [legacy-1.0]
[11:31:26] [Server thread/INFO]: [PLOTS] PlaceholderAPI found! Hook activated.
[11:31:26] [Server thread/INFO]: [helper] Enabling helper v5.6.13
[11:31:26] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[11:31:26] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[11:31:26] [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.
[11:31:26] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[11:31:26] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[11:31:26] [Server thread/INFO]: **** Beginning UUID conversion, this may take A LONG time ****
[11:31:26] [Server thread/INFO]: Preparing level "Archer"
[11:31:26] [Server thread/INFO]: [VoidGen] {"biome":"VOID","caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[11:31:26] [Server thread/INFO]: Preparing start region for level 0 (Seed: 0)
[11:31:26] [Server thread/INFO]: [ArcherKeyAll] Enabling ArcherKeyAll v1.0-SNAPSHOT
[11:31:26] [Server thread/INFO]: [PlugMan] Enabling PlugMan v2.1.7
[11:31:26] [Server thread/INFO]: [PlotBorder] Enabling PlotBorder v1.4.5-Legacy
[11:31:26] [Server thread/INFO]: [ArcherPieces] Enabling ArcherPieces v1.0.0-snapshot
[11:31:26] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.8.1-SNAPSHOT
[11:31:26] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.8.1-SNAPSHOT
[11:31:26] [Server thread/INFO]: [ItemFlip] Enabling ItemFlip v1.0
[11:31:26] [Server thread/INFO]: LOGGER [ItemFlip] | INFO: Found MVdWPlaceholderAPI, hooking into it.
[11:31:26] [Server thread/INFO]: LOGGER [ItemFlip] | INFO: Found PlaceholderAPI, hooking into it.
[11:31:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ItemFlipPAPI [1.0]
[11:31:26] [Server thread/INFO]: LOGGER [ItemFlip] | WARN: You have both PlaceholderAPI & MVdWPlaceholderAPI installed. Watch out for that, it might cause issues
[11:31:26] [Server thread/INFO]: LOGGER [ItemFlip] | INFO: Executed setup for config: config.yml
[11:31:26] [Server thread/INFO]: LOGGER [ItemFlip] | INFO: Executed setup for config: data.yml
[11:31:26] [Server thread/INFO]: [InvadedLandsEvents] Enabling InvadedLandsEvents v2.0.0-ALPHA.3
[11:31:26] [Server thread/INFO]: [InvadedLandsEvents] Detected v1_12_R1 as the NMS version.
[11:31:26] [Server thread/INFO]: [InvadedLandsEvents] Registered ActiveListener.
[11:31:26] [Server thread/INFO]: [InvadedLandsEvents] Created instance of InvadedConfigurationManager.
[11:31:26] [Server thread/INFO]: [InvadedLandsEvents] Registered InvadedConfigurationManager.
[11:31:26] [Server thread/INFO]: [InvadedLandsEvents] Loaded messages.
[11:31:26] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[11:31:26] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[11:31:26] [Server thread/INFO]: [InvadedLandsEvents] Created instance of PlayerDataManager.
[11:31:26] [Server thread/INFO]: [InvadedLandsEvents] Registered PlayerDataManager.
[11:31:26] [Server thread/INFO]: [InvadedLandsEvents] Loaded 0 online player(s) player data.
[11:31:26] [Server thread/INFO]: [InvadedLandsEvents] Scheduled player data save task.
[11:31:26] [Server thread/INFO]: [InvadedLandsEvents] Created instance of EventManager.
[11:31:26] [Server thread/INFO]: [InvadedLandsEvents] Registered EventManager.
[11:31:26] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Starting...
[11:31:26] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Start completed.
[11:31:26] [Server thread/INFO]: [InvadedLandsEvents] Registered PlayerInventoryHandler.
[11:31:26] [Server thread/INFO]: [InvadedLandsEvents] Created instance of GuiManager.
[11:31:26] [Server thread/INFO]: [InvadedLandsEvents] Registered GuiManager.
[11:31:26] [Server thread/INFO]: [InvadedLandsEvents] Started updating all GUIs.
[11:31:26] [Server thread/INFO]: [InvadedLandsEvents] Registered commands.
[11:31:26] [Server thread/INFO]: [InvadedLandsEvents] Registered InvadedLandsEvents API.
[11:31:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: events [2.0.0-ALPHA.3]
[11:31:26] [Server thread/INFO]: [InvadedLandsEvents] Loaded placeholders.
[11:31:26] [Server thread/INFO]: [InvadedLandsEvents] Done enabling! (84ms)
[11:31:26] [Server thread/INFO]: [WorldBorderAPI] Enabling WorldBorderAPI v1.0
[11:31:26] [Server thread/INFO]: Version: v1_12_R1
[11:31:26] [Server thread/INFO]: [ArmorEquipEvent] Enabling ArmorEquipEvent v1.7.2
[11:31:26] [Server thread/INFO]: [FishingRewards] Enabling FishingRewards v1.0
[11:31:26] [Server thread/INFO]: [KillStreaks] Enabling KillStreaks v1.4.0
[11:31:26] [Server thread/INFO]: [bStats] Enabling bStats v1.0-SNAPSHOT
[11:31:27] [Server thread/INFO]: [MVdWPlaceholderAPI] Enabling MVdWPlaceholderAPI v3.1.1
[11:31:27] [Server thread/INFO]: [MVdWPlaceholderAPI] Initializing placeholders ...
[11:31:27] [Server thread/INFO]: [MVdWPlaceholderAPI] Sending metrics ...
[11:31:27] [Server thread/INFO]: [HelpPagePlus] Enabling HelpPagePlus v1.5.0
[11:31:27] [Server thread/INFO]: [HelpPagePlus] a Plugin by F_o_F_1092
[11:31:27] [Server thread/INFO]: [HelpPagePlus] ServerType: Bukkit/Spigot, Version: v1_12_R1
[11:31:27] [Server thread/INFO]: [Captchas] Enabling Captchas v1.3.2
[11:31:27] [Server thread/INFO]: [InventoryScanner] Enabling InventoryScanner v1.0-SNAPSHOT
[11:31:27] [Server thread/INFO]: [PList] Enabling PList v1.0.0
[11:31:27] [Server thread/INFO]: [DonationPlus] Enabling DonationPlus v1.3.1
[11:31:27] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.4
[11:31:27] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[11:31:27] [Server thread/INFO]: [NameMCRewards] Enabling NameMCRewards v1.0
[11:31:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: namemcrewards [1.0]
[11:31:27] [Server thread/INFO]: [DeluxeCommands] Enabling DeluxeCommands v1.11.2
[11:31:27] [Server thread/INFO]: [DeluxeCommands] Successfully setup compatibility for your server version!
[11:31:27] [Server thread/INFO]: [DeluxeCommands] 3 commands loaded!
[11:31:27] [Server thread/INFO]: [DeluxeCommands] Hooked into PlaceholderAPI for placeholders!
[11:31:27] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart vBuild 54a
[11:31:27] [Server thread/INFO]: [UltimateAutoRestart] Build 54a, a free resource by Norska - Thanks for downloading!
[11:31:27] [Server thread/INFO]: [UltimateAutoRestart] Attempting hooks...
[11:31:27] [Server thread/INFO]: [PermNV] Enabling PermNV v1.0.0
[11:31:27] [Server thread/INFO]: [BetterChairs] Enabling BetterChairs v1.5.3
[11:31:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: BetterChairs [1.0.0]
[11:31:27] [Server thread/INFO]: [itemprocessor] Enabling itemprocessor v1.0
[11:31:27] [Server thread/INFO]: [GUIHelper] Enabling GUIHelper v1.0.7
[11:31:27] [Server thread/INFO]:  _____   _____   
[11:31:27] [Server thread/INFO]: |   __| |  |  |  GUIHelper v1.0.7 by GabyTM
[11:31:27] [Server thread/INFO]: |  |  | |     |  The ultimate solution for creating professional GUIs
[11:31:27] [Server thread/INFO]: |_____| |__|__|  
[11:31:27] [Server thread/INFO]: [LightAPI] Enabling LightAPI v3.5.2
[11:31:27] [Server thread/INFO]: [LightAPI] Loading CraftBukkit implementation for Paper server v1_12_R1.
[11:31:27] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v2.15.2
[11:31:27] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled!
[11:31:27] [Server thread/INFO]: [CoreProtect] Using MySQL for data storage.
[11:31:27] [Server thread/INFO]: [ArcherToggles] Enabling ArcherToggles v1.0
[11:31:27] [Server thread/INFO]: [ArcherToggles] Initializing database...
[11:31:27] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-4 - Starting...
[11:31:27] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-4 - Start completed.
[11:31:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: archertoggles [1.0]
[11:31:27] [Server thread/INFO]: [VelocityReport] Enabling VelocityReport v3.10.4
[11:31:27] [Server thread/INFO]: [VelocityReport] Registering MySQL database connection using com.mysql.jdbc.Driver driver path.
[11:31:27] [Server thread/INFO]: [ir.syrent.velocityreport.zaaxer.hikari.HikariDataSource] velocityreport-hikari-pool - Starting...
[11:31:27] [Server thread/INFO]: [ir.syrent.velocityreport.zaaxer.hikari.pool.HikariPool] velocityreport-hikari-pool - Added connection com.mysql.jdbc.JDBC4Connection@576c0538
[11:31:27] [Server thread/INFO]: [ir.syrent.velocityreport.zaaxer.hikari.HikariDataSource] velocityreport-hikari-pool - Start completed.
[11:31:27] [Server thread/INFO]: [VelocityReport] Successfully connected to MYSQL database.
[11:31:27] [Server thread/INFO]: [VelocityReport] Creating reports table...
[11:31:27] [Server thread/INFO]:  
[11:31:27] [Server thread/INFO]: __     __   _            _ _         ____                       _   
[11:31:27] [Server thread/INFO]: \ \   / /__| | ___   ___(_) |_ _   _|  _ \ ___ _ __   ___  _ __| |_ 
[11:31:27] [Server thread/INFO]:  \ \ / / _ \ |/ _ \ / __| | __| | | | |_) / _ \ '_ \ / _ \| '__| __|
[11:31:27] [Server thread/INFO]:   \ V /  __/ | (_) | (__| | |_| |_| |  _ <  __/ |_) | (_) | |  | |_ 
[11:31:27] [Server thread/INFO]:    \_/ \___|_|\___/ \___|_|\__|\__, |_| \_\___| .__/ \___/|_|   \__|
[11:31:27] [Server thread/INFO]:                                |___/          |_|                   v3.10.4
[11:31:27] [Server thread/INFO]:  
[11:31:27] [Server thread/INFO]: Wiki: https://github.com/Syrent/VelocityReport/wiki
[11:31:27] [Server thread/INFO]:  
[11:31:27] [Server thread/WARN]: [VelocityReport] Your running your server on a legacy minecraft version (< 16).
[11:31:27] [Server thread/WARN]: [VelocityReport] This plugin is not tested on legacy versions, so it may not work properly.
[11:31:27] [Server thread/WARN]: [VelocityReport] Please consider updating your server to 1.16.5 or higher.
[11:31:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: velocityreport [3.10.4]
[11:31:27] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v6.1.9;caf0ad9
[11:31:27] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[11:31:28] [Server thread/INFO]: [WorldEdit] Using com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_12_R2 as the Bukkit adapter
[11:31:28] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.4
[11:31:28] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[11:31:28] [Server thread/INFO]: [PictureLogin] Enabling PictureLogin v1.6
[11:31:28] [Server thread/INFO]: [PictureLogin] Hooked into: PlaceholderAPI
[11:31:28] [Server thread/INFO]: [PvpBuilder] Enabling PvpBuilder v1.0
[11:31:28] [Server thread/INFO]: [PvpBuilder] config.yml ( Loaded )
[11:31:28] [Server thread/INFO]: [PvpBuilder] language.yml ( Loaded )
[11:31:28] [Server thread/ERROR]: [PvpBuilder] [Blocks] iron_golem.ymlx ( Error Loading )
[11:31:28] [Server thread/INFO]: [PvpBuilder] [Blocks] glass_sphere.yml ( Loaded )
[11:31:28] [Server thread/INFO]: [PvpBuilder] [Blocks] huge_tower.yml ( Loaded )
[11:31:28] [Server thread/INFO]: [PvpBuilder] [Blocks] small_wood_wall.yml ( Loaded )
[11:31:28] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[11:31:28] [Server thread/INFO]: [ClearLag] Using version-adapter: LegacyVersionAdapter
[11:31:28] [Server thread/INFO]: [ClearLag] Loading modules...
[11:31:28] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[11:31:28] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[11:31:28] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[11:31:28] [Server thread/INFO]: [Hub] Enabling Hub v1.5
[11:31:28] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[11:31:28] [Server thread/INFO]: [BuycraftX] Validating your server key...
[11:31:30] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[11:31:30] [Server thread/INFO]: [Votifier] Enabling Votifier v3.0.0-SNAPSHOT+no.git.id
[11:31:30] [Server thread/INFO]: [Votifier] Loaded token for website: default
[11:31:30] [Server thread/INFO]: [Votifier] Using NIO transport to accept votes.
[11:31:30] [Votifier NIO boss/INFO]: [Votifier] Votifier enabled on socket /0:0:0:0:0:0:0:0:8194.
[11:31:30] [Server thread/INFO]: [Votifier] Receiving votes over PluginMessaging channel 'nuvotifier:votes'.
[11:31:30] [Server thread/INFO]: [bAnnouncer] Enabling bAnnouncer v1.2.9
[11:31:30] [Server thread/INFO]: [ChatSentinel] Enabling ChatSentinel v0.5.4
[11:31:30] [Server thread/INFO]: [BlockTopWeekly] Enabling BlockTopWeekly v1.0
[11:31:30] [Server thread/INFO]: [BlockTopWeekly] Initializing database...
[11:31:30] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-5 - Starting...
[11:31:30] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-5 - Start completed.
[11:31:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: blocks [1.0]
[11:31:30] [Server thread/INFO]: [ArcherGiveaway] Enabling ArcherGiveaway v1.0.0
[11:31:30] [Server thread/INFO]: [AntiLooter] Enabling AntiLooter v1.0
[11:31:30] [Server thread/INFO]: [ConditionalCommands] Enabling ConditionalCommands v1.5
[11:31:30] [Server thread/INFO]: [ConditionalCommands] Initializing placeholders...
[11:31:30] [Server thread/INFO]: [ConditionalCommands] Ready.
[11:31:30] [Server thread/INFO]: [RecipesRemover] Enabling RecipesRemover v1.0
[11:31:30] [Server thread/INFO]: [MCMetrics] Enabling MCMetrics v1.2.6
[11:31:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcm [1.2.3]
[11:31:30] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.2-SNAPSHOT (b69-492be77)
[11:31:30] [Server thread/INFO]: [DeluxeJoin] Enabling DeluxeJoin v2.9.2
[11:31:30] [Server thread/INFO]: [DeluxeJoin] 4 DeluxeJoinFormats loaded!
[11:31:30] [Server thread/INFO]: [DeluxeJoin] Succesfully hooked into PlaceholderAPI for placeholders!
[11:31:30] [Server thread/INFO]: [ClientStats] Enabling ClientStats v2.12.0
[11:31:30] [Server thread/INFO]: [ClientStats] Hooked into ViaVersion!
[11:31:30] [Server thread/INFO]: [ClientStats] ClientStats is now enabled!
[11:31:30] [Server thread/INFO]: [InvSee++] Enabling InvSeePlusPlus v0.24.1
[11:31:30] [Server thread/INFO]: [SponsoredSlots] Enabling SponsoredSlots v1.3.1
[11:31:30] [Server thread/INFO]: [SponsoredSlots] 
[11:31:30] [Server thread/INFO]: [SponsoredSlots]  _  _     SponsoredSlots v1.3.1
[11:31:30] [Server thread/INFO]: [SponsoredSlots] (_ (_     Author: ItsLewizzz
[11:31:30] [Server thread/INFO]: [SponsoredSlots] __)__)    (c) Lewis D 2020-2022. All rights reserved.
[11:31:30] [Server thread/INFO]: [SponsoredSlots] 
[11:31:30] [Server thread/INFO]: [SponsoredSlots] Registered Vault currency successfully.
[11:31:30] [Server thread/INFO]: [SponsoredSlots] Loaded 45 sponsored slots.
[11:31:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: sponsoredslots [1.3.1]
[11:31:30] [Server thread/INFO]: [SponsoredSlots] Hooked into PlaceholderAPI successfully
[11:31:30] [Server thread/INFO]: [SponsoredSlots] 
[11:31:30] [Server thread/INFO]: [SponsoredSlots] Successfully loaded in 40ms
[11:31:30] [Server thread/INFO]: [SponsoredSlots] 
[11:31:30] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v4.2.14
[11:31:30] [Server thread/INFO]: [PlayerVaults] Loaded! Took 100ms
[11:31:31] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.4
[11:31:31] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[11:31:31] [Server thread/INFO]: | You're using a not fully supported server version. (v1_12_R1)
[11:31:31] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[11:31:31] [Server thread/INFO]: | Command file(s) found : 5
[11:31:31] [Server thread/INFO]: = Itemset: loaded WRITTEN_BOOK
[11:31:31] [Server thread/INFO]: | Config : Ready.
[11:31:31] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[11:31:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mycommand [1.0.0]
[11:31:31] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[11:31:31] [Server thread/INFO]: | Custom commands loaded : 178
[11:31:31] [Server thread/INFO]: | You're running the latest version of MyCommand.
[11:31:31] [Server thread/INFO]: | 0 (custom) commands in cooldown added.
[11:31:31] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[11:31:31] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[11:31:31] [Server thread/INFO]: [ClearLagTimer] Enabling ClearLagTimer vBuild 35a
[11:31:31] [Server thread/INFO]: [ClearLagTimer] Build 35a, a free resource by Norska - Thanks for downloading!
[11:31:31] [Server thread/INFO]: [spark] Enabling spark v1.10.43
[11:31:31] [Server thread/INFO]: [spark] Using Bukkit scheduler for tick monitoring
[11:31:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: spark [1.10.43]
[11:31:31] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[11:31:31] [Server thread/INFO]: [MVdWPlaceholderAPI] spark added custom placeholder {spark_*}
[11:31:31] [Server thread/INFO]: [spark] Registered MVdWPlaceholderAPI placeholders
[11:31:31] [Server thread/INFO]: [LPX] Enabling LPX v3.3.1
[11:31:31] [Server thread/INFO]: [LPX] License successfully verified!
[11:31:31] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.14.1
[11:31:31] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[11:31:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[11:31:31] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_total}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_alltimetotal}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_lastmonthtotal}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_disablebroadcast}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_milestonecount}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_nextmilestone_votes_required}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_nextmilestone_votes_until}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_total_alltime}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_total_monthly}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_total_weekly}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_total_daily}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_bestdailytotal}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_bestweeklytotal}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_bestmonthlytotal}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_dailyvotestreak}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_weeklyvotestreak}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_monthvotestreak}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_bestdailyvotestreak}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_bestweeklyvotestreak}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_bestmonthvotestreak}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_points}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_points_format}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_canvote}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_canvotesites}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_next_anysite}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_next_minecraft-server-list}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_last_minecraft-server-list}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_canvote_minecraft-server-list}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_next_topminecraftservers}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_last_topminecraftservers}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_canvote_topminecraftservers}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_next_pmc}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_last_pmc}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_canvote_pmc}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_next_minecraftservers_org}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_last_minecraftservers_org}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_canvote_minecraftservers_org}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_next_mcsl}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_last_mcsl}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_canvote_mcsl}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_next_minecraftmp}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_last_minecraftmp}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_canvote_minecraftmp}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_next_default}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_last_default}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_canvote_default}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_next_servers-minecraft}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_last_servers-minecraft}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_canvote_servers-minecraft}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_next_best-minecraft-serverss}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_last_best-minecraft-serverss}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_canvote_best-minecraft-serverss}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_next_minecraft-server_eu}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_last_minecraft-server_eu}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_canvote_minecraft-server_eu}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_next_minecraft_buzz}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_last_minecraft_buzz}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_canvote_minecraft_buzz}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_next_minecraft-mp_com}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_last_minecraft-mp_com}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_canvote_minecraft-mp_com}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_next_curseforge}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_last_curseforge}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_canvote_curseforge}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_next_best-minecraft-servers}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_last_best-minecraft-servers}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_canvote_best-minecraft-servers}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_top_all_position}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_top_month_position}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_top_week_position}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_top_daily_position}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_votepartycontributedvotes}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_votepartyvotescurrent}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_votepartyvotesneeded}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_votepartyvotesrequired}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_bungeevotepartyvotescurrent}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_bungeevotepartyvotesneeded}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_bungeevotepartyvotesrequired}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_globalmonthtotal}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_globalalltimetotal}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_globalweeklytotal}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_globaldailytotal}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] VotingPlugin added custom placeholder {votingplugin_timeuntildayreset}
[11:31:32] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.14.1
[11:31:32] [Server thread/WARN]: [VotingPlugin] No vote has been recieved from Minecraft Server List, may be an invalid service site. Please read: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[11:31:32] [Server thread/INFO]: [Vouchers] Enabling Vouchers v1.9.10.1
[11:31:32] [Server thread/INFO]: [Vouchers] Loading the Config.yml
[11:31:32] [Server thread/INFO]: [Vouchers] Successfully loaded Config.yml
[11:31:32] [Server thread/INFO]: [Vouchers] Loading the Data.yml
[11:31:32] [Server thread/INFO]: [Vouchers] Successfully loaded Data.yml
[11:31:32] [Server thread/INFO]: [Vouchers] Loading the Messages.yml
[11:31:32] [Server thread/INFO]: [Vouchers] Successfully loaded Messages.yml
[11:31:32] [Server thread/INFO]: [Vouchers] Loading the VoucherCodes.yml
[11:31:32] [Server thread/INFO]: [Vouchers] Successfully loaded VoucherCodes.yml
[11:31:32] [Server thread/INFO]: [GoalPlugin] Enabling GoalPlugin v1.0
[11:31:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: goalplugin [1.0]
[11:31:32] [Server thread/INFO]: [ArcherFixes] Enabling ArcherFixes v1.0
[11:31:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ArcherFixes [1.0]
[11:31:32] [Server thread/INFO]: [ChatGames] Enabling ChatGames v1.4.1
[11:31:32] [Server thread/INFO]: [ChatGames] SQLITE DATABASE IS CONNECTED
[11:31:32] [Server thread/INFO]: [ChatGames] ChatGames is now enabled!
[11:31:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatgames [1.0.0]
[11:31:32] [Server thread/INFO]: [ChatGames] PlaceholderAPI Hooked!
[11:31:32] [Server thread/INFO]: [CrazyCrates] Enabling CrazyCrates v1.10.2-Build#1
[11:31:32] [Server thread/INFO]: [CrazyCrates] Loading the config.yml
[11:31:32] [Server thread/INFO]: [CrazyCrates] Successfully loaded config.yml
[11:31:32] [Server thread/INFO]: [CrazyCrates] Loading the Messages.yml
[11:31:32] [Server thread/INFO]: [CrazyCrates] Successfully loaded Messages.yml
[11:31:32] [Server thread/INFO]: [CrazyCrates] Loading the Locations.yml
[11:31:32] [Server thread/INFO]: [CrazyCrates] Successfully loaded Locations.yml
[11:31:32] [Server thread/INFO]: [CrazyCrates] Loading the data.yml
[11:31:32] [Server thread/INFO]: [CrazyCrates] Successfully loaded data.yml
[11:31:32] [Server thread/INFO]: [CrazyCrates] Loading custom files.
[11:31:32] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Gem.yml.
[11:31:32] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/God.yml.
[11:31:32] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Monthly.yml.
[11:31:32] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/mine.yml.
[11:31:32] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Vote.yml.
[11:31:32] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Rankup.yml.
[11:31:32] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/PvP.yml.
[11:31:32] [Server thread/INFO]: [CrazyCrates] Finished loading custom files.
[11:31:32] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[11:31:32] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[11:31:32] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[11:31:32] [Server thread/INFO]: [CrazyCrates] All physical crate locations have been loaded.
[11:31:32] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[11:31:32] [Server thread/INFO]: [CrazyCrates] Nether.schematic was successfully found and loaded.
[11:31:32] [Server thread/INFO]: [CrazyCrates] Soul.schematic was successfully found and loaded.
[11:31:32] [Server thread/INFO]: [CrazyCrates] OutDoors.schematic was successfully found and loaded.
[11:31:32] [Server thread/INFO]: [CrazyCrates] Classic.schematic was successfully found and loaded.
[11:31:32] [Server thread/INFO]: [CrazyCrates] Sea.schematic was successfully found and loaded.
[11:31:32] [Server thread/INFO]: [CrazyCrates] Wooden.schematic was successfully found and loaded.
[11:31:32] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[11:31:32] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[11:31:32] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[11:31:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: crazycrates [1.10.2-Build#1]
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_gem}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_gem_physical}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_gem_total}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_god}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_god_physical}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_god_total}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_monthly}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_monthly_physical}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_monthly_total}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_mine}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_mine_physical}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_mine_total}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_vote}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_vote_physical}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_vote_total}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_rankup}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_rankup_physical}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_rankup_total}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_pvp}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_pvp_physical}
[11:31:32] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyCrates added custom placeholder {crazycrates_pvp_total}
[11:31:32] [Server thread/INFO]: [ChatColor2] Enabling ChatColor2 v1.11
[11:31:32] [Thread-20/WARN]: [NBTAPI] [NBTAPI] The NBT-API at 'package me.badbones69.crazycrates.nbtapi.changeme.nbtapi' seems to be outdated!
[11:31:32] [Thread-20/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.8.0' Newest Version: 2.12.0'
[11:31:32] [Thread-20/WARN]: [NBTAPI] [NBTAPI] Please update the nbt-api or the plugin that contains the api!
[11:31:32] [Server thread/INFO]: ARCHER » ChatColor 2 Version 1.11 has been enabled.
[11:31:32] [Server thread/INFO]: ARCHER » Current update: Custom GUI update! (+1.17 support)
[11:31:32] [Server thread/INFO]: ARCHER » Legacy Minecraft version detected, hex colours will not be available.
[11:31:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cc [1.11]
[11:31:32] [Server thread/INFO]: ARCHER » PlaceholderAPI has been hooked.
[11:31:32] [Server thread/INFO]: ARCHER » Metrics is disabled for this plugin.
[11:31:32] [Server thread/INFO]: [ZNPCsPlus] Enabling ZNPCsPlus v2.0.0-SNAPSHOT
[11:31:32] [Server thread/INFO]:   ___       __   __  __
[11:31:32] [Server thread/INFO]:    _/ |\ | |__) |   (__` __|__   ZNPCsPlus v2.0.0-SNAPSHOT
[11:31:32] [Server thread/INFO]:   /__ | \| |    |__ .__)   |     Maintained with ❤  by Pyr#6969
[11:31:32] [Server thread/INFO]: 
[11:31:32] [Server thread/INFO]:  * Initializing libraries...
[11:31:32] [Server thread/INFO]:  * Initializing components...
[11:31:32] [Server thread/INFO]:  * Registerring components...
[11:31:32] [Server thread/INFO]:  * Starting tasks...
[11:31:32] [Server thread/INFO]:  * Loading data...
[11:31:32] [Server thread/INFO]:  * Loading complete! (449ms)
[11:31:32] [Server thread/INFO]: 
[11:31:32] [Server thread/INFO]: [PlayTimeGui] Enabling PlayTimeGui v1.0
[11:31:32] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v6.2.2-SNAPSHOT;8eeab68
[11:31:32] [Server thread/INFO]: [WorldGuard] Blacklist loaded.
[11:31:32] [Server thread/INFO]: [WorldGuard] (Archer) TNT ignition is PERMITTED.
[11:31:32] [Server thread/INFO]: [WorldGuard] (Archer) Lighters are PERMITTED.
[11:31:32] [Server thread/INFO]: [WorldGuard] (Archer) Lava fire is blocked.
[11:31:32] [Server thread/INFO]: [WorldGuard] (Archer) Fire spread is UNRESTRICTED.
[11:31:32] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Archer'
[11:31:32] [Server thread/INFO]: [WorldGuard] Loading region data...
[11:31:32] [Server thread/INFO]: [EditableSign] [EditableSign] Enabling EditableSign v8.2.0
[11:31:32] [Server thread/INFO]: [EditableSign] [EditableSign] [AddOn.loadAddOns()] 0 addon modules found! Loading them up!
[11:31:32] [Server thread/INFO]: [EditableSign] [EditableSign] EditableSign version 8.2.0 is Enabled
[11:31:33] [Server thread/INFO]: [EditableSign] [EditableSign] 1 commands found!
[11:31:33] [Server thread/INFO]: [EditableSign] [EditableSign] register: es
[11:31:33] [Server thread/INFO]: [EditableSign] [EditableSign] Registered com.vk2gpz.editablesign.N.h
[11:31:33] [Server thread/INFO]: [TradePlus] Enabling TradePlus v3.84
[11:31:33] [Server thread/INFO]: [Dropper] Enabling Dropper v1.0
[11:31:33] [Server thread/INFO]: [PinataParty] Enabling PinataParty v2.63.1
[11:31:33] [Server thread/INFO]: [PinataParty] Registering hooks...
[11:31:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pinataparty [2.63.1]
[11:31:33] [Server thread/INFO]: [PinataParty] Hooked into PlaceholderAPI
[11:31:33] [Server thread/INFO]: [PinataParty] Hooked into Votifier
[11:31:33] [Server thread/INFO]: [PinataParty] Hooked into Vault
[11:31:33] [Server thread/INFO]: [PinataParty] Registering commands...
[11:31:33] [Server thread/INFO]: [PinataParty] Registering listeners...
[11:31:33] [Server thread/INFO]: [PinataParty] Loading data...
[11:31:33] [Server thread/INFO]: [PinataParty] Starting tasks...
[11:31:33] [Server thread/INFO]: [PinataParty] Starting metrics...
[11:31:33] [Server thread/INFO]: [PinataParty] Plugin registered to 558748 | 607785001
[11:31:33] [Server thread/INFO]: [PinataParty] Done and enabled in 19.89ms
[11:31:33] [Server thread/INFO]: [RestrictedCreative] Enabling RestrictedCreative v1.15.7
[11:31:34] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.12.5
[11:31:34] [Server thread/INFO]: [LiteBans] Using default database drivers (version:8).
[11:31:34] [Server thread/WARN]: [LiteBans] Local messages are disabled! If you don't see any broadcasts, try enabling local_messages.
[11:31:34] [Server thread/INFO]: [LiteBans] Using system locale (en)
[11:31:34] [Server thread/INFO]: [LiteBans] Loaded 2 templates from templates.yml!
[11:31:34] [Server thread/INFO]: [LiteBans] Loading SQL driver: mysql 8.0.29 (com.mysql.cj.jdbc.Driver)
[11:31:34] [Server thread/INFO]: [LiteBans] Connecting to database...
[11:31:34] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[11:31:34] [LiteBans-0/INFO]: [LiteBans] GeoIP support initialized.
[11:31:34] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[11:31:34] [Server thread/INFO]: [LiteBans] Connected to MySQL database successfully (63.9 ms).
[11:31:34] [Server thread/INFO]: [LiteBans] [Sync] Server name: Prison
[11:31:34] [Server thread/INFO]: [LiteBans] [Sync] Server UUID: 38b5cc63f77e4a2ea40286650179c358 <2>
[11:31:34] [Server thread/INFO]: [LiteBans] Database connection fully initialized (78.7 ms).
[11:31:34] [Server thread/INFO]: [LiteBans] v2.12.5 enabled. Startup took 176 ms.
[11:31:34] [Server thread/INFO]: [MineCrates] Enabling MineCrates v2.10.0
[11:31:34] [Server thread/INFO]: [MineCrates] area_handler hook successfully set to: 'World'
[11:31:34] [Server thread/WARN]: [MineCrates] drop_counter not set for reward: areas.Archer.rewards.common
[11:31:34] [Server thread/INFO]: [MineCrates] Defaulting to 100 breaks for drop_counter.
[11:31:34] [Server thread/WARN]: [MineCrates] drop_chance not set for reward: areas.Archer.rewards.common
[11:31:34] [Server thread/INFO]: [MineCrates] Defaulting to 50.0 percent drop_chance.
[11:31:34] [Server thread/INFO]: [MineCrates] Loaded reward list: common with 4 rewards.
[11:31:34] [Server thread/WARN]: [MineCrates] drop_counter not set for reward: areas.mine.rewards.common
[11:31:34] [Server thread/INFO]: [MineCrates] Defaulting to 100 breaks for drop_counter.
[11:31:34] [Server thread/WARN]: [MineCrates] drop_chance not set for reward: areas.mine.rewards.common
[11:31:34] [Server thread/INFO]: [MineCrates] Defaulting to 50.0 percent drop_chance.
[11:31:34] [Server thread/INFO]: [MineCrates] Loaded reward list: common with 4 rewards.
[11:31:34] [Server thread/INFO]: [MineCrates] 2 MineCrate areas loaded...
[11:31:34] [Server thread/ERROR]: Error occurred while enabling MineCrates v2.10.0 (Is it up to date?)
java.lang.NoClassDefFoundError: de/slikey/effectlib/EffectManager
    at me.clip.minecrates.MineCrates.onEnable(MineCrates.java:86) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(:264) ~[patched_1.12.2.jar:git-Paper-17d0860]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(:316) ~[patched_1.12.2.jar:git-Paper-17d0860]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(:405) ~[patched_1.12.2.jar:git-Paper-17d0860]
    at org.bukkit.craftbukkit.v1_12_R1.CraftServer.enablePlugin(:399) ~[patched_1.12.2.jar:git-Paper-17d0860]
    at org.bukkit.craftbukkit.v1_12_R1.CraftServer.enablePlugins(:348) ~[patched_1.12.2.jar:git-Paper-17d0860]
    at net.minecraft.server.v1_12_R1.MinecraftServer.t(:442) ~[patched_1.12.2.jar:git-Paper-17d0860]
    at net.minecraft.server.v1_12_R1.MinecraftServer.l(:403) ~[patched_1.12.2.jar:git-Paper-17d0860]
    at net.minecraft.server.v1_12_R1.MinecraftServer.a(:338) ~[patched_1.12.2.jar:git-Paper-17d0860]
    at net.minecraft.server.v1_12_R1.DedicatedServer.init(:297) ~[patched_1.12.2.jar:git-Paper-17d0860]
    at net.minecraft.server.v1_12_R1.MinecraftServer.run(:617) ~[patched_1.12.2.jar:git-Paper-17d0860]
    at java.lang.Thread.run(Thread.java:829) [?:?]
Caused by: java.lang.ClassNotFoundException: de.slikey.effectlib.EffectManager
    at java.net.URLClassLoader.findClass(URLClassLoader.java:476) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(:156) ~[patched_1.12.2.jar:git-Paper-17d0860]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(:104) ~[patched_1.12.2.jar:git-Paper-17d0860]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:594) ~[?:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:527) ~[?:?]
    ... 12 more
[11:31:34] [Server thread/INFO]: [MineCrates] Disabling MineCrates v2.10.0
[11:31:34] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.8.0
[11:31:34] [Server thread/INFO]: [ajLeaderboards] Using MySQL for board cache. (mysql)
[11:31:34] [Server thread/INFO]: [ajLeaderboards] Loaded 8 boards
[11:31:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.8.0]
[11:31:34] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[11:31:34] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.8.0 by ajgeiss0702 enabled!
[11:31:34] [Server thread/INFO]: [AbyssLib] Enabling AbyssLib v1.2.8
[11:31:34] [Server thread/INFO]: [Abyss] Injected logger into Server.
[11:31:34] [Server thread/ERROR]: [AbyssLib] Plugin AbyssLib v1.2.8 has failed to register events for class net.abyssdev.abysslib.armor.DispenserArmorListener because org/bukkit/event/block/BlockDispenseArmorEvent does not exist.
[11:31:34] [Server thread/INFO]: [Abyss] Using WorldGuard as the team provider.
[11:31:34] [Server thread/INFO]: [Abyss] No available stacker provider found! Enabling Default implementation.
[11:31:34] [Server thread/INFO]: [Abyss] AbyssLib v1.2.8 enabled.
[11:31:34] [Server thread/INFO]: [Abyss] Injected logger into AbyssLib.
[11:31:34] [Server thread/INFO]: [WgExtraFlags] Enabling WgExtraFlags v1.0
[11:31:34] [Server thread/INFO]: [WorldGuard] Registering session handler pl.archer.wgextraflags.handlers.FlyFlagHandler
[11:31:34] [Server thread/INFO]: [Marriage] Enabling Marriage v2.0.20
[11:31:34] [Server thread/INFO]: [Marriage] Loading config...
[11:31:34] [Server thread/INFO]: [Marriage] Hooked with LuckPerms using Vault!
[11:31:34] [Server thread/INFO]: [Marriage] Loading dependencies...
[11:31:34] [Server thread/INFO]: [Marriage] Loading listeners...
[11:31:34] [Server thread/INFO]: [Marriage] Loading database...
[11:31:34] [Server thread/INFO]: [Marriage] Loading commands...
[11:31:34] [Server thread/INFO]: [Marriage] Loading converter...
[11:31:34] [Server thread/INFO]: [Marriage] Completed plugin load stage.
[11:31:34] [Server thread/INFO]: [LockettePro] Enabling LockettePro v2.9.0
[11:31:34] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.90.1
[11:31:34] [Server thread/INFO]: [GadgetsMenu] Enabling GadgetsMenu v5.9.1
[11:31:34] [Server thread/INFO]: [GadgetsMenu] ------------------------------------------------------
[11:31:34] [Server thread/INFO]: [GadgetsMenu]       GadgetsMenu [Premium] 5.9.1 is loading...
[11:31:34] [Server thread/INFO]: [GadgetsMenu]        [server: git-Paper-17d0860 (MC: 1.12.2)]
[11:31:34] [Server thread/INFO]: [GadgetsMenu]                 Running Java 11.0.20.1
[11:31:34] [Server thread/INFO]: [GadgetsMenu]                Plugin by Yap Zhen Yie.
[11:31:34] [Server thread/INFO]: [GadgetsMenu]              Date Modified: 29 July 2023
[11:31:34] [Server thread/INFO]: [GadgetsMenu]                            
[11:31:34] [Server thread/INFO]: [GadgetsMenu]              Initializing module v1_12_R1
[11:31:34] [Server thread/INFO]: [GadgetsMenu] ------------------------------------------------------
[11:31:35] [Server thread/INFO]: [GadgetsMenu] Connecting to MySQL database...
[11:31:35] [Server thread/INFO]: [GadgetsMenu] Successfully connected to MySQL database.
[11:31:35] [Server thread/INFO]: [GadgetsMenu] Enabled Mystery Vault individual hologram.
[11:31:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gadgetsmenu [1.0.3]
[11:31:35] [Server thread/INFO]: [GadgetsMenu] [Placeholder] PlaceholderAPI hooked.
[11:31:35] [Server thread/INFO]: [ParkourRun] Enabling ParkourRun v0.6.1
[11:31:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: parkourrun [0.6.1]
[11:31:35] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v2.5.0-b727
[11:31:35] [Server thread/INFO]: Preparing start region for level 1 (Seed: -5726716301224010629)
[11:31:35] [Server thread/INFO]: [WorldGuard] (mine) TNT ignition is PERMITTED.
[11:31:35] [Server thread/INFO]: [WorldGuard] (mine) Lighters are PERMITTED.
[11:31:35] [Server thread/INFO]: [WorldGuard] (mine) Lava fire is blocked.
[11:31:35] [Server thread/INFO]: [WorldGuard] (mine) Fire spread is UNRESTRICTED.
[11:31:35] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'mine'
[11:31:35] [Server thread/INFO]: [PLOTS] Detected world load for 'ArcherPlots'
[11:31:35] [Server thread/INFO]: [PLOTS]  - generator: PlotSquared>PlotSquared
[11:31:35] [Server thread/INFO]: [PLOTS]  - plotworld: com.intellectualcrafters.plot.generator.HybridPlotWorld
[11:31:35] [Server thread/INFO]: [PLOTS]  - manager: com.intellectualcrafters.plot.generator.HybridPlotManager
[11:31:35] [Server thread/INFO]: Preparing start region for level 2 (Seed: -1484530800706450723)
[11:31:36] [Server thread/INFO]: [WorldGuard] (ArcherPlots) TNT ignition is PERMITTED.
[11:31:36] [Server thread/INFO]: [WorldGuard] (ArcherPlots) Lighters are PERMITTED.
[11:31:36] [Server thread/INFO]: [WorldGuard] (ArcherPlots) Lava fire is blocked.
[11:31:36] [Server thread/INFO]: [WorldGuard] (ArcherPlots) Fire spread is UNRESTRICTED.
[11:31:36] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'ArcherPlots'
[11:31:36] [Server thread/INFO]: Could not set generator for world 'Archer': Plugin 'VoidGenerator' does not exist
[11:31:36] [Server thread/INFO]: Could not set generator for world 'Event': Plugin 'VoidGenerator' does not exist
[11:31:36] [Server thread/INFO]: [VoidGen] {"biome":"VOID","caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[11:31:36] [Server thread/INFO]: Preparing start region for level 3 (Seed: -8083925031626425156)
[11:31:36] [Server thread/INFO]: [WorldGuard] Blacklist loaded.
[11:31:36] [Server thread/INFO]: [WorldGuard] (Event) TNT ignition is PERMITTED.
[11:31:36] [Server thread/INFO]: [WorldGuard] (Event) Lighters are PERMITTED.
[11:31:36] [Server thread/INFO]: [WorldGuard] (Event) Lava fire is blocked.
[11:31:36] [Server thread/INFO]: [WorldGuard] (Event) Fire spread is UNRESTRICTED.
[11:31:36] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Event'
[11:31:36] [Server thread/INFO]: Could not set generator for world 'Event': Plugin 'VoidGenerator' does not exist
[11:31:36] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.31-SNAPSHOT (build 3088)
[11:31:36] [Server thread/INFO]: [Citizens] Loading external libraries
[11:31:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[11:31:36] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[11:31:36] [Server thread/INFO]: [AdvancedCrates] Enabling AdvancedCrates v3.9.16
[11:31:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedcrates [3.9.16]
[11:31:36] [Server thread/INFO]: [CrazyEnvoy] Enabling CrazyEnvoy v1.4.17
[11:31:36] [Server thread/INFO]: [CrazyEnvoy] Loading the config.yml
[11:31:36] [Server thread/INFO]: [CrazyEnvoy] Successfully loaded config.yml
[11:31:36] [Server thread/INFO]: [CrazyEnvoy] Loading the messages.yml
[11:31:36] [Server thread/INFO]: [CrazyEnvoy] Successfully loaded messages.yml
[11:31:36] [Server thread/INFO]: [CrazyEnvoy] Loading the data.yml
[11:31:36] [Server thread/INFO]: [CrazyEnvoy] Successfully loaded data.yml
[11:31:36] [Server thread/INFO]: [CrazyEnvoy] Loading custom files.
[11:31:36] [Server thread/INFO]: [CrazyEnvoy] Loaded new custom file: /tiers/Lucky.yml.
[11:31:36] [Server thread/INFO]: [CrazyEnvoy] Loaded new custom file: /tiers/OP.yml.
[11:31:36] [Server thread/INFO]: [CrazyEnvoy] Loaded new custom file: /tiers/Keys.yml.
[11:31:36] [Server thread/INFO]: [CrazyEnvoy] Finished loading custom files.
[11:31:36] [Server thread/INFO]: [CrazyEnvoy] Failed to fix Center. Will try again next event.
[11:31:36] [Server thread/INFO]: [CrazyEnvoy] Loadednull hologram hook.
[11:31:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: crazyenvoys [1.4.17]
[11:31:36] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyEnvoy added custom placeholder {crazyenvoy_cooldown}
[11:31:36] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyEnvoy added custom placeholder {crazyenvoy_time_left}
[11:31:36] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyEnvoy added custom placeholder {crazyenvoy_crates_left}
[11:31:36] [Server thread/INFO]: [ArcherCore] Enabling ArcherCore v1.0
[11:31:36] [Server thread/INFO]: [ItemClickActions] Enabling ItemClickActions v1.0
[11:31:36] [Server thread/INFO]: [ArcherPvpMine] Enabling ArcherPvpMine v1.0-SNAPSHOT
[11:31:36] [Server thread/INFO]: [BlockParticles] Enabling BlockParticles v1.12-SNAPSHOT
[11:31:36] [Server thread/INFO]: [BlockParticles] Loading the config.yml
[11:31:36] [Server thread/INFO]: [BlockParticles] Successfully loaded config.yml
[11:31:36] [Server thread/INFO]: [BlockParticles] Loading the data.yml
[11:31:36] [Server thread/INFO]: [BlockParticles] Successfully loaded data.yml
[11:31:36] [Server thread/INFO]: [GangsPlus] Enabling GangsPlus v2.28.0
[11:31:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gangsplus [2.28.0]
[11:31:37] [Server thread/INFO]: [GangsPlus] Clip's PlaceholderAPI support enabled!
[11:31:37] [Server thread/INFO]: [BattlePass] Enabling BattlePass v4.0.10
[11:31:37] [Server thread/INFO]: [io.github.battlepass.hikari.HikariDataSource] battlePass-hikari - Starting...
[11:31:37] [Server thread/INFO]: [io.github.battlepass.hikari.HikariDataSource] battlePass-hikari - Start completed.
[11:31:37] [Server thread/INFO]: Successfully connected to MySQL.
[11:31:37] [Server thread/INFO]: [BattlePass] Finished loading the week-2 quests. All quests loaded successfully.
[11:31:37] [Server thread/INFO]: [BattlePass] Finished loading the week-1 quests. All quests loaded successfully.
[11:31:37] [Server thread/INFO]: [BattlePass] Finished loading the week-7 quests. All quests loaded successfully.
[11:31:37] [Server thread/INFO]: [BattlePass] Finished loading the week-6 quests. All quests loaded successfully.
[11:31:37] [Server thread/INFO]: [BattlePass] Finished loading the week-4 quests. All quests loaded successfully.
[11:31:37] [Server thread/INFO]: [BattlePass] Finished loading the week-3 quests. All quests loaded successfully.
[11:31:37] [Server thread/INFO]: [BattlePass] Finished loading the week-5 quests. All quests loaded successfully.
[11:31:37] [Server thread/INFO]: [BattlePass] Finished loading the daily quests. All quests loaded successfully.
[11:31:37] [Server thread/INFO]: [Citizens] Hooked into Citizens
[11:31:37] [Server thread/INFO]: [CrazyCrates] Using internal version as PluginVersion{major=1, minor=10, bugfix=2} for loading CrazyCrates.
[11:31:37] [Server thread/INFO]: [CrazyCrates] CrazyCrates was present but its version is not supported.
[11:31:37] [Server thread/INFO]: [Votifier] Hooked into Votifier
[11:31:37] [Server thread/INFO]: [BattlePass] Enabled 3 actions.
[11:31:37] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: premium
[11:31:37] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: free
[11:31:37] [Server thread/WARN]: [BattlePass] Daily quests reset is set disabled.
[11:31:37] [Server thread/INFO]: [BattlePass] Register PlaceholderAPI placeholders
[11:31:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: battlepass [1.1]
[11:31:37] [Server thread/INFO]: [Shop] Enabling Shop v1.8.4.2
[11:31:37] [Server thread/INFO]: [Shop] Vault dependency found. Using the Vault economy (Money) for currency on the server.
[11:31:37] [Server thread/INFO]: [StoreStats] Enabling StoreStats v3.32.0
[11:31:37] [Server thread/INFO]: [StoreStats] Initializing managers...
[11:31:37] [Server thread/INFO]: [StoreStats] Using Paper Implementation!
[11:31:37] [Server thread/INFO]: [StoreStats] ImplementationManager initialized!
[11:31:37] [Server thread/INFO]: [StoreStats] DataManager initialized!
[11:31:37] [Server thread/INFO]: [StoreStats] StoreManager initialized!
[11:31:37] [Server thread/INFO]: [StoreStats] PaymentManager initialized!
[11:31:37] [Server thread/INFO]: [StoreStats] DisplayManager initialized!
[11:31:37] [Server thread/INFO]: [StoreStats] PlaceholdersManager initialized!
[11:31:37] [Server thread/INFO]: [StoreStats] InventoryManager initialized!
[11:31:37] [Server thread/INFO]: [StoreStats] Registering commands...
[11:31:37] [Server thread/INFO]: [StoreStats] Registering listeners...
[11:31:37] [Server thread/INFO]: [StoreStats] Loading data...
[11:31:37] [Server thread/INFO]: [StoreStats] Registering hooks...
[11:31:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: storestats [3.32.0]
[11:31:37] [Server thread/INFO]: [StoreStats] Hooked into PlaceholderAPI
[11:31:37] [Server thread/INFO]: [StoreStats] Hooked into Citizens
[11:31:37] [Server thread/INFO]: [StoreStats] Starting tasks...
[11:31:37] [Server thread/INFO]: [StoreStats] Using Tebex implementation!
[11:31:37] [Server thread/INFO]: [StoreStats] Starting metrics...
[11:31:37] [Server thread/INFO]: [StoreStats] Plugin registered to 558748 | 1563912526
[11:31:37] [Server thread/INFO]: [StoreStats] Done and enabled in 25.58ms
[11:31:37] [Server thread/INFO]: [InvisRegion] Enabling InvisRegion v1.0
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Enabling OpenAudioMc v6.8.8
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Initializing build 948 by Mats
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Using the main config file..
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Starting configuration module
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Using the main config file..
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Starting configuration module
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Skipped 36/36 migrations.
[11:31:37] [Server thread/INFO]: [OpenAudioMc] ModuleLoaderService: Loading modules from /home/container/plugins/OpenAudioMc/modules
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Using networking class com.craftmend.openaudiomc.spigot.modules.proxy.service.ProxyNetworkingService
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Initializing socket connector
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Starting authentication module
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Creating account...
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Skipping account setup since this isn't a master server, moving on with fake api keys.
[11:31:37] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Adding spigot tables
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Registering storage table for Alias
[11:31:37] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (alias<->Alias.java)
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Registering storage table for ClientDataStore
[11:31:37] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (client_data_store<->ClientDataStore.java)
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Registering storage table for MojangProfile
[11:31:37] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (mojang_profile<->MojangProfile.java)
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Registering storage table for RegionProperties
[11:31:37] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (region_properties<->RegionProperties.java)
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Registering storage table for Speaker
[11:31:37] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (speaker<->Speaker.java)
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Registering storage table for StoredWorldChunk
[11:31:37] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (stored_world_chunk<->StoredWorldChunk.java)
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Registering storage table for TimedRegionProperties
[11:31:37] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (timed_region_properties<->TimedRegionProperties.java)
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Registering storage table for MediaRule
[11:31:37] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (media_rule<->MediaRule.java)
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Initializing account details
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Loading aliases...
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Loaded 0 aliases
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Detected version type: LEGACY
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Enabling the 1.12 speaker system
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Hooking speakers attempt 1..
[11:31:37] [Server thread/INFO]: [OpenAudioMc] Starting redstone speaker tick task with interval 5 ticks
[11:31:38] [Server thread/INFO]: [OpenAudioMc] Plugin LiteBans is already enabled, running handler
[11:31:38] [Server thread/INFO]: [OpenAudioMc] Plugin WorldGuard is already enabled, running handler
[11:31:38] [Server thread/INFO]: [OpenAudioMc] Turns out you have WorldGuard installed! enabling regions and the region tasks..
[11:31:38] [Server thread/INFO]: [OpenAudioMc] Unknown version. Falling back to the 1.8 to 1.12 region implementation.
[11:31:38] [Server thread/INFO]: [OpenAudioMc] Scanning 0 regions for duplicates (out of 0 total regions)
[11:31:38] [Server thread/INFO]: [OpenAudioMc] No duplicate regions found, skipping cleanup...
[11:31:38] [Server thread/INFO]: [OpenAudioMc] Plugin PlaceholderAPI is already enabled, running handler
[11:31:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: oa [1.0.0]
[11:31:38] [Server thread/INFO]: [OpenAudioMc] Starting and loading took 15346MS
[11:31:38] [Server thread/INFO]: [OldCombatKb] Enabling OldCombatKb v1.11.1BETA
[11:31:38] [Server thread/INFO]: [OldCombatKb] OldCombatKb v1.11.1BETA has been enabled
[11:31:38] [Server thread/INFO]: [MedoraTreasures] Enabling MedoraTreasures v1.0
[11:31:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: medoratreasures [1.0]
[11:31:38] [Server thread/INFO]: [ChatItem] Enabling ChatItem v2.4.9
[11:31:38] [Server thread/INFO]: [ChatItem] Detected server version: v1_12
[11:31:38] [Server thread/INFO]: [ChatItem] Save method founded: save. Use ComponentBuilder's method.
[11:31:38] [Server thread/INFO]: [ChatItem] Manager chosen: ChatListener (chat)
[11:31:38] [Server thread/INFO]: [ChatItem] Loaded translation for en_gb.
[11:31:38] [Server thread/INFO]: [ChatFeelings] Enabling ChatFeelings v4.7
[11:31:38] [Server thread/INFO]: [ChatFeelings] [!] Update checking has been disabled in the config.yml
[11:31:38] [Server thread/INFO]: [ChatFeelings] Having issues? Got a question? Join our support discord: https://discord.gg/6ugXPfX
[11:31:38] [Server thread/INFO]: [ChatFeelings] Hooking into LiteBans...
[11:31:38] [Server thread/INFO]: [ChatFeelings] Hooking into PlaceholderAPI...
[11:31:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatfeelings [4.7]
[11:31:38] [Server thread/INFO]: [ArcherUtils] Enabling ArcherUtils v1.0
[11:31:38] [Server thread/ERROR]: [ArcherUtils] Plugin ArcherUtils v1.0 has failed to register events for class pl.archer.archerutils.listeners.ReventBeginListener because com/adri1711/randomevents/api/events/ReventBeginEvent does not exist.
[11:31:38] [Server thread/ERROR]: [ArcherUtils] Plugin ArcherUtils v1.0 has failed to register events for class pl.archer.archerutils.listeners.ReventEndListener because com/adri1711/randomevents/api/events/ReventEndEvent does not exist.
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Enabling AlonsoPlus v0.5-BETA
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Hex colors are not available! Ignoring..
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Inventory title with support for more than 32 characters. Skipping..
[11:31:38] [Server thread/INFO]:     _   _                  ___ _         
[11:31:38] [Server thread/INFO]:    /_\ | |___ _ _  ___ ___| _ \ |_  _ ___
[11:31:38] [Server thread/INFO]:   / _ \| / _ \ ' \(_-</ _ \  _/ | || (_-<
[11:31:38] [Server thread/INFO]:  /_/ \_\_\___/_||_/__/\___/_| |_|\_,_/__/
[11:31:38] [Server thread/INFO]: 
[11:31:38] [Server thread/INFO]:    Running plugin AlonsoPlus v0.5-BETA Build 558748
[11:31:38] [Server thread/INFO]:    Server running Paper version git-Paper-17d0860 (MC: 1.12.2)
[11:31:38] [Server thread/INFO]:    (Implementing API version git-Paper-17d0860 (MC: 1.12.2))
[11:31:38] [Server thread/INFO]:    (Developed by AlonsoAliaga - Thanks for using my plugin ❤)
[11:31:38] [Server thread/INFO]:    (Thanks for purchasing my plugin Unknown! If you didn't, do it or you won't receive support :D
[11:31:38] [Server thread/INFO]:    (If you loved the plugin consider leaving a review and mentioning your server IP in it!
[11:31:38] [Server thread/INFO]: 
[11:31:38] [Server thread/INFO]: ===================================================================================
[11:31:38] [Server thread/INFO]: [AlonsoPlus] You are using a Paper fork (Paper). Plugin might have errors
[11:31:38] [Server thread/INFO]: [AlonsoPlus] and not work properly. Consider using SPIGOT!
[11:31:38] [Server thread/INFO]: [AlonsoPlus] This is not an error! This is just a warning to let you know that this
[11:31:38] [Server thread/INFO]: [AlonsoPlus] plugin has not been tested on paper forks. This plugin was made for spigot
[11:31:38] [Server thread/INFO]: [AlonsoPlus] and has been tested on spigot only. If you have issues report them to the
[11:31:38] [Server thread/INFO]: [AlonsoPlus] developer instead of reviewing 1 star. Thanks in advanced!
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Join our official support server on alonsoaliaga.com/discord
[11:31:38] [Server thread/INFO]: ===================================================================================
[11:31:38] [Server thread/INFO]: 
[11:31:38] [Server thread/INFO]: [AlonsoPlus] BungeeCord action bar available. Hooking..
[11:31:38] [Server thread/INFO]: [AlonsoPlus] ProtocolLib found! Hooking..
[11:31:38] [Server thread/INFO]: [Auto-update] Configuration config.yml is up-to-date!
[11:31:38] [Server thread/INFO]: [Auto-update] Configuration colors.yml is up-to-date!
[11:31:38] [Server thread/INFO]: [AlonsoPlus] [HikariCP] Using com.mysql.jdbc.jdbc2.optional.MysqlDataSource for source class name..
[11:31:38] [Server thread/INFO]: [AlonsoPlus] [MySQL] Attempting to create 'alonsoplus' table..
[11:31:38] [Server thread/INFO]: [AlonsoPlus] [MySQL] Attempting to connect to database..
[11:31:38] [Server thread/INFO]: [AlonsoPlus] [MySQL] Successfully connected to database!
[11:31:38] [Server thread/INFO]: [AlonsoPlus] [MySQL] Table 'alonsoplus' has been created if didn't exist.
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Back slot is: 40 | Close slot is: 39
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Loading 'red' color..
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Successfully loaded red color!
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Loading 'gold' color..
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Successfully loaded gold color!
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Loading 'green' color..
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Successfully loaded green color!
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Loading 'yellow' color..
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Successfully loaded yellow color!
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Loading 'light-purple' color..
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Successfully loaded light-purple color!
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Loading 'white' color..
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Successfully loaded white color!
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Loading 'blue' color..
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Successfully loaded blue color!
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Loading 'dark-green' color..
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Successfully loaded dark-green color!
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Loading 'dark-red' color..
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Successfully loaded dark-red color!
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Loading 'dark-aqua' color..
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Successfully loaded dark-aqua color!
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Loading 'dark-purple' color..
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Successfully loaded dark-purple color!
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Loading 'dark-gray' color..
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Successfully loaded dark-gray color!
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Loading 'black' color..
[11:31:38] [Server thread/INFO]: [AlonsoPlus] Successfully loaded black color!
[11:31:38] [Server thread/INFO]: [AlonsoPlus] PlaceholderAPI found! Hooking..
[11:31:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: alonsoplus [0.5-BETA]
[11:31:39] [Server thread/INFO]: [OldCombatMechanics] Enabling OldCombatMechanics v1.6.4
[11:31:39] [Server thread/INFO]: [OldCombatMechanics] OldCombatMechanics v1.6.4 has been enabled
[11:31:39] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+9-e3e52db
[11:31:39] [Server thread/INFO]: [Essentials] Loaded 853 items from items.csv.
[11:31:39] [Server thread/INFO]: [Essentials] Using locale en_US
[11:31:39] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[11:31:39] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[11:31:39] [Server thread/INFO]: [OpenAudioMc] Plugin Essentials is now enabled, running handler
[11:31:39] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[11:31:39] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[11:31:39] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.2
[11:31:39] [Server thread/INFO]: [AlonsoLeaderboards] Enabling AlonsoLeaderboards v1.4-BETA
[11:31:39] [Server thread/INFO]: [AlonsoLeaderboards] Hex colors are not available!
[11:31:39] [Server thread/INFO]:     _   _                  _                _         _                      _    
[11:31:39] [Server thread/INFO]:    /_\ | |___ _ _  ___ ___| |   ___ __ _ __| |___ _ _| |__  ___  __ _ _ _ __| |___
[11:31:39] [Server thread/INFO]:   / _ \| / _ \ ' \(_-</ _ \ |__/ -_) _` / _` / -_) '_| '_ \/ _ \/ _` | '_/ _` (_-<
[11:31:39] [Server thread/INFO]:  /_/ \_\_\___/_||_/__/\___/____\___\__,_\__,_\___|_| |_.__/\___/\__,_|_| \__,_/__/
[11:31:39] [Server thread/INFO]: 
[11:31:39] [Server thread/INFO]:    Running plugin AlonsoLeaderboards v1.4-BETA
[11:31:39] [Server thread/INFO]:    Server running Paper version git-Paper-17d0860 (MC: 1.12.2)
[11:31:39] [Server thread/INFO]:    (Implementing API version git-Paper-17d0860 (MC: 1.12.2))
[11:31:39] [Server thread/INFO]:    (Developed by  AlonsoAliaga - Thanks for using my plugin ❤)
[11:31:39] [Server thread/INFO]:    (If you loved the plugin consider leaving a review and mentioning your server IP in it!
[11:31:39] [Server thread/INFO]: 
[11:31:39] [Server thread/INFO]: 
[11:31:39] [Server thread/INFO]: ===================================================================================
[11:31:39] [Server thread/INFO]: [AlonsoLeaderboards] You are using a Spigot fork (PAPER). Plugin might have errors
[11:31:39] [Server thread/INFO]: [AlonsoLeaderboards] and not work properly. Consider using SPIGOT!
[11:31:39] [Server thread/INFO]: ===================================================================================
[11:31:39] [Server thread/INFO]: 
[11:31:39] [Server thread/INFO]: [AlonsoLeaderboards] BungeeCord action bar available. Hooking..
[11:31:39] [Server thread/INFO]: [AlonsoLeaderboards] ProtocolLib found! Hooking..
[11:31:39] [Server thread/INFO]: [Auto-update] Configuration config.yml is up-to-date!
[11:31:39] [Server thread/INFO]: [AlonsoLeaderboards] PlaceholderAPI found! Hooking..
[11:31:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: alonsoleaderboards [1.4-BETA]
[11:31:39] [Server thread/INFO]: [AlonsoLeaderboards] Loading placed leaderboards..
[11:31:39] [Server thread/INFO]: [AlonsoLeaderboards] LeaderboardExpansion for 'kills' successfully registered!
[11:31:39] [Server thread/INFO]: [AlonsoTags] Enabling AlonsoTags v2.0.7-BETA-PRO
[11:31:39] [Server thread/INFO]: [AlonsoTags] Max health Attribute check found. Using it..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Inventory title with support for more than 32 characters. Skipping..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Hex colors are not available! Ignoring..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Old constructor for HoverEvent found! Using it..
[11:31:39] [Server thread/INFO]: [AlonsoTags] New sendTitle method found! Using it..
[11:31:39] [Server thread/INFO]: [AlonsoTags] New setUnbreakable method found! Using it..
[11:31:39] [Server thread/INFO]: [AlonsoTags] New isUnbreakable method found! Using it..
[11:31:39] [Server thread/INFO]:     _   _                 _____               ___         
[11:31:39] [Server thread/INFO]:    /_\ | |___ _ _  ___ __|_   _|_ _ __ _ ___ | _ \_ _ ___ 
[11:31:39] [Server thread/INFO]:   / _ \| / _ \ ' \(_-</ _ \| |/ _` / _` (_-< |  _/ '_/ _ \
[11:31:39] [Server thread/INFO]:  /_/ \_\_\___/_||_/__/\___/|_|\__,_\__, /__/ |_| |_| \___/
[11:31:39] [Server thread/INFO]:                                    |___/                  
[11:31:39] [Server thread/INFO]:    Running plugin AlonsoTags v2.0.7-BETA-PRO (v1_12)
[11:31:39] [Server thread/INFO]:    Server running Paper version git-Paper-17d0860 (MC: 1.12.2)
[11:31:39] [Server thread/INFO]:    (Implementing API version 1.12.2-R0.1-SNAPSHOT)
[11:31:39] [Server thread/INFO]:    (Developed by AlonsoAliaga - Thanks for using my plugin ❤!)
[11:31:39] [Server thread/INFO]:    Thanks for purchasing my plugin 219773! If you didn't, do it or you won't receive support :D
[11:31:39] [Server thread/INFO]:    Join our official discord server to receive support in alonsoaliaga.com/discord
[11:31:39] [Server thread/INFO]:    If you loved the plugin consider leaving a 5-stars review and mentioning your server IP in it!
[11:31:39] [Server thread/INFO]: 
[11:31:39] [Server thread/INFO]: ==============================================================================================
[11:31:39] [Server thread/INFO]: [AlonsoTags] This is not a error! This is just a warning to keep in mind if you have issues!
[11:31:39] [Server thread/INFO]: [AlonsoTags] You are using a Paper fork (Paper). This plugin was made for Spigot
[11:31:39] [Server thread/INFO]: [AlonsoTags] but was (in most cases) tested with different builds of Paper and Purpur.
[11:31:39] [Server thread/INFO]: [AlonsoTags] Spigot and forks API are really similar and should be compatible, however there are
[11:31:39] [Server thread/INFO]: [AlonsoTags] some cases in which they aren't compatible. If you have issues report them to the
[11:31:39] [Server thread/INFO]: [AlonsoTags] developer instead of reviewing 1 star. Thanks in advanced!
[11:31:39] [Server thread/INFO]: [AlonsoTags] Join us in our official support server on alonsoaliaga.com/discord
[11:31:39] [Server thread/INFO]: ==============================================================================================
[11:31:39] [Server thread/INFO]: 
[11:31:39] [Server thread/INFO]: [AlonsoTags] BungeeCord action bar available. Hooking..
[11:31:39] [Server thread/INFO]: [AlonsoTags] ProtocolLib found! Checking..
[11:31:39] [Server thread/INFO]: [Auto-update] Configuration is up-to-date!
[11:31:39] [Server thread/INFO]: [AlonsoTags] [HikariCP] Using com.mysql.jdbc.jdbc2.optional.MysqlDataSource for source class name..
[11:31:39] [Server thread/INFO]: [AlonsoTags] [MySQL] Attempting to create 'alonsotags' table..
[11:31:39] [Server thread/INFO]: [AlonsoTags] [MySQL] Attempting to connect to database..
[11:31:39] [Server thread/INFO]: [MySQL] Driver available: MySQL Connector Java | 5.5.5-10.6.12-MariaDB-0ubuntu0.22.04.1
[11:31:39] [Server thread/INFO]: [AlonsoTags] [MySQL] Successfully connected to database!
[11:31:39] [Server thread/INFO]: [AlonsoTags] [MySQL] Table 'alonsotags' has been created if didn't exist.
[11:31:39] [Server thread/INFO]: [AlonsoTags] Column called 'purchased_tags' already exists. Skipping..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Column called 'selected_color' already exists. Skipping..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Column called 'selected_filter' already exists. Skipping..
[11:31:39] [pool-67-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (767828469573c2f0fa3ed5a44feb0b2f15f2c02d)
[11:31:39] [Server thread/INFO]: [AlonsoTags] GameProfile field is available for heads. Hooking..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Vault found! Hooking..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Cost type 'VAULT' has been enabled!
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'bingo' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'clipped' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'cloudy' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'KYS' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'AntiSocial' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Dropper' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Hacker' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Broke' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Spring' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Nuker' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Toxic' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'YinYang' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Musical' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Dealer' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'DND' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Santa' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Miser' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'AGRO' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Cold' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'FalseBan' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Cute' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Heart' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'IceCold' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'OG' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Abuse' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'eboy' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'egirl' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Gambler' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'KOS' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'TryHard' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'p2w' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'gems' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'YouTube' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Twitch' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Prestige' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Bot' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Archer' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Parkour' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Roblox' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Meme' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Chaos' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Bigspender' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'CLOUT' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Drunk' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Matrix' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Grinder' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Fishy' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Genius' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Sweaty' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Reaper' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Dope' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Psycho' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Dedicated' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'King' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Queen' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Famous' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Zeus' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Vip' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Warrior' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Dangerous' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Legend' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Vindicator' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Winner' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Master' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading '100club' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Owner' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Miner' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Admin' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Dank' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Beta' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'IQ' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'AFK' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'EZ' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Maze' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'nitro' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading '2023' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'love' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'sb1-rip' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'sb1-ezban' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'sb1-christmas' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'sb1-salty' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'sb1-hype' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'sb1-squeaker' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'sb1-noskill' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'sb1-thunder' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'keyall' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading '666' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'clown' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'summer' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Poseidon' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'snowflake' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'furboyt' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Devour' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'kinkles' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Bunny' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'AutoPotter' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'Quantom' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'xcch' tag..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Successfully loaded 98 tags!
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'default' color..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Successfully loaded default color!
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'red' color..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Successfully loaded red color!
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'green' color..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Successfully loaded green color!
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'dark-blue' color..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Successfully loaded dark-blue color!
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'purple' color..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Successfully loaded purple color!
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'cyan' color..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Successfully loaded cyan color!
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'gray' color..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Successfully loaded gray color!
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'pink' color..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Successfully loaded pink color!
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'lime' color..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Successfully loaded lime color!
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'yellow' color..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Successfully loaded yellow color!
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'aqua' color..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Successfully loaded aqua color!
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'gold' color..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Successfully loaded gold color!
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'white' color..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Successfully loaded white color!
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'dark-red' color..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Successfully loaded dark-red color!
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'black' color..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Successfully loaded black color!
[11:31:39] [Server thread/INFO]: [AlonsoTags] Loading 'blue' color..
[11:31:39] [Server thread/INFO]: [AlonsoTags] Successfully loaded blue color!
[11:31:39] [Server thread/INFO]: [AlonsoTags] Successfully loaded 16 colors!
[11:31:39] [Server thread/INFO]: [AlonsoTags] PlaceholderAPI found! Hooking..
[11:31:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: alonsotags [2.0.7-BETA-PRO]
[11:31:39] [Server thread/INFO]: [AdvancedAchievements] Enabling AdvancedAchievements v8.0.2
[11:31:39] [Server thread/INFO]: [AdvancedAchievements] Backing up and loading configuration files...
[11:31:39] [Server thread/INFO]: [AdvancedAchievements] Loaded 27 achievements in 9 categories.
[11:31:39] [Server thread/INFO]: [AdvancedAchievements] 46 disabled categories: [EffectsHeld, Enchantments, DistanceMinecart, Deaths, DistanceGliding, Beds, RaidsWon, Riptides, WaterBuckets, HoePlowings, EnderPearls, Fish, Custom, JobsReborn, Smelting, EatenItems, PetMasterGive, ItemDrops, TargetsShot, PlayerCommands, ItemPickups, Fireworks, AdvancementsCompleted, DistancePig, Arrows, Shear, LavaBuckets, Taming, Snowballs, Crafts, Breeding, Brewing, Trades, AnvilsUsed, ItemBreaks, DistanceBoat, Treasures, PetMasterReceive, MaxLevel, ConsumedPotions, Fertilising, DistanceLlama, Eggs, DistanceHorse, Milk, MusicDiscs]
[11:31:39] [Server thread/INFO]: [AdvancedAchievements] Registering event listeners...
[11:31:39] [Server thread/INFO]: [AdvancedAchievements] Initialising mysql database...
[11:31:39] [Server thread/INFO]: [AdvancedAchievements] Setting up command executor and custom tab completers...
[11:31:39] [Server thread/INFO]: [AdvancedAchievements] Launching scheduled tasks...
[11:31:39] [Server thread/INFO]: [AdvancedAchievements] Registering permissions...
[11:31:40] [Log4j2-TF-1-AsyncLogger[AsyncContext@277050dc]-1/INFO]: [DiscordSRV] [JDA] Login Successful!
[11:31:40] [Log4j2-TF-1-AsyncLogger[AsyncContext@277050dc]-1/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[11:31:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aach [8.0.2]
[11:31:40] [Server thread/INFO]: [AdvancedAchievements] Plugin has finished loading and is ready to run! Took 1171ms.
[11:31:40] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.7-Release
[11:31:40] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[11:31:41] [Server thread/INFO]: [DeluxeMenus] 71 GUI menus loaded!
[11:31:41] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[11:31:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.13.7-Release]
[11:31:41] [Server thread/INFO]: [AdvancedVanish] Enabling AdvancedVanish v1.2.6
[11:31:41] [Server thread/INFO]: [AdvancedVanish] Loading dependencies...
[11:31:41] [Server thread/INFO]: [AdvancedVanish] Successfully loaded dependencies.
[11:31:41] [Server thread/INFO]: [AdvancedVanish] [ACF] Enabled Asynchronous Tab Completion Support!
[11:31:41] [Log4j2-TF-1-AsyncLogger[AsyncContext@277050dc]-1/INFO]: [DiscordSRV] [JDA] Finished Loading!
[11:31:41] [Server thread/INFO]: [AdvancedVanish] Using LuckPerms for vanish priority.
[11:31:41] [Server thread/INFO]: [AdvancedVanish] Using Server List hook.
[11:31:41] [Server thread/INFO]: [AdvancedVanish] Using Essentials hook.
[11:31:41] [Server thread/INFO]: [AdvancedVanish] Using Placeholders hook.
[11:31:41] [Server thread/INFO]: [AdvancedVanish] Using Action Bar hook.
[11:31:41] [Server thread/INFO]: [AdvancedVanish] Using DiscordSRV hook.
[11:31:41] [Server thread/INFO]: [AdvancedVanish] Dynmap not found, not using the Dynmap hook.
[11:31:41] [Server thread/INFO]: [AdvancedVanish] squaremap not found, not using the squaremap hook.
[11:31:41] [Server thread/INFO]: [AdvancedVanish] LibsDisguises not found, not using the LibsDisguises hook.
[11:31:41] [Server thread/INFO]: [AdvancedVanish] PlayerParticles not found, not using the PlayerParticles hook.
[11:31:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedvanish [1.2.6]
[11:31:41] [Server thread/INFO]: [SimpleFreeze] Enabling SimpleFreeze v3.2.4
[11:31:41] [Server thread/INFO]: [SimpleFreeze] Vault found, offline freezing enabled
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:Archer(1047542712464834613)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:archer(1047548078510587984)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:misc(1047548085368270888)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:data(1047548098718748692)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:notes(1047548088660807760)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:network(1140411070775840869)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:prison(1047548091865239572)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:prison-designs(1047548095359099023)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:locked-prison(1047548101889630259)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:tycoon(1155552189373239346)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:formats(1155954195204161687)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:commands(1155578595356446820)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:announcements(1047548105467375736)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:commands(1047548115642744842)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:documents(1047548119220502680)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-updates(1117412017175801968)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:reports(1063709275253391441)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:inactivity(1047548122559168596)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:bugs-suggestions(1081425889537032252)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:punishments(1047548132562567178)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:anticheat-dupe(1139986014283235508)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:general(1047548125818130472)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-chat(1047548136110948432)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:memes(1047548129014190130)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:quotes(1047548108994777209)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:cmd(1047548139776778412)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:anonf(1047548149323022487)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:gf(1147964705655234591)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:bstats(1150300090204958841)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:wick-logs(1047587842475429958)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:ArcherMC(560766140100378673)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:announcements(1044045041913569320)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:information(868059263157825567)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:changelog(1051874459008630835)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:payouts(1133939703171776633)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-team(1030066904934653953)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:giveaways(1040335037620559892)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:sneakpeek(1121123249678467143)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:media-application(1077294410292793437)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:nitro-boosts(1077294527565537371)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:roles-info(1056487162234806313)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:polls(1092204145408217229)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:media(898204325736775741)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:chat(868059281331720192)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:memes(868059283638591498)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:creations(1139330767516860516)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:support(868059275191255050)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-cmds(978750310463979590)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:link-account(1063990513897844806)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:coinflip(1043375303420026942)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:market(882535026418405387)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:dank-memer-premium(1068658275383517184)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:other-bot-cmds(868059287900004412)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:colors(878020654765580320)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:invite-logs(938411494591324171)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:bot-logs(883250645749092393)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:wick-logs(930526460056330260)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-logs(930526460341526609)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:suggestions3(997544526304522291)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:suggestions2(868059286637522994)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:suggestions1(1043828345411993701)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:sneakpeek3(1002814237162348624)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:sneakpeek2(868059267029159947)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:sneakpeek1(1040334578998595684)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:payout-proof(983179576450629633)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:payouts3(893216384165744690)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:payouts2(1064864119284568145)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:payouts1(1046047034827886592)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:giveaways2(868059278957764659)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:giveaways1(1000866406746820670)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:events2(1051584397494718567)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:events1(1050905620154437743)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:changelog1(928578682052808734)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:faq(952232694425714738)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:announcements2(978763354887847956)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:announcements1(1000866272923353189)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:in-game-chat(1046134455464628306)
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console channel ID was invalid, not forwarding console output
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3] Enabling zAuctionHouseV3 v3.1.3.6
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] === ENABLE START ===
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Plugin Version V3.1.3.6
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] /home/container/plugins/zAuctionHouseV3/config.json loaded successfully !
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Soucis avec le message PLAYER_LAG_PING, il n'est pas chargé !
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Soucis avec le message PLAYER_LAG_TPS, il n'est pas chargé !
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Soucis avec le message ERROR_BUY_ERROR, il n'est pas chargé !
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Soucis avec le message ERROR_BUY_MONEY, il n'est pas chargé !
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Loading of 0 price items
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Loading of 3 tax items
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Loaded 4 blacklist items
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Loading the Inventories category with 1 materials
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Loading the Axes category with 1 materials
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Loading the Pickaxe category with 1 materials
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Loading the Swords category with 2 materials
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Loading the Redeemables category with 5 materials
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Loading inventories in progress...
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Successful loading of the inventory auction !
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Successful loading of the inventory buyconfirm !
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Successful loading of the inventory removeconfirm !
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Successful loading of the inventory expire !
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Successful loading of the inventory buying !
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Successful loading of the inventory items !
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Successful loading of the inventory categories !
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Successful loading of the inventory sell !
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Successful loading of the inventory sellshow !
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Successful loading of the inventory category !
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Successful loading of the inventory adminremove !
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Successful loading of the inventory search !
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Successful loading of the inventory show !
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Inventories loading complete.
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Soucis avec le message PLAYER_LAG_PING, il n'est pas chargé !
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Soucis avec le message PLAYER_LAG_TPS, il n'est pas chargé !
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Soucis avec le message ERROR_BUY_ERROR, il n'est pas chargé !
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Soucis avec le message ERROR_BUY_MONEY, il n'est pas chargé !
[11:31:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: zauctionhouse [3.1.3.6]
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Loading 3 inventories
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Loading 0 commands
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] Load SQL...
[11:31:41] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.6] === ENABLE DONE (137ms) ===
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[11:31:41] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[11:31:41] [Server thread/INFO]: [DeluxeChat] Enabling DeluxeChat v1.16.2
[11:31:41] [Server thread/INFO]: [DeluxeChat] 6 formats loaded!
[11:31:41] [Server thread/INFO]: [DeluxeChat] Loading DeluxeChat messages.yml
[11:31:41] [Server thread/INFO]: [DeluxeChat] 8 entries added to the chat_filter!
[11:31:41] [Server thread/INFO]: [DeluxeChat] Detected Vault
[11:31:41] [Server thread/INFO]: [DeluxeChat] Hooked into Vault
[11:31:41] [Server thread/INFO]: [TAB] Enabling TAB v3.1.4
[11:31:41] [Server thread/INFO]: [TAB] Server version: 1.12.2 (v1_12_R1)
[11:31:41] [Server thread/INFO]: [TAB] Loaded NMS hook in 6ms
[11:31:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [3.1.4]
[11:31:42] [Server thread/INFO]: [TAB] Enabled in 64ms
[11:31:42] [Server thread/INFO]: [ChatSentry] Enabling ChatSentry v5.4.5
[11:31:42] [Server thread/INFO]: 
[11:31:42] [Server thread/INFO]:  _____ _           _   _____            _              
[11:31:42] [Server thread/INFO]: /  __ \ |         | | /  ___|          | |             
[11:31:42] [Server thread/INFO]: | /  \/ |__   __ _| |_\ `--.  ___ _ __ | |_ _ __ _   _ 
[11:31:42] [Server thread/INFO]: | |   | '_ \ / _` | __|`--. \/ _ \ '_ \| __| '__| | | |
[11:31:42] [Server thread/INFO]: | \__/\ | | | (_| | |_/\__/ /  __/ | | | |_| |  | |_| |
[11:31:42] [Server thread/INFO]:  \____/_| |_|\__,_|\__\____/ \___|_| |_|\__|_|   \__, |
[11:31:42] [Server thread/INFO]:                                                   __/ |
[11:31:42] [Server thread/INFO]:                                                  |___/ 
[11:31:42] [Server thread/INFO]: Starting on version 5.4.5
[11:31:42] [Server thread/INFO]: 
[11:31:42] [Server thread/INFO]: [ChatSentry] Validating files...
[11:31:42] [Server thread/INFO]: [ChatSentry] Loaded files; no issues were found.
[11:31:42] [Server thread/INFO]: [ChatSentry] Using SQLite (flatfile) for storage.
[11:31:42] [Server thread/INFO]: [ChatSentry] Cache is waiting for the server to begin ticking...
[11:31:42] [Server thread/INFO]: [ChatSentry Updater] Update checking has been disabled; you will not be notified when new releases are available. Please note, you won't be able to take advantage of new features and fixes as quickly!
[11:31:42] [Server thread/INFO]: [Boss] Enabling Boss v4.8.11
[11:31:42] [Server thread/INFO]:   ___   ___   __   __
[11:31:42] [Server thread/INFO]:  | |_) / / \ ( (` ( (`
[11:31:42] [Server thread/INFO]:  |_|_) \_\_/ _)_) _)_)
[11:31:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: boss [4.8.11]
[11:31:42] [Server thread/INFO]:   
[11:31:42] [Server thread/INFO]: Tutorial:
[11:31:42] [Server thread/INFO]: https://github.com/kangarko/boss/wiki
[11:31:42] [Server thread/INFO]:   
[11:31:42] [Server thread/INFO]: Get help:
[11:31:42] [Server thread/INFO]: https://github.com/kangarko/boss/issues
[11:31:42] [Server thread/INFO]: ______________________________________________________________
[11:31:42] [Server thread/INFO]: [DiscordSRV] API listener org.mineacademy.boss.lib.model.DiscordListener$DiscordListenerImpl unsubscribed
[11:31:42] [Server thread/INFO]: [DiscordSRV] API listener org.mineacademy.boss.lib.model.DiscordListener$DiscordListenerImpl subscribed (3 methods)
[11:31:42] [Server thread/INFO]: [ItemMerger] Enabling ItemMerger v1.0.0
[11:31:42] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+9-e3e52db
[11:31:42] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[11:31:42] [Server thread/INFO]: [ArcherMentions] Enabling ArcherMentions v1.0
[11:31:42] [Server thread/INFO]: [PlayerWelcome] Enabling PlayerWelcome v1.0
[11:31:42] [Server thread/INFO]: [CombatLogX] Enabling CombatLogX v11.4.0.1.1193
[11:31:42] [Server thread/INFO]: [CombatLogX] Successfully loaded 29 language(s).
[11:31:42] [Server thread/INFO]: [CombatLogX] Detected server as regular SpigotMC/PaperMC (not Folia)
[11:31:42] [Server thread/INFO]: [CombatLogX] Enabling expansions...
[11:31:42] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Action Bar v17.3'...
[11:31:42] [Server thread/INFO]: [CombatLogX]  
[11:31:42] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Cheat Prevention v17.6'...
[11:31:42] [Server thread/INFO]: [CombatLogX] [Cheat Prevention] io.papermc.paper.event.player.AsyncChatEvent is not supported on this server version.
[11:31:42] [Server thread/INFO]: [CombatLogX] [Cheat Prevention] io.papermc.paper.event.entity.EntityInsideBlockEvent is not supported on this server version.
[11:31:42] [Server thread/INFO]: [CombatLogX]  
[11:31:42] [Server thread/INFO]: [CombatLogX] Enabling expansion 'PlaceholderAPI Compatibility v17.1'...
[11:31:42] [Server thread/INFO]: [CombatLogX] [PlaceholderAPI Compatibility] Successfully found a dependency: PlaceholderAPI v2.11.4
[11:31:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: combatlogx [17.1]
[11:31:42] [Server thread/INFO]: [CombatLogX]  
[11:31:42] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Rewards v17.4'...
[11:31:42] [Server thread/INFO]: [CombatLogX] [Rewards] Successfully found a dependency: Vault v1.7.3-b131
[11:31:42] [Server thread/INFO]: [CombatLogX] [Rewards] Successfully hooked into economy handler 'EssentialsX Economy' from plugin 'Essentials v2.21.0-dev+9-e3e52db'.
[11:31:42] [Server thread/INFO]: [CombatLogX]  
[11:31:42] [Server thread/INFO]: [CombatLogX] Successfully enabled 4 expansions.
[11:31:43] [Server thread/INFO]: [TitleManager] Enabling TitleManager v2.3.5
[11:31:43] [Server thread/INFO]: [TitleManager] Invalid version of CombatLogX minimum required version is version 10.X.X.X
[11:31:43] [Server thread/INFO]: [Duels] Enabling Duels v3.5.2
[11:31:43] [Server thread/WARN]: [Duels] Failed to hook into CombatLogX: This version of CombatLogX is not supported. Please try upgrading to the latest version.
[11:31:43] [Server thread/INFO]: [Duels] Successfully hooked into 'Essentials'!
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_wins}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_losses}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_can_request}
[11:31:43] [Server thread/INFO]: [Duels] Successfully hooked into 'MVdWPlaceholderAPI'!
[11:31:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: duels [1.0]
[11:31:43] [Server thread/INFO]: [Duels] Successfully hooked into 'PlaceholderAPI'!
[11:31:43] [Server thread/INFO]: [Duels] Using Economy Provider: com.earth2me.essentials.economy.vault.VaultEconomyProvider
[11:31:43] [Server thread/INFO]: [Duels] Successfully hooked into 'Vault'!
[11:31:43] [Server thread/INFO]: [Duels] Successfully hooked into 'WorldGuard'!
[11:31:43] [Server thread/INFO]: [Duels] KitManagerImpl: Loaded 13 kit(s).
[11:31:43] [Server thread/INFO]: [Duels] ArenaManagerImpl: Loaded 34 arena(s).
[11:31:43] [Server thread/INFO]: [Duels] QueueManager: Loaded 0 queue(s).
[11:31:43] [Server thread/INFO]: [Duels] QueueSignManagerImpl: Loaded 0 queue sign(s).
[11:31:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: duels [1.0.0]
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_match_duration}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_match_kit}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_match_arena}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_match_bet}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_match_rating}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_match_opponent}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_match_opponent_health}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_match_opponent_ping}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_match_opponent_rating}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rating_classic}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rating_nodebuff}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rating_debuff}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rating_sumo}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rating_archer}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rating_soup}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rating_frog}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rating_oitc}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rating_mcsg}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rating_builduhc}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rating_stick-fight}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rating_boxing}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rating_axe}
[11:31:43] [Server thread/INFO]: [Duels] ExtensionManager: Extension 'Placeholders 1.0.4' is now enabled.
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rank_wins}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rank_losses}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rank_-}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rank_classic}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rank_nodebuff}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rank_debuff}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rank_sumo}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rank_archer}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rank_soup}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rank_frog}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rank_oitc}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rank_mcsg}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rank_builduhc}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rank_stick-fight}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rank_boxing}
[11:31:43] [Server thread/INFO]: [MVdWPlaceholderAPI] Duels added custom placeholder {duels_rank_axe}
[11:31:43] [Server thread/WARN]: [PlaceholderAPI] Nag author(s) [Realized] of plugin Duels about their usage of the PlaceholderAPI class. This way of unregistering placeholders is no longer supported and will be removed in v2.13.0!
[11:31:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: duels [1.0.0]
[11:31:43] [Server thread/INFO]: [Duels] ExtensionManager: Extension 'Leaderboards 1.1.1' is now enabled.
[11:31:43] [Server thread/INFO]: [Duels] [ArenaRegen Extension] NMSHandler: Using me.realized.de.arenaregen.nms.fallback.NMSHandler
[11:31:43] [Server thread/INFO]: [Duels] ExtensionManager: Extension 'ArenaRegen 1.2.0' is now enabled.
[11:31:43] [Server thread/INFO]: [WorldEffects] Enabling WorldEffects v1.0
[11:31:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: worldeffects [1.0]
[11:31:43] [Server thread/INFO]: [AutoSell] Enabling AutoSell v1.10.0-DEV
[11:31:43] [Server thread/INFO]: [AutoSell] Loading AutoSell messages.yml
[11:31:43] [Server thread/INFO]: [AutoSell] 1 shops loaded!
[11:31:43] [Server thread/INFO]: [AutoSell] 8 auto smelt entries loaded!
[11:31:43] [Server thread/WARN]: [AutoSell] Failed to establish a hook for area handling.
[11:31:43] [Server thread/INFO]: [AutoSell] BlockBreakEvent priority set to MONITOR!
[11:31:43] [Server thread/INFO]: [AutoSell] 10 permission based multipliers loaded!
[11:31:43] [Server thread/INFO]: [AutoSell] 1 permission based shop multipliers have been loaded!
[11:31:43] [Server thread/INFO]: [AutoSell] 0 shop signs have been loaded!
[11:31:43] [Server thread/INFO]: [PermMultipliers] Enabling PermMultipliers v1.0
[11:31:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: multi [1.0]
[11:31:43] [Server thread/INFO]: [EconomyAPI] Enabling EconomyAPI v1.3
[11:31:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: economyapi [1.3]
[11:31:43] [Server thread/INFO]: [DeluxeCoinflip] Enabling DeluxeCoinflip v1.8.7
[11:31:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: coinflip [1.8.7]
[11:31:43] [Server thread/INFO]: [DeluxeCoinflip] Hooked into PlaceholderAPI successfully
[11:31:43] [Server thread/INFO]: [RequirementsUtil] Enabling RequirementsUtil v1.2
[11:31:43] [Server thread/INFO]: [PendingItems] Enabling PendingItems v1.0
[11:31:43] [Server thread/INFO]: [Withdraw] Enabling Withdraw v1.0
[11:31:43] [Server thread/INFO]: [blockcommands] Enabling blockcommands v1.0
[11:31:43] [Server thread/INFO]: [TokensVouchers] Enabling TokensVouchers v1.0
[11:31:44] [Server thread/INFO]: [FbFix] Enabling FbFix v1.0
[11:31:44] [Server thread/INFO]: [MVdWPlaceholderAPI] FbFix added custom placeholder {sb}
[11:31:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: fbfix [1.0]
[11:31:44] [Server thread/INFO]: [FeatherBoard] Enabling FeatherBoard v4.30.0
[11:31:44] [Server thread/INFO]: [FeatherBoard] -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
[11:31:44] [Server thread/INFO]: [FeatherBoard] Plugin: FeatherBoard v4.30.0
[11:31:44] [Server thread/INFO]: [FeatherBoard] Framework version: 2020-06
[11:31:44] [Server thread/INFO]: [FeatherBoard] Author: Maximvdw (Maxim Van de Wynckel)
[11:31:44] [Server thread/INFO]: [FeatherBoard] Site: https://www.mvdw-software.com/
[11:31:44] [Server thread/INFO]: [FeatherBoard] Copyright: 2013-2020 All Rights Received
[11:31:44] [Server thread/INFO]: [FeatherBoard] -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
[11:31:44] [Server thread/INFO]: [FeatherBoard] Loading database driver ...
[11:31:44] [Server thread/INFO]: [FeatherBoard] Loading dependency Javax Persistence 2.1.0 ...
[11:31:44] [Server thread/INFO]: [FeatherBoard] Javax Persistence 2.1.0 is now loaded!
[11:31:44] [Server thread/INFO]: [FeatherBoard] Loading dependency ORMLite 5 ...
[11:31:44] [Server thread/INFO]: [FeatherBoard] ORMLite 5 is now loaded!
[11:31:44] [Server thread/INFO]: [FeatherBoard] Loading dependency ORMLite 5 JDBC ...
[11:31:44] [Server thread/INFO]: [FeatherBoard] ORMLite 5 JDBC is now loaded!
[11:31:44] [Server thread/INFO]: [FeatherBoard] Loading configuration ...
[11:31:44] [Server thread/INFO]: [FeatherBoard] Loading messages ...
[11:31:44] [Server thread/INFO]: [FeatherBoard] Loading language file: lang_en
[11:31:44] [Server thread/INFO]: [FeatherBoard] Checking for module updates ...
[11:31:44] [Server thread/INFO]: [FeatherBoard] Fetching modules from server ...
[11:31:45] [Server thread/INFO]: [FeatherBoard] Loading placeholders and event triggers ...
[11:31:45] [Server thread/INFO]: [FeatherBoard] Loaded 3 of the 3163 placholders
[11:31:45] [Server thread/INFO]: [MVdWPlaceholderAPI] Hooked into MVdW plugin: FeatherBoard
[11:31:45] [Server thread/INFO]: [FeatherBoard] Using OPTIMAL as the update strategy
[11:31:45] [Server thread/INFO]: [FeatherBoard] Loading scoreboard 'boxing' ...
[11:31:45] [Server thread/INFO]: [FeatherBoard] Loading scoreboard 'stickfight' ...
[11:31:45] [Server thread/INFO]: [FeatherBoard] Loading scoreboard 'koth' ...
[11:31:45] [Server thread/INFO]: [FeatherBoard] Loading scoreboard 'bridge' ...
[11:31:45] [Server thread/INFO]: [FeatherBoard] Loading scoreboard 'duel' ...
[11:31:45] [Server thread/INFO]: [FeatherBoard] Loading scoreboard 'default' ...
[11:31:46] [Server thread/INFO]: [FeatherBoard] Loading scoreboard 'party' ...
[11:31:46] [Server thread/INFO]: [FeatherBoard] Added 'PLACEHOLDER' as the default scoreboard assign method
[11:31:46] [Server thread/INFO]: [FeatherBoard] Database contains 49 player records
[11:31:46] [Server thread/INFO]: [FeatherBoard] Adding command 'featherboard'
[11:31:46] [Server thread/INFO]: [Tokens] Enabling Tokens v2.15
[11:31:46] [Server thread/WARN]: [Tokens] Could not save config.yml to plugins/Tokens/config.yml because config.yml already exists.
[11:31:46] [Server thread/WARN]: [Tokens] Could not save messages.yml to plugins/Tokens/messages.yml because messages.yml already exists.
[11:31:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gems [2.15]
[11:31:46] [Server thread/INFO]: [Tokens] Registered gems command.
[11:31:46] [Server thread/WARN]: java.lang.ClassNotFoundException: pl.jonspitfire.enchants.excavation.shapes.SchematicShape
[11:31:46] [Server thread/WARN]:     at java.base/java.net.URLClassLoader.findClass(URLClassLoader.java:476)
[11:31:46] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.findClass(:156)
[11:31:46] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.findClass(:104)
[11:31:46] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:594)
[11:31:46] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:527)
[11:31:46] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[11:31:46] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:315)
[11:31:46] [Server thread/WARN]:     at com.boydti.fawe.util.MainUtil.warnDeprecated(MainUtil.java:838)
[11:31:46] [Server thread/WARN]:     at com.sk89q.worldedit.CuboidClipboard.<init>(CuboidClipboard.java:97)
[11:31:46] [Server thread/WARN]:     at com.sk89q.worldedit.schematic.MCEditSchematicFormat.load(MCEditSchematicFormat.java:176)
[11:31:46] [Server thread/WARN]:     at com.sk89q.worldedit.schematic.MCEditSchematicFormat.load(MCEditSchematicFormat.java:200)
[11:31:46] [Server thread/WARN]:     at pl.jonspitfire.enchants.excavation.shapes.SchematicShape.<init>(SchematicShape.java:28)
[11:31:46] [Server thread/WARN]:     at pl.jonspitfire.enchants.excavation.shapes.SchematicShape.deserialize(SchematicShape.java:64)
[11:31:46] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[11:31:46] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
[11:31:46] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[11:31:46] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:566)
[11:31:46] [Server thread/WARN]:     at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeViaMethod(:79)
[11:31:46] [Server thread/WARN]:     at org.bukkit.configuration.serialization.ConfigurationSerialization.deserialize(:119)
[11:31:46] [Server thread/WARN]:     at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(:197)
[11:31:46] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(:35)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(:207)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(:196)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(:462)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(:183)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(:443)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(:519)
[11:31:46] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(:26)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(:207)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(:196)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(:462)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(:183)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(:443)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(:519)
[11:31:46] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(:26)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(:207)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(:196)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(:462)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(:183)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(:443)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(:519)
[11:31:46] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(:26)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(:207)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(:196)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.constructDocument(:161)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(:147)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.loadFromReader(:524)
[11:31:46] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.load(:437)
[11:31:46] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.loadFromString(:53)
[11:31:46] [Server thread/WARN]:     at org.bukkit.configuration.file.FileConfiguration.load(:162)
[11:31:46] [Server thread/WARN]:     at org.bukkit.configuration.file.FileConfiguration.load(:130)
[11:31:46] [Server thread/WARN]:     at com.solodevelopment.tokens.utils.FileSystem.load(FileSystem.java:72)
[11:31:46] [Server thread/WARN]:     at com.solodevelopment.tokens.Tokens.loadEnchantments(Tokens.java:226)
[11:31:46] [Server thread/WARN]:     at com.solodevelopment.tokens.Tokens.onEnable(Tokens.java:94)
[11:31:46] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(:264)
[11:31:46] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(:316)
[11:31:46] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(:405)
[11:31:46] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_12_R1.CraftServer.enablePlugin(:399)
[11:31:46] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_12_R1.CraftServer.enablePlugins(:348)
[11:31:46] [Server thread/WARN]:     at net.minecraft.server.v1_12_R1.MinecraftServer.t(:442)
[11:31:46] [Server thread/WARN]:     at net.minecraft.server.v1_12_R1.MinecraftServer.l(:403)
[11:31:46] [Server thread/WARN]:     at net.minecraft.server.v1_12_R1.MinecraftServer.a(:338)
[11:31:46] [Server thread/WARN]:     at net.minecraft.server.v1_12_R1.DedicatedServer.init(:297)
[11:31:46] [Server thread/WARN]:     at net.minecraft.server.v1_12_R1.MinecraftServer.run(:617)
[11:31:46] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:829)
[11:31:47] [Server thread/INFO]: [Tokens] Loaded a total of 26 enchantments.
[11:31:47] [Server thread/INFO]: [ArcherDiscordLink] Enabling ArcherDiscordLink v1.0-${git.commit.id.abbrev}/${git.branch}
[11:31:47] [Server thread/INFO]: [DiscordSRV] API listener me.staylords.sync.listeners.GeneralJDAListeners subscribed (3 methods)
[11:31:47] [Server thread/INFO]: [Crystals] Enabling Crystals v1.0
[11:31:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: crystals [1.0]
[11:31:47] [Server thread/INFO]: [BrokenBlocks] Enabling BrokenBlocks v2.0
[11:31:47] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] BrokenBlocks ConnectionPool - Starting...
[11:31:47] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] BrokenBlocks ConnectionPool - Start completed.
[11:31:47] [Server thread/INFO]: [BrokenBlocks] Connected to SQL database!
[11:31:47] [Server thread/INFO]: [AutoMiner] Enabling AutoMiner v1.0
[11:31:47] [Server thread/INFO]: [AutoMiner] Loaded 273 players
[11:31:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: autominer [1.0]
[11:31:47] [Server thread/INFO]: [AutoMiner] PlaceholderAPI hook enabled
[11:31:47] [Server thread/INFO]: [minebomb] Enabling minebomb v1.3
[11:31:47] [Server thread/INFO]: [minebomb] [minebomb] Successfully enabled version 1.3!
[11:31:47] [Server thread/INFO]: [TokensMenu] Enabling TokensMenu v1.0
[11:31:47] [Server thread/INFO]: [Rankups] Enabling Rankups v1.0
[11:31:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rankups [1.0]
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_1_level}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_1_name}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_1_prefix}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_2_level}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_2_name}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_2_prefix}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_3_level}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_3_name}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_3_prefix}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_4_level}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_4_name}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_4_prefix}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_5_level}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_5_name}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_5_prefix}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_6_level}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_6_name}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_6_prefix}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_7_level}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_7_name}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_7_prefix}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_8_level}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_8_name}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_8_prefix}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_9_level}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_9_name}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_9_prefix}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_10_level}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_10_name}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_10_prefix}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_11_level}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_11_name}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_11_prefix}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_12_level}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_12_name}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_12_prefix}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_13_level}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_13_name}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_13_prefix}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_14_level}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_14_name}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_14_prefix}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_15_level}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_15_name}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_15_prefix}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_16_level}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_16_name}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_16_prefix}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_17_level}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_17_name}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_17_prefix}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_18_level}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_18_name}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_18_prefix}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_19_level}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_19_name}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_19_prefix}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_20_level}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_20_name}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_top_20_prefix}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_progressbar}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_level}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_level_raw}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_position}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_position_raw}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_rankup_cost}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_rankup_cost_raw}
[11:31:47] [Server thread/INFO]: [MVdWPlaceholderAPI] Rankups added custom placeholder {rankups_reached_limit}
[11:31:47] [Server thread/INFO]: [PickaxeLevels] Enabling PickaxeLevels v1.0
[11:31:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pickaxelevels [1.0]
[11:31:47] [Server thread/INFO]: [PickaxeLevels] Enabled PlaceholderAPI hook.
[11:31:47] [Server thread/INFO]: [PrivateMines] Enabling PrivateMines v1.0.5
[11:31:47] [Server thread/INFO]: Running 1.12 registry dumper!
[11:31:47] [Server thread/INFO]: Using adapter: com.boydti.fawe.bukkit.v1_12.FaweAdapter_1_12@55eb833c
[11:31:47] [Server thread/INFO]: =========================================
[11:31:47] [Server thread/WARN]: [PrivateMines] Could not save schematics.yml to plugins/PrivateMines/schematics/schematics.yml because schematics.yml already exists.
[11:31:48] [Server thread/INFO]: [PrivateMines] Loaded schematics.yml
[11:31:48] [Server thread/WARN]: [PrivateMines] Could not save mines.yml to plugins/PrivateMines/mines.yml because mines.yml already exists.
[11:31:48] [Server thread/INFO]: [PrivateMines] Loaded mines.yml
[11:31:48] [Server thread/WARN]: [PrivateMines] Could not save menus.yml to plugins/PrivateMines/menus.yml because menus.yml already exists.
[11:31:48] [Server thread/INFO]: [PrivateMines] Loaded menus.yml
[11:31:48] [Server thread/INFO]: [ItemsPlaceholders] Enabling ItemsPlaceholders v1.0
[11:31:48] [Server thread/INFO]: [Backpacks] Enabling Backpacks v1.0
[11:31:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: backpacks [1.0]
[11:31:48] [Server thread/INFO]: [Backpacks] Enabled PlaceholderAPI hook.
[11:31:48] [Server thread/INFO]: [AutoMiners] Enabling AutoMiners v1.0
[11:31:48] [Server thread/WARN]: Could not register alias kothloot because it contains commands that do not exist: koth loot Village
[11:31:48] [Server thread/INFO]: Done (22.315s)! For help, type "help" or "?"
[11:31:48] [Server thread/INFO]: Timings Reset
[11:31:48] [Craft Scheduler Thread - 5/INFO]: [PLOTS] That is not a valid subcommand! Type /plots for help
[11:31:48] [Craft Scheduler Thread - 6/INFO]: [PLOTS] Did you mean: /plot debugexec
[11:31:48] [Craft Scheduler Thread - 23/INFO]: [StoreStats] Testing Store connection...
[11:31:48] [Craft Scheduler Thread - 23/INFO]: [StoreStats] Using secret ************************************b535
[11:31:48] [Craft Scheduler Thread - 27/INFO]: [zAuctionHouseV3 v3.1.3.6] Database connect to 172.18.0.1
[11:31:48] [Craft Scheduler Thread - 25/INFO]: [Essentials] Fetching version information...
[11:31:48] [Craft Scheduler Thread - 25/INFO]: [Essentials] Update checking disabled in config.
[11:31:48] [Craft Scheduler Thread - 9/INFO]: [DecentHolograms] Loading animations...
[11:31:48] [Craft Scheduler Thread - 8/INFO]: [DecentHolograms] Loading holograms... 
[11:31:48] [Craft Scheduler Thread - 1/INFO]: [Blue Slime Core]  
[11:31:48] [Craft Scheduler Thread - 1/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'CombatLogX'.
[11:31:48] [Craft Scheduler Thread - 21/INFO]: ARCHER » Loading data from database...
[11:31:48] [Craft Scheduler Thread - 9/INFO]: [DecentHolograms] Loaded 3 animations!
[11:31:48] [Craft Scheduler Thread - 27/INFO]: [zAuctionHouseV3 v3.1.3.6] Script ITEMS successfuly run
[11:31:48] [Craft Scheduler Thread - 27/INFO]: [zAuctionHouseV3 v3.1.3.6] Script TRANSACTIONS successfuly run
[11:31:48] [Craft Scheduler Thread - 27/INFO]: [zAuctionHouseV3 v3.1.3.6] Loading items
[11:31:48] [Server thread/INFO]: (FAWE) Plugin 'WorldGuard' found. Using it now.
[11:31:48] [Server thread/INFO]: (FAWE) Optimizing PlotSquared
[11:31:48] [Craft Scheduler Thread - 27/INFO]: [zAuctionHouseV3 v3.1.3.6] Loading transactions
[11:31:48] [Server thread/INFO]: (FAWE)  - QueueProvider: class com.boydti.fawe.regions.general.plot.FaweLocalBlockQueue
[11:31:48] [Server thread/INFO]: (FAWE)  - HybridPlotManager.REGENERATIVE_CLEAR: false
[11:31:48] [Server thread/INFO]: (FAWE)  - SchematicHandler: com.boydti.fawe.regions.general.plot.FaweSchematicHandler@86a71f5
[11:31:48] [Server thread/INFO]: (FAWE)  - ChunkManager: com.boydti.fawe.regions.general.plot.FaweChunkManager@666498ab
[11:31:48] [pool-71-thread-2/INFO]: [zAuctionHouseV3 v3.1.3.6] Loading of transactions successfully completed.
[11:31:48] [Server thread/INFO]: (FAWE) Plugin 'PlotSquared' found. Using it now.
[11:31:48] [pool-71-thread-1/INFO]: [zAuctionHouseV3 v3.1.3.6] Loading of items successfully completed.
[11:31:48] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.12.2 (340)
[11:31:48] [Craft Scheduler Thread - 8/INFO]: [DecentHolograms] Loaded 71 holograms!
[11:31:48] [Server thread/WARN]: [ViaVersion] This version of Minecraft is extremely outdated and support for it has reached its end of life. You will still be able to run Via on this Minecraft version, but we are unlikely to provide any further fixes or help with problems specific to legacy Minecraft versions. Please consider updating to give your players a better experience and to avoid issues that have long been fixed.
[11:31:48] [Server thread/WARN]: [ViaVersion] You are running an outdated Java version, please consider updating it to at least Java 17 (your version is 11.0.20.1). At some point in the future, ViaVersion will no longer be compatible with this version of Java.
[11:31:49] [Craft Scheduler Thread - 0/INFO]: [Blue Slime Core]  
[11:31:49] [Craft Scheduler Thread - 0/INFO]: [Blue Slime Core] [Update Checker] Found a possible update for plugin 'BlueSlimeCore'.
[11:31:49] [Craft Scheduler Thread - 0/INFO]: [Blue Slime Core] [Update Checker] Local Version: 2.9.4.377
[11:31:49] [Craft Scheduler Thread - 0/INFO]: [Blue Slime Core] [Update Checker] Remote Version: 2.9.3.371
[11:31:49] [Craft Scheduler Thread - 0/INFO]: [Blue Slime Core] [Update Checker] Download Link: https://hangar.papermc.io/SirBlobman/BlueSlimeCore
[11:31:49] [User Authenticator #1/INFO]: UUID of player Archer is 775ff90e-281b-4a75-b07e-fa854924cdaf
[11:31:49] [Craft Scheduler Thread - 26/INFO]: [zAuctionHouseV3 v3.1.3.6] New update available. Your version: 3.1.3.6, latest version: 3.1.3.9
[11:31:49] [Craft Scheduler Thread - 26/INFO]: [zAuctionHouseV3 v3.1.3.6] Download plugin here: https://groupez.dev/resources/1
[11:31:49] [Server thread/INFO]: [HelpPagePlus] A new update is available.
[11:31:50] [velocityreport-mysql-thread-0/INFO]: [VelocityReport] Successfully created velocityreport_reports table.
[11:31:50] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[11:31:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.26.2]
[11:31:50] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[11:31:50] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.90.1 ]================================
[11:31:50] [Server thread/INFO]: [ShopGUIPlus]  
[11:31:50] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[11:31:50] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[11:31:50] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[11:31:50] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[11:31:50] [Server thread/INFO]: [ShopGUIPlus] No external spawner plugins registered, using built-in spawners support.
[11:31:50] [Server thread/INFO]: [ShopGUIPlus] Loaded 1 main menu items.
[11:31:50] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'pvp' with 9 items.
[11:31:50] [Server thread/INFO]: [ShopGUIPlus] Loaded 1 shops with total of 9 items.
[11:31:50] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[11:31:50] [Server thread/INFO]: [ShopGUIPlus] Loaded 7 sounds.
[11:31:50] [Server thread/INFO]: [ShopGUIPlus]  
[11:31:50] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[11:31:50] [Server thread/INFO]: [Citizens] Loaded 2 NPCs.
[11:31:50] [Server thread/INFO]: [ChatSentry] Cached ~213 variables and settings across 21 files.
[11:31:50] [Server thread/INFO]: [ChatSentry] Data caching complete.
[11:31:50] [Server thread/INFO]: [ChatSentry] Initalized modules.
[11:31:50] [Server thread/INFO]: [ChatSentry] Startup finished!
[11:31:50] [Server thread/INFO]: [ChatSentry] Automatically cleaning log data older than 30 day(s).
[11:31:50] [Craft Scheduler Thread - 23/INFO]: [StoreStats] Successfully connected to store:
[11:31:50] [Craft Scheduler Thread - 23/INFO]: [StoreStats] Name: 'ArcherMC'
[11:31:50] [Craft Scheduler Thread - 23/INFO]: [StoreStats] URL: 'https://archershop.buycraft.net'
[11:31:50] [Server thread/INFO]: [CombatLogX] Successfully enabled 0 late-load expansions.
[11:31:50] [Server thread/INFO]: [DeluxeCoinflip] Found and using money, gems economy provider(s).
[11:31:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: brokenblocks [2.0]
[11:31:50] [Server thread/INFO]: [BrokenBlocks] Enabled PlaceholderAPI hook.
[11:31:50] [Server thread/INFO]: ARCHER » Loaded 0 blocks from database!
[11:31:50] [Server thread/INFO]: ARCHER » Done! Took 1691ms
[11:31:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: serverpinger [2.3.2]
[11:31:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: autosell [1.0.2]
[11:31:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[11:31:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[11:31:50] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion votingplugin. Identifier is already in use.
[11:31:50] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion votingplugin due to an unknown issue.
[11:31:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: ticksformat [1.0]
[11:31:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: progress [2.1]
[11:31:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: checkitem [2.7.1]
[11:31:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.6.2]
[11:31:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.4]
[11:31:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[11:31:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: parseother [1.4.6]
[11:31:50] [Server thread/INFO]: [PAPI] [Javascript-Expansion] 3 scripts loaded!
[11:31:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: javascript [2.1.2]
[11:31:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.1]
[11:31:50] [Server thread/INFO]: 13 placeholder hook(s) registered! 2 placeholder hook(s) have an update available.
[11:31:50] [Server thread/INFO]: Archer[hidden] logged in with entity id 653 at ([Archer]-742.7449094547716, 45.90695574571922, 130.63936586267852)
[11:31:50] [Craft Scheduler Thread - 32/INFO]: [AlonsoLeaderboards] Checking for updates...
[11:31:50] [Craft Scheduler Thread - 28/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[11:31:50] [Craft Scheduler Thread - 32/INFO]: [AlonsoLeaderboards] Plugin up-to-date! You have the latest version!
[11:31:51] [Server thread/INFO]: [ChatItem] Loading ViaVersion support ...
[11:31:51] [Server thread/INFO]: [MVdWPlaceholderAPI] ParkourRun added custom placeholder {parkour_time}
[11:31:51] [Server thread/INFO]: [MVdWPlaceholderAPI] ParkourRun added custom placeholder {parkour_checkpoint}
[11:31:51] [DiscordSRV - JDA Callback 9/INFO]: [DiscordSRV] Successfully registered 10 slash commands (0 conflicted) for 1 plugins in 2/2 guilds (0 cancelled)
[11:31:51] [Craft Scheduler Thread - 33/INFO]: [BuycraftX] Fetching all due players...
[11:31:51] [User Authenticator #1/INFO]: UUID of player xAnqel is db10305b-efc8-4d9a-b2c0-a927eade2fa8
[11:31:51] [Craft Scheduler Thread - 33/INFO]: [BuycraftX] Fetched due players (0 found).
[11:31:51] [Server thread/INFO]: xAnqel[hidden] logged in with entity id 728 at ([Archer]-364.5, 85.0, 495.5)
[11:31:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimateautorestart [Build 54a]
[11:31:51] [Server thread/INFO]: [UltimateAutoRestart] Hooked into PlaceholderAPI!
[11:31:51] [Server thread/INFO]: [UltimateAutoRestart] Successfully performed 1 hooks!
[11:31:51] [Server thread/INFO]: [ClearLagTimer] Attempting hooks...
[11:31:51] [Server thread/INFO]: [ClearLagTimer] Hooked into PlaceholderAPI!
[11:31:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: clearlagtimer [Build 35a]
[11:31:51] [Server thread/INFO]: [ClearLagTimer] Successfully performed 1 hooks!
[11:31:53] [Craft Scheduler Thread - 0/WARN]: [VotingPlugin] Detected an issue with voting sites, check the server startup log for more details: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[11:31:53] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[11:31:53] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[11:31:58] [Craft Scheduler Thread - 43/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.14.1