Date: 2025/03/10 01:21:58 UTC-07:00
Type: Server Log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
[ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.6+7-LTS; Eclipse Adoptium Temurin-21.0.6+7) on Windows 10 10.0 (amd64)
[ServerMain/INFO]: [bootstrap] Loading Paper 1.21.1-132-ver/1.21.1@b48403b (2024-11-21T10:14:27Z) for Minecraft 1.21.1
[ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins\UltraCosmetics-3.10.1-RELEASE.jar'...
[Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins\UltraCosmetics-3.10.1-RELEASE.jar' in 1369ms.
[ServerMain/INFO]: [PluginInitializerManager] Initialized 66 plugins
[ServerMain/INFO]: [PluginInitializerManager] Paper plugins (1):
- Minepacks (2.4.31.6-T20250103114036)
[ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (65):
- AdvancedBan (2.3.0), AuraSkills (2.2.2), Badword (1.0), BestTools (2.2.3), BetterRTP (3.6.11), BetterTeams (4.9.4), BlockParticles (1.12), BlueSlimeCore (2.9.4.377), CMILib (1.5.0.9), ChatEmojis (2.4.1), ChatGames (1.2.1), Citizens (2.0.37-SNAPSHOT (build 3751)), Codex (1.16.2), CoinsEngine (2.3.4), CombatLogX (11.4.0.1.1193), CrazyEnvoys (1.6), CrazyVouchers (3.8.3), DecentHolograms (2.8.11), DeluxeMenus (1.14.1-DEV-184), DeluxeTags (1.8.2-Release), DiceFurniture (3.9.2), EasyCommandBlocker (1.9.2), Essentials (2.21.0-dev+111-b54c8c1), EssentialsSpawn (2.21.0-dev+111-b54c8c1), ExcellentCrates (5.3.1), ExcellentEnchants (4.2.1), FastAsyncWorldEdit (2.11.2-SNAPSHOT-888;75fb1cb), ForcePack (1.3.5), FurnitureLib (3.2.1), Infiniteannouncements (2.3.1), InteractiveChat (4.2.12.0), Jobs (5.2.4.0), KoTH (2.0.8), LPC (3.6.0), LifestealCore (2024.12-c), Lottery (1.4.9), LuckPerms (5.4.89), Multiverse-Core (4.3.1-b861), ODailyQuests (2.3.0-SNAPSHOT-16), PermSk (2.0.0), PlaceholderAPI (2.11.6), PlayerAuctions (1.30.2), PlayerWarps (7.5.3), ProtocolLib (5.3.0-SNAPSHOT-726), Quests (3.15-ed67edd), SetModelData (1.0.0), SkBee (3.6.0), Skript (2.9.0), SpawnerMeta (24.5), SuperbVote (0.5.5), TAB (5.0.7), Themis (0.16.0), UltraCosmetics (3.10.1-RELEASE), Vault (1.7.3-b131), ViaBackwards (5.2.1), ViaVersion (5.2.1), Votifier (2.7.3), WorldGuard (7.0.11-beta1+a801a9d), WorldGuardExtraFlags (4.2.4-SNAPSHOT), ajLeaderboards (2.9.0), nightcore (2.6.3), skRayFall (1.9.28), skUtilities (0.9.2), skript-placeholders (1.6.0), sleep-most (5.5.0)
[ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[ServerMain/INFO]: Loaded 1290 recipes
[ServerMain/INFO]: Loaded 1399 advancements
[Server thread/INFO]: Starting minecraft server version 1.21.1
[Server thread/INFO]: Loading properties
[Server thread/INFO]: This server is running Paper version 1.21.1-132-ver/1.21.1@b48403b (2024-11-21T10:14:27Z) (Implementing API version 1.21.1-R0.1-SNAPSHOT)
[Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[Server thread/INFO]: Server Ping Player Sample Count: 12
[Server thread/INFO]: Using 4 threads for Netty based IO
[Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 3 worker threads, and population gen parallelism of 3 threads
[Server thread/INFO]: Default game type: SURVIVAL
[Server thread/INFO]: Generating keypair
[Server thread/INFO]: Starting Minecraft server on *:25565
[Server thread/INFO]: Using default channel type
[Server thread/INFO]: Paper: Using Java compression from Velocity.
[Server thread/INFO]: Paper: Using Java cipher from Velocity.
[Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loading 2 libraries... please wait
[Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\com\zaxxer\HikariCP\5.0.1\HikariCP-5.0.1.jar
[Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\org\slf4j\slf4j-api\2.0.0-alpha1\slf4j-api-2.0.0-alpha1.jar
[Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\it\unimi\dsi\fastutil-core\8.5.13\fastutil-core-8.5.13.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\ch\ethz\globis\phtree\phtree\2.8.1\phtree-2.8.1.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\org\joml\joml\1.10.8\joml-1.10.8.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\it\unimi\dsi\fastutil\8.5.15\fastutil-8.5.15.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-platform-bukkit\4.3.3\adventure-platform-bukkit-4.3.3.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-platform-api\4.3.3\adventure-platform-api-4.3.3.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.3\adventure-text-serializer-bungeecord-4.3.3.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-text-serializer-legacy\4.13.1\adventure-text-serializer-legacy-4.13.1.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\org\jetbrains\annotations\24.0.1\annotations-24.0.1.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-text-serializer-gson\4.13.1\adventure-text-serializer-gson-4.13.1.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.13.1\adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-platform-facet\4.3.3\adventure-platform-facet-4.3.3.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-platform-viaversion\4.3.3\adventure-platform-viaversion-4.3.3.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-text-minimessage\4.17.0\adventure-text-minimessage-4.17.0.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-api\4.17.0\adventure-api-4.17.0.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-key\4.17.0\adventure-key-4.17.0.jar
[Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loading 2 libraries... please wait
[Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/github/cryptomorin/XSeries/12.1.0/XSeries-12.1.0.pom
[Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/6.2.1/HikariCP-6.2.1.pom
[Server thread/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/github/cryptomorin/XSeries/12.1.0/XSeries-12.1.0.jar
[BasicRepositoryConnector-repo.maven.apache.org-0-0/INFO]: [SpigotLibraryLoader] Downloading https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/6.2.1/HikariCP-6.2.1.jar
[Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\com\github\cryptomorin\XSeries\12.1.0\XSeries-12.1.0.jar
[Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\com\zaxxer\HikariCP\6.2.1\HikariCP-6.2.1.jar
[Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\org\slf4j\slf4j-api\1.7.36\slf4j-api-1.7.36.jar
[Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[Server thread/WARN]: Legacy plugin skUtilities v0.9.2 does not specify an api-version.
[Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loading 2 libraries... please wait
[Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\com\zaxxer\HikariCP\5.0.1\HikariCP-5.0.1.jar
[Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\org\slf4j\slf4j-api\2.0.0-alpha1\slf4j-api-2.0.0-alpha1.jar
[Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\com\h2database\h2\2.1.214\h2-2.1.214.jar
[Server thread/INFO]: [Minepacks] PCGF-PluginLib not installed. Switching to standalone mode!
[Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.2.1
[Server thread/INFO]: [ViaVersion] ViaVersion 5.2.1 is now loaded. Registering protocol transformers and injecting...
[Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[Server thread/INFO]: [ViaBackwards] Loading translations...
[Server thread/INFO]: [ViaBackwards] Registering protocols...
[Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.89
[Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.11.2-SNAPSHOT-888;75fb1cb
[Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@3fc53a59]
[Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0-SNAPSHOT-726
[Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.1) has not yet been tested! Proceed with caution.
[Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.11-beta1+a801a9d
[Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.6.3
[Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.37-SNAPSHOT (build 3751)
[Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+111-b54c8c1
[Server thread/INFO]: [Blue Slime Core] Loading server plugin BlueSlimeCore v2.9.4.377
[Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[Server thread/INFO]: [CoinsEngine] Loading server plugin CoinsEngine v2.3.4
[Server thread/INFO]: [PlayerAuctions] Loading server plugin PlayerAuctions v1.30.2
[Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[Server thread/INFO]: [Skript] Loading server plugin Skript v2.9.0
[Server thread/INFO]: [CombatLogX] Loading server plugin CombatLogX v11.4.0.1.1193
[Server thread/INFO]: [CombatLogX] Configuration version is recent, no major changes necessary.
[Server thread/INFO]: [CombatLogX] Loading expansions...
[Server thread/INFO]: [CombatLogX] There were no expansions to load.
[Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.11
[Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.0.9
[Server thread/INFO]: [ExcellentEnchants] Loading server plugin ExcellentEnchants v4.2.1
[Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.2.1
[Server thread/INFO]: [FurnitureLib] Loading server plugin FurnitureLib v3.2.1
[Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.4-SNAPSHOT
[Server thread/INFO]: [UltraCosmetics] Loading server plugin UltraCosmetics v3.10.1-RELEASE
[Server thread/INFO]: [Themis] Loading server plugin Themis v0.16.0
[Server thread/INFO]: [TAB] Loading server plugin TAB v5.0.7
[Server thread/INFO]: [SuperbVote] Loading server plugin SuperbVote v0.5.5
[Server thread/INFO]: [SpawnerMeta] Loading server plugin SpawnerMeta v24.5
[Server thread/INFO]: [sleep-most] Loading server plugin sleep-most v5.5.0
[Server thread/INFO]: [skUtilities] Loading server plugin skUtilities v0.9.2
[Server thread/INFO]: [skript-placeholders] Loading server plugin skript-placeholders v1.6.0
[Server thread/INFO]: [skRayFall] Loading server plugin skRayFall v1.9.28
[Server thread/INFO]: [SkBee] Loading server plugin SkBee v3.6.0
[Server thread/INFO]: [SetModelData] Loading server plugin SetModelData v1.0.0
[Server thread/INFO]: [Quests] Loading server plugin Quests v3.15-ed67edd
[Server thread/INFO]: [PlayerWarps] Loading server plugin PlayerWarps v7.5.3
[Server thread/INFO]: [PermSk] Loading server plugin PermSk v2.0.0
[Server thread/INFO]: [O'DailyQuests] Loading server plugin ODailyQuests v2.3.0-SNAPSHOT-16
[Server thread/INFO]: [Minepacks] Loading server plugin Minepacks v2.4.31.6-T20250103114036
[Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[Server thread/INFO]: [Lottery] Loading server plugin Lottery v1.4.9
[Server thread/INFO]: [LifestealCore] Loading server plugin LifestealCore v2024.12-c
[Server thread/INFO]: [KoTH] Loading server plugin KoTH v2.0.8
[Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.4.0
[Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.12.0
[Server thread/INFO]: [Infiniteannouncements] Loading server plugin Infiniteannouncements v2.3.1
[Server thread/INFO]: [ForcePack] Loading server plugin ForcePack v1.3.5
[Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v5.3.1
[Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+111-b54c8c1
[Server thread/INFO]: [EasyCommandBlocker] Loading server plugin EasyCommandBlocker v1.9.2
[Server thread/INFO]: [DiceFurniture] Loading server plugin DiceFurniture v3.9.2
[Server thread/INFO]: [DeluxeTags] Loading server plugin DeluxeTags v1.8.2-Release
[Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.1-DEV-184
[Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[Server thread/INFO]: [CrazyVouchers] Loading server plugin CrazyVouchers v3.8.3
[Server thread/INFO]: [CrazyEnvoys] Loading server plugin CrazyEnvoys v1.6
[Server thread/INFO]: [Codex] Loading server plugin Codex v1.16.2
[Server thread/INFO]: [ChatGames] Loading server plugin ChatGames v1.2.1
[Server thread/INFO]: [ChatEmojis] Loading server plugin ChatEmojis v2.4.1
[Server thread/INFO]: [BlockParticles] Loading server plugin BlockParticles v1.12
[Server thread/INFO]: [BetterTeams] Loading server plugin BetterTeams v4.9.4
[Server thread/INFO]: [BetterTeams] Checking if the file config.yml is up to date
[Server thread/INFO]: [BetterTeams] File is up to date
[Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.11
[Server thread/INFO]: [BestTools] Loading server plugin BestTools v2.2.3
[Server thread/INFO]: [Badword] Loading server plugin Badword v1.0
[Server thread/INFO]: Loading badwords
[Server thread/INFO]: [AuraSkills] Loading server plugin AuraSkills v2.2.2
[Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.9.0
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for okhttp
[Server thread/INFO]: [ajLeaderboards] Checksum matched for okhttp
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio
[Server thread/INFO]: [ajLeaderboards] Checksum matched for okio
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio-jvm
[Server thread/INFO]: [ajLeaderboards] Checksum matched for okio-jvm
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk8
[Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk8
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib
[Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-common
[Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-common
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for annotations
[Server thread/INFO]: [ajLeaderboards] Checksum matched for annotations
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk7
[Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk7
[Server thread/INFO]: [AdvancedBan] Loading server plugin AdvancedBan v2.3.0
[Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.89
[Server thread/INFO]: __
[Server thread/INFO]: | |__) LuckPerms v5.4.89
[Server thread/INFO]: |___ | Running on Bukkit - Paper
[Server thread/INFO]:
[Server thread/INFO]: [LuckPerms] Loading configuration...
[Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[Server thread/INFO]: [LuckPerms] Performing initial data load...
[Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2039ms)
[Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[Server thread/INFO]: [Vault] [Permission] GroupManager found: Waiting
[Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[Server thread/INFO]: [Vault] [Chat] GroupManager found: Waiting
[Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.11.2-SNAPSHOT-888;75fb1cb
[Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[Server thread/WARN]:
**********************************************
** This FastAsyncWorldEdit version does not fully support your version of Bukkit.
** You can fix this by:
** - Updating your server version (Check /version to see how many versions you are behind)
** - Updating FAWE
**
** When working with blocks or undoing, chests will be empty, signs
** will be blank, and so on. There will be no support for entity
** and block property-related functions.
**********************************************
[Server thread/ERROR]: Unknown block: minecraft:grass. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=0]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=1]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=2]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=3]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=4]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=5]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=6]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=7]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=8]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=9]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=10]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=11]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=12]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=13]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=14]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=15]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=north]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=south]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=west]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=east]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:grass_path. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown item: minecraft:grass. Neither the DataFixer nor defaulting worked to recognize this item.
[Server thread/ERROR]: Unknown item: minecraft:grass_path. Neither the DataFixer nor defaulting worked to recognize this item.
[Server thread/ERROR]: Unknown item: minecraft:sign. Neither the DataFixer nor defaulting worked to recognize this item.
[Server thread/ERROR]: Unknown item: minecraft:rose_red. Neither the DataFixer nor defaulting worked to recognize this item.
[Server thread/ERROR]: Unknown item: minecraft:cactus_green. Neither the DataFixer nor defaulting worked to recognize this item.
[Server thread/ERROR]: Unknown item: minecraft:dandelion_yellow. Neither the DataFixer nor defaulting worked to recognize this item.
[Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0-SNAPSHOT-726
[Server thread/INFO]: [nightcore] Enabling nightcore v2.6.3
[Server thread/WARN]: [nightcore] Locale file for 'da' language not found. Using default 'en' locale.
[Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[Server thread/INFO]: [nightcore] Found economy provider: EssentialsX Economy
[Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[Server thread/INFO]: [nightcore] Server Version: 1.21 ✔
[Server thread/INFO]: [nightcore] Entity Id Counter: OK ✔
[Server thread/INFO]: [nightcore] Item NBT Compress: OK ✔
[Server thread/WARN]: [nightcore] ========== WARNING ==========
[Server thread/WARN]: [nightcore] Enabled Mojang's DataFixer for ItemStacks to update/fix NBT structure from <= 1.20.4 to 1.20.6+
[Server thread/WARN]: [nightcore] This may significally affect server's performance.
[Server thread/WARN]: [nightcore] Please, re-save all configuration(s) using in-game GUI editor(s) (if there is any).
[Server thread/WARN]: [nightcore] Then disable this 'feature' in the config.yml of nightcore.
[Server thread/INFO]: [nightcore] Plugin loaded in 188 ms!
[Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.9.4.377
[Server thread/INFO]: [Blue Slime Core] Successfully loaded 2 language(s).
[Server thread/INFO]: [Blue Slime Core] Detected server as regular SpigotMC/PaperMC (not Folia)
[Server thread/INFO]: [CoinsEngine] Enabling CoinsEngine v2.3.4
[Server thread/INFO]: [CoinsEngine] Powered by nightcore
[Server thread/INFO]: [CoinsEngine] Read database configuration...
[Server thread/WARN]: [CoinsEngine] Locale file for 'da' language not found. Using default 'en' locale.
[Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@6abcf778
[Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[Server thread/INFO]: [CoinsEngine] Currency registered: 'coins'!
[Server thread/INFO]: [CoinsEngine] Currency registered: 'levelxp'!
[Server thread/INFO]: [CoinsEngine] Detected plugin available for data migration: Vault
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: coinsengine [2.3.4]
[Server thread/INFO]: [CoinsEngine] Plugin loaded in 244 ms!
[Server thread/INFO]: [ExcellentEnchants] Enabling ExcellentEnchants v4.2.1
[Server thread/INFO]: [ExcellentEnchants] Powered by nightcore
[Server thread/WARN]: [ExcellentEnchants] Locale file for 'da' language not found. Using default 'en' locale.
[Server thread/INFO]: [ExcellentEnchants] Loaded 4 rarities.
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: auto_reel
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: double_catch
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: seasoned_angler
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: survivalist
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_drowned
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: river_master
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: blast_mining
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_breaking
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_misfortune
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: divine_touch
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: haste
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: lucky_miner
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: replanter
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: silk_chest
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: smelter
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: telekinesis
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: treasure_hunter
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: tunnel
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: veinminer
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bane_of_netherspawn
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: blindness
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: confusion
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cutter
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_death
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: decapitator
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: double_strike
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: exhaust
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: exp_hunter
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ice_aspect
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: infernus
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: nimble
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: paralyze
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cure
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rage
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rocket
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: scavenger
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: surprise
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: swiper
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: temper
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: thrifty
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: thunder
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: vampire
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: venom
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: village_defender
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: wither
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: aquaman
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bunny_hop
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cold_steel
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ice_shield
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: elemental_protection
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: fire_shield
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: flame_walker
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: hardened
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: night_vision
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: regrowth
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: saturation
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: self_destruction
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rebound
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: stopping_force
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: sonic
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bomber
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: confusing_arrows
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: dragonfire_arrows
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: electrified_arrows
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ender_bow
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: explosive_arrows
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: lingering
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: flare
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ghast
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: hover
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: sniper
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: poisoned_arrows
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: vampiric_arrows
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: withered_arrows
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: darkness_arrows
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: darkness_cloak
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_fragility
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_mediocrity
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: soulbound
[Server thread/INFO]: [ExcellentEnchants] Registered enchantment: restore
[Server thread/INFO]: [ExcellentEnchants] Enchantments Registered: 80
[ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 174 build(s) out of date.
You are running build 888, the latest version is build 1062.
Update at https://www.spigotmc.org/resources/13932/
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentenchants [4.2.1]
[Server thread/INFO]: [ExcellentEnchants] Plugin loaded in 649 ms!
[Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[Server thread/INFO]: Preparing level "playworld"
[Server thread/WARN]: Failed to load biomes via adapter (not present). Will load via bukkit
[Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[Server thread/INFO]: Time elapsed: 702 ms
[Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.2.1
[Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21-1.21.1 (767)
[Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.11-beta1+a801a9d
[Server thread/INFO]: [WorldGuard] (playworld) TNT ignition is PERMITTED.
[Server thread/INFO]: [WorldGuard] (playworld) Lighters are PERMITTED.
[Server thread/INFO]: [WorldGuard] (playworld) Lava fire is PERMITTED.
[Server thread/INFO]: [WorldGuard] (playworld) Fire spread is UNRESTRICTED.
[Server thread/INFO]: [WorldGuard] Loaded configuration for world 'playworld'
[Server thread/INFO]: [WorldGuard] Loading region data...
[Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[Server thread/INFO]: [Citizens] Enabling Citizens v2.0.37-SNAPSHOT (build 3751)
[Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[Server thread/ERROR]: [Citizens] Could not fetch NMS field cj: [[static final field has no write access: net.minecraft.world.entity.animal.armadillo.Armadillo.SCARE_DISTANCE_HORIZONTAL/double/putStatic, from class net.citizensnpcs.util.NMS (unnamed module @2a3afb39).
[Server thread/ERROR]: Error occurred while enabling Citizens v2.0.37-SNAPSHOT (build 3751) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R3/boss/CraftBossBar
at Citizens-2.0.37-b3751 (3).jar/net.citizensnpcs.nms.v1_21_R3.util.NMSImpl.<clinit>(NMSImpl.java:2735) ~[Citizens-2.0.37-b3751 (3).jar:?]
at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68) ~[reflection-rewriter-runtime-0.0.3.jar:?]
at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at Citizens-2.0.37-b3751 (3).jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:176) ~[Citizens-2.0.37-b3751 (3).jar:?]
at Citizens-2.0.37-b3751 (3).jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:181) ~[Citizens-2.0.37-b3751 (3).jar:?]
at Citizens-2.0.37-b3751 (3).jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:326) ~[Citizens-2.0.37-b3751 (3).jar:?]
at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R3.boss.CraftBossBar
at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
... 21 more
[Server thread/INFO]: [Citizens] Disabling Citizens v2.0.37-SNAPSHOT (build 3751)
[Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+111-b54c8c1
[Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[Server thread/INFO]: [Essentials] No kits found to migrate.
[Server thread/INFO]: [Essentials] Loaded 42679 items from items.json.
[Server thread/INFO]: [Essentials] Using locale en
[Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" 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--].
[20:03:46] [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.
[Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[Server thread/INFO]: Time elapsed: 109 ms
[Server thread/INFO]: [WorldGuard] (spawn) TNT ignition is PERMITTED.
[Server thread/INFO]: [WorldGuard] (spawn) Lighters are PERMITTED.
[Server thread/INFO]: [WorldGuard] (spawn) Lava fire is PERMITTED.
[Server thread/INFO]: [WorldGuard] (spawn) Fire spread is UNRESTRICTED.
[Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawn'
[Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: playworld_nether
[Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: playworld_the_end
[Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: mining
[Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: arena
[Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[Server thread/INFO]: [Multiverse-Core] 2 - World(s) loaded.
[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.
[Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[Server thread/INFO]: [PlayerAuctions] Enabling PlayerAuctions v1.30.2
[Server thread/INFO]: [PlayerAuctions] Vault found, now enabling PlayerAuctions...
[Server thread/INFO]: [PlayerAuctions] Found 21 config files to load!
[Server thread/INFO]: [PlayerAuctions] There has been an issue while trying to get the latest version for protocollibexpansion.jar: Server returned HTTP response code: 400 for URL: https://api.olziedev.com/resources/expansionVersion?resource_name=playerauctions&expansion_name=protocollibexpansion&plugin_version=1.30.2. Turn on debug mode in the config.yml for the stack trace.
[Server thread/INFO]: [PlayerAuctions] There has been an issue while trying to get the latest version for packeteventsexpansion.jar: Server returned HTTP response code: 400 for URL: https://api.olziedev.com/resources/expansionVersion?resource_name=playerauctions&expansion_name=packeteventsexpansion&plugin_version=1.30.2. Turn on debug mode in the config.yml for the stack trace.
[Server thread/INFO]: [PlayerAuctions] Permissions plugin found! (LuckPerms)
[Server thread/INFO]: [PlayerAuctions] Economy plugin found! (EssentialsX Economy)
[Server thread/INFO]: [PlayerAuctions] Chat plugin found! (LuckPerms)
[Server thread/INFO]: [PlayerAuctions] Found PlaceholderAPI integrating support...
[Server thread/INFO]: [PlayerAuctions] Found Product Converter integrating support...
[Server thread/INFO]: [PlayerAuctions] Found Item Currency integrating support...
[Server thread/INFO]: [PlayerAuctions] Found XP Currency integrating support...
[Server thread/INFO]: [PlayerAuctions] Found Vault Currency integrating support...
[Server thread/INFO]: [PlayerAuctions] SQLite database is enabling...
[Server thread/INFO]: [PlayerAuctions] Loading Metrics...
[Server thread/INFO]: [PlayerAuctions] Successfully loaded Metrics!
[Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[Server thread/INFO]: [Votifier] Loaded token for website: default
[Server thread/INFO]: [Votifier] Using NIO transport to accept votes.
[Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[Votifier NIO boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0]:8192.
[Server thread/INFO]: [Skript] Enabling Skript v2.9.0
[Server thread/INFO]: [Skript] The updater is disabled, so a check for the latest version of Skript was not performed.
[Server thread/INFO]: [Skript] Loaded 233074 aliases in 10085ms
[Server thread/INFO]: [Skript] ~ created by & © Peter Güttinger aka Njol ~
[Server thread/INFO]: [CombatLogX] Enabling CombatLogX v11.4.0.1.1193
[Server thread/INFO]: [CombatLogX] Successfully loaded 20 language(s).
[Server thread/INFO]: [CombatLogX] Detected server as regular SpigotMC/PaperMC (not Folia)
[Server thread/INFO]: CombatLogX was loaded successfully.
[Server thread/INFO]: [CombatLogX] Enabling expansions...
[Server thread/INFO]: [CombatLogX] There were no expansions to enable.
[Server thread/INFO]: CombatLogX was enabled successfully.
[Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.11
[Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[Server thread/INFO]: [CMILib] Enabling CMILib v1.5.0.9
[Server thread/INFO]: [CMILib] Server version detection needs aditional update
[Server thread/INFO]: Server version: v1_21_R1 - 1.21.1 - paper 1.21.1-132-b48403b (MC: 1.21.1)
[Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.0.9]
[Server thread/INFO]: PlaceholderAPI hooked.
[Server thread/INFO]: Updated (EN) language file. Took 35ms
[Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.2.1
[Server thread/INFO]: [FurnitureLib] Enabling FurnitureLib v3.2.1
[Server thread/INFO]: ==========================================
[Server thread/INFO]: FurnitureLib Version: 3.2.1
[Server thread/INFO]: Furniture Author: Ste3et_C0st
[Server thread/INFO]: Furniture Website: https://dicecraft.de/furniture/
[Server thread/INFO]: Furniture find ProtectionLib: false
[Server thread/INFO]: [FurnitureLib] FurnitureLib use FurnitureLib-Paper module
[Server thread/INFO]: [de.Ste3et_C0st.FurnitureLib.Database.com.zaxxer.hikari.HikariDataSource] FurnitureLib - Starting...
[Server thread/INFO]: [de.Ste3et_C0st.FurnitureLib.Database.com.zaxxer.hikari.HikariDataSource] FurnitureLib - Start completed.
[Server thread/INFO]: [FurnitureLib] FurnitureLib Started SQLite database. Took 25ms
[Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (playworld)
[Server thread/INFO]: [FurnitureLib] No Models are found in world: playworld
[Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (spawn)
[Server thread/INFO]: [FurnitureLib] No Models are found in world: spawn
[Server thread/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:tripwire'
[Server thread/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:tripwire'
[Server thread/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:sign'
[Server thread/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:tripwire'
[Server thread/INFO]: [FurnitureLib] FurnitureLib Load 66 model schematics into Ram. Took 2195ms
[Server thread/INFO]: Furniture load finish :)
[Server thread/INFO]: ==========================================
[Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.4-SNAPSHOT
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[Server thread/INFO]: [UltraCosmetics] Enabling UltraCosmetics v3.10.1-RELEASE
[Server thread/INFO]: [UltraCosmetics] Checking for update...
[Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[Server thread/INFO]: [UltraCosmetics] Thanks for using UltraCosmetics! Version: 3.10.1-RELEASE (commit 0eb4ff7c)
[Server thread/INFO]: [UltraCosmetics] Plugin by Datatags. Original Author: iSach
[Server thread/INFO]: [UltraCosmetics] Link: https://bit.ly/UltraCosmetics
[Server thread/INFO]: [UltraCosmetics] Initializing module v1_21 (expected version: 1.21.4)
[Server thread/INFO]: [UltraCosmetics] Loading NMS-less mode...
[Server thread/INFO]: [UltraCosmetics] Loaded NMS-less mode
[Server thread/INFO]: [UltraCosmetics]
[Server thread/WARN]: [UltraCosmetics] Morphs require Lib's Disguises, but it is not installed. Morphs will be disabled.
[Server thread/INFO]: [UltraCosmetics]
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultracosmetics [3.10.1-RELEASE]
[Server thread/INFO]: [UltraCosmetics] Hooked into PlaceholderAPI
[Server thread/INFO]: [WorldGuard] Registering session handler be.isach.ultracosmetics.worldguard.FlagManager
[Server thread/INFO]: [UltraCosmetics]
[Server thread/INFO]: [UltraCosmetics] WorldGuard custom flags enabled
[Server thread/INFO]: [UltraCosmetics]
[Server thread/INFO]: [UltraCosmetics] Hooked into Vault:EssentialsX Economy for economy.
[Server thread/INFO]: [UltraCosmetics]
[Server thread/INFO]: [UltraCosmetics]
[Server thread/INFO]: [UltraCosmetics] Hooked into PlayerAuctions
[Server thread/INFO]: [UltraCosmetics]
[Server thread/INFO]: [UltraCosmetics] UltraCosmetics successfully finished loading in 1868ms!
[Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[Server thread/INFO]: [Themis] Enabling Themis v0.16.0
[Server thread/WARN]: [Themis] Couldn't find Floodgate which is required for Bedrock support
[Server thread/INFO]: [TAB] Enabling TAB v5.0.7
[Server thread/INFO]: [TAB] Loaded NMS hook in 31ms
[Server thread/INFO]: [TAB] [WARN] [config.yml] Missing configuration section "placeholders.register-tab-expansion" of type Boolean, using default value false.
[Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "customtagname" defined for group "_DEFAULT_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[Server thread/INFO]: [TAB] [WARN] [users.yml] Unknown property "abovename" defined for user "_NEZNAMY_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[Server thread/INFO]: [TAB] [WARN] [users.yml] Unknown property "belowname" defined for user "_NEZNAMY_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[Server thread/INFO]: [TAB] [WARN] Found a total of 4 issues.
[Server thread/INFO]: [TAB] Enabled in 196ms
[Server thread/INFO]: [SuperbVote] Enabling SuperbVote v0.5.5
[Server thread/INFO]: [SuperbVote] Using clip's PlaceholderAPI to provide extra placeholders.
[Server thread/INFO]: [SpawnerMeta] Enabling SpawnerMeta v24.5
[Server thread/INFO]: [SpawnerMeta v24.5] enabled!
[Server thread/INFO]: [SpawnerMeta] Vault has been found, economy enabled!
[Server thread/INFO]: [sleep-most] Enabling sleep-most v5.5.0
[Server thread/INFO]: [sleep-most] Hooked to PlaceholderAPI
[Server thread/INFO]: [sleep-most] Hooked to Essentials
[Server thread/INFO]: [skUtilities] Enabling skUtilities v0.9.2*
[Server thread/INFO]: [skUtilities] v0.9.2: loaded modules (Conversions, Files, Yaml, Urls, Utilities) in 52ms
[Server thread/INFO]: [skript-placeholders] Enabling skript-placeholders v1.6.0
[Server thread/INFO]: [skRayFall] Enabling skRayFall v1.9.28
[Server thread/INFO]: [skRayFall] Yay! You are running skRayFall 1.9.28!
[Server thread/INFO]: [skRayFall] Nathan and Lewis <3 you.
[Server thread/INFO]: [skRayFall] Cooking Bacon...
[Server thread/INFO]: [skRayFall] Citizens not found! Sorry you cant make friends, but don't worry we will still be your friend <3
[Server thread/INFO]: [skRayFall] Got bacon for the EffectLib particle ninjas!
[Server thread/INFO]: [skRayFall] Getting more bacon for the Votifier runners!
[Server thread/INFO]: [skRayFall] Enabling general 1.8+ bacon!
[Server thread/INFO]: [skRayFall] Getting the general 1.9+ bacon!
[Server thread/INFO]: [skRayFall] Getting the extra special 1.17+ bacon!
[Server thread/INFO]: [skRayFall] Bacon is ready!
[Server thread/INFO]: [SkBee] Enabling SkBee v3.6.0
[Server thread/INFO]: [SkBee] Loading NBTApi...
[Server thread/INFO]: [SkBee] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[Server thread/INFO]: [SkBee] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[Server thread/INFO]: [SkBee] Successfully loaded NBTApi!
[Server thread/INFO]: [SkBee] NBT Elements successfully loaded
[Server thread/INFO]: [SkBee] Text Component Elements successfully loaded
[Server thread/INFO]: [SkBee] Advancement Elements successfully loaded
[Server thread/INFO]: [SkBee] BossBar Elements successfully loaded
[Server thread/INFO]: [SkBee] Bound Elements successfully loaded
[Server thread/INFO]: [SkBee] Damage Source elements successfully loaded
[Server thread/INFO]: [SkBee] Display Entity elements successfully loaded
[Server thread/INFO]: [SkBee] Fishing elements successfully loaded
[Server thread/INFO]: [SkBee] Game Event Elements successfully loaded
[Server thread/INFO]: [SkBee] Item Component Elements successfully loaded
[Server thread/INFO]: [SkBee] Particle Elements successfully loaded
[Server thread/INFO]: [SkBee] RayTrace elements successfully loaded
[Server thread/INFO]: [SkBee] Recipe Elements successfully loaded
[Server thread/INFO]: [SkBee] Scoreboard Elements successfully loaded
[Server thread/INFO]: [SkBee] Scoreboard Objective Elements successfully loaded
[Server thread/INFO]: [SkBee] Statistic Elements successfully loaded
[Server thread/INFO]: [SkBee] Structure Elements successfully loaded
[Server thread/INFO]: [SkBee] Minecraft Tag elements successfully loaded
[Server thread/INFO]: [SkBee] Team Elements successfully loaded
[Server thread/INFO]: [SkBee] Tick Manager elements successfully loaded
[Server thread/INFO]: [SkBee] Villager Elements successfully loaded
[Server thread/INFO]: [SkBee] Virtual Furnace Elements disabled via config
[Server thread/INFO]: [SkBee] World Border Elements successfully loaded
[Server thread/INFO]: [SkBee] World Creator Elements successfully loaded
[Server thread/INFO]: [SkBee] Chunk Generator Elements successfully loaded
[Server thread/INFO]: [SkBee] Loaded (423) elements:
[Server thread/INFO]: [SkBee] - 55 events
[Server thread/INFO]: [SkBee] - 69 effects
[Server thread/INFO]: [SkBee] - 257 expressions
[Server thread/INFO]: [SkBee] - 27 conditions
[Server thread/INFO]: [SkBee] - 15 sections
[Server thread/INFO]: [SkBee] Checking for update...
[Server thread/INFO]: [SkBee] Plugin is not up to date!
[Server thread/INFO]: [SkBee] - Current version: v3.6.0
[Server thread/INFO]: [SkBee] - Available update: v3.9.1
[Server thread/INFO]: [SkBee] - Download available at: https://github.com/ShaneBeee/SkBee/releases
[Server thread/INFO]: [SkBee] Successfully enabled v3.6.0 in 1.26 seconds
[Server thread/INFO]: [SetModelData] Enabling SetModelData v1.0.0
[Server thread/INFO]: [SetModelData] SetModelData is loaded!
[Server thread/INFO]: [Quests] Enabling Quests v3.15-ed67edd
[Server thread/INFO]: [Quests] Running server scheduler: FoliaServerScheduler
[Server thread/INFO]: [Quests] Initialising storage provider 'yaml'
[Server thread/INFO]: [Quests] Your server is running version 1.21
[Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v7.5.3
[Folia Async Scheduler Thread #1/INFO]: [Quests] A new version 3.15.2 was found on Spigot (your version: 3.15-ed67edd). Please update me! <3 - Link: https://get.leonardobishop.com/quests
[Server thread/INFO]: [PlayerWarps] This plugin is licensed to NitroSetups (222259) from BuiltByBit!
[Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[Server thread/INFO]: [PlayerWarps] Found 25 config files to load!
[Server thread/INFO]: [PlayerWarps] There has been an issue while trying to get the latest version for protocollibexpansion.jar: Server returned HTTP response code: 400 for URL: https://api.olziedev.com/resources/expansionVersion?resource_name=playerwarps&expansion_name=protocollibexpansion&plugin_version=7.5.3. Turn on debug mode in the config.yml for the stack trace.
[Server thread/INFO]: [PlayerWarps] There has been an issue while trying to get the latest version for packeteventsexpansion.jar: Server returned HTTP response code: 400 for URL: https://api.olziedev.com/resources/expansionVersion?resource_name=playerwarps&expansion_name=packeteventsexpansion&plugin_version=7.5.3. Turn on debug mode in the config.yml for the stack trace.
[Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[Server thread/INFO]: [PlayerWarps] Economy plugin found! (EssentialsX Economy)
[Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[Server thread/INFO]: [PlayerWarps] Found Item Currency integrating support...
[Server thread/INFO]: [PlayerWarps] Found Vault Currency integrating support...
[Server thread/INFO]: [PlayerWarps] Found XP Currency integrating support...
[Server thread/INFO]: [PlayerWarps] Found Essentials Expansion integrating support...
[Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[Server thread/INFO]: [PlayerWarps] Loading Metrics...
[Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[Server thread/INFO]: [PermSk] Enabling PermSk v2.0.0
[Server thread/INFO]: [PermSk] Loaded dependency: LuckPerms
[Server thread/INFO]: [PermSk] Plugin enabled!
[Server thread/INFO]: [PermSk] [bStats] Sucessfully loaded
[Server thread/INFO]: [PermSk] Checking for update...
[Server thread/INFO]: [PermSk] Plugin is up to date!
[Server thread/INFO]: [O'DailyQuests] Enabling ODailyQuests v2.3.0-SNAPSHOT-16
[Server thread/INFO]: [O'DailyQuests] Plugin is starting...
[Server thread/INFO]: [O'DailyQuests] Checking for update...
[Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-2 - Added connection conn0: url=jdbc:h2:./plugins/ODailyQuests/database user=ODQ
[Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[Server thread/INFO]: [O'DailyQuests] Plugin successfully connected to database DATABASE.
[Server thread/INFO]: [O'DailyQuests] Vault successfully hooked.
[Server thread/INFO]: [O'DailyQuests] CoinsEngine successfully hooked.
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: odailyquests [1.0.4]
[Server thread/INFO]: [O'DailyQuests] PlaceholderAPI successfully hooked.
[Server thread/INFO]: [O'DailyQuests] WorldGuard detected, hook enabled.
[Server thread/INFO]: [O'DailyQuests] 55 quests loaded from globalQuests file.
[Server thread/ERROR]: [O'DailyQuests] org.bukkit.craftbukkit.inventory.CraftMetaSkull.setProfile(com.mojang.authlib.GameProfile)
[Server thread/ERROR]: [O'DailyQuests] org.bukkit.craftbukkit.inventory.CraftMetaSkull.setProfile(com.mojang.authlib.GameProfile)
[Server thread/INFO]: [O'DailyQuests] Plugin is started!
[Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.31.6-T20250103114036
[Server thread/INFO]: [Minepacks] Starting Minepacks in standalone mode!
[Server thread/INFO]: [Minepacks] Config file successfully loaded.
[Server thread/WARN]: [Minepacks] Paper support is experimental! Use at your own risk!
[Server thread/WARN]: [Minepacks] No guarantee for data integrity! Backup constantly!
[Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: english Author: GeorgH93
[Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting...
[Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed.
[Server thread/INFO]: [Minepacks] Item name language file successfully loaded. Language: english Author: GeorgH93
[Server thread/INFO]: [Minepacks] Loading item translations ...
[Server thread/INFO]: [Minepacks] Finished loading item translations for 826 items.
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: minepacks [2.4.31.6-T20250103114036]
[Server thread/INFO]: [Minepacks] PlaceholderAPI hook was successfully registered!
[Server thread/INFO]: [Minepacks] Minepacks has been enabled! :)
[Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[Server thread/INFO]: [Lottery] Enabling Lottery v1.4.9
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lottery [1.0.0]
[Server thread/INFO]: [LifestealCore] Enabling LifestealCore v2024.12-c
[Server thread/INFO]: [LifestealCore] 2024.12-c, a premium resource by Norska - Thanks for purchasing!
[Server thread/INFO]: [KoTH] Enabling KoTH v2.0.8
[Server thread/INFO]: [KoTH] Enabling KoTH v2.0.8
[Server thread/INFO]: [KoTH] Could not load all the koths because one or more worlds were not loaded, These will be loaded when the worlds load.
[Server thread/INFO]: [KoTH] PlaceholderAPI Support: Yes
[Server thread/INFO]: [KoTH] Scoreboard Hook: Scoreboard Disabled
[Server thread/INFO]: [KoTH] The koth koth could not be loaded since the world arena is not loaded.
[Server thread/INFO]: [KoTH] Could not load all the koths because one or more worlds were not loaded, These will be loaded when the worlds load.
[Server thread/INFO]: [KoTH] You are using the latest version of KoTH!
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: koth [1.0]
[Server thread/INFO]: [Jobs] Enabling Jobs v5.2.4.0
[Server thread/INFO]: ------------- Jobs -------------
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jobsr [5.2.4.0]
[Server thread/INFO]: PlaceholderAPI hooked.
[Server thread/INFO]: Connected to database (SqLite)
[Server thread/INFO]: Loaded 8 titles
[Server thread/INFO]: Loaded 69 protected blocks timers
[Server thread/INFO]: Loaded 1481 custom item names
[Server thread/INFO]: Loaded 84 custom entity names
[Server thread/INFO]: Loaded 2 custom MythicMobs names
[Server thread/INFO]: Loaded 122 custom enchant names
[Server thread/INFO]: Loaded 46 custom enchant names
[Server thread/INFO]: Loaded 16 custom color names
[Server thread/INFO]: Update shops items icon section and use 'ItemStack' instead
[Server thread/INFO]: Loaded 4 shop items
[Server thread/INFO]: Update Hunter jobs gui item section to use `ItemStack` instead of `Item` sections format. More information inside _EXAMPLE job file
[Server thread/INFO]: Loaded 12 jobs
[Server thread/INFO]: Loaded 0 boosted items
[Jobs-DatabaseSaveTask/INFO]: Started database save task.
[Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[Server thread/INFO]: Preloaded 5 players data in 0.01
[Server thread/INFO]: Registering listeners...
[Server thread/INFO]: Listeners registered successfully
[Server thread/INFO]: Plugin has been enabled successfully.
[Server thread/INFO]: ------------------------------------
[Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.12.0
[Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ExcellentEnchants!
[Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactivechat [4.2.12.0]
[Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[Server thread/INFO]: [Infiniteannouncements] Enabling Infiniteannouncements v2.3.1
[Server thread/INFO]:
[Server thread/INFO]: ====================================
[Server thread/INFO]: Plugin name: Infiniteannouncements
[Server thread/INFO]: Version: 2.3.1
[Server thread/INFO]: Core version: 0.7.25
[Server thread/INFO]: ====================================
[Server thread/INFO]:
[Server thread/INFO]: [Infiniteannouncements] Loaded locale "en_US"
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: infiniteannouncements [1.0.0]
[Server thread/INFO]: [ForcePack] Enabling ForcePack v1.3.5
[Server thread/INFO]: [ForcePack] Generated en_gb.yml
[Server thread/INFO]: [ForcePack] Generated es_es.yml
[Server thread/INFO]: [ForcePack] Generated zh_cn.yml
[Server thread/INFO]: [ForcePack] Generated zh_tw.yml
[Server thread/WARN]: [ForcePack] [packetevents] We currently do not support the minecraft version 1.21.1, so things might break. PacketEvents will behave as if the minecraft version were 1.21.0!
[Server thread/INFO]: [ForcePack] Auto-generating resource pack hash.
[Server thread/INFO]: [ForcePack] Size of resource pack: 2 MB
[Server thread/INFO]: [ForcePack] Auto-generated resource pack hash: 2A9123973DD5159C9048678D126C43856246A71B
[Server thread/INFO]: [ForcePack] Performing version size check...
[Server thread/INFO]: 1.8-1.15 (50 MB): Supported.
[Server thread/INFO]: 1.16-1.17 (100 MB): Supported.
[Server thread/INFO]: 1.18+ (250 MB): Supported.
[Server thread/INFO]: Hash verification complete.
[Server thread/INFO]: [ForcePack] Generated resource pack (https://www.dropbox.com/scl/fi/5a6mh3ivge0aj4ri53agk/PremiumSetupTexturepack.zip?rlkey=ebv8ykdjfz34pbyv8yabfo1nb&st=lf0bdh9z&dl=1#2A9123973DD5159C9048678D126C43856246A71B) for version all with id 28e5c1e0-883e-3a0c-863d-cb7e01b0bf22
[Server thread/INFO]: [ForcePack] [ForcePack] Enabled!
[Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v5.3.1
[Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[Server thread/INFO]: [ExcellentCrates] Read database configuration...
[Server thread/INFO]: [ExcellentCrates] Using Internal hologram handler.
[Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Starting...
[Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-3 - Added connection org.sqlite.jdbc4.JDBC4Connection@4a57be44
[Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Start completed.
[Server thread/INFO]: [ExcellentCrates] Registered currency: xp
[Server thread/INFO]: [ExcellentCrates] Registered currency: levels
[Server thread/INFO]: [ExcellentCrates] Registered currency: money
[Server thread/INFO]: [ExcellentCrates] Registered currency: coinsengine_levelxp
[Server thread/INFO]: [ExcellentCrates] Registered currency: coinsengine_coins
[Server thread/INFO]: [ExcellentCrates] Loaded 8 crate openings.
[Server thread/INFO]: [ExcellentCrates] Loaded 5 crate keys.
[Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[Server thread/INFO]: [ExcellentCrates] Loaded 5 crates.
[Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [5.3.1]
[Server thread/INFO]: [ExcellentCrates] Plugin loaded in 421 ms!
[Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+111-b54c8c1
[Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[Server thread/INFO]: [EasyCommandBlocker] Enabling EasyCommandBlocker v1.9.2
[Server thread/INFO]: [EasyCommandBlocker] Has been enabled! Version: 1.9.2
[Server thread/INFO]: [EasyCommandBlocker] Thanks for using my plugin! ~Ajneb97
[Server thread/INFO]: There is a new version available. (1.12.1)
[Server thread/INFO]: You can download it at: https://www.spigotmc.org/resources/101752/
[Server thread/INFO]: [DiceFurniture] Enabling DiceFurniture v3.9.2
[Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
[Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
[Server thread/INFO]: [DeluxeTags] Could not load tag: Superman because it does not have a display set.
[Server thread/INFO]: [DeluxeTags] 100 tags loaded
[Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxetags [1.8.2-Release]
[Server thread/INFO]: [DeluxeTags] ----------------------------
[Server thread/INFO]: [DeluxeTags] DeluxeTags Updater
[Server thread/INFO]: [DeluxeTags]
[Server thread/INFO]: [DeluxeTags] You are running 1.8.2-Release
[Server thread/INFO]: [DeluxeTags] The latest version
[Server thread/INFO]: [DeluxeTags] of DeluxeTags!
[Server thread/INFO]: [DeluxeTags]
[Server thread/INFO]: [DeluxeTags] ----------------------------
[Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.1-DEV-184
[Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[Server thread/WARN]: [DeluxeMenus] Material for item: grass in menu: shop_decorations1 is not valid!
Skipping item: grass
[Server thread/INFO]: [DeluxeMenus] 264 GUI menus loaded!
[Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.1-DEV-184]
[Server thread/INFO]: [CrazyVouchers] Enabling CrazyVouchers v3.8.3
[Server thread/INFO]: [CrazyEnvoys] Enabling CrazyEnvoys v1.6
[Server thread/INFO]: [CrazyEnvoys] Loading the config.yml
[Server thread/INFO]: [CrazyEnvoys] Successfully loaded config.yml
[Server thread/INFO]: [CrazyEnvoys] Loading the messages.yml
[Server thread/INFO]: [CrazyEnvoys] Successfully loaded messages.yml
[Server thread/INFO]: [CrazyEnvoys] Loading the data.yml
[Server thread/INFO]: [CrazyEnvoys] Successfully loaded data.yml
[Server thread/INFO]: [CrazyEnvoys] Loading custom files.
[Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Tier1.yml.
[Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Tier2.yml.
[Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Tier3.yml.
[Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Tier4.yml.
[Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Tier5.yml.
[Server thread/INFO]: [CrazyEnvoys] Finished loading custom files.
[Server thread/INFO]: [CrazyEnvoys] Failed to load 241 locations and will reattempt in 10s.
[Server thread/INFO]: [CrazyEnvoys] Failed to fix Center. Will try again next event.
[Server thread/INFO]: [CrazyEnvoys] DecentHolograms support has been enabled.
[Server thread/INFO]: [CrazyEnvoys] Attempting to fix 241 locations that failed.
[Server thread/INFO]: [CrazyEnvoys] Failed to fix 241 locations and will not reattempt.
[Server thread/INFO]: [CrazyEnvoys] Metrics has been enabled.
[Server thread/WARN]: [CrazyEnvoys] We no longer support placeholders using {}
[Server thread/WARN]: [CrazyEnvoys] We only support %% placeholders i.e %crazyenvoys_cooldown%
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: crazyenvoys [1.6]
[Server thread/INFO]: [Codex] Enabling Codex v1.16.2
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: codex [1.16.2]
[Server thread/INFO]: [Codex] Has been enabled! Version: 1.16.2
[Server thread/INFO]: [Codex] Thanks for using my plugin! ~Ajneb97
[Server thread/INFO]: There is a new version available. (2.3.3)
[Server thread/INFO]: You can download it at: https://www.spigotmc.org/resources/90371/
[Server thread/INFO]: [ChatGames] Enabling ChatGames v1.2.1
[Server thread/INFO]: [ChatGames] ChatGames is now enabled!
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatgames [1.0.0]
[Server thread/INFO]: [ChatGames] PlaceholderAPI Hooked!
[Server thread/INFO]: [ChatGames] Points loaded successfully!
[Server thread/INFO]: [ChatEmojis] Enabling ChatEmojis v2.4.1
[Server thread/INFO]: [BlockParticles] Enabling BlockParticles v1.12
[Server thread/INFO]: [BlockParticles] Loading the config.yml
[Server thread/INFO]: [BlockParticles] Successfully loaded config.yml
[Server thread/INFO]: [BlockParticles] Loading the data.yml
[Server thread/INFO]: [BlockParticles] Successfully loaded data.yml
[Server thread/INFO]: [BetterTeams] Enabling BetterTeams v4.9.4
[Server thread/INFO]: [BetterTeams] Checking if the file messages.yml is up to date
[Server thread/INFO]: [BetterTeams] File is up to date
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterTeams [4.9.4]
[Server thread/INFO]: Display team name config value: prefix
[Server thread/INFO]: Loading below name. Type: PREFIX
[Server thread/INFO]: teamManagement declared: com.booksaw.betterTeams.events.MCTeamManagement@522bd3a0
[Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.11
[Server thread/INFO]: [BetterRTP] Cooldown = 600
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.11]
[Server thread/INFO]: [BestTools] Enabling BestTools v2.2.3
[Server thread/INFO]: [BestTools] Building the <Block,Tool> map took 1 ms
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: besttools [2.2.3]
[Server thread/INFO]: [Badword] Enabling Badword v1.0
[Server thread/INFO]: Starting up badwords
[Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.2.2
[Server thread/INFO]: [AuraSkills] Loaded 21 message files
[Server thread/INFO]: [AuraSkills] Successfully registered hook DecentHolograms
[Server thread/INFO]: [AuraSkills] Successfully registered hook LuckPerms
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auraskills [2.2.2]
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [2.2.2]
[Server thread/INFO]: [AuraSkills] Successfully registered hook PlaceholderAPI
[Server thread/INFO]: [AuraSkills] Successfully registered hook ProtocolLib
[Server thread/INFO]: [AuraSkills] Successfully registered hook Vault
[Server thread/INFO]: [AuraSkills] Successfully registered hook WorldGuard
[Server thread/INFO]: [AuraSkills] Loaded 148 config options in 29 ms
[Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AuraSkills' to create a bStats instance!
[Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
[Server thread/INFO]: [AuraSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.9.0
[Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[Server thread/INFO]: [ajLeaderboards] Loaded 20 boards
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.9.0]
[Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.9.0 by ajgeiss0702 enabled!
[Server thread/INFO]: [AdvancedBan] Enabling AdvancedBan v2.3.0
[Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[Server thread/INFO]: [hsqldb.db.HSQLDB8A9D5CACEB.ENGINE] checkpointClose start
[Server thread/INFO]: [hsqldb.db.HSQLDB8A9D5CACEB.ENGINE] checkpointClose synched
[Server thread/INFO]: [hsqldb.db.HSQLDB8A9D5CACEB.ENGINE] checkpointClose script done
[Server thread/INFO]: [hsqldb.db.HSQLDB8A9D5CACEB.ENGINE] checkpointClose end
[Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.pool.PoolBase] HikariPool-1 - Driver does not support get/set network timeout for connections. (feature not supported)
[Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[Server thread/INFO]:
[]=====[Enabling AdvancedBan]=====[]
| Information:
| Name: AdvancedBan
| Developer: Leoko
| Version: 2.3.0
| Storage: HSQLDB (local)
| Support:
| Github: https://github.com/DevLeoko/AdvancedBan/issues
| Discord: https://discord.gg/ycDG6rS
| Twitter: @LeokoGar
| Update:
| You have the newest version
[]================================[]
[Server thread/INFO]: [spark] Starting background profiler...
[Server thread/INFO]: [spark] The async-profiler engine is not supported for your os/arch (windows10/amd64), so the built-in Java engine will be used instead.
[Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[Server thread/INFO]: Done preparing level "playworld" (51.906s)
[Server thread/INFO]: Running delayed init tasks
[Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[Craft Scheduler Thread - 8 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[Craft Scheduler Thread - 22 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[Craft Scheduler Thread - 13 - PlayerAuctions/INFO]: [PlayerAuctions] Loading auction items...
[Craft Scheduler Thread - 16 - Vault/INFO]: [Vault] Checking for Updates ...
[Craft Scheduler Thread - 15 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms...
[Craft Scheduler Thread - 18 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core]
[Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] A possible update was found for plugin 'CombatLogX'.
[Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Current Version: 11.4.0.1.1193
[Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] New Version: 11.5.0.0.1242
[Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Download Link: https://www.spigotmc.org/resources/31689/
[Craft Scheduler Thread - 16 - Vault/INFO]: [Vault] No new version available
[Craft Scheduler Thread - 12 - Essentials/INFO]: [Essentials] Fetching version information...
[Craft Scheduler Thread - 12 - Essentials/INFO]: [Essentials] Update checking disabled in config.
[Craft Scheduler Thread - 7 - ODailyQuests/WARN]: [O'DailyQuests] A new update is available !
[Craft Scheduler Thread - 7 - ODailyQuests/WARN]: [O'DailyQuests] Current version : 2.3.0-SNAPSHOT-16, Available version : 2.3.0
[Craft Scheduler Thread - 7 - ODailyQuests/WARN]: [O'DailyQuests] Please download latest version :
[Craft Scheduler Thread - 7 - ODailyQuests/WARN]: [O'DailyQuests] https://www.spigotmc.org/resources/odailyquests.100990/
[Craft Scheduler Thread - 21 - sleep-most/INFO]: [sleep-most] UPDATE FOUND: A newer version of sleep-most is available to download!
[Craft Scheduler Thread - 4 - Themis/WARN]: [Themis] You're running an outdated version of Themis, you should update as soon as possible!
[Craft Scheduler Thread - 17 - CMILib/INFO]: New version of CMILib was detected. Please update it
[Craft Scheduler Thread - 15 - DecentHolograms/INFO]: [DecentHolograms] Loaded 40 holograms!
[Craft Scheduler Thread - 23 - PlayerWarps/INFO]: [PlayerWarps] [!] PlayerWarps → PlayerWarps v7.7.1 is out! You are still running v7.5.3!
[20:04:36] [Craft Scheduler Thread - 31 - BetterTeams/WARN]: There is a new version of better teams released update here: (https://www.spigotmc.org/resources/better-teams.17129/)
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pa [1.30.2]
[Server thread/INFO]: [Skript] Loading variables...
[Server thread/INFO]: [Skript] Loaded 0 variables in 0.0 seconds
[Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core]
[Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Found a possible update for plugin 'BlueSlimeCore'.
[Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Local Version: 2.9.4.377
[Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Remote Version: 2.9.6.454
[Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Download Link: https://hangar.papermc.io/SirBlobman/BlueSlimeCore
[Craft Scheduler Thread - 41 - UltraCosmetics/INFO]: [UltraCosmetics] You are running the latest version on Spigot.
[pool-75-thread-1/INFO]: [ajLeaderboards] You are up to date! (2.9.0)
[Server thread/INFO]: [Skript] All scripts loaded without errors.
[Server thread/INFO]: [Skript] Loaded 19 scripts with a total of 72 structures in 1.38 seconds
[Server thread/INFO]: [Skript] Finished loading.
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pw [7.5.3]
[Server thread/INFO]: WorldGuard detected.
[Server thread/INFO]: [Jobs] Successfully linked with Vault. (Essentials)
[Server thread/INFO]: [Jobs] Successfully linked with Vault. (LuckPerms)
[Server thread/INFO]: [AuraSkills] Loaded 11 skills with 312 total sources
[Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
[Server thread/INFO]: [AuraSkills] Loaded 22 pattern rewards and 0 level rewards
[Server thread/INFO]: [AuraSkills] Loaded 53 loot entries in 4 pools and 2 tables
[Server thread/INFO]: [AuraSkills] Loaded 6 menus
[Server thread/INFO]: Done (82.493s)! For help, type "help"
[Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2751ms or 55 ticks behind
[Server thread/INFO]: Timings Reset
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: quests [3.15-ed67edd]
[Server thread/INFO]: [Quests] 45 task types have been registered ().
[Server thread/INFO]: [Quests] 0 quest items have been registered.
[Server thread/INFO]: [Quests] 502 quests have been registered.
[Server thread/INFO]: [!] Lottery → Plugin successfully linked with vault!
[Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: checkitem [2.7.5]
[Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[Server thread/WARN]: [PlaceholderAPI] Cannot load expansion griefprevention due to a missing plugin: GriefPrevention
[Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: localtime [1.2]
[Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [1.4.1]
[Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: multiverse [1.0.1]
[Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: nested [1.3.1]
[Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.3]
[Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: random [1.0.0]
[Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: rng [1.4.0]
[Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.6.1]
[Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: superbvote [1.3.1]
[Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.7.1]
[Server thread/WARN]: [PlaceholderAPI] Cannot load expansion votingplugin due to a missing plugin: VotingPlugin
[Server thread/INFO]: 14 placeholder hook(s) registered! 5 placeholder hook(s) have an update available.
[Craft Scheduler Thread - 19 - SpawnerMeta/INFO]: [Spawner Meta v24.5] New version is available: v25.0! To download visit: https://www.spigotmc.org/resources/spawnermeta.74188/
[Server thread/INFO]: [LifestealCore] Attempting hooks...
[Server thread/INFO]: [LifestealCore] Hooked into PlaceholderAPI!
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lifesteal [2024.12-c]
[Server thread/INFO]: [LifestealCore] Hooked into WorldGuard!
[Craft Scheduler Thread - 28 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[Server thread/INFO]: [LifestealCore] Hooked into CombatLogX!
[Server thread/INFO]: [LifestealCore] Hooked into DecentHolograms!
[Server thread/INFO]: [LifestealCore] Successfully performed 4 hooks!
[Server thread/INFO]:
[Server thread/INFO]: [LifestealCore] New update available!
[Server thread/INFO]: Current version: 2024.12-c with latest being 2025.01!
[Server thread/INFO]:
[Server thread/INFO]: SpigotMC -> https://norska.dev/r/spigot/lsc/
[Server thread/INFO]: Polymart -> https://norska.dev/r/polymart/lsc/
[Server thread/INFO]: BuiltByBit -> https://norska.dev/r/bbb/lsc/
[Server thread/INFO]:
[Server thread/INFO]: Server Plugins (66):
[Server thread/INFO]: Paper Plugins:
[Server thread/INFO]: - Minepacks
[Server thread/INFO]: Bukkit Plugins:
[Server thread/INFO]: - AdvancedBan, ajLeaderboards, AuraSkills, Badword, BestTools, BetterRTP, BetterTeams, BlockParticles, BlueSlimeCore, ChatEmojis
[Server thread/INFO]: ChatGames, Citizens, CMILib, Codex, CoinsEngine, CombatLogX, CrazyEnvoys, CrazyVouchers, DecentHolograms, DeluxeMenus
[Server thread/INFO]: DeluxeTags, DiceFurniture, EasyCommandBlocker, Essentials, EssentialsSpawn, ExcellentCrates, ExcellentEnchants, FastAsyncWorldEdit, ForcePack, FurnitureLib
[Server thread/INFO]: Infiniteannouncements, InteractiveChat, Jobs, KoTH, LifestealCore, Lottery, LPC, LuckPerms, Multiverse-Core, nightcore
[Server thread/INFO]: ODailyQuests, PermSk, PlaceholderAPI, PlayerAuctions, PlayerWarps, ProtocolLib, Quests, SetModelData, SkBee, skRayFall
[Server thread/INFO]: Skript, skript-placeholders, *skUtilities, sleep-most, SpawnerMeta, SuperbVote, TAB, Themis, UltraCosmetics, Vault
[Server thread/INFO]: ViaBackwards, ViaVersion, Votifier, WorldGuard, WorldGuardExtraFlags
[User Authenticator #0/INFO]: UUID of player urdudmarky is 1edebef6-c875-338c-8ad6-365a922096d7
[luckperms-command-executor/INFO]: [LP] urdudmarky now inherits permissions from referral in context global.
[Server thread/INFO]: urdudmarky[/ ip ] logged in with entity id 3323 at ([playworld]-214.5, 68.0, -125.5)
[Server thread/INFO]: [+] urdudmarky
[Craft Scheduler Thread - 19 - ODailyQuests/INFO]: [O'DailyQuests] urdudmarky's quests have been loaded.
[Server thread/ERROR]: [com.fastasyncworldedit.bukkit.FaweBukkit] Persistent Brushes Failed
java.lang.NullPointerException: null
at com.google.gson.internal.$Gson$Preconditions.checkNotNull($Gson$Preconditions.java:47) ~[gson-2.10.1.jar:?]
at FastAsyncWorldEdit-Bukkit-2.11.2-SNAPSHOT-888.jar/com.fastasyncworldedit.bukkit.util.ItemUtil.<init>(ItemUtil.java:32) ~[FastAsyncWorldEdit-Bukkit-2.11.2-SNAPSHOT-888.jar:?]
at FastAsyncWorldEdit-Bukkit-2.11.2-SNAPSHOT-888.jar/com.fastasyncworldedit.bukkit.FaweBukkit.getItemUtil(FaweBukkit.java:146) ~[FastAsyncWorldEdit-Bukkit-2.11.2-SNAPSHOT-888.jar:?]
at FastAsyncWorldEdit-Bukkit-2.11.2-SNAPSHOT-888.jar/com.fastasyncworldedit.bukkit.util.BukkitItemStack.getNativeItem(BukkitItemStack.java:37) ~[FastAsyncWorldEdit-Bukkit-2.11.2-SNAPSHOT-888.jar:?]
at FastAsyncWorldEdit-Bukkit-2.11.2-SNAPSHOT-888.jar/com.sk89q.worldedit.LocalSession.getTool(LocalSession.java:1246) ~[FastAsyncWorldEdit-Bukkit-2.11.2-SNAPSHOT-888.jar:?]
at FastAsyncWorldEdit-Bukkit-2.11.2-SNAPSHOT-888.jar/com.sk89q.worldedit.LocalSession.getTool(LocalSession.java:1239) ~[FastAsyncWorldEdit-Bukkit-2.11.2-SNAPSHOT-888.jar:?]
at FastAsyncWorldEdit-Bukkit-2.11.2-SNAPSHOT-888.jar/com.fastasyncworldedit.bukkit.listener.BrushListener.onPlayerItemHoldEvent(BrushListener.java:33) ~[FastAsyncWorldEdit-Bukkit-2.11.2-SNAPSHOT-888.jar:?]
at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor24.execute(Unknown Source) ~[?:?]
at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-132-b48403b]
at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
at net.minecraft.server.network.ServerGamePacketListenerImpl.handleSetCarriedItem(ServerGamePacketListenerImpl.java:2132) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.network.protocol.game.ServerboundSetCarriedItemPacket.handle(ServerboundSetCarriedItemPacket.java:33) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.network.protocol.game.ServerboundSetCarriedItemPacket.handle(ServerboundSetCarriedItemPacket.java:15) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:56) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1535) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1512) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1505) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:114) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1627) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1302) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'CrazyVouchers' to create a bStats instance!
[Server thread/INFO]: urdudmarky issued server command: /lifestealcore remove urdudmarky 100
[Server thread/INFO]: urdudmarky issued server command: /lifestealcore remove urdudmarky 10
[Server thread/INFO]: urdudmarky issued server command: /rtp
[Server thread/INFO]: urdudmarky issued server command: /betterrtp:rtp world playworld
[luckperms-command-executor/INFO]: [LP] urdudmarky now inherits permissions from rtpworld for a duration of 1 minute in context global.
[Server thread/INFO]: urdudmarky issued server command: /lifestealcore add urdudmarky 1
[Server thread/INFO]: urdudmarky issued server command: /fly
[Server thread/INFO]: [CombatLogX] Using non-NMS Paper EntityHandler
[Server thread/INFO]: urdudmarky issued server command: /clear urdudmarky
[Server thread/INFO]: urdudmarky issued server command: /rtp
[Server thread/INFO]: urdudmarky issued server command: /betterrtp:rtp world mining
[luckperms-command-executor/INFO]: [LP] urdudmarky now inherits permissions from rtpmining for a duration of 1 minute in context global.
[Server thread/INFO]: urdudmarky issued server command: /tab reload
[Server thread/INFO]: [TAB] Disabled in 3ms
[Server thread/INFO]: [TAB] [WARN] [config.yml] Missing configuration section "placeholders.register-tab-expansion" of type Boolean, using default value false.
[Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "customtagname" defined for group "_DEFAULT_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[Server thread/INFO]: [TAB] [WARN] [users.yml] Unknown property "abovename" defined for user "_NEZNAMY_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[Server thread/INFO]: [TAB] [WARN] [users.yml] Unknown property "belowname" defined for user "_NEZNAMY_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[Server thread/INFO]: [TAB] [WARN] Found a total of 4 issues.
[Server thread/INFO]: [TAB] Enabled in 45ms
[Server thread/INFO]: urdudmarky issued server command: /rtp
[Server thread/INFO]: urdudmarky issued server command: /spawn
[pool-16-thread-1/INFO]: [LifestealCore] [Scheduled Save] Saved data to file... 2ms
[Server thread/INFO]: CONSOLE: Please note that this command is not supported and may cause issues when using some plugins.
[Server thread/INFO]: CONSOLE: If you encounter any issues please use the /stop command to restart your server.
[Server thread/INFO]: Server Ping Player Sample Count: 12
[Server thread/INFO]: Using 4 threads for Netty based IO
[Server thread/INFO]: [AdvancedBan] Disabling AdvancedBan v2.3.0
[Server thread/INFO]: [hsqldb.db.HSQLDB8A9D5CACEB.ENGINE] Database closed
[Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Shutdown initiated...
[Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Shutdown completed.
[Server thread/INFO]:
[]=====[Disabling AdvancedBan]=====[]
| Information:
| Name: AdvancedBan
| Developer: Leoko
| Version: 2.3.0
| Storage: HSQLDB (local)
| Support:
| Github: https://github.com/DevLeoko/AdvancedBan/issues
| Discord: https://discord.gg/ycDG6rS
| Twitter: @LeokoGar
[]================================[]
[Server thread/INFO]: [ajLeaderboards] Disabling ajLeaderboards v2.9.0
[pool-88-thread-1/INFO]: [ajLeaderboards] Shutting down cache method..
[pool-88-thread-1/INFO]: [ajLeaderboards] Cache method shut down
[Server thread/INFO]: [ajLeaderboards] Killing remaining workers
[Server thread/INFO]: [ajLeaderboards] Remaining workers killed
[Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.9.0 disabled.
[Server thread/INFO]: [AuraSkills] Disabling AuraSkills v2.2.2
[Server thread/INFO]: [Badword] Disabling Badword v1.0
[Server thread/INFO]: Shutting down badwords
[Server thread/INFO]: [BestTools] Disabling BestTools v2.2.3
[Server thread/INFO]: [BetterTeams] Disabling BetterTeams v4.9.4
[Server thread/INFO]: [BlockParticles] Disabling BlockParticles v1.12
[Server thread/INFO]: [ChatEmojis] Disabling ChatEmojis v2.4.1
[Server thread/INFO]: [ChatGames] Disabling ChatGames v1.2.1
[Server thread/INFO]: [ChatGames] ChatGames is now disabled!
[Server thread/INFO]: [Codex] Disabling Codex v1.16.2
[Server thread/INFO]: [Codex] Has been disabled! Version: 1.16.2
[Server thread/INFO]: [CrazyEnvoys] Disabling CrazyEnvoys v1.6
[Server thread/INFO]: [CrazyVouchers] Disabling CrazyVouchers v3.8.3
[Server thread/INFO]: [DeluxeMenus] Disabling DeluxeMenus v1.14.1-DEV-184
[Server thread/INFO]: [DeluxeTags] Disabling DeluxeTags v1.8.2-Release
[Server thread/INFO]: [DiceFurniture] Disabling DiceFurniture v3.9.2
[Server thread/INFO]: [EasyCommandBlocker] Disabling EasyCommandBlocker v1.9.2
[Server thread/INFO]: [EasyCommandBlocker] Has been disabled! Version: 1.9.2
[Server thread/INFO]: [EssentialsSpawn] Disabling EssentialsSpawn v2.21.0-dev+111-b54c8c1
[Server thread/INFO]: [ExcellentCrates] Disabling ExcellentCrates v5.3.1
[Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Shutdown initiated...
[Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Shutdown completed.
[Server thread/INFO]: [ForcePack] Disabling ForcePack v1.3.5
[Server thread/INFO]: [Infiniteannouncements] Disabling Infiniteannouncements v2.3.1
[Server thread/INFO]: [InteractiveChat] Disabling InteractiveChat v4.2.12.0
[Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion interactivechat
[Server thread/INFO]: [PlaceholderAPI] Reason: required plugin InteractiveChat was disabled.
[Server thread/INFO]: [InteractiveChat] InteractiveChat has been Disabled!
[Server thread/INFO]: [Jobs] Disabling Jobs v5.2.4.0
[Server thread/INFO]: ------------- Jobs -------------
[Server thread/INFO]: Cleared boss bar cache
[Jobs-DatabaseSaveTask/INFO]: Database save task shutdown!
[Jobs-BufferedPaymentThread/INFO]: Buffered payment thread shutdown.
[Server thread/INFO]: Saved player data
[Server thread/INFO]: Closed database connection
[Server thread/INFO]: ------------------------------------
[Server thread/INFO]: [KoTH] Disabling KoTH v2.0.8
[Server thread/INFO]: [LifestealCore] Disabling LifestealCore v2024.12-c
[Server thread/INFO]:
[Server thread/INFO]: [LifestealCore] Saved data to file... 1ms
[Server thread/INFO]:
[Server thread/INFO]: [Lottery] Disabling Lottery v1.4.9
[Server thread/INFO]: [LPC] Disabling LPC v3.6.0
[Server thread/INFO]: [Minepacks] Disabling Minepacks v2.4.31.6-T20250103114036
[Server thread/INFO]: [Minepacks] PlaceholderAPI hook was successfully unregistered!
[Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Shutdown initiated...
[Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Shutdown completed.
[Server thread/INFO]: [Minepacks] Minepacks has been disabled. :(
[Server thread/INFO]: [O'DailyQuests] Disabling ODailyQuests v2.3.0-SNAPSHOT-16
[Server thread/INFO]: [O'DailyQuests] urdudmarky's data saved.
[Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Shutdown initiated...
[Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Shutdown completed.
[20:10:07] [Server thread/INFO]: [O'DailyQuests] Plugin is shutting down...
[Server thread/INFO]: [PermSk] Disabling PermSk v2.0.0
[Server thread/INFO]: [PermSk] Plugin disabled!
[Server thread/INFO]: [PlayerWarps] Disabling PlayerWarps v7.5.3
[Server thread/INFO]: [Quests] Disabling Quests v3.15-ed67edd
[Server thread/INFO]: [SetModelData] Disabling SetModelData v1.0.0
[Server thread/INFO]: [SetModelData] SetModelData is unloaded!
[Server thread/INFO]: [SkBee] Disabling SkBee v3.6.0
[Server thread/INFO]: [skRayFall] Disabling skRayFall v1.9.28
[Server thread/INFO]: [skRayFall] Bacon has been eaten. Make some more soon!
[Server thread/INFO]: [skript-placeholders] Disabling skript-placeholders v1.6.0
[Server thread/INFO]: [skUtilities] Disabling skUtilities v0.9.2
[Server thread/INFO]: [sleep-most] Disabling sleep-most v5.5.0
[Server thread/INFO]: [SpawnerMeta] Disabling SpawnerMeta v24.5
[Server thread/INFO]: [SpawnerMeta v24.5] disabled!
[Server thread/INFO]: [SuperbVote] Disabling SuperbVote v0.5.5
[Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion superbvote
[Server thread/INFO]: [PlaceholderAPI] Reason: required plugin SuperbVote was disabled.
[Server thread/INFO]: [TAB] Disabling TAB v5.0.7
[Server thread/INFO]: [TAB] Disabled in 0ms
[Server thread/INFO]: [Themis] Disabling Themis v0.16.0
[Server thread/INFO]: [UltraCosmetics] Disabling UltraCosmetics v3.10.1-RELEASE
[Server thread/INFO]: [WorldGuardExtraFlags] Disabling WorldGuardExtraFlags v4.2.4-SNAPSHOT
[Server thread/INFO]: [FurnitureLib] Disabling FurnitureLib v3.2.1
[Server thread/INFO]: [FurnitureLib] ==========================================
[Server thread/INFO]: [FurnitureLib] Furniture shutdown started
[Server thread/INFO]: [de.Ste3et_C0st.FurnitureLib.Database.com.zaxxer.hikari.HikariDataSource] FurnitureLib - Starting...
[Server thread/INFO]: [de.Ste3et_C0st.FurnitureLib.Database.com.zaxxer.hikari.HikariDataSource] FurnitureLib - Start completed.
[Server thread/INFO]: [FurnitureLib] FurnitureLib Started SQLite database. Took 8ms
[Server thread/INFO]: [FurnitureLib] Furniture save started
[Server thread/INFO]: [FurnitureLib] ==========================================
[Server thread/INFO]: [ViaBackwards] Disabling ViaBackwards v5.2.1
[Server thread/INFO]: [ExcellentEnchants] Disabling ExcellentEnchants v4.2.1
[Server thread/INFO]: [CMILib] Disabling CMILib v1.5.0.9
[Server thread/INFO]: [DecentHolograms] Disabling DecentHolograms v2.8.11
[Server thread/INFO]: [CombatLogX] Disabling CombatLogX v11.4.0.1.1193
[Server thread/INFO]: [CombatLogX] Disabling expansions...
[Server thread/INFO]: [CombatLogX] There were no expansions to disable.
[Server thread/INFO]: [CombatLogX] Successfully disabled all expansions.
[Server thread/INFO]: CombatLogX was disabled successfully.
[Server thread/INFO]: [Skript] Disabling Skript v2.9.0
[Server thread/INFO]: [Votifier] Disabling Votifier v2.7.3
[Server thread/INFO]: [Votifier] Votifier disabled.
[Server thread/INFO]: [PlayerAuctions] Disabling PlayerAuctions v1.30.2
[Votifier NIO worker/ERROR]: [com.vexsoftware.votifier.io.netty.util.concurrent.DefaultPromise.rejectedExecution] Failed to submit a listener notification task. Event loop shut down?
java.lang.IllegalStateException: zip file closed
at java.base/java.util.zip.ZipFile.ensureOpen(ZipFile.java:846) ~[?:?]
at java.base/java.util.zip.ZipFile.getEntry(ZipFile.java:338) ~[?:?]
at java.base/java.util.jar.JarFile.getEntry(JarFile.java:516) ~[?:?]
at java.base/java.util.jar.JarFile.getJarEntry(JarFile.java:471) ~[?:?]
at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:209) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:593) ~[?:?]
at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:169) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
at nuvotifier.jar/com.vexsoftware.votifier.io.netty.util.concurrent.GlobalEventExecutor.startThread(GlobalEventExecutor.java:220) ~[nuvotifier.jar:?]
at nuvotifier.jar/com.vexsoftware.votifier.io.netty.util.concurrent.GlobalEventExecutor.execute(GlobalEventExecutor.java:208) ~[nuvotifier.jar:?]
at nuvotifier.jar/com.vexsoftware.votifier.io.netty.util.concurrent.DefaultPromise.safeExecute(DefaultPromise.java:841) ~[nuvotifier.jar:?]
at nuvotifier.jar/com.vexsoftware.votifier.io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:498) ~[nuvotifier.jar:?]
at nuvotifier.jar/com.vexsoftware.votifier.io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:615) ~[nuvotifier.jar:?]
at nuvotifier.jar/com.vexsoftware.votifier.io.netty.util.concurrent.DefaultPromise.setSuccess0(DefaultPromise.java:604) ~[nuvotifier.jar:?]
at nuvotifier.jar/com.vexsoftware.votifier.io.netty.util.concurrent.DefaultPromise.setSuccess(DefaultPromise.java:96) ~[nuvotifier.jar:?]
at nuvotifier.jar/com.vexsoftware.votifier.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:1051) ~[nuvotifier.jar:?]
at nuvotifier.jar/com.vexsoftware.votifier.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) ~[nuvotifier.jar:?]
at nuvotifier.jar/com.vexsoftware.votifier.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) ~[nuvotifier.jar:?]
at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[Server thread/INFO]: [CoinsEngine] Disabling CoinsEngine v2.3.4
[Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Shutdown initiated...
[Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Shutdown completed.
[Server thread/INFO]: [Multiverse-Core] Disabling Multiverse-Core v4.3.1-b861
[Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion multiverse
[Server thread/INFO]: [PlaceholderAPI] Reason: required plugin Multiverse-Core was disabled.
[Server thread/INFO]: [Blue Slime Core] Disabling BlueSlimeCore v2.9.4.377
[Server thread/INFO]: [Essentials] Disabling Essentials v2.21.0-dev+111-b54c8c1
[Server thread/INFO]: [Vault] [Economy] Essentials Economy unhooked.
[Server thread/ERROR]: [Essentials] There's a good chance you're reloading your server right now. If that's the case, why do you hate yourself? Expect no support from the EssentialsX team when using /reload.
[Server thread/INFO]: [nightcore] Disabling nightcore v2.6.3
[Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.11.6
[Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.11-beta1+a801a9d
[Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v5.3.0-SNAPSHOT-726
[Server thread/ERROR]: *****************************************************************
[Server thread/ERROR]: *** WARNING ***
[Server thread/ERROR]: *** RELOADING THE SERVER WHILE PROTOCOLLIB IS ENABLED MIGHT ***
[Server thread/ERROR]: *** LEAD TO UNEXPECTED ERRORS! ***
[Server thread/ERROR]: *** ***
[Server thread/ERROR]: *** Consider cleanly restarting your server if you encounter ***
[Server thread/ERROR]: *** any issues related to ProtocolLib before opening an issue ***
[Server thread/ERROR]: *** on GitHub! ***
[Server thread/ERROR]: *****************************************************************
[Server thread/INFO]: [FastAsyncWorldEdit] Disabling FastAsyncWorldEdit v2.11.2-SNAPSHOT-888;75fb1cb
[Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b131
[Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.89
[Server thread/INFO]: [LuckPerms] Starting shutdown process...
[Server thread/INFO]: [LuckPerms] Closing storage...
[Server thread/INFO]: [LuckPerms] Goodbye!
[Server thread/INFO]: [ViaVersion] Disabling ViaVersion v5.2.1
[Server thread/INFO]: [ViaVersion] ViaVersion is disabling. If this is a reload and you experience issues, please reboot instead.
[Server thread/INFO]: [ViaVersion] ViaVersion has been disabled; uninjected the platform and shut down the scheduler.
[Server thread/INFO]: Loaded 1290 recipes
[Server thread/INFO]: Loaded 1399 advancements
[Server thread/WARN]: Not all defined tags for registry ResourceKey[minecraft:root / minecraft:item] are present in data pack: minecraft:enchant_primary/aquaman, minecraft:enchant_primary/auto_reel, minecraft:enchant_primary/bane_of_netherspawn, minecraft:enchant_primary/blast_mining, minecraft:enchant_primary/blindness, minecraft:enchant_primary/bomber, minecraft:enchant_primary/bunny_hop, minecraft:enchant_primary/cold_steel, minecraft:enchant_primary/confusing_arrows, minecraft:enchant_primary/confusion, minecraft:enchant_primary/cure, minecraft:enchant_primary/curse_of_breaking, minecraft:enchant_primary/curse_of_death, minecraft:enchant_primary/curse_of_drowned, minecraft:enchant_primary/curse_of_fragility, minecraft:enchant_primary/curse_of_mediocrity, minecraft:enchant_primary/curse_of_misfortune, minecraft:enchant_primary/cutter, minecraft:enchant_primary/darkness_arrows, minecraft:enchant_primary/darkness_cloak, minecraft:enchant_primary/decapitator, minecraft:enchant_primary/divine_touch, minecraft:enchant_primary/double_catch, minecraft:enchant_primary/double_strike, minecraft:enchant_primary/dragonfire_arrows, minecraft:enchant_primary/electrified_arrows, minecraft:enchant_primary/elemental_protection, minecraft:enchant_primary/ender_bow, minecraft:enchant_primary/exhaust, minecraft:enchant_primary/exp_hunter, minecraft:enchant_primary/explosive_arrows, minecraft:enchant_primary/fire_shield, minecraft:enchant_primary/flame_walker, minecraft:enchant_primary/flare, minecraft:enchant_primary/ghast, minecraft:enchant_primary/hardened, minecraft:enchant_primary/haste, minecraft:enchant_primary/hover, minecraft:enchant_primary/ice_aspect, minecraft:enchant_primary/ice_shield, minecraft:enchant_primary/infernus, minecraft:enchant_primary/lingering, minecraft:enchant_primary/lucky_miner, minecraft:enchant_primary/night_vision, minecraft:enchant_primary/nimble, minecraft:enchant_primary/paralyze, minecraft:enchant_primary/poisoned_arrows, minecraft:enchant_primary/rage, minecraft:enchant_primary/rebound, minecraft:enchant_primary/regrowth, minecraft:enchant_primary/replanter, minecraft:enchant_primary/restore, minecraft:enchant_primary/river_master, minecraft:enchant_primary/rocket, minecraft:enchant_primary/saturation, minecraft:enchant_primary/scavenger, minecraft:enchant_primary/seasoned_angler, minecraft:enchant_primary/self_destruction, minecraft:enchant_primary/silk_chest, minecraft:enchant_primary/smelter, minecraft:enchant_primary/sniper, minecraft:enchant_primary/sonic, minecraft:enchant_primary/soulbound, minecraft:enchant_primary/stopping_force, minecraft:enchant_primary/surprise, minecraft:enchant_primary/survivalist, minecraft:enchant_primary/swiper, minecraft:enchant_primary/telekinesis, minecraft:enchant_primary/temper, minecraft:enchant_primary/thrifty, minecraft:enchant_primary/thunder, minecraft:enchant_primary/treasure_hunter, minecraft:enchant_primary/tunnel, minecraft:enchant_primary/vampire, minecraft:enchant_primary/vampiric_arrows, minecraft:enchant_primary/veinminer, minecraft:enchant_primary/venom, minecraft:enchant_primary/village_defender, minecraft:enchant_primary/wither, minecraft:enchant_primary/withered_arrows, minecraft:enchant_supported/aquaman, minecraft:enchant_supported/auto_reel, minecraft:enchant_supported/bane_of_netherspawn, minecraft:enchant_supported/blast_mining, minecraft:enchant_supported/blindness, minecraft:enchant_supported/bomber, minecraft:enchant_supported/bunny_hop, minecraft:enchant_supported/cold_steel, minecraft:enchant_supported/confusing_arrows, minecraft:enchant_supported/confusion, minecraft:enchant_supported/cure, minecraft:enchant_supported/curse_of_breaking, minecraft:enchant_supported/curse_of_death, minecraft:enchant_supported/curse_of_drowned, minecraft:enchant_supported/curse_of_fragility, minecraft:enchant_supported/curse_of_mediocrity, minecraft:enchant_supported/curse_of_misfortune, minecraft:enchant_supported/cutter, minecraft:enchant_supported/darkness_arrows, minecraft:enchant_supported/darkness_cloak, minecraft:enchant_supported/decapitator, minecraft:enchant_supported/divine_touch, minecraft:enchant_supported/double_catch, minecraft:enchant_supported/double_strike, minecraft:enchant_supported/dragonfire_arrows, minecraft:enchant_supported/electrified_arrows, minecraft:enchant_supported/elemental_protection, minecraft:enchant_supported/ender_bow, minecraft:enchant_supported/exhaust, minecraft:enchant_supported/exp_hunter, minecraft:enchant_supported/explosive_arrows, minecraft:enchant_supported/fire_shield, minecraft:enchant_supported/flame_walker, minecraft:enchant_supported/flare, minecraft:enchant_supported/ghast, minecraft:enchant_supported/hardened, minecraft:enchant_supported/haste, minecraft:enchant_supported/hover, minecraft:enchant_supported/ice_aspect, minecraft:enchant_supported/ice_shield, minecraft:enchant_supported/infernus, minecraft:enchant_supported/lingering, minecraft:enchant_supported/lucky_miner, minecraft:enchant_supported/night_vision, minecraft:enchant_supported/nimble, minecraft:enchant_supported/paralyze, minecraft:enchant_supported/poisoned_arrows, minecraft:enchant_supported/rage, minecraft:enchant_supported/rebound, minecraft:enchant_supported/regrowth, minecraft:enchant_supported/replanter, minecraft:enchant_supported/restore, minecraft:enchant_supported/river_master, minecraft:enchant_supported/rocket, minecraft:enchant_supported/saturation, minecraft:enchant_supported/scavenger, minecraft:enchant_supported/seasoned_angler, minecraft:enchant_supported/self_destruction, minecraft:enchant_supported/silk_chest, minecraft:enchant_supported/smelter, minecraft:enchant_supported/sniper, minecraft:enchant_supported/sonic, minecraft:enchant_supported/soulbound, minecraft:enchant_supported/stopping_force, minecraft:enchant_supported/surprise, minecraft:enchant_supported/survivalist, minecraft:enchant_supported/swiper, minecraft:enchant_supported/telekinesis, minecraft:enchant_supported/temper, minecraft:enchant_supported/thrifty, minecraft:enchant_supported/thunder, minecraft:enchant_supported/treasure_hunter, minecraft:enchant_supported/tunnel, minecraft:enchant_supported/vampire, minecraft:enchant_supported/vampiric_arrows, minecraft:enchant_supported/veinminer, minecraft:enchant_supported/venom, minecraft:enchant_supported/village_defender, minecraft:enchant_supported/wither, minecraft:enchant_supported/withered_arrows
[Server thread/INFO]: [PluginInitializerManager] Initializing plugins...
[Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins\Citizens-2.0.37-b3661.jar'...
[Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins\Citizens-2.0.37-b3661.jar' in 972ms.
[Server thread/INFO]: [PluginInitializerManager] Initialized 66 plugins
[Server thread/INFO]: [PluginInitializerManager] Paper plugins (1):
- Minepacks (2.4.31.6-T20250103114036)
[Server thread/INFO]: [PluginInitializerManager] Bukkit plugins (65):
- AdvancedBan (2.3.0), AuraSkills (2.2.2), Badword (1.0), BestTools (2.2.3), BetterRTP (3.6.11), BetterTeams (4.9.4), BlockParticles (1.12), BlueSlimeCore (2.9.4.377), CMILib (1.5.0.9), ChatEmojis (2.4.1), ChatGames (1.2.1), Citizens (2.0.37-SNAPSHOT (build 3661)), Codex (1.16.2), CoinsEngine (2.3.4), CombatLogX (11.4.0.1.1193), CrazyEnvoys (1.6), CrazyVouchers (3.8.3), DecentHolograms (2.8.11), DeluxeMenus (1.14.1-DEV-184), DeluxeTags (1.8.2-Release), DiceFurniture (3.9.2), EasyCommandBlocker (1.9.2), Essentials (2.21.0-dev+111-b54c8c1), EssentialsSpawn (2.21.0-dev+111-b54c8c1), ExcellentCrates (5.3.1), ExcellentEnchants (4.2.1), FastAsyncWorldEdit (2.11.2-SNAPSHOT-888;75fb1cb), ForcePack (1.3.5), FurnitureLib (3.2.1), Infiniteannouncements (2.3.1), InteractiveChat (4.2.12.0), Jobs (5.2.4.0), KoTH (2.0.8), LPC (3.6.0), LifestealCore (2024.12-c), Lottery (1.4.9), LuckPerms (5.4.89), Multiverse-Core (4.3.1-b861), ODailyQuests (2.3.0-SNAPSHOT-16), PermSk (2.0.0), PlaceholderAPI (2.11.6), PlayerAuctions (1.30.2), PlayerWarps (7.5.3), ProtocolLib (5.3.0-SNAPSHOT-726), Quests (3.15-ed67edd), SetModelData (1.0.0), SkBee (3.6.0), Skript (2.9.0), SpawnerMeta (24.5), SuperbVote (0.5.5), TAB (5.0.7), Themis (0.16.0), UltraCosmetics (3.10.1-RELEASE), Vault (1.7.3-b131), ViaBackwards (5.2.1), ViaVersion (5.2.1), Votifier (2.7.3), WorldGuard (7.0.11-beta1+a801a9d), WorldGuardExtraFlags (4.2.4-SNAPSHOT), ajLeaderboards (2.9.0), nightcore (2.6.3), skRayFall (1.9.28), skUtilities (0.9.2), skript-placeholders (1.6.0), sleep-most (5.5.0)
[Server thread/WARN]: [PluginInitializerManager] ======== WARNING ========
[Server thread/WARN]: [PluginInitializerManager] You are reloading while having Paper plugins installed on your server.
[Server thread/WARN]: [PluginInitializerManager] Paper plugins do NOT support being reloaded. This will cause some unexpected issues.
[Server thread/WARN]: [PluginInitializerManager] =========================
[Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loading 2 libraries... please wait
[Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\com\zaxxer\HikariCP\5.0.1\HikariCP-5.0.1.jar
[Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\org\slf4j\slf4j-api\2.0.0-alpha1\slf4j-api-2.0.0-alpha1.jar
[Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\it\unimi\dsi\fastutil-core\8.5.13\fastutil-core-8.5.13.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\ch\ethz\globis\phtree\phtree\2.8.1\phtree-2.8.1.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\org\joml\joml\1.10.8\joml-1.10.8.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\it\unimi\dsi\fastutil\8.5.15\fastutil-8.5.15.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-platform-bukkit\4.3.3\adventure-platform-bukkit-4.3.3.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-platform-api\4.3.3\adventure-platform-api-4.3.3.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.3\adventure-text-serializer-bungeecord-4.3.3.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-text-serializer-legacy\4.13.1\adventure-text-serializer-legacy-4.13.1.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\org\jetbrains\annotations\24.0.1\annotations-24.0.1.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-text-serializer-gson\4.13.1\adventure-text-serializer-gson-4.13.1.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.13.1\adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-platform-facet\4.3.3\adventure-platform-facet-4.3.3.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-platform-viaversion\4.3.3\adventure-platform-viaversion-4.3.3.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-text-minimessage\4.17.0\adventure-text-minimessage-4.17.0.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-api\4.17.0\adventure-api-4.17.0.jar
[Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\net\kyori\adventure-key\4.17.0\adventure-key-4.17.0.jar
[Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loading 2 libraries... please wait
[Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\com\github\cryptomorin\XSeries\12.1.0\XSeries-12.1.0.jar
[Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\com\zaxxer\HikariCP\6.2.1\HikariCP-6.2.1.jar
[Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\org\slf4j\slf4j-api\1.7.36\slf4j-api-1.7.36.jar
[Server thread/WARN]: Legacy plugin skUtilities v0.9.2 does not specify an api-version.
[Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loading 2 libraries... please wait
[Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\com\zaxxer\HikariCP\5.0.1\HikariCP-5.0.1.jar
[Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\org\slf4j\slf4j-api\2.0.0-alpha1\slf4j-api-2.0.0-alpha1.jar
[Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loaded library C:\Users\usama\Downloads\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\com\h2database\h2\2.1.214\h2-2.1.214.jar
[Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.2.1
[Server thread/INFO]: [ViaVersion] ViaVersion 5.2.1 is now loaded. Registering protocol transformers and injecting...
[Server thread/ERROR]: [ViaVersion] ViaVersion is already loaded, we're going to kick all the players... because otherwise we'll crash because of ProtocolLib.
[Server thread/INFO]: urdudmarky lost connection: Server reload, please rejoin!
[Server thread/INFO]: urdudmarky left the game
[Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[Server thread/INFO]: [ViaBackwards] Loading translations...
[Server thread/INFO]: [ViaBackwards] Registering protocols...
[Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.89
[Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.11.2-SNAPSHOT-888;75fb1cb
[Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@53c64d72]
[Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0-SNAPSHOT-726
[Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.1) has not yet been tested! Proceed with caution.
[Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.11-beta1+a801a9d
[Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.6.3
[Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.37-SNAPSHOT (build 3661)
[Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+111-b54c8c1
[Server thread/INFO]: [Blue Slime Core] Loading server plugin BlueSlimeCore v2.9.4.377
[Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[Server thread/INFO]: [CoinsEngine] Loading server plugin CoinsEngine v2.3.4
[Server thread/INFO]: [PlayerAuctions] Loading server plugin PlayerAuctions v1.30.2
[Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[Server thread/INFO]: [Skript] Loading server plugin Skript v2.9.0
[Server thread/INFO]: [CombatLogX] Loading server plugin CombatLogX v11.4.0.1.1193
[Server thread/INFO]: [CombatLogX] Configuration version is recent, no major changes necessary.
[Server thread/INFO]: [CombatLogX] Loading expansions...
[Server thread/INFO]: [CombatLogX] There were no expansions to load.
[Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.11
[Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.0.9
[Server thread/INFO]: [ExcellentEnchants] Loading server plugin ExcellentEnchants v4.2.1
[Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.2.1
[Server thread/INFO]: [FurnitureLib] Loading server plugin FurnitureLib v3.2.1
[Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.4-SNAPSHOT
[Server thread/INFO]: [UltraCosmetics] Loading server plugin UltraCosmetics v3.10.1-RELEASE
[Server thread/INFO]: [Themis] Loading server plugin Themis v0.16.0
[Server thread/INFO]: [TAB] Loading server plugin TAB v5.0.7
[Server thread/INFO]: [SuperbVote] Loading server plugin SuperbVote v0.5.5
[Server thread/INFO]: [SpawnerMeta] Loading server plugin SpawnerMeta v24.5
[Server thread/INFO]: [sleep-most] Loading server plugin sleep-most v5.5.0
[Server thread/INFO]: [skUtilities] Loading server plugin skUtilities v0.9.2
[Server thread/INFO]: [skript-placeholders] Loading server plugin skript-placeholders v1.6.0
[Server thread/INFO]: [skRayFall] Loading server plugin skRayFall v1.9.28
[Server thread/INFO]: [SkBee] Loading server plugin SkBee v3.6.0
[Server thread/INFO]: [SetModelData] Loading server plugin SetModelData v1.0.0
[Server thread/INFO]: [Quests] Loading server plugin Quests v3.15-ed67edd
[Server thread/INFO]: [PlayerWarps] Loading server plugin PlayerWarps v7.5.3
[Server thread/INFO]: [PermSk] Loading server plugin PermSk v2.0.0
[Server thread/INFO]: [O'DailyQuests] Loading server plugin ODailyQuests v2.3.0-SNAPSHOT-16
[Server thread/INFO]: [Minepacks] Loading server plugin Minepacks v2.4.31.6-T20250103114036
[Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[Server thread/INFO]: [Lottery] Loading server plugin Lottery v1.4.9
[Server thread/INFO]: [LifestealCore] Loading server plugin LifestealCore v2024.12-c
[Server thread/INFO]: [KoTH] Loading server plugin KoTH v2.0.8
[Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.4.0
[Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.12.0
[Server thread/INFO]: [Infiniteannouncements] Loading server plugin Infiniteannouncements v2.3.1
[Server thread/INFO]: [ForcePack] Loading server plugin ForcePack v1.3.5
[Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v5.3.1
[Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+111-b54c8c1
[Server thread/INFO]: [EasyCommandBlocker] Loading server plugin EasyCommandBlocker v1.9.2
[Server thread/INFO]: [DiceFurniture] Loading server plugin DiceFurniture v3.9.2
[Server thread/INFO]: [DeluxeTags] Loading server plugin DeluxeTags v1.8.2-Release
[Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.1-DEV-184
[Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[Server thread/INFO]: [CrazyVouchers] Loading server plugin CrazyVouchers v3.8.3
[Server thread/INFO]: [CrazyEnvoys] Loading server plugin CrazyEnvoys v1.6
[Server thread/INFO]: [Codex] Loading server plugin Codex v1.16.2
[Server thread/INFO]: [ChatGames] Loading server plugin ChatGames v1.2.1
[Server thread/INFO]: [ChatEmojis] Loading server plugin ChatEmojis v2.4.1
[Server thread/INFO]: [BlockParticles] Loading server plugin BlockParticles v1.12
[Server thread/INFO]: [BetterTeams] Loading server plugin BetterTeams v4.9.4
[Server thread/INFO]: [BetterTeams] Checking if the file config.yml is up to date
[Server thread/INFO]: [BetterTeams] File is up to date
[Server thread/INFO]: [BestTools] Loading server plugin BestTools v2.2.3
[Server thread/INFO]: [Badword] Loading server plugin Badword v1.0
[Server thread/INFO]: Loading badwords
[Server thread/INFO]: [AuraSkills] Loading server plugin AuraSkills v2.2.2
[Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.9.0
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for okhttp
[Server thread/INFO]: [ajLeaderboards] Checksum matched for okhttp
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio
[Server thread/INFO]: [ajLeaderboards] Checksum matched for okio
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio-jvm
[Server thread/INFO]: [ajLeaderboards] Checksum matched for okio-jvm
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk8
[Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk8
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib
[Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-common
[Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-common
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for annotations
[Server thread/INFO]: [ajLeaderboards] Checksum matched for annotations
[Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk7
[Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk7
[Server thread/INFO]: [AdvancedBan] Loading server plugin AdvancedBan v2.3.0
[Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.89
[Server thread/INFO]: __
[Server thread/INFO]: | |__) LuckPerms v5.4.89
[Server thread/INFO]: |___ | Running on Bukkit - Paper
[Server thread/INFO]:
[Server thread/INFO]: [LuckPerms] Loading configuration...
[Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[Server thread/INFO]: [LuckPerms] Performing initial data load...
[Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1723ms)
[Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[Server thread/INFO]: [Vault] [Permission] GroupManager found: Waiting
[Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[Server thread/INFO]: [Vault] [Chat] GroupManager found: Waiting
[Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.11.2-SNAPSHOT-888;75fb1cb
[Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[Server thread/WARN]: Server reload detected. This may cause various issues with FastAsyncWorldEdit and dependent plugins. Reloading the server is not advised.
[Server thread/WARN]: For more information why reloading is bad, see https://madelinemiller.dev/blog/problem-with-reload/
[Server thread/WARN]:
**********************************************
** This FastAsyncWorldEdit version does not fully support your version of Bukkit.
** You can fix this by:
** - Updating your server version (Check /version to see how many versions you are behind)
** - Updating FAWE
**
** When working with blocks or undoing, chests will be empty, signs
** will be blank, and so on. There will be no support for entity
** and block property-related functions.
**********************************************
[Server thread/ERROR]: Unknown block: minecraft:grass. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=0]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=1]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=2]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=3]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=4]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=5]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=6]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=7]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=8]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=9]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=10]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=11]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=12]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=13]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=14]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:sign[rotation=15]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=north]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=south]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=west]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=east]. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown block: minecraft:grass_path. Neither the DataFixer nor defaulting worked to recognize this block.
[Server thread/ERROR]: Unknown item: minecraft:grass. Neither the DataFixer nor defaulting worked to recognize this item.
[Server thread/ERROR]: Unknown item: minecraft:grass_path. Neither the DataFixer nor defaulting worked to recognize this item.
[Server thread/ERROR]: Unknown item: minecraft:sign. Neither the DataFixer nor defaulting worked to recognize this item.
[Server thread/ERROR]: Unknown item: minecraft:rose_red. Neither the DataFixer nor defaulting worked to recognize this item.
[Server thread/ERROR]: Unknown item: minecraft:cactus_green. Neither the DataFixer nor defaulting worked to recognize this item.
[Server thread/ERROR]: Unknown item: minecraft:dandelion_yellow. Neither the DataFixer nor defaulting worked to recognize this item.
[Server thread/WARN]: Failed to load biomes via adapter (not present). Will load via bukkit
[Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0-SNAPSHOT-726
[Server thread/INFO]: [nightcore] Enabling nightcore v2.6.3
[Server thread/WARN]: [nightcore] Locale file for 'da' language not found. Using default 'en' locale.
[Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[Server thread/INFO]: [nightcore] Found economy provider: EssentialsX Economy
[Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[Server thread/INFO]: [nightcore] Server Version: 1.21 ✔
[Server thread/INFO]: [nightcore] Entity Id Counter: OK ✔
[Server thread/INFO]: [nightcore] Item NBT Compress: OK ✔
[Server thread/WARN]: [nightcore] ========== WARNING ==========
[Server thread/WARN]: [nightcore] Enabled Mojang's DataFixer for ItemStacks to update/fix NBT structure from <= 1.20.4 to 1.20.6+
[Server thread/WARN]: [nightcore] This may significally affect server's performance.
[Server thread/WARN]: [nightcore] Please, re-save all configuration(s) using in-game GUI editor(s) (if there is any).
[Server thread/WARN]: [nightcore] Then disable this 'feature' in the config.yml of nightcore.
[Server thread/INFO]: [nightcore] Plugin loaded in 99 ms!
[Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.9.4.377
[Server thread/INFO]: [Blue Slime Core] Successfully loaded 2 language(s).
[Server thread/INFO]: [Blue Slime Core] Detected server as regular SpigotMC/PaperMC (not Folia)
[Server thread/INFO]: [CoinsEngine] Enabling CoinsEngine v2.3.4
[Server thread/INFO]: [CoinsEngine] Powered by nightcore
[Server thread/INFO]: [CoinsEngine] Read database configuration...
[Server thread/WARN]: [CoinsEngine] Locale file for 'da' language not found. Using default 'en' locale.
[Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-4 - Starting...
[Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-4 - Added connection org.sqlite.jdbc4.JDBC4Connection@422fa404
[Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-4 - Start completed.
[Server thread/INFO]: [CoinsEngine] Currency registered: 'coins'!
[Server thread/INFO]: [CoinsEngine] Currency registered: 'levelxp'!
[Server thread/INFO]: [CoinsEngine] Detected plugin available for data migration: Vault
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: coinsengine [2.3.4]
[Server thread/INFO]: [CoinsEngine] Plugin loaded in 120 ms!
[Server thread/INFO]: [ExcellentEnchants] Enabling ExcellentEnchants v4.2.1
[Server thread/INFO]: [ExcellentEnchants] Powered by nightcore
[Server thread/WARN]: [ExcellentEnchants] Locale file for 'da' language not found. Using default 'en' locale.
[Server thread/INFO]: [ExcellentEnchants] Loaded 4 rarities.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'auto_reel': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'double_catch': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'seasoned_angler': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'survivalist': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'curse_of_drowned': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'river_master': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'blast_mining': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'curse_of_breaking': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'curse_of_misfortune': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'divine_touch': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'haste': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'lucky_miner': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'replanter': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'silk_chest': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'smelter': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'telekinesis': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'treasure_hunter': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'tunnel': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'veinminer': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'bane_of_netherspawn': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'blindness': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'confusion': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'cutter': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'curse_of_death': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'decapitator': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'double_strike': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'exhaust': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'exp_hunter': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'ice_aspect': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'infernus': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'nimble': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'paralyze': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'cure': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'rage': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'rocket': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'scavenger': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'surprise': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'swiper': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'temper': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'thrifty': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'thunder': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'vampire': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'venom': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'village_defender': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'wither': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'aquaman': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'bunny_hop': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'cold_steel': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'ice_shield': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'elemental_protection': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'fire_shield': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'flame_walker': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'hardened': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'night_vision': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'regrowth': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'saturation': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'self_destruction': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'rebound': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'stopping_force': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'sonic': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'bomber': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'confusing_arrows': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'dragonfire_arrows': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'electrified_arrows': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'ender_bow': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'explosive_arrows': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'lingering': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'flare': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'ghast': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'hover': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'sniper': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'poisoned_arrows': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'vampiric_arrows': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'withered_arrows': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'darkness_arrows': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'darkness_cloak': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'curse_of_fragility': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'curse_of_mediocrity': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'soulbound': Such enchantment already registered.
[Server thread/ERROR]: [ExcellentEnchants] Could not register 'restore': Such enchantment already registered.
[Server thread/INFO]: [ExcellentEnchants] Enchantments Registered: 0
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentenchants [4.2.1]
[Server thread/INFO]: [ExcellentEnchants] Plugin loaded in 133 ms!
[Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.2.1
[Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21-1.21.1 (767)
[Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.11-beta1+a801a9d
[Server thread/INFO]: [WorldGuard] (playworld) TNT ignition is PERMITTED.
[Server thread/INFO]: [WorldGuard] (playworld) Lighters are PERMITTED.
[Server thread/INFO]: [WorldGuard] (playworld) Lava fire is PERMITTED.
[Server thread/INFO]: [WorldGuard] (playworld) Fire spread is UNRESTRICTED.
[Server thread/INFO]: [WorldGuard] Loaded configuration for world 'playworld'
[Server thread/INFO]: [WorldGuard] (spawn) TNT ignition is PERMITTED.
[Server thread/INFO]: [WorldGuard] (spawn) Lighters are PERMITTED.
[Server thread/INFO]: [WorldGuard] (spawn) Lava fire is PERMITTED.
[Server thread/INFO]: [WorldGuard] (spawn) Fire spread is UNRESTRICTED.
[Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawn'
[Server thread/INFO]: [WorldGuard] Loading region data...
[Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[Server thread/INFO]: [Citizens] Enabling Citizens v2.0.37-SNAPSHOT (build 3661)
[Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[Server thread/ERROR]: [Citizens] Could not fetch NMS field cj: [[static final field has no write access: net.minecraft.world.entity.animal.armadillo.Armadillo.SCARE_DISTANCE_HORIZONTAL/double/putStatic, from class net.citizensnpcs.util.NMS (unnamed module @70a3bb40).
[Server thread/ERROR]: Error occurred while enabling Citizens v2.0.37-SNAPSHOT (build 3661) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R3/boss/CraftBossBar
at Citizens-2.0.37-b3661.jar/net.citizensnpcs.nms.v1_21_R3.util.NMSImpl.<clinit>(NMSImpl.java:2725) ~[Citizens-2.0.37-b3661.jar:?]
at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68) ~[reflection-rewriter-runtime-0.0.3.jar:?]
at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at Citizens-2.0.37-b3661.jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:176) ~[Citizens-2.0.37-b3661.jar:?]
at Citizens-2.0.37-b3661.jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:181) ~[Citizens-2.0.37-b3661.jar:?]
at Citizens-2.0.37-b3661.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:322) ~[Citizens-2.0.37-b3661.jar:?]
at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at org.bukkit.craftbukkit.CraftServer.reload(CraftServer.java:1134) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at org.bukkit.Bukkit.reload(Bukkit.java:1038) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.command.defaults.ReloadCommand.execute(ReloadCommand.java:59) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1001) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at org.bukkit.craftbukkit.CraftServer.dispatchServerCommand(CraftServer.java:986) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.server.dedicated.DedicatedServer.handleConsoleInputs(DedicatedServer.java:526) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:474) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1596) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1302) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R3.boss.CraftBossBar
at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
... 27 more
[Server thread/INFO]: [Citizens] Disabling Citizens v2.0.37-SNAPSHOT (build 3661)
[Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+111-b54c8c1
[Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[Server thread/INFO]: [Essentials] No kits found to migrate.
[ForkJoinPool.commonPool-worker-5/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 174 build(s) out of date.
You are running build 888, the latest version is build 1062.
Update at https://www.spigotmc.org/resources/13932/
[Server thread/INFO]: [Essentials] Loaded 42679 items from items.json.
[Server thread/INFO]: [Essentials] Using locale en
[Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" 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--].
[20:10:21] [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.
[Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: playworld_nether
[Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: playworld_the_end
[Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: arena
[Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: mining
[Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[Server thread/INFO]: [Multiverse-Core] 2 - World(s) loaded.
[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.
[Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[Server thread/INFO]: [PlayerAuctions] Enabling PlayerAuctions v1.30.2
[Server thread/INFO]: [PlayerAuctions] Vault found, now enabling PlayerAuctions...
[Server thread/INFO]: [PlayerAuctions] Found 21 config files to load!
[Server thread/INFO]: [PlayerAuctions] There has been an issue while trying to get the latest version for protocollibexpansion.jar: Server returned HTTP response code: 400 for URL: https://api.olziedev.com/resources/expansionVersion?resource_name=playerauctions&expansion_name=protocollibexpansion&plugin_version=1.30.2. Turn on debug mode in the config.yml for the stack trace.
[Server thread/INFO]: [PlayerAuctions] There has been an issue while trying to get the latest version for packeteventsexpansion.jar: Server returned HTTP response code: 400 for URL: https://api.olziedev.com/resources/expansionVersion?resource_name=playerauctions&expansion_name=packeteventsexpansion&plugin_version=1.30.2. Turn on debug mode in the config.yml for the stack trace.
[Server thread/INFO]: [PlayerAuctions] Permissions plugin found! (LuckPerms)
[Server thread/INFO]: [PlayerAuctions] Economy plugin found! (EssentialsX Economy)
[Server thread/INFO]: [PlayerAuctions] Chat plugin found! (LuckPerms)
[Server thread/INFO]: [PlayerAuctions] Found PlaceholderAPI integrating support...
[Server thread/INFO]: [PlayerAuctions] Found Product Converter integrating support...
[Server thread/INFO]: [PlayerAuctions] Found Item Currency integrating support...
[Server thread/INFO]: [PlayerAuctions] Found XP Currency integrating support...
[Server thread/INFO]: [PlayerAuctions] Found Vault Currency integrating support...
[Server thread/INFO]: [PlayerAuctions] SQLite database is enabling...
[Server thread/INFO]: [PlayerAuctions] Loading Metrics...
[Server thread/INFO]: [PlayerAuctions] Successfully loaded Metrics!
[Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[Server thread/INFO]: [Votifier] Loaded token for website: default
[Server thread/INFO]: [Votifier] Using NIO transport to accept votes.
[Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[Votifier NIO boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0]:8192.
[Server thread/INFO]: [Skript] Enabling Skript v2.9.0
[Server thread/INFO]: [Skript] The updater is disabled, so a check for the latest version of Skript was not performed.
[Server thread/INFO]: [Skript] Loaded 233074 aliases in 10986ms
[Server thread/INFO]: [Skript] ~ created by & © Peter Güttinger aka Njol ~
[Server thread/INFO]: [CombatLogX] Enabling CombatLogX v11.4.0.1.1193
[Server thread/INFO]: [CombatLogX] Successfully loaded 20 language(s).
[Server thread/INFO]: [CombatLogX] Detected server as regular SpigotMC/PaperMC (not Folia)
[Server thread/INFO]: CombatLogX was loaded successfully.
[Server thread/INFO]: [CombatLogX] Enabling expansions...
[Server thread/INFO]: [CombatLogX] There were no expansions to enable.
[Server thread/INFO]: CombatLogX was enabled successfully.
[Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.11
[Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[Server thread/INFO]: [CMILib] Enabling CMILib v1.5.0.9
[Server thread/INFO]: [CMILib] Server version detection needs aditional update
[Server thread/INFO]: Server version: v1_21_R1 - 1.21.1 - paper 1.21.1-132-b48403b (MC: 1.21.1)
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.0.9]
[Server thread/INFO]: PlaceholderAPI hooked.
[Server thread/INFO]: Updated (EN) language file. Took 27ms
[Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.2.1
[Server thread/INFO]: [FurnitureLib] Enabling FurnitureLib v3.2.1
[Server thread/INFO]: ==========================================
[Server thread/INFO]: FurnitureLib Version: 3.2.1
[Server thread/INFO]: Furniture Author: Ste3et_C0st
[Server thread/INFO]: Furniture Website: https://dicecraft.de/furniture/
[Server thread/INFO]: Furniture find ProtectionLib: false
[Server thread/INFO]: [FurnitureLib] FurnitureLib use FurnitureLib-Paper module
[Server thread/INFO]: [de.Ste3et_C0st.FurnitureLib.Database.com.zaxxer.hikari.HikariDataSource] FurnitureLib - Starting...
[Server thread/INFO]: [de.Ste3et_C0st.FurnitureLib.Database.com.zaxxer.hikari.HikariDataSource] FurnitureLib - Start completed.
[Server thread/INFO]: [FurnitureLib] FurnitureLib Started SQLite database. Took 42ms
[Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (playworld)
[Server thread/INFO]: [FurnitureLib] No Models are found in world: playworld
[Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (spawn)
[Server thread/INFO]: [FurnitureLib] No Models are found in world: spawn
[Server thread/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:tripwire'
[Server thread/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:tripwire'
[Server thread/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:sign'
[Server thread/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:tripwire'
[Server thread/INFO]: [FurnitureLib] FurnitureLib Load 66 model schematics into Ram. Took 1984ms
[Server thread/INFO]: Furniture load finish :)
[Server thread/INFO]: ==========================================
[Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.4-SNAPSHOT
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[Server thread/INFO]: [UltraCosmetics] Enabling UltraCosmetics v3.10.1-RELEASE
[Server thread/INFO]: [UltraCosmetics] Checking for update...
[Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[Server thread/INFO]: [UltraCosmetics] Thanks for using UltraCosmetics! Version: 3.10.1-RELEASE (commit 0eb4ff7c)
[Server thread/INFO]: [UltraCosmetics] Plugin by Datatags. Original Author: iSach
[Server thread/INFO]: [UltraCosmetics] Link: https://bit.ly/UltraCosmetics
[Server thread/INFO]: [UltraCosmetics] Initializing module v1_21 (expected version: 1.21.4)
[Server thread/INFO]: [UltraCosmetics] Loading NMS-less mode...
[Server thread/INFO]: [UltraCosmetics] Loaded NMS-less mode
[Server thread/INFO]: [UltraCosmetics]
[Server thread/WARN]: [UltraCosmetics] Morphs require Lib's Disguises, but it is not installed. Morphs will be disabled.
[Server thread/INFO]: [UltraCosmetics]
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultracosmetics [3.10.1-RELEASE]
[Server thread/INFO]: [UltraCosmetics] Hooked into PlaceholderAPI
[Server thread/INFO]: [WorldGuard] Registering session handler be.isach.ultracosmetics.worldguard.FlagManager
[Server thread/INFO]: [UltraCosmetics]
[Server thread/INFO]: [UltraCosmetics] WorldGuard custom flags enabled
[Server thread/INFO]: [UltraCosmetics]
[Server thread/INFO]: [UltraCosmetics] Hooked into Vault:EssentialsX Economy for economy.
[Server thread/INFO]: [UltraCosmetics]
[Server thread/INFO]: [UltraCosmetics]
[Server thread/INFO]: [UltraCosmetics] Hooked into PlayerAuctions
[Server thread/INFO]: [UltraCosmetics]
[Server thread/INFO]: [UltraCosmetics] UltraCosmetics successfully finished loading in 1482ms!
[Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[Server thread/INFO]: [Themis] Enabling Themis v0.16.0
[Server thread/WARN]: [Themis] Couldn't find Floodgate which is required for Bedrock support
[Server thread/INFO]: [TAB] Enabling TAB v5.0.7
[Server thread/INFO]: [TAB] Loaded NMS hook in 19ms
[Server thread/INFO]: [TAB] [WARN] [config.yml] Missing configuration section "placeholders.register-tab-expansion" of type Boolean, using default value false.
[Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "customtagname" defined for group "_DEFAULT_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[Server thread/INFO]: [TAB] [WARN] [users.yml] Unknown property "abovename" defined for user "_NEZNAMY_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[Server thread/INFO]: [TAB] [WARN] [users.yml] Unknown property "belowname" defined for user "_NEZNAMY_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[Server thread/INFO]: [TAB] [WARN] Found a total of 4 issues.
[Server thread/INFO]: [TAB] Enabled in 156ms
[Server thread/INFO]: [SuperbVote] Enabling SuperbVote v0.5.5
[Server thread/INFO]: [SuperbVote] Using clip's PlaceholderAPI to provide extra placeholders.
[Server thread/INFO]: [SpawnerMeta] Enabling SpawnerMeta v24.5
[Server thread/INFO]: [SpawnerMeta v24.5] enabled!
[Server thread/INFO]: [SpawnerMeta] Vault has been found, economy enabled!
[Server thread/INFO]: [sleep-most] Enabling sleep-most v5.5.0
[Server thread/INFO]: [sleep-most] Hooked to PlaceholderAPI
[Server thread/INFO]: [sleep-most] Hooked to Essentials
[Server thread/INFO]: [skUtilities] Enabling skUtilities v0.9.2*
[Server thread/INFO]: [skUtilities] v0.9.2: loaded modules (Conversions, Files, Yaml, Urls, Utilities) in 54ms
[Server thread/INFO]: [skript-placeholders] Enabling skript-placeholders v1.6.0
[Server thread/INFO]: [skRayFall] Enabling skRayFall v1.9.28
[Server thread/INFO]: [skRayFall] Yay! You are running skRayFall 1.9.28!
[Server thread/INFO]: [skRayFall] Nathan and Lewis <3 you.
[Server thread/INFO]: [skRayFall] Cooking Bacon...
[Server thread/INFO]: [skRayFall] Citizens not found! Sorry you cant make friends, but don't worry we will still be your friend <3
[Server thread/INFO]: [skRayFall] Got bacon for the EffectLib particle ninjas!
[Server thread/INFO]: [skRayFall] Getting more bacon for the Votifier runners!
[Server thread/INFO]: [skRayFall] Enabling general 1.8+ bacon!
[Server thread/INFO]: [skRayFall] Getting the general 1.9+ bacon!
[Server thread/INFO]: [skRayFall] Getting the extra special 1.17+ bacon!
[Server thread/INFO]: [skRayFall] Bacon is ready!
[Server thread/INFO]: [SkBee] Enabling SkBee v3.6.0
[Server thread/INFO]: [SkBee] Loading NBTApi...
[Server thread/INFO]: [SkBee] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[Server thread/INFO]: [SkBee] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[Server thread/INFO]: [SkBee] Successfully loaded NBTApi!
[Server thread/INFO]: [SkBee] NBT Elements successfully loaded
[Server thread/INFO]: [SkBee] Text Component Elements successfully loaded
[Server thread/INFO]: [SkBee] Advancement Elements successfully loaded
[Server thread/INFO]: [SkBee] BossBar Elements successfully loaded
[Server thread/INFO]: [SkBee] Bound Elements successfully loaded
[Server thread/INFO]: [SkBee] Damage Source elements successfully loaded
[Server thread/INFO]: [SkBee] Display Entity elements successfully loaded
[Server thread/INFO]: [SkBee] Fishing elements successfully loaded
[Server thread/INFO]: [SkBee] Game Event Elements successfully loaded
[Server thread/INFO]: [SkBee] Item Component Elements successfully loaded
[Server thread/INFO]: [SkBee] Particle Elements successfully loaded
[Server thread/INFO]: [SkBee] RayTrace elements successfully loaded
[Server thread/INFO]: [SkBee] Recipe Elements successfully loaded
[Server thread/INFO]: [SkBee] Scoreboard Elements successfully loaded
[Server thread/INFO]: [SkBee] Scoreboard Objective Elements successfully loaded
[Server thread/INFO]: [SkBee] Statistic Elements successfully loaded
[Server thread/INFO]: [SkBee] Structure Elements successfully loaded
[Server thread/INFO]: [SkBee] Minecraft Tag elements successfully loaded
[Server thread/INFO]: [SkBee] Team Elements successfully loaded
[Server thread/INFO]: [SkBee] Tick Manager elements successfully loaded
[Server thread/INFO]: [SkBee] Villager Elements successfully loaded
[Server thread/INFO]: [SkBee] Virtual Furnace Elements disabled via config
[Server thread/INFO]: [SkBee] World Border Elements successfully loaded
[Server thread/INFO]: [SkBee] World Creator Elements successfully loaded
[Server thread/INFO]: [SkBee] Chunk Generator Elements successfully loaded
[Server thread/INFO]: [SkBee] Loaded (423) elements:
[Server thread/INFO]: [SkBee] - 55 events
[Server thread/INFO]: [SkBee] - 69 effects
[Server thread/INFO]: [SkBee] - 257 expressions
[Server thread/INFO]: [SkBee] - 27 conditions
[Server thread/INFO]: [SkBee] - 15 sections
[Server thread/INFO]: [SkBee] Checking for update...
[Server thread/INFO]: [SkBee] Plugin is not up to date!
[Server thread/INFO]: [SkBee] - Current version: v3.6.0
[Server thread/INFO]: [SkBee] - Available update: v3.9.1
[Server thread/INFO]: [SkBee] - Download available at: https://github.com/ShaneBeee/SkBee/releases
[Server thread/INFO]: [SkBee] Successfully enabled v3.6.0 in 0.81 seconds
[Server thread/INFO]: [SetModelData] Enabling SetModelData v1.0.0
[Server thread/INFO]: [SetModelData] SetModelData is loaded!
[Server thread/INFO]: [Quests] Enabling Quests v3.15-ed67edd
[Server thread/INFO]: [Quests] Running server scheduler: FoliaServerScheduler
[Server thread/INFO]: [Quests] Initialising storage provider 'yaml'
[Server thread/INFO]: [Quests] Your server is running version 1.21
[Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v7.5.3
[Folia Async Scheduler Thread #4/INFO]: [Quests] A new version 3.15.2 was found on Spigot (your version: 3.15-ed67edd). Please update me! <3 - Link: https://get.leonardobishop.com/quests
[Server thread/INFO]: [PlayerWarps] This plugin is licensed to NitroSetups (222259) from BuiltByBit!
[Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[Server thread/INFO]: [PlayerWarps] Found 25 config files to load!
[Server thread/INFO]: [PlayerWarps] There has been an issue while trying to get the latest version for protocollibexpansion.jar: Server returned HTTP response code: 400 for URL: https://api.olziedev.com/resources/expansionVersion?resource_name=playerwarps&expansion_name=protocollibexpansion&plugin_version=7.5.3. Turn on debug mode in the config.yml for the stack trace.
[Server thread/INFO]: [PlayerWarps] There has been an issue while trying to get the latest version for packeteventsexpansion.jar: Server returned HTTP response code: 400 for URL: https://api.olziedev.com/resources/expansionVersion?resource_name=playerwarps&expansion_name=packeteventsexpansion&plugin_version=7.5.3. Turn on debug mode in the config.yml for the stack trace.
[Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[Server thread/INFO]: [PlayerWarps] Economy plugin found! (EssentialsX Economy)
[Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[Server thread/INFO]: [PlayerWarps] Found Item Currency integrating support...
[Server thread/INFO]: [PlayerWarps] Found Vault Currency integrating support...
[Server thread/INFO]: [PlayerWarps] Found XP Currency integrating support...
[Server thread/INFO]: [PlayerWarps] Found Essentials Expansion integrating support...
[Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[Server thread/INFO]: [PlayerWarps] Loading Metrics...
[Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[Server thread/INFO]: [PermSk] Enabling PermSk v2.0.0
[Server thread/INFO]: [PermSk] Loaded dependency: LuckPerms
[Server thread/INFO]: [PermSk] Plugin enabled!
[Server thread/INFO]: [PermSk] [bStats] Sucessfully loaded
[Server thread/INFO]: [PermSk] Checking for update...
[Server thread/INFO]: [PermSk] Plugin is up to date!
[Server thread/INFO]: [O'DailyQuests] Enabling ODailyQuests v2.3.0-SNAPSHOT-16
[Server thread/INFO]: [O'DailyQuests] Plugin is starting...
[Server thread/INFO]: [O'DailyQuests] Checking for update...
[Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-5 - Starting...
[Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-5 - Added connection conn0: url=jdbc:h2:./plugins/ODailyQuests/database user=ODQ
[Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-5 - Start completed.
[Server thread/INFO]: [O'DailyQuests] Plugin successfully connected to database DATABASE.
[Server thread/INFO]: [O'DailyQuests] Vault successfully hooked.
[Server thread/INFO]: [O'DailyQuests] CoinsEngine successfully hooked.
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: odailyquests [1.0.4]
[Server thread/INFO]: [O'DailyQuests] PlaceholderAPI successfully hooked.
[Server thread/INFO]: [O'DailyQuests] WorldGuard detected, hook enabled.
[Server thread/INFO]: [O'DailyQuests] 55 quests loaded from globalQuests file.
[Server thread/ERROR]: [O'DailyQuests] org.bukkit.craftbukkit.inventory.CraftMetaSkull.setProfile(com.mojang.authlib.GameProfile)
[Server thread/ERROR]: [O'DailyQuests] org.bukkit.craftbukkit.inventory.CraftMetaSkull.setProfile(com.mojang.authlib.GameProfile)
[Server thread/INFO]: [O'DailyQuests] Plugin is started!
[Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.31.6-T20250103114036
[Server thread/INFO]: [Minepacks] Starting Minepacks in standalone mode!
[Server thread/INFO]: [Minepacks] Config file successfully loaded.
[Server thread/WARN]: [Minepacks] Paper support is experimental! Use at your own risk!
[Server thread/WARN]: [Minepacks] No guarantee for data integrity! Backup constantly!
[Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: english Author: GeorgH93
[Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting...
[Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed.
[Server thread/INFO]: [Minepacks] Item name language file successfully loaded. Language: english Author: GeorgH93
[Server thread/INFO]: [Minepacks] Loading item translations ...
[Server thread/INFO]: [Minepacks] Finished loading item translations for 826 items.
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: minepacks [2.4.31.6-T20250103114036]
[Server thread/INFO]: [Minepacks] PlaceholderAPI hook was successfully registered!
[Server thread/INFO]: [Minepacks] Minepacks has been enabled! :)
[Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[Server thread/INFO]: [Lottery] Enabling Lottery v1.4.9
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lottery [1.0.0]
[Server thread/INFO]: [LifestealCore] Enabling LifestealCore v2024.12-c
[Server thread/INFO]: [LifestealCore] 2024.12-c, a premium resource by Norska - Thanks for purchasing!
[Server thread/INFO]: [KoTH] Enabling KoTH v2.0.8
[Server thread/INFO]: [KoTH] Enabling KoTH v2.0.8
[Server thread/INFO]: [KoTH] Could not load all the koths because one or more worlds were not loaded, These will be loaded when the worlds load.
[Server thread/INFO]: [KoTH] PlaceholderAPI Support: Yes
[Server thread/INFO]: [KoTH] Scoreboard Hook: Scoreboard Disabled
[Server thread/INFO]: [KoTH] The koth koth could not be loaded since the world arena is not loaded.
[Server thread/INFO]: [KoTH] Could not load all the koths because one or more worlds were not loaded, These will be loaded when the worlds load.
[Server thread/INFO]: [KoTH] You are using the latest version of KoTH!
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: koth [1.0]
[Server thread/INFO]: [Jobs] Enabling Jobs v5.2.4.0
[Server thread/INFO]: ------------- Jobs -------------
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jobsr [5.2.4.0]
[Server thread/INFO]: PlaceholderAPI hooked.
[Server thread/INFO]: Connected to database (SqLite)
[Server thread/INFO]: Loaded 8 titles
[Server thread/INFO]: Loaded 69 protected blocks timers
[Server thread/INFO]: Loaded 1481 custom item names
[Server thread/INFO]: Loaded 84 custom entity names
[Server thread/INFO]: Loaded 2 custom MythicMobs names
[Server thread/INFO]: Loaded 122 custom enchant names
[Server thread/INFO]: Loaded 46 custom enchant names
[Server thread/INFO]: Loaded 16 custom color names
[Server thread/INFO]: Update shops items icon section and use 'ItemStack' instead
[Server thread/INFO]: Loaded 4 shop items
[Server thread/INFO]: Update Builder jobs gui item section to use `ItemStack` instead of `Item` sections format. More information inside _EXAMPLE job file
[Server thread/INFO]: Loaded 12 jobs
[Server thread/INFO]: Loaded 0 boosted items
[Jobs-DatabaseSaveTask/INFO]: Started database save task.
[Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[Server thread/INFO]: Preloaded 5 players data in 0.0
[Server thread/INFO]: Registering listeners...
[Server thread/INFO]: Listeners registered successfully
[Server thread/INFO]: Plugin has been enabled successfully.
[Server thread/INFO]: ------------------------------------
[Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.12.0
[Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ExcellentEnchants!
[Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactivechat [4.2.12.0]
[Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[Server thread/INFO]: [Infiniteannouncements] Enabling Infiniteannouncements v2.3.1
[Server thread/INFO]:
[Server thread/INFO]: ====================================
[Server thread/INFO]: Plugin name: Infiniteannouncements
[Server thread/INFO]: Version: 2.3.1
[Server thread/INFO]: Core version: 0.7.25
[Server thread/INFO]: ====================================
[Server thread/INFO]:
[Server thread/INFO]: [Infiniteannouncements] Loaded locale "en_US"
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: infiniteannouncements [1.0.0]
[Server thread/INFO]: [ForcePack] Enabling ForcePack v1.3.5
[Server thread/INFO]: [ForcePack] Generated en_gb.yml
[Server thread/INFO]: [ForcePack] Generated es_es.yml
[Server thread/INFO]: [ForcePack] Generated zh_cn.yml
[Server thread/INFO]: [ForcePack] Generated zh_tw.yml
[Server thread/WARN]: [ForcePack] [packetevents] We currently do not support the minecraft version 1.21.1, so things might break. PacketEvents will behave as if the minecraft version were 1.21.0!
[Server thread/INFO]: [packetevents] Late injection detected, we missed packets so some functionality may break!
[spark-java-sampler-0-2/WARN]: [spark] Timed out waiting for world statistics
[Server thread/INFO]: [ForcePack] Auto-generating resource pack hash.
[Server thread/INFO]: [ForcePack] Size of resource pack: 2 MB
[Server thread/INFO]: [ForcePack] Auto-generated resource pack hash: 2A9123973DD5159C9048678D126C43856246A71B
[Server thread/INFO]: [ForcePack] Performing version size check...
[Server thread/INFO]: 1.8-1.15 (50 MB): Supported.
[Server thread/INFO]: 1.16-1.17 (100 MB): Supported.
[Server thread/INFO]: 1.18+ (250 MB): Supported.
[Server thread/INFO]: Hash verification complete.
[Server thread/INFO]: [ForcePack] Generated resource pack (https://www.dropbox.com/scl/fi/5a6mh3ivge0aj4ri53agk/PremiumSetupTexturepack.zip?rlkey=ebv8ykdjfz34pbyv8yabfo1nb&st=lf0bdh9z&dl=1#2A9123973DD5159C9048678D126C43856246A71B) for version all with id 28e5c1e0-883e-3a0c-863d-cb7e01b0bf22
[Server thread/INFO]: [ForcePack] [ForcePack] Enabled!
[Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v5.3.1
[Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[Server thread/INFO]: [ExcellentCrates] Read database configuration...
[Server thread/INFO]: [ExcellentCrates] Using Internal hologram handler.
[Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-6 - Starting...
[Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-6 - Added connection org.sqlite.jdbc4.JDBC4Connection@55de7477
[Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-6 - Start completed.
[Server thread/INFO]: [ExcellentCrates] Registered currency: xp
[Server thread/INFO]: [ExcellentCrates] Registered currency: levels
[Server thread/INFO]: [ExcellentCrates] Registered currency: money
[Server thread/INFO]: [ExcellentCrates] Registered currency: coinsengine_coins
[Server thread/INFO]: [ExcellentCrates] Registered currency: coinsengine_levelxp
[Server thread/INFO]: [ExcellentCrates] Loaded 8 crate openings.
[Server thread/INFO]: [ExcellentCrates] Loaded 5 crate keys.
[Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[Server thread/INFO]: [ExcellentCrates] Loaded 5 crates.
[Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [5.3.1]
[Server thread/INFO]: [ExcellentCrates] Plugin loaded in 468 ms!
[Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+111-b54c8c1
[Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[Server thread/INFO]: [EasyCommandBlocker] Enabling EasyCommandBlocker v1.9.2
[Server thread/INFO]: [EasyCommandBlocker] Has been enabled! Version: 1.9.2
[Server thread/INFO]: [EasyCommandBlocker] Thanks for using my plugin! ~Ajneb97
[Server thread/INFO]: There is a new version available. (1.12.1)
[Server thread/INFO]: You can download it at: https://www.spigotmc.org/resources/101752/
[Server thread/INFO]: [DiceFurniture] Enabling DiceFurniture v3.9.2
[Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
[Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
[Server thread/INFO]: [DeluxeTags] Could not load tag: Superman because it does not have a display set.
[Server thread/INFO]: [DeluxeTags] 100 tags loaded
[Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxetags [1.8.2-Release]
[Server thread/INFO]: [DeluxeTags] ----------------------------
[Server thread/INFO]: [DeluxeTags] DeluxeTags Updater
[Server thread/INFO]: [DeluxeTags]
[Server thread/INFO]: [DeluxeTags] You are running 1.8.2-Release
[Server thread/INFO]: [DeluxeTags] The latest version
[Server thread/INFO]: [DeluxeTags] of DeluxeTags!
[Server thread/INFO]: [DeluxeTags]
[Server thread/INFO]: [DeluxeTags] ----------------------------
[Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.1-DEV-184
[Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[Server thread/WARN]: [DeluxeMenus] Material for item: grass in menu: shop_decorations1 is not valid!
Skipping item: grass
[Server thread/INFO]: [DeluxeMenus] 264 GUI menus loaded!
[Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.1-DEV-184]
[Server thread/INFO]: [CrazyVouchers] Enabling CrazyVouchers v3.8.3
[Server thread/INFO]: [CrazyEnvoys] Enabling CrazyEnvoys v1.6
[Server thread/INFO]: [CrazyEnvoys] Loading the config.yml
[Server thread/INFO]: [CrazyEnvoys] Successfully loaded config.yml
[Server thread/INFO]: [CrazyEnvoys] Loading the messages.yml
[Server thread/INFO]: [CrazyEnvoys] Successfully loaded messages.yml
[Server thread/INFO]: [CrazyEnvoys] Loading the data.yml
[Server thread/INFO]: [CrazyEnvoys] Successfully loaded data.yml
[Server thread/INFO]: [CrazyEnvoys] Loading custom files.
[Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Tier1.yml.
[Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Tier2.yml.
[Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Tier3.yml.
[Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Tier4.yml.
[Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Tier5.yml.
[Server thread/INFO]: [CrazyEnvoys] Finished loading custom files.
[Server thread/INFO]: [CrazyEnvoys] Failed to load 241 locations and will reattempt in 10s.
[Server thread/INFO]: [CrazyEnvoys] Failed to fix Center. Will try again next event.
[Server thread/INFO]: [CrazyEnvoys] DecentHolograms support has been enabled.
[Server thread/INFO]: [CrazyEnvoys] Attempting to fix 241 locations that failed.
[Server thread/INFO]: [CrazyEnvoys] Failed to fix 241 locations and will not reattempt.
[Server thread/INFO]: [CrazyEnvoys] Metrics has been enabled.
[Server thread/WARN]: [CrazyEnvoys] We no longer support placeholders using {}
[Server thread/WARN]: [CrazyEnvoys] We only support %% placeholders i.e %crazyenvoys_cooldown%
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: crazyenvoys [1.6]
[Server thread/INFO]: [Codex] Enabling Codex v1.16.2
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: codex [1.16.2]
[Server thread/INFO]: [Codex] Has been enabled! Version: 1.16.2
[Server thread/INFO]: [Codex] Thanks for using my plugin! ~Ajneb97
[Server thread/INFO]: There is a new version available. (2.3.3)
[Server thread/INFO]: You can download it at: https://www.spigotmc.org/resources/90371/
[Server thread/INFO]: [ChatGames] Enabling ChatGames v1.2.1
[Server thread/INFO]: [ChatGames] ChatGames is now enabled!
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatgames [1.0.0]
[Server thread/INFO]: [ChatGames] PlaceholderAPI Hooked!
[Server thread/INFO]: [ChatGames] Points loaded successfully!
[Server thread/INFO]: [ChatEmojis] Enabling ChatEmojis v2.4.1
[Server thread/INFO]: [BlockParticles] Enabling BlockParticles v1.12
[Server thread/INFO]: [BlockParticles] Loading the config.yml
[Server thread/INFO]: [BlockParticles] Successfully loaded config.yml
[Server thread/INFO]: [BlockParticles] Loading the data.yml
[Server thread/INFO]: [BlockParticles] Successfully loaded data.yml
[Server thread/INFO]: [BetterTeams] Enabling BetterTeams v4.9.4
[Server thread/INFO]: [BetterTeams] Checking if the file messages.yml is up to date
[Server thread/INFO]: [BetterTeams] File is up to date
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterTeams [4.9.4]
[Server thread/INFO]: Display team name config value: prefix
[Server thread/INFO]: Loading below name. Type: PREFIX
[Server thread/INFO]: teamManagement declared: com.booksaw.betterTeams.events.MCTeamManagement@4e8ae62e
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.11]
[Server thread/INFO]: [BestTools] Enabling BestTools v2.2.3
[Server thread/INFO]: [BestTools] Building the <Block,Tool> map took 2 ms
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: besttools [2.2.3]
[Server thread/INFO]: [Badword] Enabling Badword v1.0
[Server thread/INFO]: Starting up badwords
[Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.2.2
[Server thread/INFO]: [AuraSkills] Loaded 21 message files
[Server thread/INFO]: [AuraSkills] Successfully registered hook DecentHolograms
[Server thread/INFO]: [AuraSkills] Successfully registered hook LuckPerms
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auraskills [2.2.2]
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [2.2.2]
[Server thread/INFO]: [AuraSkills] Successfully registered hook PlaceholderAPI
[Server thread/INFO]: [AuraSkills] Successfully registered hook ProtocolLib
[Server thread/INFO]: [AuraSkills] Successfully registered hook Vault
[Server thread/INFO]: [AuraSkills] Successfully registered hook WorldGuard
[Server thread/INFO]: [AuraSkills] Loaded 148 config options in 39 ms
[Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AuraSkills' to create a bStats instance!
[Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
[Server thread/INFO]: [AuraSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.9.0
[Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[Server thread/INFO]: [ajLeaderboards] Loaded 20 boards
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.9.0]
[Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.9.0 by ajgeiss0702 enabled!
[Server thread/INFO]: [AdvancedBan] Enabling AdvancedBan v2.3.0
[Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.pool.PoolBase] HikariPool-2 - Driver does not support get/set network timeout for connections. (feature not supported)
[Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[Server thread/INFO]:
[]=====[Enabling AdvancedBan]=====[]
| Information:
| Name: AdvancedBan
| Developer: Leoko
| Version: 2.3.0
| Storage: HSQLDB (local)
| Support:
| Github: https://github.com/DevLeoko/AdvancedBan/issues
| Discord: https://discord.gg/ycDG6rS
| Twitter: @LeokoGar
| Update:
| You have the newest version
[]================================[]
[Server thread/WARN]: Unexpected exception while parsing console command "reload confirm"
org.bukkit.command.CommandException: Unhandled exception executing 'reload confirm' in org.bukkit.command.defaults.ReloadCommand(reload)
at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:175) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:1001) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at org.bukkit.craftbukkit.CraftServer.dispatchServerCommand(CraftServer.java:986) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.server.dedicated.DedicatedServer.handleConsoleInputs(DedicatedServer.java:526) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:474) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1596) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1302) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Command /heal cannot be alias for itself
at com.google.common.base.Preconditions.checkArgument(Preconditions.java:218) ~[guava-32.1.2-jre.jar:?]
at org.bukkit.craftbukkit.help.CommandAliasHelpTopic.<init>(CommandAliasHelpTopic.java:18) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at org.bukkit.craftbukkit.help.SimpleHelpMap.initializeCommands(SimpleHelpMap.java:157) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at org.bukkit.craftbukkit.CraftServer.reload(CraftServer.java:1134) ~[paper-1.21.1.jar:1.21.1-132-b48403b]
at org.bukkit.Bukkit.reload(Bukkit.java:1038) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.command.defaults.ReloadCommand.execute(ReloadCommand.java:59) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
... 8 more
[Server thread/WARN]: Can't keep up! Is the server overloaded? Running 67403ms or 1348 ticks behind
[Server thread/INFO]: Timings Reset
[Craft Scheduler Thread - 61 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[Craft Scheduler Thread - 58 - PlayerAuctions/INFO]: [PlayerAuctions] Loading auction items...
[Craft Scheduler Thread - 71 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[Craft Scheduler Thread - 64 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms...
[Craft Scheduler Thread - 58 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[Craft Scheduler Thread - 62 - Essentials/INFO]: [Essentials] Fetching version information...
[Craft Scheduler Thread - 62 - Essentials/INFO]: [Essentials] Update checking disabled in config.
[Craft Scheduler Thread - 55 - BlueSlimeCore/INFO]: [Blue Slime Core]
[Craft Scheduler Thread - 55 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] A possible update was found for plugin 'CombatLogX'.
[Craft Scheduler Thread - 55 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Current Version: 11.4.0.1.1193
[Craft Scheduler Thread - 55 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] New Version: 11.5.0.0.1242
[Craft Scheduler Thread - 55 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Download Link: https://www.spigotmc.org/resources/31689/
[Craft Scheduler Thread - 64 - DecentHolograms/INFO]: [DecentHolograms] Loaded 40 holograms!
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pa [1.30.2]
[Server thread/INFO]: [Skript] Loading variables...
[Server thread/INFO]: [Skript] Loaded 0 variables in 0.0 seconds
[Craft Scheduler Thread - 61 - CMILib/INFO]: New version of CMILib was detected. Please update it
[Craft Scheduler Thread - 72 - ODailyQuests/WARN]: [O'DailyQuests] A new update is available !
[Craft Scheduler Thread - 72 - ODailyQuests/WARN]: [O'DailyQuests] Current version : 2.3.0-SNAPSHOT-16, Available version : 2.3.0
[Craft Scheduler Thread - 72 - ODailyQuests/WARN]: [O'DailyQuests] Please download latest version :
[Craft Scheduler Thread - 72 - ODailyQuests/WARN]: [O'DailyQuests] https://www.spigotmc.org/resources/odailyquests.100990/
[Craft Scheduler Thread - 70 - sleep-most/INFO]: [sleep-most] UPDATE FOUND: A newer version of sleep-most is available to download!
[Craft Scheduler Thread - 54 - PlayerWarps/INFO]: [PlayerWarps] [!] PlayerWarps → PlayerWarps v7.7.1 is out! You are still running v7.5.3!
[20:11:13] [Craft Scheduler Thread - 87 - BetterTeams/WARN]: There is a new version of better teams released update here: (https://www.spigotmc.org/resources/better-teams.17129/)
[Craft Scheduler Thread - 65 - UltraCosmetics/INFO]: [UltraCosmetics] You are running the latest version on Spigot.
[Craft Scheduler Thread - 67 - Themis/WARN]: [Themis] You're running an outdated version of Themis, you should update as soon as possible!
[Craft Scheduler Thread - 56 - BlueSlimeCore/INFO]: [Blue Slime Core]
[Craft Scheduler Thread - 56 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Found a possible update for plugin 'BlueSlimeCore'.
[Craft Scheduler Thread - 56 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Local Version: 2.9.4.377
[Craft Scheduler Thread - 56 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Remote Version: 2.9.6.454
[Craft Scheduler Thread - 56 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Download Link: https://hangar.papermc.io/SirBlobman/BlueSlimeCore
[pool-150-thread-1/INFO]: [ajLeaderboards] You are up to date! (2.9.0)
[Server thread/INFO]: [Skript] All scripts loaded without errors.
[Server thread/INFO]: [Skript] Loaded 19 scripts with a total of 72 structures in 0.97 seconds
[Server thread/INFO]: [Skript] Finished loading.
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pw [7.5.3]
[Server thread/INFO]: WorldGuard detected.
[Server thread/INFO]: [Jobs] Successfully linked with Vault. (Essentials)
[Server thread/INFO]: [Jobs] Successfully linked with Vault. (LuckPerms)
[Server thread/INFO]: [AuraSkills] Loaded 11 skills with 312 total sources
[Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
[Server thread/INFO]: [AuraSkills] Loaded 22 pattern rewards and 0 level rewards
[Server thread/INFO]: [AuraSkills] Loaded 53 loot entries in 4 pools and 2 tables
[Server thread/INFO]: [AuraSkills] Loaded 6 menus
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: quests [3.15-ed67edd]
[Server thread/INFO]: [Quests] 45 task types have been registered ().
[Server thread/INFO]: [Quests] 0 quest items have been registered.
[Server thread/INFO]: [Quests] 502 quests have been registered.
[Craft Scheduler Thread - 73 - Vault/INFO]: [Vault] Checking for Updates ...
[Craft Scheduler Thread - 73 - Vault/INFO]: [Vault] No new version available
[Server thread/INFO]: [!] Lottery → Plugin successfully linked with vault!
[Craft Scheduler Thread - 63 - SpawnerMeta/INFO]: [Spawner Meta v24.5] New version is available: v25.0! To download visit: https://www.spigotmc.org/resources/spawnermeta.74188/
[Server thread/INFO]: [LifestealCore] Attempting hooks...
[Server thread/INFO]: [LifestealCore] Hooked into PlaceholderAPI!
[Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lifesteal [2024.12-c]
[Server thread/INFO]: [LifestealCore] Hooked into WorldGuard!
[Server thread/INFO]: [LifestealCore] Hooked into CombatLogX!
[Server thread/INFO]: [LifestealCore] Hooked into DecentHolograms!
[Server thread/INFO]: [LifestealCore] Successfully performed 4 hooks!
[Server thread/INFO]:
[Server thread/INFO]: [LifestealCore] New update available!
[Server thread/INFO]: Current version: 2024.12-c with latest being 2025.01!
[Server thread/INFO]:
[Server thread/INFO]: SpigotMC -> https://norska.dev/r/spigot/lsc/
[Server thread/INFO]: Polymart -> https://norska.dev/r/polymart/lsc/
[Server thread/INFO]: BuiltByBit -> https://norska.dev/r/bbb/lsc/
[Server thread/INFO]:
[Craft Scheduler Thread - 58 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[User Authenticator #1/INFO]: UUID of player urdudmarky is 1edebef6-c875-338c-8ad6-365a922096d7
[TAB Processing Thread/INFO]: [TAB] [WARN] Sorting placeholder %luckperms_current_group_on_track_rank% with pre-defined values [owner,manager,dev,admin,srmod,mod,helper,builder,streamer,youtuber,king,duke,paladin,lord,knight,default] returned "%luckperms_current_group_on_track_rank%" for player urdudmarky, which is not defined. Player will be sorted on the bottom.
[TAB Processing Thread/INFO]: [TAB] [WARN] Sorting placeholder %luckperms_current_group_on_track_level% with pre-defined values [24,23,22,21,20,19,18,17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,] returned "%luckperms_current_group_on_track_level%" for player urdudmarky, which is not defined. Player will be sorted on the bottom.
[Server thread/INFO]: urdudmarky[/ ip ] logged in with entity id 7379 at ([spawn]26.69999998807907, 98.0, 27.179075607078765)
[Server thread/INFO]: [+] urdudmarky
[Craft Scheduler Thread - 74 - ODailyQuests/INFO]: [O'DailyQuests] urdudmarky's quests have been loaded.
[Server thread/INFO]: Server Plugins (66):
[Server thread/INFO]: Paper Plugins:
[Server thread/INFO]: - Minepacks
[Server thread/INFO]: Bukkit Plugins:
[Server thread/INFO]: - AdvancedBan, ajLeaderboards, AuraSkills, Badword, BestTools, BetterRTP, BetterTeams, BlockParticles, BlueSlimeCore, ChatEmojis
[Server thread/INFO]: ChatGames, Citizens, CMILib, Codex, CoinsEngine, CombatLogX, CrazyEnvoys, CrazyVouchers, DecentHolograms, DeluxeMenus
[Server thread/INFO]: DeluxeTags, DiceFurniture, EasyCommandBlocker, Essentials, EssentialsSpawn, ExcellentCrates, ExcellentEnchants, FastAsyncWorldEdit, ForcePack, FurnitureLib
[Server thread/INFO]: Infiniteannouncements, InteractiveChat, Jobs, KoTH, LifestealCore, Lottery, LPC, LuckPerms, Multiverse-Core, nightcore
[Server thread/INFO]: ODailyQuests, PermSk, PlaceholderAPI, PlayerAuctions, PlayerWarps, ProtocolLib, Quests, SetModelData, SkBee, skRayFall
[Server thread/INFO]: Skript, skript-placeholders, *skUtilities, sleep-most, SpawnerMeta, SuperbVote, TAB, Themis, UltraCosmetics, Vault
[Server thread/INFO]: ViaBackwards, ViaVersion, Votifier, WorldGuard, WorldGuardExtraFlags
[Server thread/INFO]: urdudmarky lost connection: Disconnected
[Server thread/INFO]: [-] urdudmarky
[Craft Scheduler Thread - 69 - ODailyQuests/INFO]: [O'DailyQuests] urdudmarky's data saved.
[pool-16-thread-1/INFO]: [LifestealCore] [Scheduled Save] Saved data to file... 2ms
[pool-95-thread-1/INFO]: [LifestealCore] [Scheduled Save] Saved data to file... 2ms