Paste #103732: logs

Date: 2022/12/07 06:52:04 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[22:43:53] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[22:43:54] [Worker-Main-1/INFO]: Loaded 7 recipes
[22:43:55] [Server thread/INFO]: Starting minecraft server version 1.18.2
[22:43:55] [Server thread/INFO]: Loading properties
[22:43:55] [Server thread/INFO]: This server is running Paper version git-Paper-388 (MC: 1.18.2) (Implementing API version 1.18.2-R0.1-SNAPSHOT) (Git: fc9ee65 on ver/1.18.2)
[22:43:55] [Server thread/INFO]: Server Ping Player Sample Count: 12
[22:43:55] [Server thread/INFO]: Using 4 threads for Netty based IO
[22:43:55] [Server thread/INFO]: Default game type: SURVIVAL
[22:43:55] [Server thread/INFO]: Generating keypair
[22:43:55] [Server thread/INFO]: Starting Minecraft server on 103.165.46.46:9798
[22:43:55] [Server thread/INFO]: Using epoll channel type
[22:43:55] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[22:43:55] [Server thread/INFO]: Paper: Using OpenSSL 1.0.x (Linux x86_64) cipher from Velocity.
[22:43:56] [Server thread/ERROR]: [STDERR] [org.bukkit.craftbukkit.v1_18_R2.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[22:43:59] [Server thread/WARN]: Legacy plugin ChatGames v1.0 does not specify an api-version.
[22:43:59] [Server thread/WARN]: Legacy plugin CustomList v2.0.7 does not specify an api-version.
[22:43:59] [Server thread/WARN]: Legacy plugin IPWhitelist v1.7 does not specify an api-version.
[22:43:59] [Server thread/INFO]: [MiniaturePets] Loading 1 libraries... please wait
[22:43:59] [Server thread/INFO]: [MiniaturePets] Loaded library /home/mcserver/skyblock/libraries/io/github/classgraph/classgraph/4.8.108/classgraph-4.8.108.jar
[22:43:59] [Server thread/INFO]: [SuperiorSkyblock2] Loading 1 libraries... please wait
[22:43:59] [Server thread/INFO]: [SuperiorSkyblock2] Loaded library /home/mcserver/skyblock/libraries/org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar
[22:43:59] [Server thread/INFO]: [SuperiorSkyblock2] Loaded library /home/mcserver/skyblock/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[22:43:59] [Server thread/INFO]: [SuperiorSkyblock2] Loaded library /home/mcserver/skyblock/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[22:43:59] [Server thread/INFO]: [SuperiorSkyblock2] Loaded library /home/mcserver/skyblock/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[22:43:59] [Server thread/INFO]: [SuperiorSkyblock2] Loaded library /home/mcserver/skyblock/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[22:43:59] [Server thread/INFO]: [SuperiorSkyblock2] Loaded library /home/mcserver/skyblock/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[22:44:01] [Server thread/WARN]: Legacy plugin CompatNoCheatPlus v6.6.7-SNAPSHOT-2021_02_28-16_22 does not specify an api-version.
[22:44:01] [Server thread/INFO]: [ChatControl] Loading 1 libraries... please wait
[22:44:01] [Server thread/INFO]: [ChatControl] Loaded library /home/mcserver/skyblock/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[22:44:01] [Server thread/INFO]: [ChatControl] Loaded library /home/mcserver/skyblock/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[22:44:01] [Server thread/INFO]: [ChatControl] Loaded library /home/mcserver/skyblock/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[22:44:01] [Server thread/INFO]: [ChatControl] Loaded library /home/mcserver/skyblock/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[22:44:01] [Server thread/INFO]: [ChatControl] Loaded library /home/mcserver/skyblock/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[22:44:01] [Server thread/INFO]: [ChatControl] Loaded library /home/mcserver/skyblock/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[22:44:01] [Server thread/INFO]: [Oraxen] Loading 2 libraries... please wait
[22:44:01] [Server thread/INFO]: [Oraxen] Loaded library /home/mcserver/skyblock/libraries/org/springframework/spring-expression/5.3.16/spring-expression-5.3.16.jar
[22:44:01] [Server thread/INFO]: [Oraxen] Loaded library /home/mcserver/skyblock/libraries/org/springframework/spring-core/5.3.16/spring-core-5.3.16.jar
[22:44:01] [Server thread/INFO]: [Oraxen] Loaded library /home/mcserver/skyblock/libraries/org/springframework/spring-jcl/5.3.16/spring-jcl-5.3.16.jar
[22:44:01] [Server thread/INFO]: [Oraxen] Loaded library /home/mcserver/skyblock/libraries/org/apache/httpcomponents/httpmime/4.5.13/httpmime-4.5.13.jar
[22:44:01] [Server thread/INFO]: [Oraxen] Loaded library /home/mcserver/skyblock/libraries/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar
[22:44:01] [Server thread/INFO]: [Oraxen] Loaded library /home/mcserver/skyblock/libraries/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar
[22:44:01] [Server thread/INFO]: [Oraxen] Loaded library /home/mcserver/skyblock/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[22:44:01] [Server thread/INFO]: [Oraxen] Loaded library /home/mcserver/skyblock/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[22:44:01] [Server thread/INFO]: [ChatGames] Loading ChatGames v1.0
[22:44:01] [Server thread/INFO]: [InventoryRollbackPlus] Loading InventoryRollbackPlus v1.6.7
[22:44:01] [Server thread/INFO]: [BetterTridents] Loading BetterTridents v2.2.2
[22:44:01] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.2
[22:44:01] [Server thread/INFO]: [UltimateAutoRestart] Loading UltimateAutoRestart vBuild 52c
[22:44:01] [Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v3.0.0-SNAPSHOT-b205
[22:44:01] [Server thread/INFO]: [DisableRecipe] Loading DisableRecipe v1.4.0
[22:44:01] [Server thread/INFO]: [ConsoleSpamFix] Loading ConsoleSpamFix v1.9.0
[22:44:01] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags v1.8.2-Release
[22:44:01] [Server thread/INFO]: [Blue Slime Core] Loading BlueSlimeCore v2.6.1.222-Beta
[22:44:01] [Server thread/INFO]: [ServerUtils] Loading ServerUtils v3.5.3
[22:44:01] [Server thread/INFO]: [EliteBosses] Loading EliteBosses v1.4.7
[22:44:01] [Server thread/INFO]: [Skyblockplus] Loading Skyblockplus v1.0
[22:44:01] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v4.4.2
[22:44:01] [Server thread/INFO]: [ViaVersion] ViaVersion 4.4.2 is now loaded, injecting!
[22:44:01] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading 1.12 -> 1.13 mappings...
[22:44:01] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.13 -> 1.13.2 mappings...
[22:44:01] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.13.2 -> 1.14 mappings...
[22:44:02] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.14 -> 1.15 mappings...
[22:44:02] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[22:44:02] [Via-Mappingloader-4/INFO]: [ViaVersion] Loading 1.15 -> 1.16 mappings...
[22:44:02] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.16 -> 1.16.2 mappings...
[22:44:02] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.17 -> 1.18 mappings...
[22:44:02] [Via-Mappingloader-4/INFO]: [ViaVersion] Loading 1.16.2 -> 1.17 mappings...
[22:44:02] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.18 -> 1.19 mappings...
[22:44:02] [Server thread/INFO]: [LeadFix] Loading LeadFix v1.6
[22:44:02] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.9
[22:44:02] [Server thread/INFO]: [VoidGen] Loading VoidGen v2.2.1
[22:44:02] [Server thread/INFO]: [CustomList] Loading CustomList v2.0.7
[22:44:02] [Server thread/INFO]: [JetsAntiAFKPro] Loading JetsAntiAFKPro v3.6.5
[22:44:02] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v4.8.0
[22:44:03] [Server thread/INFO]: [VoidSpawn] Loading VoidSpawn v1.20.0
[22:44:03] [Server thread/INFO]: [LibsDisguises] Loading LibsDisguises v10.0.31
[22:44:03] [Server thread/INFO]: [Vouchers] Loading Vouchers v1.9.1
[22:44:03] [Server thread/INFO]: [IPWhitelist] Loading IPWhitelist v1.7
[22:44:03] [Server thread/INFO]: [PiggyAPI] Loading PiggyAPI v1.0
[22:44:03] [Server thread/INFO]: [AquaCoins] Loading AquaCoins v1.0.5
[22:44:03] [Server thread/INFO]: [NotTooExpensive] Loading NotTooExpensive v1.3.2
[22:44:03] [Server thread/INFO]: [DurabilityAlert] Loading DurabilityAlert v1.5.9
[22:44:03] [Server thread/INFO]: [JPremium] Loading JPremium vCLEARED-Backend-1.12.3
[22:44:03] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[22:44:03] [Server thread/INFO]: [CrazyCrates] Loading CrazyCrates v1.10.2
[22:44:03] [Server thread/INFO]: [EpicRename] Loading EpicRename v3.11
[22:44:03] [Server thread/INFO]: [MoneyPouch] Loading MoneyPouch v3.6.1
[22:44:03] [Server thread/INFO]: [DonatorJoinPlus] Loading DonatorJoinPlus v2.3.8
[22:44:03] [Server thread/INFO]: [PlayerVaults] Loading PlayerVaults v4.2.10
[22:44:03] [Server thread/INFO]: [LPC] Loading LPC v3.5.0
[22:44:03] [Server thread/INFO]: [boosCooldowns] Loading boosCooldowns v3.17.3
[22:44:03] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.10+1742f98
[22:44:03] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@2d55bc92]
[22:44:03] [Server thread/INFO]: [NoBlackSky] Loading NoBlackSky v2.6
[22:44:03] [Server thread/INFO]: [NoBlackSky] Detected 1.18.2 server version
[22:44:03] [Server thread/INFO]: [Essentials] Loading Essentials v2.19.7
[22:44:03] [Server thread/INFO]: [InteractiveChat] Loading InteractiveChat v4.2.3.8
[22:44:03] [Server thread/INFO]: [Jackpot] Loading Jackpot v1.0
[22:44:03] [Server thread/INFO]: [LPX] Loading LPX v3.1.6
[22:44:03] [Server thread/INFO]: [HoloExtension] Loading HoloExtension v0.0.4.4 Alpha
[22:44:03] [Server thread/INFO]: [DeluxeCoinflip] Loading DeluxeCoinflip v2.6.0
[22:44:03] [Server thread/INFO]: [OmegaVision] Loading OmegaVision v2.5.16
[22:44:03] [Server thread/INFO]: [TradeSystem] Loading TradeSystem v2.1.3
[22:44:03] [Server thread/INFO]: [ajLeaderboards] Loading ajLeaderboards v2.6.3
[22:44:04] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[22:44:04] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[22:44:04] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[22:44:04] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[22:44:04] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[22:44:04] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[22:44:04] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[22:44:04] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[22:44:04] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[22:44:04] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[22:44:04] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[22:44:04] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[22:44:04] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[22:44:04] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[22:44:04] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[22:44:04] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[22:44:04] [Server thread/INFO]: [DeluxeMenus] Loading DeluxeMenus v1.13.5-Release
[22:44:04] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup successfully!
[22:44:04] [Server thread/INFO]: [TAB] Loading TAB v3.1.1
[22:44:04] [Server thread/INFO]: [InteractionVisualizer] Loading InteractionVisualizer v1.18.1.0
[22:44:04] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.7+216b061
[22:44:04] [Server thread/INFO]: [EssentialsProtect] Loading EssentialsProtect v2.19.7
[22:44:04] [Server thread/INFO]: [GSit] Loading GSit v1.2.9
[22:44:04] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.19.7
[22:44:04] [Server thread/INFO]: [WGEF-Reborn] Loading WGEF-Reborn v2.4-stable+035799b
[22:44:04] [Server thread/INFO]: [Hitmarkers] Loading Hitmarkers vBuild 16b
[22:44:04] [Server thread/INFO]: [GappleOptions] Loading GappleOptions vBuild 39b
[22:44:04] [Server thread/INFO]: [OreRegenerator] Loading OreRegenerator v1.2.22
[22:44:04] [Server thread/INFO]: [GrapplingHook] Loading GrapplingHook v4.2
[22:44:04] [Server thread/INFO]: [mcMMO] Loading mcMMO v2.1.217
[22:44:04] [Server thread/INFO]: [mcMMO] Registered WG flags successfully!
[22:44:04] [Server thread/INFO]: [PlayerParticles] Loading PlayerParticles v8.3
[22:44:04] [Server thread/INFO]: [MiniaturePets] Loading MiniaturePets v2.7.7
[22:44:04] [Server thread/INFO]: [BlockLocker] Loading BlockLocker v1.10.4
[22:44:04] [Server thread/INFO]: [Rankup] Loading Rankup v3.13.3
[22:44:04] [Server thread/INFO]: [RealScoreboard] Loading RealScoreboard v18-11-2022 Build 1
[22:44:04] [Server thread/INFO]: [EvenMoreFish] Loading EvenMoreFish v1.6.5.1
[22:44:04] [Server thread/INFO]: [MorphRedeem] Loading MorphRedeem v1.2.3
[22:44:04] [Server thread/INFO]: [SuperiorSkyblock2] Loading SuperiorSkyblock2 v2022.9
[22:44:04] [Server thread/INFO]: [TempFly] Loading TempFly v3.1.7
[22:44:04] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2793)
[22:44:04] [Server thread/INFO]: [eGlow] Loading eGlow v3.2.0
[22:44:04] [Server thread/INFO]: [CitizensCMD] Loading CitizensCMD v2.6.6
[22:44:04] [Server thread/INFO]: [CompatNoCheatPlus] Loading CompatNoCheatPlus v6.6.7-SNAPSHOT-2021_02_28-16_22
[22:44:04] [Server thread/INFO]: [NoCheatPlus] Loading NoCheatPlus v3.17-SNAPSHOT-8.3.1-b145
[22:44:04] [Server thread/INFO]: [NoCheatPlus] onLoad: Early set up of static API, configuration, logging.
[22:44:04] [Server thread/INFO]: [NoCheatPlus] Logging system initialized.
[22:44:04] [Server thread/INFO]: [NoCheatPlus] Detected Minecraft version: 1.18.2
[22:44:04] [Server thread/INFO]: [ConditionalCommands] Loading ConditionalCommands v1.6
[22:44:04] [Server thread/INFO]: [NCPDragDown] Loading NCPDragDown v1.0.6
[22:44:04] [Server thread/INFO]: [CrazyEnvoy] Loading CrazyEnvoy v1.4.17
[22:44:04] [Server thread/INFO]: [WildStacker] Loading WildStacker v2022.6
[22:44:04] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.2-SNAPSHOT-b870
[22:44:04] [Server thread/INFO]: [MythicMobs] Loading MythicMobs v5.1.4-3aa1b5d2
[22:44:04] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[22:44:04] [Server thread/INFO]: [CombatLogX] Loading CombatLogX v11.1.0.7.1025
[22:44:04] [Server thread/INFO]: [CombatLogX] Configuration version is recent, no major changes necessary.
[22:44:04] [Server thread/INFO]: [CombatLogX] Loading expansions...
[22:44:04] [Server thread/INFO]: [CombatLogX] Loading expansion 'Action Bar v17.0'...
[22:44:04] [Server thread/INFO]: [CombatLogX]  
[22:44:04] [Server thread/INFO]: [CombatLogX] Loading expansion 'Cheat Prevention v16.23'...
[22:44:04] [Server thread/INFO]: [CombatLogX]  
[22:44:04] [Server thread/INFO]: [CombatLogX] Loading expansion 'Death Effects v16.4'...
[22:44:04] [Server thread/INFO]: [CombatLogX]  
[22:44:04] [Server thread/INFO]: [CombatLogX] Loading expansion 'EssentialsX Compatibility v16.3'...
[22:44:04] [Server thread/INFO]: [CombatLogX]  
[22:44:04] [Server thread/INFO]: [CombatLogX] Loading expansion 'Glowing v16.5'...
[22:44:04] [Server thread/INFO]: [CombatLogX]  
[22:44:04] [Server thread/INFO]: [CombatLogX] Loading expansion 'LibsDisguises Compatibility v16.3'...
[22:44:04] [Server thread/INFO]: [CombatLogX]  
[22:44:04] [Server thread/INFO]: [CombatLogX] Loading expansion 'PlaceholderAPI Compatibility v16.9'...
[22:44:04] [Server thread/INFO]: [CombatLogX]  
[22:44:04] [Server thread/INFO]: [CombatLogX] Loading expansion 'PlayerParticles Compatibility v16.2'...
[22:44:04] [Server thread/INFO]: [CombatLogX]  
[22:44:04] [Server thread/INFO]: [CombatLogX] Loading expansion 'SuperiorSkyblock Compatibility v16.4'...
[22:44:04] [Server thread/INFO]: [CombatLogX]  
[22:44:04] [Server thread/INFO]: [CombatLogX] Successfully loaded 9 expansions.
[22:44:04] [Server thread/INFO]: [ChatControl] Loading ChatControl v8.11.8
[22:44:04] [Server thread/INFO]: [KOTH] Loading KOTH v6.0.3
[22:44:04] [Server thread/INFO]: [Vulcan] Loading Vulcan v2.7.0
[22:44:04] [Server thread/INFO]: [DeathMessages] Loading DeathMessages v1.4.12
[22:44:05] [Server thread/INFO]: [ShopGUIPlus] Loading ShopGUIPlus v1.80.0
[22:44:05] [Server thread/INFO]: [AdvancedEnchantments] Loading AdvancedEnchantments v9.0.0b38
[22:44:05] [Server thread/INFO]: [zAuctionHouseV3] Loading zAuctionHouseV3 v3.1.0.3
[22:44:05] [Server thread/INFO]: [JetsMinions] Loading JetsMinions v7.6.16
[22:44:05] [Server thread/INFO]: [WildChests] Loading WildChests v2022.7
[22:44:05] [Server thread/INFO]: [ChunkHoppers] Loading ChunkHoppers v2.1.6
[22:44:05] [Server thread/INFO]: [IllegalStack] Loading IllegalStack v2.6.1
[22:44:05] [Server thread/INFO]: [WildTools] Loading WildTools v2022.7
[22:44:05] [Server thread/INFO]: [AdvancedArmor] Loading AdvancedArmor v2.0.9
[22:44:05] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[22:44:05] [Server thread/INFO]: [BetterTridents] Enabling BetterTridents v2.2.2
[22:44:05] [Server thread/INFO]: [ConsoleSpamFix] Enabling ConsoleSpamFix v1.9.0
[22:44:05] [Server thread/INFO]: [ConsoleSpamFix] Server version detected: 1.18.2
[22:44:05] [Server thread/INFO]: [ConsoleSpamFix] Loading the config file...
[22:44:05] [Server thread/INFO]: [ConsoleSpamFix] Config file loaded!
[22:44:05] [Server thread/INFO]: [ConsoleSpamFix] ConsoleSpamFix loaded successfully!
[22:44:05] [Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.6.1.222-Beta
[22:44:05] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.9
[22:44:05] [Server thread/INFO]:         __    
[22:44:05] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.9
[22:44:05] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[22:44:05] [Server thread/INFO]: 
[22:44:05] [Server thread/INFO]: [LuckPerms] Loading configuration...
[22:44:06] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[22:44:06] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[22:44:07] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[22:44:07] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2134ms)
[22:44:07] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[22:44:07] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[22:44:07] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v4.8.0
[22:44:07] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread.
[22:44:07] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[22:44:07] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.19.7 which is not a depend or softdepend of this plugin.
[22:44:07] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[22:44:07] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[22:44:07] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[22:44:07] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[22:44:07] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.10+1742f98
[22:44:07] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[22:44:07] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[22:44:07] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_18_R2.PaperweightAdapter as the Bukkit adapter
[22:44:08] [Server thread/INFO]: [BlockLocker] Enabling BlockLocker v1.10.4
[22:44:08] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[22:44:08] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[22:44:08] [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.
[22:44:08] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[22:44:08] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[22:44:08] [Server thread/INFO]: Preparing level "world"
[22:44:09] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[22:44:09] [Server thread/INFO]: Time elapsed: 241 ms
[22:44:09] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[22:44:09] [Server thread/INFO]: Time elapsed: 117 ms
[22:44:09] [Server thread/INFO]: [ChatGames] Enabling ChatGames v1.0*
[22:44:09] [Server thread/ERROR]: [ChatGames] Failed to load configuration file words.yml!
[22:44:09] [Server thread/INFO]: [ChatGames] ChatGames is now enabled!
[22:44:09] [Server thread/WARN]: [ChatGames] Loaded class me.clip.placeholderapi.expansion.PlaceholderExpansion from PlaceholderAPI v2.11.2 which is not a depend or softdepend of this plugin.
[22:44:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: chatgames [1.0.0]
[22:44:09] [Server thread/INFO]: [ChatGames] PlaceholderAPI Hooked!
[22:44:09] [Server thread/INFO]: [ChatGames] Points loaded successfully!
[22:44:09] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.7
[22:44:09] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
[22:44:09] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[22:44:09] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
[22:44:09] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.viaversion.viaversion.api.type.Type from ViaVersion v4.4.2 which is not a depend or softdepend of this plugin.
[22:44:10] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[22:44:10] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart vBuild 52c
[22:44:10] [Server thread/INFO]: [UltimateAutoRestart] Build 52c, a free resource by Norska - Thanks for downloading!
[22:44:10] [Server thread/INFO]: [UltimateAutoRestart] Attempting hooks...
[22:44:11] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v3.0.0-SNAPSHOT-b205
[22:44:11] [Server thread/INFO]: [DisableRecipe] Enabling DisableRecipe v1.4.0
[22:44:11] [Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
[22:44:11] [Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
[22:44:11] [Server thread/INFO]: [DeluxeTags] 25 tags loaded
[22:44:11] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[22:44:11] [Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
[22:44:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxetags [1.8.2-Release]
[22:44:11] [Server thread/INFO]: [DeluxeTags] ----------------------------
[22:44:11] [Server thread/INFO]: [DeluxeTags]      DeluxeTags Updater
[22:44:11] [Server thread/INFO]: [DeluxeTags]  
[22:44:11] [Server thread/INFO]: [DeluxeTags] You are running 1.8.2-Release
[22:44:11] [Server thread/INFO]: [DeluxeTags] The latest version
[22:44:11] [Server thread/INFO]: [DeluxeTags] of DeluxeTags!
[22:44:11] [Server thread/INFO]: [DeluxeTags]  
[22:44:11] [Server thread/INFO]: [DeluxeTags] ----------------------------
[22:44:11] [Server thread/INFO]: [ServerUtils] Enabling ServerUtils v3.5.3
[22:44:11] [Server thread/WARN]: [ServerUtils] Loaded class com.viaversion.viaversion.api.type.Type from ViaVersion v4.4.2 which is not a depend or softdepend of this plugin.
[22:44:11] [Server thread/INFO]: [EliteBosses] Enabling EliteBosses v1.4.7
[22:44:11] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_18_R2! Trying to find NMS support
[22:44:11] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_18_R2' loaded!
[22:44:11] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[22:44:11] [Server thread/INFO]: EliteBosses: Factions Support Failed
[22:44:11] [Server thread/INFO]: EliteBosses: Skyblock Support Failed
[22:44:11] [Server thread/WARN]: [EliteBosses] Loaded class me.clip.placeholderapi.expansion.PlaceholderExpansion from PlaceholderAPI v2.11.2 which is not a depend or softdepend of this plugin.
[22:44:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: elitebosses [1.0.0]
[22:44:11] [Server thread/INFO]: [EliteBosses] [ACF] Enabled Asynchronous Tab Completion Support!
[22:44:11] [Server thread/INFO]: [Skyblockplus] Enabling Skyblockplus v1.0
[22:44:11] [Server thread/INFO]: [Skyblockplus] Loaded Placeholder and SuperiorSkyblock2
[22:44:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: skp [1.0]
[22:44:11] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.4.2
[22:44:11] [Server thread/INFO]: [LeadFix] Enabling LeadFix v1.6
[22:44:11] [Server thread/INFO]: [CustomList] Enabling CustomList v2.0.7*
[22:44:11] [Server thread/INFO]: Data sent to Metrics successfully.
[22:44:11] [Server thread/INFO]: [JetsAntiAFKPro] Enabling JetsAntiAFKPro v3.6.5
[22:44:12] [Thread-12/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[22:44:14] [Server thread/INFO]: 
[22:44:14] [Server thread/INFO]: [JetsAntiAFKPro] Initializing Plugin v3.6.5
[22:44:14] [Server thread/INFO]: [JetsAntiAFKPro] config.yml found, loading!
[22:44:14] [Server thread/WARN]: [JetsAntiAFKPro] Loaded class me.clip.placeholderapi.expansion.PlaceholderExpansion from PlaceholderAPI v2.11.2 which is not a depend or softdepend of this plugin.
[22:44:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jetsantiafkpro [1.0.0]
[22:44:14] [Server thread/INFO]: [JetsAntiAFKPro] timeplayedgui.yml found, loading!
[22:44:14] [Server thread/INFO]: [JetsAntiAFKPro] messages.yml found, loading!
[22:44:14] [Server thread/INFO]: [JetsAntiAFKPro] Initializing Complete in 31 Ms
[22:44:14] [Server thread/INFO]: 
[22:44:14] [Server thread/INFO]: [VoidSpawn] Enabling VoidSpawn v1.20.0
[22:44:14] [Server thread/INFO]: [VoidSpawn] No SkyBlock plugins found, disabling island mode support.
[22:44:14] [Server thread/INFO]: [VoidSpawn] v1.20.0 by EnderCrest enabled
[22:44:14] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.31
[22:44:15] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-10.0.31.jar
[22:44:15] [Server thread/INFO]: [LibsDisguises] Discovered nms version: v1_18_R2
[22:44:15] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1119
[22:44:15] [Server thread/INFO]: [LibsDisguises] Build Date: 09/08/2022 06:41
[22:44:15] [Server thread/WARN]: [LibsDisguises] If you own the plugin, place the premium jar downloaded from https://www.spigotmc.org/resources/libs-disguises.%%__RESOURCE__%%/ in plugins/LibsDisguises/
[22:44:15] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[22:44:22] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[22:44:22] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[22:44:22] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[22:44:22] [Server thread/INFO]: [Vouchers] Enabling Vouchers v1.9.1
[22:44:22] [Server thread/INFO]: [Vouchers] Loading the Config.yml
[22:44:22] [Server thread/INFO]: [Vouchers] Successfully loaded Config.yml
[22:44:22] [Server thread/INFO]: [Vouchers] Loading the Data.yml
[22:44:22] [Server thread/INFO]: [Vouchers] Successfully loaded Data.yml
[22:44:22] [Server thread/INFO]: [Vouchers] Loading the Messages.yml
[22:44:22] [Server thread/INFO]: [Vouchers] Successfully loaded Messages.yml
[22:44:22] [Server thread/INFO]: [Vouchers] Loading the VoucherCodes.yml
[22:44:22] [Server thread/INFO]: [Vouchers] Successfully loaded VoucherCodes.yml
[22:44:22] [Server thread/INFO]: [IPWhitelist] Enabling IPWhitelist v1.7*
[22:44:22] [Server thread/INFO]: [PiggyAPI] Enabling PiggyAPI v1.0
[22:44:22] [Server thread/INFO]: [AquaCoins] Enabling AquaCoins v1.0.5
[22:44:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: coins [1.0.0]
[22:44:22] [Server thread/INFO]: [NotTooExpensive] Enabling NotTooExpensive v1.3.2
[22:44:22] [Server thread/INFO]: [DurabilityAlert] Enabling DurabilityAlert v1.5.9
[22:44:22] [Server thread/INFO]: [DurabilityAlert]DurabilityAlert enabled!
[22:44:22] [Server thread/INFO]: [JPremium] Enabling JPremium vCLEARED-Backend-1.12.3
[22:44:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: JPremium [SpigotVersion]
[22:44:22] [Server thread/INFO]: [CrazyCrates] Enabling CrazyCrates v1.10.2
[22:44:22] [Server thread/INFO]: [CrazyCrates] Loading the config.yml
[22:44:22] [Server thread/INFO]: [CrazyCrates] Successfully loaded config.yml
[22:44:22] [Server thread/INFO]: [CrazyCrates] Loading the Messages.yml
[22:44:22] [Server thread/INFO]: [CrazyCrates] Successfully loaded Messages.yml
[22:44:22] [Server thread/INFO]: [CrazyCrates] Loading the Locations.yml
[22:44:22] [Server thread/INFO]: [CrazyCrates] Successfully loaded Locations.yml
[22:44:22] [Server thread/INFO]: [CrazyCrates] Loading the data.yml
[22:44:22] [Server thread/INFO]: [CrazyCrates] Successfully loaded data.yml
[22:44:22] [Server thread/INFO]: [CrazyCrates] Loading custom files.
[22:44:22] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Common.yml.
[22:44:22] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Epic.yml.
[22:44:22] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Farmers.yml.
[22:44:22] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Food.yml.
[22:44:22] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Legendary.yml.
[22:44:22] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Miners.yml.
[22:44:22] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Mythical.yml.
[22:44:22] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Spawner.yml.
[22:44:22] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/UnCommon.yml.
[22:44:22] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Vote.yml.
[22:44:22] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Voteparty.yml.
[22:44:22] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Weekly.yml.
[22:44:22] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Wizard.yml.
[22:44:22] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Custom.yml.
[22:44:22] [Server thread/INFO]: [CrazyCrates] Finished loading custom files.
[22:44:22] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[22:44:22] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_18_R2! Trying to find NMS support
[22:44:22] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_18_R2' loaded!
[22:44:22] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[22:44:22] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[22:44:22] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[22:44:22] [Server thread/INFO]: [CrazyCrates] All physical crate locations have been loaded.
[22:44:22] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[22:44:22] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[22:44:22] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[22:44:22] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[22:44:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: CrazyCrates [1.10.2]
[22:44:22] [Server thread/WARN]: [CrazyCrates] Metrics was automatically enabled.
[22:44:22] [Server thread/WARN]: [CrazyCrates] Please add Toggle-Metrics: false to the top of your config.yml
[22:44:22] [Server thread/WARN]: [CrazyCrates] https://github.com/Crazy-Crew/Crazy-Crates/blob/main/src/main/resources/config.yml
[22:44:22] [Server thread/WARN]: [CrazyCrates] An example if confused is linked above.
[22:44:22] [Server thread/INFO]: [EpicRename] Enabling EpicRename v3.11
[22:44:22] [Server thread/INFO]: [EpicRename] [CheckServerVersion] Server running 1.16 or newer. Hex color code support has been enabled.
[22:44:22] [Server thread/INFO]: [EpicRename] Version: 3.11 MC Version: ONE_DOT_SIXTEEN_OR_NEWER
[22:44:22] [Server thread/INFO]: [EpicRename] This plugin is Copyright (c) 2022 Justin "JustBru00" Brubaker. This plugin is licensed under the MPL v2.0. You can view a copy of the MPL v2.0 license at: http://bit.ly/2eMknxx
[22:44:22] [Server thread/INFO]: [EpicRename] Starting to enable plugin...
[22:44:23] [Server thread/INFO]: [Rename] Prefix set to: '[Rename] '
[22:44:23] [Server thread/INFO]: [Rename] Plugin Enabled!
[22:44:23] [Server thread/INFO]: [MoneyPouch] Enabling MoneyPouch v3.6.1
[22:44:23] [Server thread/INFO]: [MoneyPouch] Your server is running version v1_18_R2.
[22:44:23] [Server thread/INFO]: [MoneyPouch] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[22:44:23] [Server thread/INFO]: [DonatorJoinPlus] Enabling DonatorJoinPlus v2.3.8
[22:44:23] [Server thread/INFO]: DBSoftwares - CommandAPI |-> Registered command: donatorjoin!
[22:44:23] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v4.2.10
[22:44:23] [Thread-14/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[22:44:24] [Server thread/INFO]: [PlayerVaults] Added PUMPKIN to list of blocked materials.
[22:44:24] [Server thread/INFO]: [PlayerVaults] Added DIAMOND_BLOCK to list of blocked materials.
[22:44:24] [Server thread/INFO]: [PlayerVaults] Loaded! Took 181ms
[22:44:24] [Server thread/INFO]: [LPC] Enabling LPC v3.5.0
[22:44:24] [Server thread/INFO]: [boosCooldowns] Enabling boosCooldowns v3.17.3
[22:44:25] [Server thread/INFO]: [boosCooldowns] version 3.17.3 by [LordBoos (boosik)] is enabled!
[22:44:25] [Server thread/INFO]: [boosCooldowns] found [Vault] searching for economy plugin.
[22:44:25] [Server thread/INFO]: [boosCooldowns] found [EssentialsX Economy] plugin, enabling prices support.
[22:44:25] [Server thread/INFO]: [NoBlackSky] Enabling NoBlackSky v2.6
[22:44:25] [Server thread/INFO]: [Essentials] Enabling Essentials v2.19.7
[22:44:25] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[22:44:25] [Server thread/INFO]: [Essentials] No kits found to migrate.
[22:44:25] [Server thread/INFO]: [Essentials] Loaded 36926 items from items.json.
[22:44:25] [Server thread/INFO]: [Essentials] Using locale en
[22:44:25] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[22:44:25] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[22:44:25] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[22:44:25] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[22:44:25] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.3.8
[22:44:29] [Server thread/WARN]: [InteractiveChat] Loaded class org.h2.Driver from PiggyAPI v1.0 which is not a depend or softdepend of this plugin.
[22:44:29] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[22:44:29] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[22:44:29] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[22:44:29] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[22:44:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: interactivechat [1.0.0]
[22:44:29] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[22:44:29] [Server thread/INFO]: [Jackpot] Enabling Jackpot v1.0
[22:44:29] [Server thread/INFO]: [LPX] Enabling LPX v3.1.6
[22:44:30] [Server thread/INFO]: [LPX] License successfully verified!
[22:44:31] [Server thread/INFO]: [HoloExtension] Enabling HoloExtension v0.0.4.4 Alpha
[22:44:31] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] Storage - Starting...
[22:44:31] [Server thread/WARN]: [HoloExtension] Loaded class org.h2.Driver from PiggyAPI v1.0 which is not a depend or softdepend of this plugin.
[22:44:31] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] Storage - Added connection org.sqlite.jdbc4.JDBC4Connection@5919b40f
[22:44:31] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] Storage - Start completed.
[22:44:31] [Server thread/INFO]: [HE] Enabling baltop
[22:44:31] [Server thread/INFO]: [HE] Enabling ProtocolLib
[22:44:31] [Server thread/INFO]: [HE] Adding new table for storage: %statistic_seconds_played%
[22:44:31] [Server thread/INFO]: [HE] Enabling %statistic_seconds_played%
[22:44:31] [Server thread/INFO]: [DeluxeCoinflip] Enabling DeluxeCoinflip v2.6.0
[22:44:31] [Server thread/INFO]: [DeluxeCoinflip] 
[22:44:31] [Server thread/INFO]: [DeluxeCoinflip]  __ __    DeluxeCoinflip v2.6.0
[22:44:31] [Server thread/INFO]: [DeluxeCoinflip] /  |_     Author: ItsLewizzz
[22:44:31] [Server thread/INFO]: [DeluxeCoinflip] \_ |      (c) Lewis D 2021. All rights reserved.
[22:44:31] [Server thread/INFO]: [DeluxeCoinflip] 
[22:44:31] [Server thread/WARN]: [DeluxeCoinflip] Loaded class org.h2.Driver from PiggyAPI v1.0 which is not a depend or softdepend of this plugin.
[22:44:31] [Server thread/INFO]: [DeluxeCoinflip] Registered economy provider 'Vault' using Vault plugin.
[22:44:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxecoinflip [2.6.0]
[22:44:31] [Server thread/INFO]: [DeluxeCoinflip] Hooked into PlaceholderAPI successfully
[22:44:31] [Server thread/INFO]: [DeluxeCoinflip] 
[22:44:31] [Server thread/INFO]: [DeluxeCoinflip] Successfully loaded in 24ms
[22:44:31] [Server thread/INFO]: [DeluxeCoinflip] 
[22:44:31] [Server thread/INFO]: [OmegaVision] Enabling OmegaVision v2.5.16
[22:44:31] [Server thread/INFO]: [OmegaVision] Attempting to update the config files....
[22:44:31] [Server thread/INFO]:   ____ _   __
[22:44:31] [Server thread/INFO]:  / __ \ | / /   OmegaVision v2.5.16 by OmegaWeaponDev
[22:44:31] [Server thread/INFO]: / /_/ / |/ /    Running on version: git-Paper-388 (MC: 1.18.2)
[22:44:31] [Server thread/INFO]: \____/|___/
[22:44:31] [Server thread/INFO]: 
[22:44:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: omegavision [2.5.16]
[22:44:31] [Server thread/INFO]: [OmegaVision] OmegaVision is now attempting to register it's commands...
[22:44:31] [Server thread/INFO]: [OmegaVision] OmegaVision has successfully registered all of it's commands.
[22:44:31] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.1.3
[22:44:31] [Server thread/INFO]:  
[22:44:31] [Server thread/INFO]: __________________________________________________________
[22:44:31] [Server thread/INFO]:  
[22:44:31] [Server thread/INFO]:                        TradeSystem [2.1.3]
[22:44:31] [Server thread/INFO]:  
[22:44:31] [Server thread/INFO]: Status:
[22:44:31] [Server thread/INFO]:  
[22:44:31] [Server thread/INFO]: MC-Version: 1.18.2 (R0.1-SNAPSHOT, Paper)
[22:44:31] [Server thread/INFO]:  
[22:44:31] [Server thread/INFO]:   > Loading sounds
[22:44:31] [Server thread/INFO]:   > Loading blacklist
[22:44:31] [Server thread/INFO]:     ...got 3 blocked item(s)
[22:44:31] [Server thread/INFO]:   > Loading layouts
[22:44:31] [Server thread/INFO]:     ...got 4 layout(s)
[22:44:31] [Server thread/INFO]:   > Database logging is disabled
[22:44:31] [Server thread/INFO]:  
[22:44:31] [Server thread/INFO]: Finished (117ms)
[22:44:31] [Server thread/INFO]:  
[22:44:31] [Server thread/INFO]: __________________________________________________________
[22:44:31] [Server thread/INFO]:  
[22:44:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tradesystem [1.1]
[22:44:31] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.6.3
[22:44:32] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[22:44:32] [Server thread/INFO]: [ajLeaderboards] The columns already exist for mcmmo_power_level. Canceling updater and bumping DB version.
[22:44:32] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_hours_played. Canceling updater and bumping DB version.
[22:44:32] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_mob_kills. Canceling updater and bumping DB version.
[22:44:32] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_player_kills. Canceling updater and bumping DB version.
[22:44:32] [Server thread/INFO]: [ajLeaderboards] Loaded 4 boards
[22:44:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajlb [2.6.3]
[22:44:32] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[22:44:32] [Server thread/INFO]: [ajLeaderboards] LuckPerms position context calculator registered!
[22:44:32] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.6.3 by ajgeiss0702 enabled!
[22:44:32] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.5-Release
[22:44:32] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[22:44:32] [Server thread/WARN]: [DeluxeMenus] command: help specified for menu: is_help already exists for another menu!
[22:44:32] [Server thread/WARN]: [DeluxeMenus] Skipping command: help in menu: is_help
[22:44:32] [Server thread/INFO]: [DeluxeMenus] 53 GUI menus loaded!
[22:44:32] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[22:44:32] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[22:44:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.5-Release]
[22:44:32] [Server thread/INFO]: [TAB] Enabling TAB v3.1.1
[22:44:32] [Server thread/INFO]: [TAB] Server version: 1.18.2 (v1_18_R2)
[22:44:32] [Server thread/INFO]: [TAB] Loaded NMS hook in 6ms
[22:44:32] [Server thread/INFO]: [TAB] Enabled in 53ms
[22:44:32] [Server thread/INFO]: [InteractionVisualizer] Enabling InteractionVisualizer v1.18.1.0
[22:44:32] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has hooked into Essentials!
[22:44:35] [Server thread/INFO]: [InteractionVisualizer] Loading languages...
[22:44:35] [Server thread/WARN]: [InteractionVisualizer] Loaded class org.h2.Driver from PiggyAPI v1.0 which is not a depend or softdepend of this plugin.
[22:44:35] [Server thread/INFO]: [InteractionVisualizer] Opened Sqlite database successfully
[22:44:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: interactionvisualizer [2.0.0]
[22:44:35] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has been enabled!
[22:44:35] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.7+216b061
[22:44:35] [Server thread/WARN]: [WorldGuard] Loaded class org.h2.Driver from PiggyAPI v1.0 which is not a depend or softdepend of this plugin.
[22:44:35] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[22:44:35] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[22:44:35] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[22:44:35] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[22:44:35] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[22:44:35] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[22:44:35] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[22:44:35] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[22:44:35] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[22:44:35] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[22:44:35] [Server thread/INFO]: [WorldGuard] Loading region data...
[22:44:35] [Server thread/INFO]: [EssentialsProtect] Enabling EssentialsProtect v2.19.7
[22:44:35] [Server thread/INFO]: [EssentialsProtect] Continuing to enable Protect.
[22:44:35] [Server thread/INFO]: [EssentialsProtect] Starting Metrics. Opt-out using the global bStats config.
[22:44:35] [Server thread/INFO]: [GSit] Enabling GSit v1.2.9
[22:44:35] [Server thread/INFO]: [Sit] The Plugin was successfully enabled.
[22:44:35] [Server thread/INFO]: [Sit] Link with WorldGuard successful!
[22:44:35] [Server thread/INFO]: [Sit] Link with PlaceholderAPI successful!
[22:44:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gsit [1.2.9]
[22:44:35] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.19.7
[22:44:35] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[22:44:35] [Server thread/INFO]: [WGEF-Reborn] Enabling WGEF-Reborn v2.4-stable+035799b
[22:44:35] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.command.CommandOnEntryHandler
[22:44:35] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.command.CommandOnExitHandler
[22:44:35] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.command.ConsoleCommandOnEntryHandler
[22:44:35] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.command.ConsoleCommandOnExitHandler
[22:44:35] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.teleport.TeleportEntryHandler
[22:44:35] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.teleport.TeleportExitHandler
[22:44:35] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.player.BlockEffectFlagHandler
[22:44:35] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.player.GiveEffectFlagHandler
[22:44:35] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.player.GlideFlagHandler
[22:44:35] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.player.FlyFlagHandler
[22:44:35] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.player.WalkSpeedFlagHandler
[22:44:35] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.player.FlySpeedFlagHandler
[22:44:35] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.player.CollisionFlagHandler
[22:44:35] [Server thread/INFO]: [WorldGuard] Registering session handler io.github.invvk.wgef.abstraction.flags.handler.essentials.GodModeHandler
[22:44:35] [Server thread/WARN]: [WGEF-Reborn] Loaded class me.clip.placeholderapi.PlaceholderAPI from PlaceholderAPI v2.11.2 which is not a depend or softdepend of this plugin.
[22:44:35] [Server thread/INFO]: [Hitmarkers] Enabling Hitmarkers vBuild 16b
[22:44:36] [Server thread/INFO]: [Hitmarkers] Build 16b, a free resource by Norska - Thanks for downloading!
[22:44:36] [Server thread/INFO]: [GappleOptions] Enabling GappleOptions vBuild 39b
[22:44:36] [Server thread/INFO]: [GappleOptions] Build 39b, a free resource by Norska - Thanks for downloading!
[22:44:37] [Server thread/INFO]: [OreRegenerator] Enabling OreRegenerator v1.2.22
[22:44:37] [Server thread/INFO]: [OreRegenerator] Creating managers...
[22:44:37] [Server thread/INFO]: [OreRegenerator] Unable to find a valid material named: glowing_redstone_ore
[22:44:37] [Server thread/INFO]: [OreRegenerator] Unable to find a valid material named: glowing_redstone_ore
[22:44:37] [Server thread/INFO]: [OreRegenerator] Adding override: example-region
[22:44:37] [Server thread/INFO]: [OreRegenerator] Finished creating managers!
[22:44:37] [Server thread/INFO]: [OreRegenerator] Registering events...
[22:44:37] [Server thread/INFO]: [OreRegenerator] Finished registering events!
[22:44:37] [Server thread/INFO]: [OreRegenerator] Registering commands...
[22:44:37] [Server thread/INFO]: [OreRegenerator] [ACF] Enabled Asynchronous Tab Completion Support!
[22:44:37] [Server thread/INFO]: [OreRegenerator] Finished registering commands!
[22:44:37] [Server thread/INFO]: [OreRegenerator] Registering hooks...
[22:44:37] [Server thread/INFO]: [OreRegenerator] Worldguard support: true
[22:44:37] [Server thread/INFO]: [OreRegenerator] Lands support: false
[22:44:37] [Server thread/INFO]: [OreRegenerator] Towny support: false
[22:44:37] [Server thread/INFO]: [OreRegenerator] Finished registering hooks!
[22:44:37] [Server thread/INFO]: [GrapplingHook] Enabling GrapplingHook v4.2
[22:44:37] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.1.217
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Initializing config: config.yml
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: config.yml
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Config initialized: config.yml
[22:44:38] [Server thread/INFO]: [mcMMO] [Debug] No errors found in config.yml!
[22:44:38] [Server thread/INFO]: [mcMMO] Loading locale from plugins/mcMMO/locales/locale_override.properties
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Initializing config: advanced.yml
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: advanced.yml
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Config initialized: advanced.yml
[22:44:38] [Server thread/INFO]: [mcMMO] [Debug] No errors found in advanced.yml!
[22:44:38] [Server thread/INFO]: [mcMMO] Platform String: 1.18.2-R0.1-SNAPSHOT
[22:44:38] [Server thread/INFO]: [mcMMO] Minecraft version determined to be - 1.18.2
[22:44:38] [Server thread/INFO]: [mcMMO] Loading compatibility layers...
[22:44:38] [Server thread/INFO]: [mcMMO] Finished loading compatibility layers.
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Initializing config: persistent_data.yml
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: persistent_data.yml
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Config initialized: persistent_data.yml
[22:44:38] [Server thread/INFO]: [mcMMO] [Debug] No errors found in persistent_data.yml!
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Initializing config: upgrades_overhaul.yml
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: upgrades_overhaul.yml
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Config initialized: upgrades_overhaul.yml
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Initializing config: treasures.yml
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: treasures.yml
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Config initialized: treasures.yml
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Initializing config: fishing_treasures.yml
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: fishing_treasures.yml
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Config initialized: fishing_treasures.yml
[22:44:38] [Server thread/INFO]: [mcMMO] Registering enchantments for Fishing Book...
[22:44:38] [Server thread/INFO]: [mcMMO] Loading mcMMO potions.yml File...
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Initializing config: coreskills.yml
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: coreskills.yml
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Config initialized: coreskills.yml
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Initializing config: sounds.yml
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: sounds.yml
[22:44:38] [Server thread/INFO]: [mcMMO] [config] Config initialized: sounds.yml
[22:44:38] [Server thread/INFO]: [mcMMO] Loading mcMMO skillranks.yml File...
[22:44:39] [Server thread/INFO]: [mcMMO] [config] Initializing config: child.yml
[22:44:39] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: child.yml
[22:44:39] [Server thread/INFO]: [mcMMO] [config] Config initialized: child.yml
[22:44:39] [Server thread/INFO]: [mcMMO] [config] Initializing config: repair.vanilla.yml
[22:44:39] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: repair.vanilla.yml
[22:44:39] [Server thread/INFO]: [mcMMO] [config] Config initialized: repair.vanilla.yml
[22:44:39] [Server thread/INFO]: [mcMMO] [config] Initializing config: salvage.vanilla.yml
[22:44:39] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: salvage.vanilla.yml
[22:44:39] [Server thread/INFO]: [mcMMO] [config] Config initialized: salvage.vanilla.yml
[22:44:39] [Server thread/INFO]: [mcMMO] (plugins/mcMMO/flatfile/mcmmo.users) Validating database file..
[22:44:39] [Server thread/INFO]: [mcMMO] Enabling Acrobatics Skills
[22:44:39] [Server thread/INFO]: [mcMMO] Registered subskill: Roll
[22:44:39] [Server thread/INFO]: [mcMMO] [config] Initializing config: experience.yml
[22:44:39] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: experience.yml
[22:44:39] [Server thread/INFO]: [mcMMO] [config] Config initialized: experience.yml
[22:44:39] [Server thread/INFO]: [mcMMO] 0 entries in mcMMO World Blacklist
[22:44:39] [Server thread/INFO]: [mcMMO] [config] Initializing config: chat.yml
[22:44:39] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: chat.yml
[22:44:39] [Server thread/INFO]: [mcMMO] [config] Config initialized: chat.yml
[22:44:40] [Server thread/INFO]: [PlayerParticles] Enabling PlayerParticles v8.3
[22:44:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerparticles [8.3]
[22:44:40] [Server thread/INFO]: [MiniaturePets] Enabling MiniaturePets v2.7.7
[22:44:40] [Server thread/INFO]: [MiniaturePets] Loading reflections.
[22:44:41] [Server thread/WARN]: [MiniaturePets]  The ride feature has been disabled in the configuration file.
[22:44:41] [Server thread/WARN]: [MiniaturePets]  The disguise feature has been disabled in the configuration file.
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:slab | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:leg | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:symbol | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:slab | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:legs | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:TwitchStandHead | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  Outdated material! Support for ItemIDs will eventually go away. Please update your item to use a material! https://helpch.at/docs/1.13/org/bukkit/Material.html (Item Name:Weapon | ID:386)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:leg | Material:STONE_SLAB2)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:YouTubeLogoAir | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:YouTubeLogoGround | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:YouTuberStandHead | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  Outdated material! Support for ItemIDs will eventually go away. Please update your item to use a material! https://helpch.at/docs/1.13/org/bukkit/Material.html (Item Name:Weapon | ID:386)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:ZombieHeadAir | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:ZombieHeadGround | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:ZombieStatueAirHead | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  Outdated material! Support for ItemIDs will eventually go away. Please update your item to use a material! https://helpch.at/docs/1.13/org/bukkit/Material.html (Item Name:Weapon | ID:386)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:ZombieStatueGroundHead | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  Outdated material! Support for ItemIDs will eventually go away. Please update your item to use a material! https://helpch.at/docs/1.13/org/bukkit/Material.html (Item Name:Weapon | ID:386)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:legs | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:leg | Material:CARPET)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:STAINED_CLAY)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:wing | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:leg | Material:CARPET)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:WOOL)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:wing | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:tail | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:leg | Material:CARPET)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:WOOL)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:wing | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:tail | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:leg | Material:CARPET)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:wing | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:leg | Material:CARPET)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:wing | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:tail | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:leg | Material:CARPET)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:WOOL)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:wing | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:leg | Material:CARPET)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:WOOL)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:wing | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:tail | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:leg | Material:CARPET)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:STAINED_CLAY)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:wing | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:leg | Material:CARPET)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:WOOL)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:wing | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:tail | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:symbol | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:leg | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:leg | Material:CARPET)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:STAINED_CLAY)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:wing | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:tail | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:leg | Material:CARPET)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:WOOL)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:wing | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:leg | Material:CARPET)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:WOOL)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:wing | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:tail | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:LightGreenCrystal | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:LightYellowCrystal | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:slab | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:leg | Material:CARPET)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:WOOL)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:wing | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:tail | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:STAINED_GLASS_1 | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:STAINED_GLASS_2 | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:icon | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:Milk | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:MilkerHead | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  Outdated material! Support for ItemIDs will eventually go away. Please update your item to use a material! https://helpch.at/docs/1.13/org/bukkit/Material.html (Item Name:Weapon | ID:386)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:MrPotatoManHead | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  Outdated material! Support for ItemIDs will eventually go away. Please update your item to use a material! https://helpch.at/docs/1.13/org/bukkit/Material.html (Item Name:Weapon | ID:386)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:leg | Material:CARPET)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:STAINED_CLAY)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:wing | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:tail | Material:BANNER)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:righthand2 | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  Outdated material! Support for ItemIDs will eventually go away. Please update your item to use a material! https://helpch.at/docs/1.13/org/bukkit/Material.html (Item Name:righthand | ID:280)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:feet | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:leg | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:tail | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:leg | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:weapon | Material:GOLD_SWORD)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:chestplate | Material:GOLD_CHESTPLATE)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:leggings | Material:GOLD_LEGGINGS)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:boots | Material:GOLD_BOOTS)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:hoe | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:head | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:body | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:TwitchLogoAir | Material:SKULL_ITEM)
[22:44:41] [Server thread/WARN]: [MiniaturePets]  A material in use for this pet is for an older version. If you have issues, update it to at least the 1.13 material! https://helpch.at/docs/1.13/org/bukkit/Material.html (ItemName:TwitchLogoGround | Material:SKULL_ITEM)
[22:44:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: miniaturepets [2.7.7]
[22:44:42] [Server thread/INFO]: [Rankup] Enabling Rankup v3.13.3
[22:44:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rankup [3.13.3]
[22:44:43] [Server thread/INFO]: [RealScoreboard] Enabling RealScoreboard v18-11-2022 Build 1
[22:44:43] [Server thread/INFO]: [RealScoreboard] ------------------- RealScoreboard 18-11-2022 Build 1 -------------------
[22:44:43] [Server thread/INFO]: [RealScoreboard] Your config version is: 14
[22:44:43] [Server thread/INFO]: [RealScoreboard] Finished loading RealScoreboard.
[22:44:43] [Server thread/INFO]: [RealScoreboard] Server version: v1_18_R2 | Plugin Version: 18-11-2022 Build 1
[22:44:43] [Server thread/INFO]: [RealScoreboard] ------------------- RealScoreboard 18-11-2022 Build 1 -------------------
[22:44:43] [Server thread/WARN]: [RealScoreboard] Loaded class org.h2.Driver from PiggyAPI v1.0 which is not a depend or softdepend of this plugin.
[22:44:43] [Server thread/INFO]: [EvenMoreFish] Enabling EvenMoreFish v1.6.5.1
[22:44:43] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_18_R2! Trying to find NMS support
[22:44:43] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_18_R2' loaded!
[22:44:43] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[22:44:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: emf [1.6.5.1]
[22:44:43] [Server thread/INFO]: [EvenMoreFish] EvenMoreFish by Oheers : Enabled
[22:44:43] [Server thread/INFO]: [MorphRedeem] Enabling MorphRedeem v1.2.3
[22:44:43] [Server thread/INFO]: [----------[MorphRedeem]----------]
[22:44:43] [Server thread/INFO]: Version: 1.2.3
[22:44:43] [Server thread/INFO]: Config: Loading config.
[22:44:43] [Server thread/INFO]: Storage Type: YML
[22:44:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: morphredeem [1.2.3]
[22:44:43] [Server thread/INFO]: PlaceholderAPI: Hooked
[22:44:43] [Server thread/INFO]: Plugin Status: Enabled
[22:44:43] [Server thread/INFO]: [----------[MorphRedeem]----------]
[22:44:43] [Server thread/INFO]: [SuperiorSkyblock2] Enabling SuperiorSkyblock2 v2022.9
[22:44:43] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module rhino-engine...
[22:44:43] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module rhino-engine (Took 9ms)
[22:44:43] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module nashorn-engine...
[22:44:43] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module nashorn-engine (Took 9ms)
[22:44:43] [Server thread/INFO]: Preparing start region for dimension minecraft:superiorworld
[22:44:43] [Server thread/INFO]: Preparing spawn area: 0%
[22:44:43] [Thread-19/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[22:44:44] [Server thread/INFO]: Time elapsed: 369 ms
[22:44:44] [Server thread/INFO]: [WorldGuard] (SuperiorWorld) TNT ignition is PERMITTED.
[22:44:44] [Server thread/INFO]: [WorldGuard] (SuperiorWorld) Lighters are PERMITTED.
[22:44:44] [Server thread/INFO]: [WorldGuard] (SuperiorWorld) Lava fire is PERMITTED.
[22:44:44] [Server thread/INFO]: [WorldGuard] (SuperiorWorld) Fire spread is UNRESTRICTED.
[22:44:44] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SuperiorWorld'
[22:44:44] [Server thread/INFO]: Preparing start region for dimension minecraft:superiorworld_nether
[22:44:44] [Server thread/INFO]: Preparing spawn area: 0%
[22:44:44] [Server thread/INFO]: Time elapsed: 425 ms
[22:44:44] [Server thread/INFO]: [WorldGuard] (SuperiorWorld_nether) TNT ignition is PERMITTED.
[22:44:44] [Server thread/INFO]: [WorldGuard] (SuperiorWorld_nether) Lighters are PERMITTED.
[22:44:44] [Server thread/INFO]: [WorldGuard] (SuperiorWorld_nether) Lava fire is PERMITTED.
[22:44:44] [Server thread/INFO]: [WorldGuard] (SuperiorWorld_nether) Fire spread is UNRESTRICTED.
[22:44:44] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SuperiorWorld_nether'
[22:44:44] [Server thread/INFO]: Preparing start region for dimension minecraft:superiorworld_the_end
[22:44:45] [Server thread/INFO]: Time elapsed: 94 ms
[22:44:45] [Server thread/INFO]: [WorldGuard] (SuperiorWorld_the_end) TNT ignition is PERMITTED.
[22:44:45] [Server thread/INFO]: [WorldGuard] (SuperiorWorld_the_end) Lighters are PERMITTED.
[22:44:45] [Server thread/INFO]: [WorldGuard] (SuperiorWorld_the_end) Lava fire is PERMITTED.
[22:44:45] [Server thread/INFO]: [WorldGuard] (SuperiorWorld_the_end) Fire spread is UNRESTRICTED.
[22:44:45] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SuperiorWorld_the_end'
[22:44:45] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module bank...
[22:44:45] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module bank (Took 3ms)
[22:44:45] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module missions...
[22:44:45] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_1
[22:44:45] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_2
[22:44:45] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_3
[22:44:45] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_4
[22:44:45] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_5
[22:44:45] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_1_1
[22:44:45] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_1_2
[22:44:45] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_1_3
[22:44:46] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_2_1
[22:44:46] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_2_2
[22:44:46] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_2_3
[22:44:46] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_3_1
[22:44:46] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_3_2
[22:44:46] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_3_3
[22:44:46] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_4_1
[22:44:46] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_4_2
[22:44:46] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_4_3
[22:44:46] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_5_1
[22:44:46] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_5_2
[22:44:46] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_5_3
[22:44:46] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_6_1
[22:44:46] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_6_2
[22:44:47] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_6_3
[22:44:47] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_7_1
[22:44:47] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_7_2
[22:44:47] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_7_3
[22:44:47] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_8_1
[22:44:47] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_8_2
[22:44:47] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_8_3
[22:44:47] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_9_1
[22:44:47] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_9_2
[22:44:47] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_9_3
[22:44:47] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_a_1
[22:44:47] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_a_2
[22:44:47] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_a_3
[22:44:47] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_b_1
[22:44:47] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_b_2
[22:44:47] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_b_3
[22:44:47] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_c_1
[22:44:47] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_c_2
[22:44:47] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_c_3
[22:44:47] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_d_1
[22:44:47] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_d_2
[22:44:47] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_d_3
[22:44:47] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_e_1
[22:44:48] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_e_2
[22:44:48] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_e_3
[22:44:48] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_f_1
[22:44:48] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_f_2
[22:44:48] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_f_3
[22:44:48] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_g_1
[22:44:48] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_g_2
[22:44:48] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_g_3
[22:44:48] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_h_1
[22:44:48] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_h_2
[22:44:48] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_h_3
[22:44:48] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_i_1
[22:44:48] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_i_2
[22:44:48] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_i_3
[22:44:48] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_j_1
[22:44:48] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_j_2
[22:44:48] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_j_3
[22:44:48] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_k_1
[22:44:48] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_k_2
[22:44:48] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_k_3
[22:44:48] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_l_1
[22:44:48] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_l_2
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_l_3
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_m_1
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_m_2
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_m_3
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_n_1
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_n_2
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_n_3
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_o_1
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_o_2
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_o_3
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_p_1
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_p_2
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_p_3
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_r_1
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_r_2
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_r_3
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_1
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_2
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_3
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_4
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_1_1
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_1_2
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_1_3
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_1_4
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_2_5
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_2_6
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_2_7
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_2_8
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_3_a1
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_3_a2
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_3_a3
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_3_a4
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_4_13
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_4_14
[22:44:49] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_4_15
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_4_16
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_5_17
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_5_18
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_5_19
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_5_20
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_6_21
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_6_22
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_6_23
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_6_24
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_7_25
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_7_26
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_7_27
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_7_28
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_8_29
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_8_30
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_8_31
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_8_32
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_9_33
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_9_34
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_9_35
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_9_36
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_a_37
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_a_38
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_a_39
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_a_40
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_a_41
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_a_42
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_a_43
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_a_44
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_a_45
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_a_46
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_b_42
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_b_43
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_b_44
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_b_45
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_b_46
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_c_47
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_c_48
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_c_49
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_c_50
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_c_51
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_d_52
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_d_53
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_d_54
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_d_55
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_e_56
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_e_57
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_e_58
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_e_59
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_f_60
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_f_61
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_f_62
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_f_63
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_g_64
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_g_65
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_g_66
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_g_67
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_h_68
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_h_69
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_h_70
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_h_71
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_i_72
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_i_73
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_i_74
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_i_75
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_j_76
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_j_77
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_j_78
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_j_79
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_k_80
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_k_81
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_k_82
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_k_83
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_l_84
[22:44:50] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_l_85
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_l_86
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_l_87
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_m_88
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_m_89
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_m_90
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_m_91
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_n_92
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_n_93
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_n_94
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_n_95
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_o_96
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_o_97
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_o_98
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_o_99
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_p_100
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_p_101
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_p_102
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_p_103
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_1
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_2
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_3
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_4
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_5
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_1_1
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_1_2
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_1_3
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_2_1
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_2_2
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_2_3
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_3_1
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_3_2
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_3_3
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_4_1
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_4_2
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_4_3
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_5_1
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_5_2
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_5_3
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_6_1
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_6_2
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_6_3
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_7_1
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_7_2
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_7_3
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_8_1
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_8_2
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_8_3
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_9_1
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_9_2
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_9_3
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_a_1
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_a_2
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_a_3
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_b_1
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_b_2
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_b_3
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_c_1
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_c_2
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_c_3
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_d_1
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_d_2
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_d_3
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_e_1
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_e_2
[22:44:51] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_e_3
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_f_1
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_f_2
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_f_3
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_g_1
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_g_2
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_g_3
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_1
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_2
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_3
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_1_1
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_1_2
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_1_3
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_1_4
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_2_1
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_2_2
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_2_3
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_2_4
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_3_1
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_3_2
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_3_3
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_3_4
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_4_1
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_4_2
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_4_3
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_4_4
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_5_1
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission 10k-worth
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission 1k-worth
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission 500-worth
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission 5k-worth
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission add-member
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission first-invite
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission first-island
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_1_1
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_1_2
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_1_3
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_2_1
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_2_2
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_2_3
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_3_1
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_3_2
[22:44:52] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_3_3
[22:44:53] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_4_1
[22:44:53] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_4_2
[22:44:53] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_4_3
[22:44:53] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_5_1
[22:44:53] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_5_2
[22:44:53] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_5_3
[22:44:53] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_6_1
[22:44:53] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_6_2
[22:44:53] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_6_3
[22:44:53] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_7_1
[22:44:53] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_7_2
[22:44:53] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_7_3
[22:44:53] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_8_1
[22:44:53] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_8_2
[22:44:53] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_8_3
[22:44:53] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_9_1
[22:44:53] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_9_2
[22:44:53] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_9_3
[22:44:53] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_a_1
[22:44:53] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_a_2
[22:44:53] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_a_3
[22:44:53] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_1_1
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_1_2
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_1_3
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_2_1
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_2_2
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_2_3
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_3_1
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_3_2
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_3_3
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_4_1
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_4_2
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_4_3
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_5_1
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_5_2
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_5_3
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_6_1
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_6_2
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_6_3
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_7_1
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_7_2
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_7_3
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_8_1
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_8_2
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_8_3
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module missions (Took 9872ms)
[22:44:54] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module generators...
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module generators (Took 7ms)
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module upgrades...
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module upgrades (Took 6ms)
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Loading messages started...
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2]  - Found 698 messages in the language files.
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Loading messages done (Took 97ms)
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic nether.schematic (DefaultSchematicParser)
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic end.schematic (DefaultSchematicParser)
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic original.schematic (DefaultSchematicParser)
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic lshape.schematic (DefaultSchematicParser)
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic lshape_nether.schematic (DefaultSchematicParser)
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic original_nether.schematic (DefaultSchematicParser)
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic lshape_the_end.schematic (DefaultSchematicParser)
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic original_the_end.schematic (DefaultSchematicParser)
[22:44:55] [Server thread/WARN]: [SuperiorSkyblock2] Loaded class org.h2.Driver from PiggyAPI v1.0 which is not a depend or softdepend of this plugin.
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Trying to connect to local database (SQLite)...
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Successfully established connection with local database!
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Creating a backup file...
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Backup done!
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load players...
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Finished loading 4 players (Took 7ms)
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load islands...
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Finished loading 1 islands (Took 69ms)
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load grid...
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Finished grid!
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load stacked blocks...
[22:44:55] [Server thread/INFO]: [SuperiorSkyblock2] Finished stacked blocks!
[22:44:55] [Server thread/INFO]: [TempFly] Enabling TempFly v3.1.7
[22:44:55] [Server thread/INFO]: [TempFly] Attempting to initialize (SuperiorSkyblock2) hook...
[22:44:55] [Server thread/INFO]: [TempFly] Initializing ClipAPI
[22:44:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tempfly [3.1.7]
[22:44:55] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2793)
[22:44:55] [Server thread/INFO]: [Citizens] Loading external libraries
[22:44:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[22:44:55] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[22:44:56] [Server thread/INFO]: [eGlow] Enabling eGlow v3.2.0
[22:44:56] [Server thread/INFO]: [eGlow]: Loading main config.
[22:44:56] [Server thread/INFO]: [eGlow]: Loading messages config.
[22:44:56] [Server thread/INFO]: [eGlow]: Loading CustomEffects config.
[22:44:56] [Server thread/INFO]: eGlow Successfully loaded Playerdata database.
[22:44:56] [Server thread/INFO]: [CitizensCMD] Enabling CitizensCMD v2.6.6
[22:44:56] [Server thread/INFO]: [CitizensCMD] CitizensCMD 2.6.6
[22:44:56] [Server thread/INFO]: [CitizensCMD] by Mateus Moreira @LichtHund & Maintained by HexedHero
[22:44:56] [Server thread/INFO]: [CitizensCMD] Using English messages!
[22:44:57] [Server thread/INFO]: [CitizensCMD] Using PlaceholderAPI!
[22:44:57] [Server thread/INFO]: [CitizensCMD] Using Vault!
[22:44:57] [Server thread/INFO]: [CompatNoCheatPlus] Enabling CompatNoCheatPlus v6.6.7-SNAPSHOT-2021_02_28-16_22*
[22:44:57] [Server thread/WARN]: [CompatNoCheatPlus] Loaded class fr.neatmonster.nocheatplus.checks.CheckType from NoCheatPlus v3.17-SNAPSHOT-8.3.1-b145 which is not a depend or softdepend of this plugin.
[22:44:57] [Server thread/INFO]: [cncp] Registered hook(NCPHook might get added later): Citizens2(default) / 2.2
[22:44:57] [Server thread/INFO]: [cncp] Registered hook(NCPHook might get added later): mcMMO(default) / 2.1
[22:44:57] [Server thread/INFO]: [cncp] Registered hook(NCPHook might get added later): BlockBreak(default) / 1.1
[22:44:57] [Server thread/INFO]: [cncp] Registered hook(NCPHook might get added later): BlockPlace(default) / 1.0
[22:44:57] [Server thread/INFO]: [cncp] Registered hook(NCPHook might get added later): InstaBreak(default) / 1.0
[22:44:57] [Server thread/INFO]: [cncp] Registered hook(NCPHook might get added later): EntityDamageByEntity(default) / 0.0
[22:44:57] [Server thread/INFO]: [cncp] Registered hook(NCPHook might get added later): Interact(default) / 1.0
[22:44:57] [Server thread/INFO]: [CompatNoCheatPlus] CompatNoCheatPlus v6.6.7-SNAPSHOT-2021_02_28-16_22 is enabled. Some hooks might get registered with NoCheatPlus later on.
[22:44:57] [Server thread/INFO]: [NoCheatPlus] Enabling NoCheatPlus v3.17-SNAPSHOT-8.3.1-b145
[22:44:57] [Server thread/INFO]: [NoCheatPlus] McAccess set to: 1.13-1.19|? / Bukkit-API
[22:44:57] [Server thread/INFO]: [NoCheatPlus] Applied block patches for multi client protocol support: water_lily, soil, vine, honey_block, shulker_box
[22:44:57] [Server thread/INFO]: [NoCheatPlus] Update block-info: Block shape patch for multi client protocol support.
[22:44:57] [Server thread/INFO]: [NoCheatPlus] Inventory checks: FastConsume is available, disabled InstantEat.
[22:44:57] [Server thread/INFO]: [NoCheatPlus] Adding packet level hooks for ProtocolLib (MC 1.18.2)...
[22:44:57] [Server thread/INFO]: [NoCheatPlus] Confirm teleport packet available (via name): TELEPORT_ACCEPT[class=PacketPlayInTeleportAccept, id=0]
[22:44:57] [Server thread/INFO]: [NoCheatPlus] Available (and activated) packet level hooks: UseEntityAdapter | MovingFlying | OutgoingPosition | KeepAliveAdapter | WrongTurnAdapter | NoSlow | Fight
[22:44:57] [Server thread/INFO]: [NoCheatPlus] Force disable FastHeal, FastConsume, PacketFrequency and InstantBow on Minecraft 1.9 and later.
[22:44:57] [Server thread/INFO]: [NoCheatPlus] Version 3.17-SNAPSHOT-8.3.1-b145 is enabled.
[22:44:57] [Server thread/INFO]: [CompatNoCheatPlus] [cncp] Added 2 registered hooks to NoCheatPlus.
[22:44:57] [Server thread/INFO]: [ConditionalCommands] Enabling ConditionalCommands v1.6
[22:44:57] [Server thread/INFO]: [ConditionalCommands] Initializing placeholders...
[22:44:57] [Server thread/INFO]: [ConditionalCommands] Ready.
[22:44:57] [Server thread/INFO]: [NCPDragDown] Enabling NCPDragDown v1.0.6
[22:44:57] [Server thread/INFO]: [CrazyEnvoy] Enabling CrazyEnvoy v1.4.17
[22:44:57] [Server thread/INFO]: [CrazyEnvoy] Loading the config.yml
[22:44:57] [Server thread/INFO]: [CrazyEnvoy] Successfully loaded config.yml
[22:44:57] [Server thread/INFO]: [CrazyEnvoy] Loading the messages.yml
[22:44:57] [Server thread/INFO]: [CrazyEnvoy] Successfully loaded messages.yml
[22:44:57] [Server thread/INFO]: [CrazyEnvoy] Loading the data.yml
[22:44:57] [Server thread/INFO]: [CrazyEnvoy] Successfully loaded data.yml
[22:44:57] [Server thread/INFO]: [CrazyEnvoy] Loading custom files.
[22:44:57] [Server thread/INFO]: [CrazyEnvoy] Loaded new custom file: /tiers/Basic.yml.
[22:44:57] [Server thread/INFO]: [CrazyEnvoy] Loaded new custom file: /tiers/Titan.yml.
[22:44:57] [Server thread/INFO]: [CrazyEnvoy] Finished loading custom files.
[22:44:57] [Server thread/INFO]: [CrazyEnvoy] LoadedHolographicDisplays hologram hook.
[22:44:57] [Server thread/WARN]: [HolographicDisplays] The plugin CrazyEnvoy registered the placeholder {crazyenvoy_cooldown} with the old v2 API, but it doesn't comply with the new format. In order to display it, you must use {{crazyenvoy_cooldown}} instead.
[22:44:57] [Server thread/WARN]: [HolographicDisplays] The plugin CrazyEnvoy registered the placeholder {crazyenvoy_time_left} with the old v2 API, but it doesn't comply with the new format. In order to display it, you must use {{crazyenvoy_time_left}} instead.
[22:44:57] [Server thread/WARN]: [HolographicDisplays] The plugin CrazyEnvoy registered the placeholder {crazyenvoy_crates_left} with the old v2 API, but it doesn't comply with the new format. In order to display it, you must use {{crazyenvoy_crates_left}} instead.
[22:44:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: crazyenvoys [1.4.17]
[22:44:57] [Server thread/INFO]: [WildStacker] Enabling WildStacker v2022.6
[22:44:57] [Server thread/INFO]: [WildStacker] ******** ENABLE START ********
[22:44:57] [Server thread/INFO]: [WildStacker] Loading configuration started...
[22:44:57] [Server thread/INFO]: [WildStacker]  - Stacking drops is disabled
[22:44:57] [Server thread/INFO]: [WildStacker]  - Stacking entities is enabled
[22:44:57] [Server thread/INFO]: [WildStacker]  - Stacking spawners is enabled
[22:44:57] [Server thread/INFO]: [WildStacker]  - Stacking barrels is disabled
[22:44:57] [Server thread/INFO]: [WildStacker] Loading configuration done (Took 36ms)
[22:44:57] [Server thread/INFO]: [WildStacker] Loading loot-tables started...
[22:44:57] [Server thread/INFO]: [WildStacker] Loading loot-tables done (Took 30ms)
[22:44:57] [Server thread/INFO]: [WildStacker] Loading messages started...
[22:44:57] [Server thread/INFO]: [WildStacker]  - Found 69 messages in lang.yml.
[22:44:57] [Server thread/INFO]: [WildStacker] Loading messages done (Took 1ms)
[22:44:58] [Server thread/INFO]: [WildStacker] ******** ENABLE DONE ********
[22:44:58] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.2-SNAPSHOT-b870
[22:44:58] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.2-SNAPSHOT-b870" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[22:44:58] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[22:44:58] [Server thread/INFO]: Preparing start region for dimension minecraft:mine
[22:44:58] [Server thread/INFO]: Preparing spawn area: 0%
[22:44:58] [Server thread/INFO]: Time elapsed: 84 ms
[22:44:58] [Server thread/INFO]: [WorldGuard] (mine) TNT ignition is PERMITTED.
[22:44:58] [Server thread/INFO]: [WorldGuard] (mine) Lighters are PERMITTED.
[22:44:58] [Server thread/INFO]: [WorldGuard] (mine) Lava fire is PERMITTED.
[22:44:58] [Server thread/INFO]: [WorldGuard] (mine) Fire spread is UNRESTRICTED.
[22:44:58] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'mine'
[22:44:59] [Server thread/INFO]: Preparing start region for dimension minecraft:pvp
[22:44:59] [Server thread/INFO]: Time elapsed: 237 ms
[22:44:59] [Server thread/INFO]: [WorldGuard] (pvp) TNT ignition is PERMITTED.
[22:44:59] [Server thread/INFO]: [WorldGuard] (pvp) Lighters are PERMITTED.
[22:44:59] [Server thread/INFO]: [WorldGuard] (pvp) Lava fire is PERMITTED.
[22:44:59] [Server thread/INFO]: [WorldGuard] (pvp) Fire spread is UNRESTRICTED.
[22:44:59] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'pvp'
[22:44:59] [Server thread/INFO]: [Multiverse-Core] 7 - World(s) loaded.
[22:44:59] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[22:44:59] [Server thread/INFO]: [Multiverse-Core] Version 4.3.2-SNAPSHOT-b870 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[22:44:59] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.1.4-3aa1b5d2
[22:44:59] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.18.2)...
[22:44:59] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[22:44:59] [Server thread/WARN]: [MythicMobs] Loaded class org.slf4j.impl.StaticLoggerBinder from DonatorJoinPlus v2.3.8 which is not a depend or softdepend of this plugin.
[22:44:59] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 32 ms to scan 1 urls, producing 3 keys and 21 values 
[22:44:59] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 10 ms to scan 1 urls, producing 6 keys and 101 values 
[22:44:59] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 29 ms to scan 78 urls, producing 0 keys and 0 values 
[22:44:59] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 6 ms to scan 1 urls, producing 3 keys and 36 values 
[22:44:59] [Server thread/INFO]: [MythicMobs] MythicMobs HolographicDisplays Support has been enabled!
[22:44:59] [Server thread/INFO]: [MythicMobs] MythicMobs LibsDisguises Support has been enabled!
[22:44:59] [Server thread/INFO]: [MythicMobs] MythicMobs mcMMO Support has been enabled!
[22:44:59] [Server thread/INFO]: [MythicMobs] MythicMobs MiniaturePets Support has been enabled!
[22:44:59] [Server thread/INFO]: [MythicMobs] MythicMobs NoCheatPlus Support has been enabled!
[22:44:59] [Server thread/INFO]: [MythicMobs] MythicMobs PlaceholderAPI Support has been enabled!
[22:44:59] [Server thread/INFO]: [MythicMobs] MythicMobs ProtocolLib Support has been enabled!
[22:44:59] [Server thread/INFO]: [MythicMobs] MythicMobs Vault Support has been enabled!
[22:44:59] [Server thread/INFO]: [MythicMobs] MythicMobs WorldGuard Support has been enabled!
[22:44:59] [Server thread/INFO]: [MythicMobs] Loading Mob Registry...
[22:44:59] [Server thread/INFO]: [MythicMobs] Base directory /home/mcserver/skyblock/plugins/MythicMobs/SavedData
[22:44:59] [Server thread/INFO]: [MythicMobs] Module directory /home/mcserver/skyblock/plugins/MythicMobs/SavedData/worlds
[22:44:59] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 16 ms to scan 1 urls, producing 11 keys and 423 values 
[22:44:59] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 79 ms to scan 1 urls, producing 27 keys and 843 values 
[22:45:00] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 8 ms to scan 1 urls, producing 9 keys and 152 values 
[22:45:00] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 4 ms to scan 1 urls, producing 2 keys and 11 values 
[22:45:00] [Server thread/INFO]: [MythicMobs] LOADED
[22:45:00] [Server thread/INFO]: [MythicMobs] Loading Packs...
[22:45:00] [Server thread/INFO]: [MythicMobs] Loading Items...
[22:45:00] [Server thread/INFO]: [MythicMobs] Loading Skills...
[22:45:00] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[22:45:00] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[22:45:00] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[22:45:00] [Server thread/INFO]: [MythicMobs] ✓ Loaded 33 mobs.
[22:45:00] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[22:45:00] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[22:45:00] [Server thread/INFO]: [MythicMobs] ✓ Loaded 103 skills.
[22:45:00] [Server thread/INFO]: [MythicMobs] ✓ Loaded 27 random spawns.
[22:45:00] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 mythic items.
[22:45:00] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 drop tables.
[22:45:00] [Server thread/INFO]: [MythicMobs] ✓ Loaded 14 mob spawners.
[22:45:00] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[22:45:00] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[22:45:00] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.1.4 ( build 3aa1b5d2 ) has been successfully loaded!
[22:45:00] [Server thread/INFO]: [CombatLogX] Enabling CombatLogX v11.1.0.7.1025
[22:45:00] [Server thread/INFO]: [CombatLogX] Enabling expansions...
[22:45:00] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Action Bar v17.0'...
[22:45:00] [Server thread/INFO]: [CombatLogX]  
[22:45:00] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Cheat Prevention v16.23'...
[22:45:00] [Server thread/INFO]: [CombatLogX]  
[22:45:00] [Server thread/INFO]: [CombatLogX] Enabling expansion 'EssentialsX Compatibility v16.3'...
[22:45:00] [Server thread/INFO]: [CombatLogX] [EssentialsX Compatibility] Successfully found a dependency: Essentials v2.19.7
[22:45:00] [Server thread/INFO]: [CombatLogX]  
[22:45:00] [Server thread/INFO]: [CombatLogX] Enabling expansion 'LibsDisguises Compatibility v16.3'...
[22:45:00] [Server thread/INFO]: [CombatLogX] [LibsDisguises Compatibility] Successfully found a dependency: LibsDisguises v10.0.31
[22:45:00] [Server thread/INFO]: [CombatLogX]  
[22:45:00] [Server thread/INFO]: [CombatLogX] Enabling expansion 'PlaceholderAPI Compatibility v16.9'...
[22:45:00] [Server thread/INFO]: [CombatLogX] [PlaceholderAPI Compatibility] Successfully found a dependency: PlaceholderAPI v2.11.2
[22:45:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: combatlogx [16.9]
[22:45:00] [Server thread/INFO]: [CombatLogX]  
[22:45:00] [Server thread/INFO]: [CombatLogX] Enabling expansion 'PlayerParticles Compatibility v16.2'...
[22:45:00] [Server thread/INFO]: [CombatLogX] [PlayerParticles Compatibility] Successfully found a dependency: PlayerParticles v8.3
[22:45:00] [Server thread/INFO]: [CombatLogX]  
[22:45:00] [Server thread/INFO]: [CombatLogX] Enabling expansion 'SuperiorSkyblock Compatibility v16.4'...
[22:45:00] [Server thread/INFO]: [CombatLogX] [SuperiorSkyblock Compatibility] Successfully found a dependency: SuperiorSkyblock2 v2022.9
[22:45:00] [Server thread/INFO]: [CombatLogX]  
[22:45:00] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Death Effects v16.4'...
[22:45:00] [Server thread/INFO]: [CombatLogX]  
[22:45:00] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Glowing v16.5'...
[22:45:00] [Server thread/INFO]: [CombatLogX]  
[22:45:00] [Server thread/INFO]: [CombatLogX] Successfully enabled 9 expansions.
[22:45:00] [Server thread/INFO]: [ChatControl] Enabling ChatControl v8.11.8
[22:45:00] [Server thread/INFO]:   _____ _           _    _____            _             _  +
[22:45:00] [Server thread/INFO]:  / ____| |         | |  / ____|          | |           | |
[22:45:00] [Server thread/INFO]: | |    | |__   __ _| |_| |     ___  _ __ | |_ _ __ ___ | |
[22:45:00] [Server thread/INFO]: | |    | '_ \ / _` | __| |    / _ \| '_ \| __| '__/ _ \| |
[22:45:00] [Server thread/INFO]: | |____| | | | (_| | |_| |___| (_) | | | | |_| | | (_) | |
[22:45:00] [Server thread/INFO]:  \_____|_| |_|\__,_|\__|\_____\___/|_| |_|\__|_|  \___/|_|
[22:45:00] [Server thread/INFO]:   
[22:45:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: chatcontrol [8.11.8]
[22:45:00] [Server thread/INFO]: Warning: Admin_Chat feature is deprecated. You can create an admin channel in channels.yml. If using Discord, you can put 'Discord: true' key there to connect it with Discord channel by the same name.
[22:45:00] [Server thread/INFO]: [Warning]: The death cause 'Freeze' is missing from your messages.yml. Ignoring..
[22:45:01] [Server thread/INFO]: Hooked into: mcMMO
[22:45:01] [Server thread/INFO]: Warning: ViaVersion detected. If you are getting kicked with weird messages, disable packet features in settings.yml -> Packets.
[22:45:01] [Server thread/INFO]: Hooked into: ProtocolLib
[22:45:01] [Server thread/INFO]:   
[22:45:01] [Server thread/INFO]: Tutorial:
[22:45:01] [Server thread/INFO]: https://github.com/kangarko/ChatControl-Pro/wiki
[22:45:01] [Server thread/INFO]:   
[22:45:01] [Server thread/INFO]: Get help:
[22:45:01] [Server thread/INFO]: https://github.com/kangarko/ChatControl-Pro/issues
[22:45:01] [Server thread/INFO]:   
[22:45:01] [Server thread/INFO]: ChatControl loaded. /me is the best
[22:45:01] [Server thread/INFO]: ______________________________________________________________
[22:45:03] [Server thread/INFO]: Loaded 7 recipes
[22:45:04] [Server thread/INFO]: Loaded 7 recipes
[22:45:04] [Server thread/INFO]: NXS | Automatic upload of the resource pack is enabled, uploading...
[22:45:04] [Server thread/INFO]: NXS | Successfully loaded on CentOS Linux release 7.9.2009 (Core)
[22:45:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: oraxen [1.148.2]
[22:45:04] [Server thread/INFO]: NXS | Plugin "PlaceholderAPI" detected, enabling hooks
[22:45:04] [Server thread/INFO]: NXS | Plugin "MythicMobs" detected, enabling hooks
[22:45:05] [Server thread/INFO]: [KOTH] Enabling KOTH v6.0.3
[22:45:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: koth [6.0.3]
[22:45:06] [pool-93-thread-1/INFO]: [KOTH] Sorting through upcoming KOTH schedules...
[22:45:06] [pool-93-thread-1/INFO]: [KOTH] Successfully sorted through all KOTH schedules.
[22:45:06] [Server thread/INFO]: ===================================
[22:45:06] [Server thread/INFO]: 
[22:45:06] [Server thread/INFO]: - Plugin: KOTH
[22:45:06] [Server thread/INFO]: - Version: 6.0.3
[22:45:06] [Server thread/INFO]: - Server Version: v1_18_R2
[22:45:06] [Server thread/INFO]: - Author: Benzimmer
[22:45:06] [Server thread/INFO]: - Discord: https://discord.gg/fuffySb
[22:45:06] [Server thread/INFO]: 
[22:45:06] [Server thread/INFO]: - Searching for plugin updates...
[22:45:06] [Server thread/INFO]: : A new update has been found for this plugin - 6.1
[22:45:06] [Server thread/INFO]: 
[22:45:06] [Server thread/INFO]: - Successfully registered placeholders with PlaceholderAPI.
[22:45:06] [Server thread/INFO]: 
[22:45:06] [Server thread/INFO]: - Loaded 1 koths.
[22:45:06] [Server thread/INFO]: - Loaded 45 commands.
[22:45:06] [Server thread/INFO]: 
[22:45:06] [Server thread/INFO]: - Enabled plugin in 332 ms
[22:45:06] [Server thread/INFO]: 
[22:45:06] [Server thread/INFO]: ===================================
[22:45:06] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.7.0
[22:45:07] [Server thread/INFO]: [Vulcan] Server Version: 1.18.2 detected!
[22:45:07] [Server thread/INFO]: [Vulcan] mcMMO found. Enabling hook!
[22:45:07] [Server thread/INFO]: [Vulcan] LibsDisguises found. Enabling hook!
[22:45:07] [Server thread/INFO]: [Vulcan] MythicMobs found. Enabling hook!
[22:45:07] [Server thread/INFO]: [Vulcan] GSit found. Enabling hook!
[22:45:07] [Server thread/INFO]: [Vulcan] BStats enabled!
[22:45:07] [Server thread/INFO]: [Vulcan] Registered mcMMO listener!
[22:45:07] [Server thread/INFO]: [Vulcan] Registered MythicMobs listener!
[22:45:07] [Server thread/INFO]: [Vulcan] Registered GSit Listener!
[22:45:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: Vulcan [2.7.0]
[22:45:07] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[22:45:07] [Server thread/INFO]: [DeathMessages] Enabling DeathMessages v1.4.12
[22:45:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deathmessages [1.4.12]
[22:45:07] [Server thread/INFO]: [DeathMessages] PlaceholderAPI Hook Enabled!
[22:45:07] [Server thread/INFO]: [DeathMessages] WorldGuard Hook Enabled!
[22:45:07] [Server thread/INFO]: [DeathMessages] MythicMobs Hook Enabled!
[22:45:07] [Server thread/INFO]: [DeathMessages] bStats Hook Enabled!
[22:45:07] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.80.0
[22:45:07] [Server thread/WARN]: [ShopGUIPlus] Loaded class org.h2.Driver from PiggyAPI v1.0 which is not a depend or softdepend of this plugin.
[22:45:07] [Server thread/INFO]: [AdvancedEnchantments] Enabling AdvancedEnchantments v9.0.0b38
[22:45:07] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WildStacker.
[22:45:07] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuard.
[22:45:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: advancedenchantments [1.0.0]
[22:45:07] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into PlaceholderAPI.
[22:45:07] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into MythicMobs.
[22:45:07] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into BlockLocker.
[22:45:07] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into ProtocolLib.
[22:45:07] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into Essentials.
[22:45:07] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into SuperiorSkyBlock2.
[22:45:07] [Server thread/INFO]: [AdvancedEnchantments] Loaded 7 armor sets.
[22:45:07] [Server thread/INFO]: [AdvancedEnchantments] Loaded 5 weapons.
[22:45:07] [Server thread/INFO]: [AdvancedEnchantments] NoCheatPlus support has been enabled.
[22:45:07] [Server thread/INFO]: [cncp] Registered hook: Advanced Enchantments Hook / 1.0.0
[22:45:07] [Server thread/INFO]: [AdvancedEnchantments] CompatNoCheatPlus support has been enabled.
[22:45:07] [Server thread/INFO]: [AdvancedEnchantments] Vulcan support has been enabled.
[22:45:07] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into economy plugin (Vault)
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3] Enabling zAuctionHouseV3 v3.1.0.3
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] === ENABLE START ===
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Plugin Version V3.1.0.3
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] /home/mcserver/skyblock/plugins/zAuctionHouseV3/config.json loaded successfully !
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Loading of 3 tax items
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Loading of 2 price items
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Loading the Blocks category with 898 materials
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Loading the Potions category with 17 materials
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Loading the Tools category with 16 materials
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Loading the Weapons category with 8 materials
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Attention, the category misc is empty
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Loading inventories in progress...
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Successful loading of the inventory auction !
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Successful loading of the inventory buyconfirm !
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Successful loading of the inventory removeconfirm !
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Successful loading of the inventory expire !
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Successful loading of the inventory buying !
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Successful loading of the inventory items !
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Successful loading of the inventory categories !
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Successful loading of the inventory sell !
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Successful loading of the inventory sellshow !
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Successful loading of the inventory category !
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Successful loading of the inventory adminremove !
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Successful loading of the inventory search !
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Successful loading of the inventory show !
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Inventories loading complete.
[22:45:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: zauctionhouse [3.1.0.3]
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Loading 3 inventories
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] Loading 0 commands
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] /home/mcserver/skyblock/plugins/zAuctionHouseV3/items.json loaded successfully !
[22:45:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.3] === ENABLE DONE (105ms) ===
[22:45:07] [Server thread/INFO]: [JetsMinions] Enabling JetsMinions v7.6.16
[22:45:08] [Server thread/INFO]: [JetsMinions] Initialising Plugin v7.6.16...
[22:45:08] [Server thread/INFO]: [JetsMinions] hooks.yml found, loading!
[22:45:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jetsminions [1.0.0]
[22:45:08] [Server thread/INFO]: [JetsMinions] skins.yml found, loading!
[22:45:08] [Server thread/INFO]: [JetsMinions] config.yml found, loading!
[22:45:08] [Server thread/INFO]: [JetsMinions] messages.yml found, loading!
[22:45:08] [Server thread/INFO]: [JetsMinions] controlpanel.yml found, loading!
[22:45:08] [Server thread/INFO]: [JetsMinions] players.yml found, loading!
[22:45:08] [Server thread/INFO]: [JetsMinions] store.yml found, loading!
[22:45:08] [Server thread/INFO]: [JetsMinions] Loaded Minion: Miner Made by Jet315
[22:45:08] [Server thread/INFO]: [JetsMinions] Loaded Minion: Slayer Made by Jet315
[22:45:08] [Server thread/INFO]: [JetsMinions] Loaded Minion: Collector Made by Jet315
[22:45:08] [Server thread/INFO]: [JetsMinions] Loaded Minion: Feeder Made by Jet315
[22:45:08] [Server thread/INFO]: [JetsMinions] Loaded Minion: Lumberjack Made by Jet315
[22:45:08] [Server thread/INFO]: [JetsMinions] Loaded Minion: Farmer Made by Jet315
[22:45:08] [Server thread/INFO]: [JetsMinions] Loaded Minion: Fisher Made by Jet315
[22:45:08] [Server thread/INFO]: [JetsMinions] Loaded Minion: Seller Made by Jet315
[22:45:08] [Server thread/INFO]: [JetsMinions] Loaded 0/0 Minions
[22:45:08] [Server thread/INFO]: [JetsMinions] Initialising Complete in 76ms
[22:45:08] [Server thread/INFO]: [WildChests] Enabling WildChests v2022.7
[22:45:08] [Server thread/INFO]: [WildChests] ******** ENABLE START ********
[22:45:08] [Server thread/INFO]: [WildChests] Loading configuration started...
[22:45:08] [Server thread/INFO]: [WildChests]  - Found 6 chests in config.yml.
[22:45:08] [Server thread/INFO]: [WildChests] Loading configuration done (Took 15ms)
[22:45:08] [Server thread/INFO]: [WildChests] Loading messages started...
[22:45:08] [Server thread/INFO]: [WildChests]  - Found 42 messages in lang.yml.
[22:45:08] [Server thread/INFO]: [WildChests] Loading messages done (Took 1ms)
[22:45:08] [Server thread/INFO]: [WildChests] ******** ENABLE DONE ********
[22:45:08] [Server thread/INFO]: [ChunkHoppers] Enabling ChunkHoppers v2.1.6
[22:45:08] [Server thread/INFO]: 
[22:45:08] [Server thread/INFO]: ==============================
[22:45:08] [Server thread/INFO]: ChunkHoppers v2.1.6 by McDoJr
[22:45:08] [Server thread/INFO]: Economy found » Essentials
[22:45:08] [Server thread/INFO]: Successfully hooked to Vault!
[22:45:08] [Server thread/INFO]: Loading existing chunk hoppers...
[22:45:08] [Server thread/INFO]: ==============================
[22:45:08] [Server thread/INFO]: 
[22:45:08] [Server thread/INFO]: [IllegalStack] Enabling IllegalStack v2.6.1
[22:45:08] [Server thread/INFO]: [IllegalStack/IllegalStack] The following materials are allowed to have stacks larger than the vanilla size: SALMON_BUCKET PUFFERFISH_BUCKET COD_BUCKET BUCKET POTION LAVA_BUCKET ENDER_PEARL WATER_BUCKET TROPICAL_FISH_BUCKET 
[22:45:08] [Server thread/INFO]: [IllegalStack/IllegalStack] Chat Components found! Enabling clickable commands in /istack
[22:45:08] [Server thread/INFO]: [IllegalStack/fListener] MC Version v1_18_r2 detected!
[22:45:08] [Server thread/INFO]: [IllegalStack/Listener113] Enabling 1.13+ Checks
[22:45:08] [Server thread/INFO]: [IllegalStack/IllegalStack] ZombieVillagerTransformChance is set to 65 *** Only really matters if the difficulty is set to HARD ***
[22:45:08] [Server thread/INFO]: [WildTools] Enabling WildTools v2022.7
[22:45:08] [Server thread/INFO]: [WildTools] ******** ENABLE START ********
[22:45:08] [Server thread/INFO]: [WildTools] Loading configuration started...
[22:45:08] [Server thread/INFO]: [WildTools]  - Found 15 tools in config.yml.
[22:45:08] [Server thread/INFO]: [WildTools] Loading configuration done (Took 22ms)
[22:45:08] [Server thread/INFO]: [WildTools] Loading messages started...
[22:45:08] [Server thread/INFO]: [WildTools]  - Found 0 messages in lang.yml.
[22:45:08] [Server thread/INFO]: [WildTools] Loading messages done (Took 1ms)
[22:45:08] [Server thread/INFO]: [WildTools] Couldn't find the tool sell_wand, skipping recipe...
[22:45:08] [Server thread/INFO]: [WildTools] Couldn't find valid recipe for crafting_wand, skipping...
[22:45:09] [Server thread/INFO]: [WildTools] ******** ENABLE DONE ********
[22:45:09] [Server thread/INFO]: [AdvancedArmor] Enabling AdvancedArmor v2.0.9
[22:45:09] [Server thread/INFO]: [AdvancedArmor] Registered a MONEY boost listener.
[22:45:09] [Server thread/INFO]: [AdvancedArmor] Successfully hooked into ShopGui+
[22:45:09] [Server thread/INFO]: [AdvancedArmor] Registered a COIN boost listener.
[22:45:09] [Server thread/INFO]: [AdvancedArmor] Successfully hooked into AquaCoins
[22:45:09] [Server thread/INFO]: [AdvancedArmor] Registered a MONEY boost listener.
[22:45:09] [Server thread/INFO]: [AdvancedArmor] Successfully hooked into WildTools
[22:45:09] [Server thread/INFO]: [AdvancedArmor] Registered a EXP boost listener.
[22:45:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: advancedarmor [1.0.0]
[22:45:09] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_18_R2! Trying to find NMS support
[22:45:09] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_18_R2' loaded!
[22:45:09] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[22:45:09] [Server thread/INFO]: [AdvancedArmor] Loaded armor set: Orange
[22:45:09] [Server thread/INFO]: [AdvancedArmor] Loaded armor set: Pink
[22:45:09] [Server thread/INFO]: [AdvancedArmor] Loaded armor set: Yellow
[22:45:09] [Server thread/INFO]: [AdvancedArmor] Loaded armor set: Aqua
[22:45:09] [Server thread/INFO]: [AdvancedArmor] Loaded armor set: Green
[22:45:09] [Server thread/INFO]: [AdvancedArmor] Loaded armor set: Red
[22:45:09] [Server thread/INFO]: [AdvancedArmor] Please note that in order to change economy providers in the config, you need to reload the server.
[22:45:10] [Thread-29/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package me.ilucah.advancedarmor.utilities' seems to be outdated!
[22:45:10] [Thread-29/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.10.0-SNAPSHOT' Newest Version: 2.10.0'
[22:45:10] [Thread-29/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[22:45:10] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[22:45:10] [Server thread/INFO]: Running delayed init tasks
[22:45:10] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.18.2 (758)
[22:45:10] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[22:45:10] [Server thread/INFO]: [DeluxeCoinflip] Found and using VAULT economy provider(s).
[22:45:10] [ForkJoinPool.commonPool-worker-1/WARN]: [PlaceholderAPI] Loaded class com.gmail.nossr50.commands.skills.AlchemyCommand from mcMMO v2.1.217 which is not a depend or softdepend of this plugin.
[22:45:10] [ForkJoinPool.commonPool-worker-3/WARN]: [PlaceholderAPI] Loaded class net.ess3.api.IEssentials from Essentials v2.19.7 which is not a depend or softdepend of this plugin.
[22:45:10] [Craft Scheduler Thread - 5 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[22:45:10] [Craft Scheduler Thread - 8 - ServerUtils/INFO]: [ServerUtils] Checking for updates...
[22:45:10] [Craft Scheduler Thread - 12 - Essentials/INFO]: [Essentials] Fetching version information...
[22:45:10] [Craft Scheduler Thread - 14 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[22:45:10] [Craft Scheduler Thread - 5 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] You are running the latest version.
[22:45:10] [Craft Scheduler Thread - 17 - HoloExtension/ERROR]: [HoloExtension] Module %statistic_seconds_played% cannot parse data from offline players, consider disabling it. It was automatically disabled for this session.
[22:45:10] [Craft Scheduler Thread - 19 - InteractionVisualizer/INFO]: [InteractionVisualizer] Downloading and extracting latest Language files...
[22:45:10] [Craft Scheduler Thread - 21 - PlayerParticles/INFO]: [PlayerParticles] Data handler connected using SQLite.
[22:45:10] [Craft Scheduler Thread - 21 - PlayerParticles/WARN]: [PlayerParticles] Loaded class org.h2.Driver from PiggyAPI v1.0 which is not a depend or softdepend of this plugin.
[22:45:10] [Craft Scheduler Thread - 17 - EvenMoreFish/WARN]: [EvenMoreFish] Loaded class org.h2.Driver from PiggyAPI v1.0 which is not a depend or softdepend of this plugin.
[22:45:10] [Craft Scheduler Thread - 27 - NoCheatPlus/INFO]: [NoCheatPlus] Added hook: ViolationFrequency(NCP) [1.0].
[22:45:10] [Craft Scheduler Thread - 27 - NoCheatPlus/INFO]: [NoCheatPlus] Added hook: Citizens2(cncp) [2.0].
[22:45:10] [Craft Scheduler Thread - 27 - NoCheatPlus/INFO]: [NoCheatPlus] Added hook: mcMMO(cncp) [2.3].
[22:45:10] [Craft Scheduler Thread - 27 - NoCheatPlus/INFO]: [NoCheatPlus] Added hook: NCPDragDown [1.1].
[22:45:10] [Craft Scheduler Thread - 25 - Vault/INFO]: [Vault] Checking for Updates ... 
[22:45:10] [Craft Scheduler Thread - 16 - OmegaVision/INFO]: [OmegaVision] You are already running the latest version
[22:45:10] [Server thread/INFO]: [SuperiorSkyblock2] Using WildStacker as a spawners provider.
[22:45:10] [Server thread/INFO]: [SuperiorSkyblock2] Using WildStacker as a stacked-blocks provider.
[22:45:10] [Server thread/INFO]: [SuperiorSkyblock2] Using LuckPerms as a permissions provider.
[22:45:10] [Server thread/INFO]: [SuperiorSkyblock2] Using ShopGUIPlus as a prices provider.
[22:45:10] [Server thread/INFO]: [SuperiorSkyblock2] Hooked into Essentials for support of vanish status of players.
[22:45:10] [Server thread/INFO]: [SuperiorSkyblock2] Hooked into Essentials for support of afk status of players.
[22:45:10] [Server thread/INFO]: [SuperiorSkyblock2] Using Vault as an economy provider.
[22:45:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: superior [2022.9]
[22:45:10] [Server thread/INFO]: [SuperiorSkyblock2] Using PlaceholderAPI for placeholders support.
[22:45:10] [Server thread/INFO]: [SuperiorSkyblock2] Detected PaperSpigot - Using async chunk-loading support with PaperMC.
[22:45:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: eglow [3.2.0]
[22:45:10] [Craft Scheduler Thread - 20 - WGEF-Reborn/INFO]: [WGEF-Reborn] New update found: 2.6
[22:45:10] [Craft Scheduler Thread - 20 - WGEF-Reborn/INFO]: [WGEF-Reborn] download it at: https://www.spigotmc.org/resources/96894/
[22:45:10] [Server thread/INFO]: [NoCheatPlus] Post-enable running...
[22:45:10] [Server thread/INFO]: [NoCheatPlus] Post-enable finished.
[22:45:10] [Server thread/INFO]: [WildStacker] Loading providers started...
[22:45:10] [Server thread/INFO]: [WildStacker]  - Couldn't find any spawners providers, using default one.
[22:45:10] [Server thread/INFO]: [WildStacker] Using Vault as an economy provider.
[22:45:10] [Server thread/WARN]: [WildStacker] Loaded class net.splodgebox.elitebosses.events.BossSpawnEvent from EliteBosses v1.4.7 which is not a depend or softdepend of this plugin.
[22:45:10] [Server thread/INFO]: [ShopGUIPlus] Registered spawners support for WildStacker.
[22:45:10] [Server thread/INFO]: [WildStacker] Found ShopGUIPlus - Hooked as SpawnerProvider!
[22:45:10] [Server thread/INFO]: [WildStacker] Loading providers done (Took 54ms)
[22:45:10] [Craft Scheduler Thread - 28 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[22:45:10] [Craft Scheduler Thread - 28 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] A possible update was found for plugin 'BlueSlimeCore'.
[22:45:10] [Craft Scheduler Thread - 28 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Current Version: 2.6.1.222-Beta
[22:45:10] [Craft Scheduler Thread - 28 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] New Version: 2.6.0.18
[22:45:10] [Craft Scheduler Thread - 28 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Download Link: https://www.spigotmc.org/resources/83189/
[22:45:10] [Craft Scheduler Thread - 28 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[22:45:10] [Craft Scheduler Thread - 28 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'CombatLogX'.
[22:45:10] [Craft Scheduler Thread - 25 - Vault/INFO]: [Vault] No new version available
[22:45:11] [Craft Scheduler Thread - 8 - ServerUtils/INFO]: [ServerUtils] We are up-to-date!
[22:45:11] [Server thread/INFO]: Loaded 7 recipes
[22:45:11] [Server thread/INFO]: [WildChests] - Using ShopGUIPlus as PricesProvider
[22:45:11] [Craft Scheduler Thread - 23 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.1.0.3] No update available.
[22:45:12] [Craft Scheduler Thread - 19 - InteractionVisualizer/INFO]: [InteractionVisualizer] Sucessfully downloaded the latest Language files!
[22:45:12] [Craft Scheduler Thread - 17 - Oraxen/INFO]: NXS | Resourcepack uploaded on url http://atlas.oraxen.com/pack.zip?id=11e1ea002611fded074c75fb7572a68b28c65cb6 in 7202 ms
[22:45:12] [Server thread/INFO]: [Citizens] Loaded 16 NPCs.
[22:45:12] [Server thread/WARN]: [WildStacker] Loaded class org.h2.Driver from PiggyAPI v1.0 which is not a depend or softdepend of this plugin.
[22:45:12] [Server thread/INFO]: [WildStacker] Starting to load entities...
[22:45:12] [Server thread/INFO]: [WildStacker] Loading entities done! Took 1 ms.
[22:45:12] [Server thread/INFO]: [WildStacker] Starting to load items...
[22:45:12] [Server thread/INFO]: [WildStacker] Loading items done! Took 0 ms.
[22:45:12] [Server thread/INFO]: [WildStacker] Starting to load spawners...
[22:45:12] [Server thread/INFO]: [WildStacker] Loading spawners done! Took 0 ms.
[22:45:12] [Server thread/INFO]: [WildStacker] Starting to load barrels...
[22:45:12] [Server thread/INFO]: [WildStacker] Loading barrels done! Took 0 ms.
[22:45:12] [Server thread/INFO]: [MythicMobs] ✓Using HolographicDisplays plugin for holograms
[22:45:12] [Server thread/INFO]: [CombatLogX] Successfully enabled 0 late-load expansions.
[22:45:12] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.80.0 ]================================
[22:45:12] [Server thread/INFO]: [ShopGUIPlus]  
[22:45:12] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[22:45:12] [Server thread/INFO]: [ShopGUIPlus] Exp economy registered.
[22:45:12] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[22:45:12] [Server thread/INFO]: [ShopGUIPlus] Exp economy enabled.
[22:45:12] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[22:45:12] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[22:45:12] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for Oraxen.
[22:45:12] [Server thread/INFO]: [ShopGUIPlus] Using WildStacker for spawners support.
[22:45:12] [Server thread/INFO]: [ShopGUIPlus] Loaded 12 main menu items.
[22:45:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'decoration' with 28 items.
[22:45:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'ores' with 9 items.
[22:45:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks' with 85 items.
[22:45:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'color' with 40 items.
[22:45:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'mobdrops' with 36 items.
[22:45:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'misc' with 19 items.
[22:45:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'heads' with 174 items.
[22:45:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'banners' with 77 items.
[22:45:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'spawners' with 28 items.
[22:45:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'farmfood' with 39 items.
[22:45:13] [Server thread/INFO]: [ShopGUIPlus] Loaded 10 shops with total of 535 items.
[22:45:13] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[22:45:13] [Server thread/INFO]: [ShopGUIPlus]  
[22:45:13] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[22:45:13] [Server thread/INFO]: [WildTools] Loading providers started...
[22:45:13] [Server thread/INFO]: [WildTools]  - Using v1_18_R2 adapter.
[22:45:13] [Server thread/INFO]: [WildTools]  - Using ShopGUIPlus as PricesProvider.
[22:45:13] [Server thread/INFO]: [WildTools]  - Couldn't find any prices providers, using default one.
[22:45:13] [Server thread/INFO]: [WildTools]  - Couldn't find any factions providers for tnt banks, using default one.
[22:45:13] [Server thread/INFO]: [WildTools] Using Vault as an economy provider.
[22:45:13] [Server thread/INFO]: [WildTools] Loading providers done (Took 25ms)
[22:45:13] [Server thread/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[22:45:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: localtime [1.2]
[22:45:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.2]
[22:45:13] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[22:45:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.7.0]
[22:45:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[22:45:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mcmmo [1.0]
[22:45:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mcmmo [1.0]
[22:45:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mmoplus [1.0.0]
[22:45:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: essentials [1.5.1]
[22:45:13] [Server thread/INFO]: 7 placeholder hook(s) registered! 3 placeholder hook(s) have an update available.
[22:45:13] [Server thread/INFO]: [BetterTridents] You are using the latest version of BetterTridents.
[22:45:13] [Server thread/INFO]: Done (77.569s)! For help, type "help"
[22:45:13] [Server thread/INFO]: Timings Reset
[22:45:13] [Server thread/INFO]: [WildChests] Trying to connect to SQLite database...
[22:45:13] [Server thread/WARN]: [WildChests] Loaded class org.h2.Driver from PiggyAPI v1.0 which is not a depend or softdepend of this plugin.
[22:45:13] [Server thread/INFO]: [WildChests] Successfully established connection with SQLite database!
[22:45:13] [Server thread/ERROR]: [PlayerParticles] Invalid effect name: 'cloud'!
[22:45:14] [Server thread/INFO]: EliteBosses: Loaded brood-mother.yml successfully!
[22:45:14] [Server thread/INFO]: EliteBosses: Loaded king-slime.yml successfully!
[22:45:14] [Server thread/INFO]: EliteBosses: Loaded plague-bloater.yml successfully!
[22:45:14] [Server thread/INFO]: EliteBosses: Loaded treasure-goblin.yml successfully!
[22:45:14] [Server thread/INFO]: EliteBosses: Loaded undead-assassin.yml successfully!
[22:45:14] [Server thread/INFO]: EliteBosses: Loaded yijki.yml successfully!
[22:45:14] [Server thread/INFO]: ==============================
[22:45:14] [Server thread/INFO]: ChunkHoppers » has been loaded!
[22:45:14] [Server thread/INFO]: ==============================
[22:45:14] [Server thread/WARN]: [EliteBosses] Loaded class com.gmail.filoghost.holographicdisplays.api.placeholder.PlaceholderReplacer from HolographicDisplays v3.0.0-SNAPSHOT-b205 which is not a depend or softdepend of this plugin.
[22:45:14] [Server thread/INFO]: Failed to load HolographicDisplays Support
[22:45:14] [Server thread/INFO]: [OreRegenerator] Loaded region.
[22:45:14] [Server thread/INFO]: [KOTH] Successfully hooked into TAB.
[22:45:14] [Server thread/ERROR]: [KOTH] Plugin KOTH v6.0.3 has failed to register events for class com.benzimmer123.koth.d.b.b because com/SirBlobman/combatlogx/api/event/PlayerUntagEvent does not exist.
[22:45:14] [Server thread/INFO]: [KOTH] Successfully started BossBar title updating task.
[22:45:14] [Server thread/INFO]: [KOTH] Successfully hooked into BossBar.
[22:45:14] [Server thread/INFO]: [KOTH] Successfully hooked into CombatLogX.
[22:45:14] [Server thread/INFO]: [KOTH] Successfully hooked into SuperiorSkyblock.
[22:45:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ultimateautorestart [Build 52c]
[22:45:14] [Server thread/INFO]: [UltimateAutoRestart] Hooked into PlaceholderAPI!
[22:45:14] [Server thread/INFO]: [UltimateAutoRestart] Successfully performed 1 hooks!
[22:45:14] [Server thread/INFO]: [Hitmarkers] Attempting hooks...
[22:45:14] [Server thread/INFO]: [Hitmarkers] Hooked into WorldGuard 7!
[22:45:14] [Server thread/INFO]: [Hitmarkers] Hooked into PlaceholderAPI!
[22:45:14] [Server thread/INFO]: [Hitmarkers] Successfully performed 2 hooks!
[22:45:14] [Server thread/INFO]: [GappleOptions] Attempting hooks...
[22:45:14] [Server thread/INFO]: [GappleOptions] Hooked into WorldGuard 7!
[22:45:14] [Server thread/INFO]: [GappleOptions] Hooked into PlaceholderAPI!
[22:45:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: go [Build 39b]
[22:45:14] [Server thread/INFO]: [GappleOptions] Successfully performed 2 hooks!
[22:45:25] [Server thread/INFO]: NXS » Unknown Command.
[22:45:26] [Craft Scheduler Thread - 30 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[22:45:29] [Craft Scheduler Thread - 5 - InteractionVisualizer/INFO]: [InteractionVisualizer] Loaded all 1 languages!
[22:49:10] [User Authenticator #1/INFO]: UUID of player StarkeN is 56260f1b-bdbd-4c57-ae74-12e1ca8952c6
[22:49:11] [Server thread/INFO]: StarkeN[/139.5.216.209:52922] logged in with entity id 233 at ([world]12.5, 59.0, 0.5)
[22:49:22] [Server thread/INFO]: StarkeN issued server command: /warp pvp
[22:49:22] [Server thread/WARN]: [MythicMobs] Loaded class fr.neatmonster.nocheatplus.hooks.NCPExemptionManager from NoCheatPlus v3.17-SNAPSHOT-8.3.1-b145 which is not a depend or softdepend of this plugin.