Paste #124328: Unnamed Server Log Paste

Date: 2024/07/06 12:04:49 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[01:10:58] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[01:11:00] [ServerMain/INFO]: Loaded 1290 recipes
[01:11:00] [ServerMain/INFO]: Loaded 1399 advancements
[01:11:00] [Server thread/INFO]: Starting minecraft server version 1.21
[01:11:00] [Server thread/INFO]: Loading properties
[01:11:00] [Server thread/INFO]: This server is running Paper version 1.21-DEV-master@8d91b85 (2024-07-05T01:51:14Z) (Implementing API version 1.21-R0.1-SNAPSHOT)
[01:11:01] [Server thread/INFO]: Server Ping Player Sample Count: 12
[01:11:01] [Server thread/INFO]: Using 4 threads for Netty based IO
[01:11:01] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[01:11:01] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 4 worker threads, and population gen parallelism of 4 threads
[01:11:01] [Server thread/INFO]: Default game type: SURVIVAL
[01:11:01] [Server thread/INFO]: Generating keypair
[01:11:01] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25609
[01:11:01] [Server thread/INFO]: Using epoll channel type
[01:11:01] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[01:11:01] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[01:11:02] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[01:11:02] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/********/multicraft/servers/server774114/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[01:11:02] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/********/multicraft/servers/server774114/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[01:11:02] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/********/multicraft/servers/server774114/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[01:11:04] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[01:11:04] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/********/multicraft/servers/server774114/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[01:11:04] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/********/multicraft/servers/server774114/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[01:11:04] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/********/multicraft/servers/server774114/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[01:11:04] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/********/multicraft/servers/server774114/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[01:11:04] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/********/multicraft/servers/server774114/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[01:11:04] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/********/multicraft/servers/server774114/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[01:11:04] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[01:11:04] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/multicraft/servers/server774114/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
[01:11:04] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/multicraft/servers/server774114/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[01:11:04] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/multicraft/servers/server774114/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
[01:11:04] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/multicraft/servers/server774114/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
[01:11:04] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/multicraft/servers/server774114/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[01:11:04] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/multicraft/servers/server774114/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[01:11:04] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/multicraft/servers/server774114/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[01:11:04] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/multicraft/servers/server774114/libraries/org/json/json/20220320/json-20220320.jar
[01:11:04] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/********/multicraft/servers/server774114/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[01:11:05] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loading 2 libraries... please wait
[01:11:05] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/********/multicraft/servers/server774114/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[01:11:05] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/********/multicraft/servers/server774114/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[01:11:05] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/********/multicraft/servers/server774114/libraries/it/unimi/dsi/fastutil-core/8.5.13/fastutil-core-8.5.13.jar
[01:11:06] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loading 1 libraries... please wait
[01:11:06] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library /home/********/multicraft/servers/server774114/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[01:11:06] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library /home/********/multicraft/servers/server774114/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[01:11:06] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library /home/********/multicraft/servers/server774114/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[01:11:06] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library /home/********/multicraft/servers/server774114/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[01:11:06] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library /home/********/multicraft/servers/server774114/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[01:11:06] [Server thread/INFO]: [SpigotLibraryLoader] [GraveStonesPlus] Loaded library /home/********/multicraft/servers/server774114/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[01:11:06] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loading 6 libraries... please wait
[01:11:07] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/********/multicraft/servers/server774114/libraries/com/github/cryptomorin/XSeries/11.0.0/XSeries-11.0.0.jar
[01:11:07] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/********/multicraft/servers/server774114/libraries/com/zaxxer/HikariCP/5.1.0/HikariCP-5.1.0.jar
[01:11:07] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/********/multicraft/servers/server774114/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[01:11:07] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/********/multicraft/servers/server774114/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[01:11:07] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/********/multicraft/servers/server774114/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[01:11:07] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/********/multicraft/servers/server774114/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[01:11:07] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/********/multicraft/servers/server774114/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[01:11:07] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/********/multicraft/servers/server774114/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[01:11:07] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/********/multicraft/servers/server774114/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[01:11:07] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/********/multicraft/servers/server774114/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[01:11:07] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/********/multicraft/servers/server774114/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[01:11:07] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/********/multicraft/servers/server774114/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[01:11:07] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/********/multicraft/servers/server774114/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[01:11:07] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/********/multicraft/servers/server774114/libraries/net/kyori/adventure-text-serializer-plain/4.17.0/adventure-text-serializer-plain-4.17.0.jar
[01:11:07] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/********/multicraft/servers/server774114/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[01:11:07] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/********/multicraft/servers/server774114/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[01:11:07] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/********/multicraft/servers/server774114/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[01:11:07] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/********/multicraft/servers/server774114/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[01:11:07] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/********/multicraft/servers/server774114/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[01:11:07] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.0.1
[01:11:07] [Server thread/INFO]: [ViaVersion] ViaVersion 5.0.1 is now loaded. Registering protocol transformers and injecting...
[01:11:07] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[01:11:08] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[01:11:08] [Server thread/INFO]: [ViaBackwards] Loading translations...
[01:11:08] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[01:11:09] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.131
[01:11:10] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[01:11:10] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.11.1-SNAPSHOT-843;5341b06
[01:11:13] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@299fedb1]
[01:11:13] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0-SNAPSHOT-723
[01:11:13] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.0) has not yet been tested! Proceed with caution.
[01:11:13] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[01:11:13] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+102-fcf6e64
[01:11:13] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.10+d9424b1
[01:11:13] [Server thread/INFO]: [SuperVanish] Loading server plugin SuperVanish v6.2.19
[01:11:13] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.12
[01:11:13] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.4
[01:11:13] [Server thread/INFO]: [WildTools] Loading server plugin WildTools v2024.1-b45
[01:11:13] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_21_R1.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[01:11:23] [Server thread/INFO]: [BlueMap] Loading server plugin BlueMap v5.2
[01:11:23] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.35-SNAPSHOT (build 3454)
[01:11:23] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.16.3
[01:11:23] [Server thread/INFO]: [PlayerPoints] Loading server plugin PlayerPoints v3.2.7
[01:11:23] [Server thread/INFO]: [PlayerPoints] Initializing using RoseGarden v1.3.0.36-DEV-SNAPSHOT
[01:11:23] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.0.5
[01:11:23] [Server thread/INFO]: [Blue Slime Core] Loading server plugin BlueSlimeCore v2.9.6.431
[01:11:23] [Server thread/INFO]: [Towny] Loading server plugin Towny v0.100.3.4
[01:11:23] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.0.1
[01:11:23] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.3-SNAPSHOT (b109-49bd564)
[01:11:24] [Server thread/INFO]: [floodgate] Took 1,473ms to boot Floodgate
[01:11:24] [Server thread/INFO]: [SpawnerMeta] Loading server plugin SpawnerMeta v24.3
[01:11:24] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.8.7
[01:11:24] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.10
[01:11:24] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.13.1
[01:11:24] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: v1_21_R1! Trying to find NMS support
[01:11:24] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[01:11:24] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[01:11:24] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.9
[01:11:24] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.3.1-SNAPSHOT (build 7051-DEV)
[01:11:24] [Server thread/INFO]: [Quests] Loading server plugin Quests v3.15-b636bef
[01:11:24] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.4.0
[01:11:24] [Server thread/INFO]: [CombatLogX] Loading server plugin CombatLogX v11.5.0.0.1242
[01:11:24] [Server thread/INFO]: [CombatLogX] Configuration version is recent, no major changes necessary.
[01:11:24] [Server thread/INFO]: [CombatLogX] Loading expansions...
[01:11:24] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/Residence Compatibility.jar' because a plugin dependency was not loaded: Residence
[01:11:24] [Server thread/INFO]: [CombatLogX]  
[01:11:24] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/PlayerParticles Compatibility.jar' because a plugin dependency was not loaded: PlayerParticles
[01:11:24] [Server thread/INFO]: [CombatLogX]  
[01:11:24] [Server thread/INFO]: [CombatLogX] Loading expansion 'Damage Effects v17.0'...
[01:11:24] [Thread-12/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[01:11:24] [Server thread/INFO]: [CombatLogX]  
[01:11:24] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/CrashClaim Compatibility.jar' because a plugin dependency was not loaded: CrashClaim
[01:11:24] [Server thread/INFO]: [CombatLogX]  
[01:11:24] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/CrackShot Compatibility.jar' because a plugin dependency was not loaded: CrackShot
[01:11:24] [Server thread/INFO]: [CombatLogX]  
[01:11:24] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/BSkyBlock Compatibility.jar' because a plugin dependency was not loaded: BentoBox
[01:11:24] [Server thread/INFO]: [CombatLogX]  
[01:11:24] [Server thread/INFO]: [CombatLogX] Loading expansion 'Scoreboard v17.1'...
[01:11:24] [Server thread/INFO]: [CombatLogX]  
[01:11:24] [Server thread/INFO]: [CombatLogX] Loading expansion 'Damage Tagger v17.1'...
[01:11:24] [Server thread/INFO]: [CombatLogX]  
[01:11:24] [Server thread/INFO]: [CombatLogX] Loading expansion 'EssentialsX Compatibility v17.2'...
[01:11:24] [Server thread/INFO]: [CombatLogX]  
[01:11:24] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/IridiumSkyblock Compatibility.jar' because a plugin dependency was not loaded: IridiumSkyblock
[01:11:24] [Server thread/INFO]: [CombatLogX]  
[01:11:24] [Server thread/INFO]: [CombatLogX] Loading expansion 'Loot Protection v17.1'...
[01:11:24] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/INFO]: [CombatLogX] Loading expansion 'Force Field v17.4'...
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/PreciousStones Compatibility.jar' because a plugin dependency was not loaded: PreciousStones
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/GriefPrevention Compatibility.jar' because a plugin dependency was not loaded: GriefPrevention
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/VanishNoPacket Compatibility.jar' because a plugin dependency was not loaded: VanishNoPacket
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/INFO]: [CombatLogX] Loading expansion 'Logger v17.2'...
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/HuskSync Compatibility.jar' because a plugin dependency was not loaded: HuskSync
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/INFO]: [CombatLogX] Loading expansion 'Action Bar v17.3'...
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/ProtectionStones Compatibility.jar' because a plugin dependency was not loaded: ProtectionStones
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/MarriageMaster Compatibility.jar' because a plugin dependency was not loaded: MarriageMaster
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/MythicMobs Compatibility.jar' because a plugin dependency was not loaded: MythicMobs
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/INFO]: [CombatLogX] Loading expansion 'Death Effects v17.0'...
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/INFO]: [CombatLogX] Loading expansion 'Boss Bar v17.1'...
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/CMI Compatibility.jar' because a plugin dependency was not loaded: CMI
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/GriefDefender Compatibility.jar' because a plugin dependency was not loaded: GriefDefender
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/INFO]: [CombatLogX] Loading expansion 'Towny Compatibility v17.2'...
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/RedProtect Compatibility.jar' because a plugin dependency was not loaded: RedProtect
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/INFO]: [CombatLogX] Loading expansion 'Glowing v17.0'...
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/SuperiorSkyblock Compatibility.jar' because a plugin dependency was not loaded: SuperiorSkyblock2
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/HuskHomes Compatibility.jar' because a plugin dependency was not loaded: HuskHomes
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/ASkyBlock Compatibility.jar' because a plugin dependency was not loaded: ASkyBlock
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/INFO]: [CombatLogX] Loading expansion 'End Crystal Helper v17.1'...
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/INFO]: [CombatLogX] Loading expansion 'Citizens Compatibility v17.9'...
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/UltimateClaims Compatibility.jar' because a plugin dependency was not loaded: UltimateClaims
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/Lands Compatibility.jar' because a plugin dependency was not loaded: Lands
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/iDisguise Compatibility.jar' because a plugin dependency was not loaded: iDisguise
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/FeatherBoard Compatibility.jar' because a plugin dependency was not loaded: FeatherBoard
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/INFO]: [CombatLogX] Loading expansion 'SuperVanish Compatibility v17.1'...
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/AngelChest Compatibility.jar' because a plugin dependency was not loaded: AngelChest
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/FabledSkyBlock Compatibility.jar' because a plugin dependency was not loaded: FabledSkyBlock
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/INFO]: [CombatLogX] Loading expansion 'Newbie Helper v17.2'...
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/KingdomsX Compatibility.jar' because a plugin dependency was not loaded: Kingdoms
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/CompatHuskTowns.jar' because a plugin dependency was not loaded: HuskTowns
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/INFO]: [CombatLogX] Loading expansion 'WorldGuard Compatibility v17.2'...
[01:11:25] [Server thread/INFO]: [CombatLogX] [WorldGuard Compatibility] Successfully found a dependency: WorldGuard v7.0.10+d9424b1
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/LibsDisguises Compatibility.jar' because a plugin dependency was not loaded: LibsDisguises
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/INFO]: [CombatLogX] Loading expansion 'LuckPerms Compatibility v17.1'...
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/Konquest Compatibility.jar' because a plugin dependency was not loaded: Konquest
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/INFO]: [CombatLogX] Loading expansion 'Rewards v17.4'...
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/uSkyBlock Compatibility.jar' because a plugin dependency was not loaded: uSkyBlock
[01:11:25] [Server thread/INFO]: [CombatLogX]  
[01:11:25] [Server thread/INFO]: [CombatLogX] Successfully loaded 19 expansions.
[01:11:25] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.6.2
[01:11:25] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.4.0
[01:11:28] [Server thread/INFO]: [GrimAC] Loading server plugin GrimAC v2.3.65
[01:11:28] [Server thread/INFO]: [GrimAC] Loading PacketEvents...
[01:11:31] [Server thread/INFO]: [JShader] Loading server plugin JShader v1.1
[01:11:31] [Server thread/INFO]: [EconomyShopGUI] Loading server plugin EconomyShopGUI v6.7.5
[01:11:31] [Server thread/INFO]: [MythicalRaces] Loading server plugin MythicalRaces v2.5.3-SE-V1
[01:11:31] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.9.5
[01:11:31] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.6
[01:11:31] [Server thread/INFO]: [ChestSort] Loading server plugin ChestSort v14.1.0
[01:11:31] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.28.0-SNAPSHOT
[01:11:31] [Server thread/INFO]: [ChunkyBorder] Loading server plugin ChunkyBorder v1.2.13
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.9.0
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okhttp
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okhttp
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio-jvm
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio-jvm
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk8
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk8
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-common
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-common
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for annotations
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Checksum matched for annotations
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk7
[01:11:31] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk7
[01:11:31] [Server thread/INFO]: [BlockParticles] Loading server plugin BlockParticles v1.12
[01:11:31] [Server thread/INFO]: [BetterBalls] Loading server plugin BetterBalls v0.7-BETA
[01:11:31] [Server thread/INFO]: [BetterBalls] Inventory title with support for more than 32 characters. Skipping..
[01:11:31] [Server thread/INFO]: [BetterBalls] Hex colors are available! Ready for RGB..
[01:11:31] [Server thread/INFO]: [BetterBalls] Old constructor for HoverEvent found! Using it..
[01:11:31] [Server thread/INFO]: [BetterBalls] New sendTitle method found! Using it..
[01:11:31] [Server thread/INFO]: [BetterBalls] New setUnbreakable method found! Using it..
[01:11:31] [Server thread/INFO]: [BetterBalls] New isUnbreakable method found! Using it..
[01:11:31] [Server thread/INFO]: [BetterBalls] WorldGuard found! Registering custom flag(s)..
[01:11:31] [Server thread/INFO]: [BetterBalls] WorldGuard v7.x or newer detected. Using new methods..
[01:11:31] [Server thread/INFO]: [BetterBalls] [WorldGuard] Successfully registered 'betterballs-cannot-spawn' flag!
[01:11:31] [Server thread/INFO]: [BetterBalls] [WorldGuard] Successfully registered 'betterballs-cannot-catch' flag!
[01:11:31] [Server thread/INFO]: [AuraSkills] Loading server plugin AuraSkills v2.1.5
[01:11:31] [Server thread/INFO]: [BlueMap-Towny] Loading server plugin BlueMap-Towny v2.1.1
[01:11:31] [Server thread/INFO]: [CrazyEnchantments] Loading server plugin CrazyEnchantments v2.4
[01:11:31] [Server thread/INFO]: [CrazyVouchers] Loading server plugin CrazyVouchers v3.6.4
[01:11:31] [Server thread/INFO]: [CLV] Loading server plugin CyberLevels v0.5.9
[01:11:31] [Server thread/INFO]: [DailyRewards] Loading server plugin DailyRewards v1.4
[01:11:31] [Server thread/INFO]: [dDiscordBot] Loading server plugin dDiscordBot v0.7 (build 303)
[01:11:31] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
[01:11:31] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[01:11:31] [Server thread/INFO]: [Depenizen] Loading server plugin Depenizen v2.1.0 (build 863)
[01:11:31] [Server thread/INFO]: [Duels] Loading server plugin Duels v3.5.1
[01:11:31] [Server thread/INFO]: [EpicRename] Loading server plugin EpicRename v3.12
[01:11:31] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+102-fcf6e64
[01:11:31] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v5.2.3.1
[01:11:31] [Server thread/INFO]: [EZColors] Loading server plugin EZColors v2.2.4
[01:11:31] [Server thread/INFO]: [GraveStonesPlus] Loading server plugin GraveStonesPlus v1.6.7
[01:11:31] [Server thread/INFO]: [Mclogs] Loading server plugin Mclogs v2.6.3
[01:11:31] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.1.2
[01:11:31] [Server thread/INFO]: [Pl-Hide-Pro] Loading server plugin Pl-Hide-Pro v2.10.2
[01:11:31] [Server thread/INFO]: [Pl-Hide-Pro] Loading library caffeine
[01:11:31] [Server thread/INFO]: [PlayerWarps] Loading server plugin PlayerWarps v6.30.0
[01:11:32] [Server thread/INFO]: [VeinMiner] Loading server plugin VeinMiner v2.2.4
[01:11:32] [Server thread/INFO]: [VeinMiner] Found WorldGuard. Registering custom region flag.
[01:11:32] [Server thread/INFO]: [RocketPlaceholders] Loading server plugin RocketPlaceholders v2.3.1
[01:11:32] [Server thread/INFO]: [RocketPlaceholders] Loading libraries, please wait..
[01:11:32] [Server thread/INFO]: [RocketPlaceholders] Loaded all libraries in 101ms.
[01:11:32] [Server thread/INFO]: [StaffChat] Loading server plugin StaffChat v3.4
[01:11:32] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.4.1
[01:11:32] [Server thread/INFO]: [Tebex] Loading server plugin Tebex v2.0.5
[01:11:32] [Server thread/INFO]: [Sellwand] Loading server plugin Sellwand v1.6.2
[01:11:32] [Server thread/INFO]: [MRPremiumAddons] Loading server plugin MRPremiumAddons v2.5.3-SE-V1
[01:11:32] [Server thread/INFO]: [Infiniteannouncements] Loading server plugin Infiniteannouncements v2.3.1
[01:11:32] [Server thread/INFO]: [GenBucket] Loading server plugin GenBucket v1.0.7
[01:11:32] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v3.2.2
[01:11:32] [Server thread/INFO]: [eGlow] Loading server plugin eGlow v3.2.4
[01:11:32] [Server thread/INFO]: [DeluxeTags] Loading server plugin DeluxeTags v1.8.2-Release
[01:11:32] [Server thread/INFO]: [UltraCosmetics] Loading server plugin UltraCosmetics v3.6.0.1-RELEASE
[01:11:32] [Server thread/INFO]: [AdvancedBan] Loading server plugin AdvancedBan v2.3.0
[01:11:32] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[01:11:32] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.131
[01:11:34] [Server thread/INFO]:         __    
[01:11:34] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.131
[01:11:34] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[01:11:34] [Server thread/INFO]: 
[01:11:34] [Server thread/INFO]: [LuckPerms] Loading configuration...
[01:11:34] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[01:11:36] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[01:11:36] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[01:11:36] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 4075ms)
[01:11:36] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[01:11:36] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[01:11:37] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[01:11:37] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[01:11:37] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[01:11:37] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.11.1-SNAPSHOT-843;5341b06
[01:11:37] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[01:11:37] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[01:11:37] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[01:11:37] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[01:11:37] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_R1.PaperweightFaweAdapter as the Bukkit adapter
[01:11:38] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0-SNAPSHOT-723
[01:11:38] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.12
[01:11:38] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[01:11:38] [Server thread/WARN]: [NexEngine] ==================================
[01:11:38] [Server thread/WARN]: [NexEngine] WARNING: You're running an outdated/deprecated server version (Unknown)!
[01:11:38] [Server thread/WARN]: [NexEngine] Support for this version will be dropped soon.
[01:11:38] [Server thread/WARN]: [NexEngine] Please, upgrade your server to at least 1.18.2.
[01:11:38] [Server thread/WARN]: [NexEngine] ==================================
[01:11:38] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[01:11:38] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[01:11:38] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[01:11:38] [Server thread/INFO]: [NexEngine] Plugin loaded in 120 ms!
[01:11:38] [Server thread/INFO]: [PlayerPoints] Enabling PlayerPoints v3.2.7
[01:11:39] [Server thread/INFO]: [PlayerPoints] Data handler connected using SQLite.
[01:11:39] [Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.9.6.431
[01:11:39] [Server thread/INFO]: [Blue Slime Core] Successfully loaded 2 language(s).
[01:11:39] [Server thread/INFO]: [Blue Slime Core] Detected server as regular SpigotMC/PaperMC (not Folia)
[01:11:39] [Server thread/INFO]: [nightcore] Enabling nightcore v2.6.2
[01:11:39] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[01:11:39] [Server thread/INFO]: [nightcore] Found economy provider: EssentialsX Economy
[01:11:39] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[01:11:39] [Server thread/INFO]: [nightcore] Server Version: 1.21 ✔
[01:11:39] [Server thread/INFO]: [nightcore] Entity Id Counter: OK ✔
[01:11:39] [Server thread/INFO]: [nightcore] Item NBT Compress: OK ✔
[01:11:39] [Server thread/INFO]: [nightcore] Plugin loaded in 240 ms!
[01:11:39] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.4.1
[01:11:39] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[01:11:39] [Server thread/WARN]: [PlugManX] It seems like you're running on paper.
[01:11:39] [Server thread/WARN]: [PlugManX] PlugManX cannot interact with paper-plugins, yet.
[01:11:39] [Server thread/WARN]: [PlugManX] Also, if you encounter any issues, please join my discord: https://discord.gg/GxEFhVY6ff
[01:11:39] [Server thread/WARN]: [PlugManX] Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
[01:11:39] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[01:11:40] [Server thread/INFO]: Preparing level "world"
[01:11:40] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[01:11:41] [Server thread/INFO]: Time elapsed: 988 ms
[01:11:41] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[01:11:41] [Server thread/INFO]: Time elapsed: 216 ms
[01:11:41] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[01:11:42] [Server thread/INFO]: Time elapsed: 502 ms
[01:11:42] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.0.1
[01:11:42] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21 (767)
[01:11:42] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[01:11:42] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[01:11:42] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+102-fcf6e64
[01:11:43] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[01:11:43] [Server thread/INFO]: [Essentials] No kits found to migrate.
[01:11:43] [Server thread/INFO]: [Essentials] Loaded 36926 items from items.json.
[01:11:43] [Server thread/INFO]: [Essentials] Using locale en_US
[01:11:43] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[01:11:44] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[01:11:44] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[01:11:44] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[01:11:44] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.10+d9424b1
[01:11:44] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[01:11:44] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[01:11:44] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[01:11:44] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[01:11:44] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[01:11:44] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[01:11:44] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[01:11:44] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[01:11:44] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[01:11:44] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[01:11:44] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[01:11:44] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[01:11:44] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[01:11:44] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[01:11:44] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[01:11:44] [Server thread/INFO]: [WorldGuard] Loading region data...
[01:11:45] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.19
[01:11:45] [Server thread/INFO]: [SuperVanish] Hooked into PaperSpigot for server list ping support
[01:11:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: supervanish [6.2.19]
[01:11:45] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI
[01:11:45] [Server thread/INFO]: [SuperVanish] Hooked into Essentials
[01:11:45] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.4
[01:11:45] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[01:11:45] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[01:11:45] [Server thread/INFO]: --------------------
[01:11:45] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[01:11:45] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[01:11:45] [Server thread/INFO]: --------------------
[01:11:45] [Server thread/INFO]: [WildTools] Enabling WildTools v2024.1-b45
[01:11:45] [Server thread/INFO]: [WildTools] ******** ENABLE START ********
[01:11:45] [Server thread/INFO]: [WildTools] Loading configuration started...
[01:11:45] [Server thread/INFO]: [WildTools]  - Found 7 tools in config.yml.
[01:11:45] [Server thread/INFO]: [WildTools] Loading configuration done (Took 106ms)
[01:11:45] [Server thread/INFO]: [WildTools] Loading messages started...
[01:11:45] [Server thread/INFO]: [WildTools]  - Found 0 messages in lang.yml.
[01:11:45] [Server thread/INFO]: [WildTools] Loading messages done (Took 2ms)
[01:11:45] [Server thread/INFO]: [WildTools] Couldn't find the tool sand_wand, skipping recipe...
[01:11:45] [Server thread/INFO]: [WildTools] Couldn't find the tool sell_wand, skipping recipe...
[01:11:45] [Server thread/INFO]: [WildTools] Couldn't find valid recipe for crafting_wand, skipping...
[01:11:45] [Server thread/INFO]: [WildTools] Couldn't find the tool builder_wand, skipping recipe...
[01:11:45] [Server thread/INFO]: [WildTools] Couldn't find the tool ice_wand, skipping recipe...
[01:11:45] [Server thread/INFO]: [WildTools] Couldn't find the tool drain_wand, skipping recipe...
[01:11:45] [Server thread/INFO]: [WildTools] Couldn't find the tool sort_wand, skipping recipe...
[01:11:45] [Server thread/INFO]: [WildTools] ******** ENABLE DONE ********
[01:11:45] [Server thread/INFO]: [BlueMap] Enabling BlueMap v5.2
[01:11:45] [Server thread/INFO]: [BlueMap] Saving all worlds once, to make sure the level.dat is present...
[01:11:45] [Server thread/WARN]: A manual (plugin-induced) save has been detected while server is configured to auto-save. This may affect performance.
[01:11:46] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3454)
[01:11:46] [Server thread/INFO]: [Citizens] Loading external libraries
[01:11:46] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[01:11:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[01:11:46] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[01:11:47] [Server thread/INFO]: [SuperVanish] Hooked into Citizens
[01:11:47] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.16.3
[01:11:47] [Server thread/WARN]: [VotingPlugin] Detected no voting sites, this may mean something isn't properly setup
[01:11:47] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[01:11:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[01:11:47] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[01:11:48] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[01:11:48] [Server thread/WARN]: [VotingPlugin] No VotifierEvent found, install Votifier, NuVotifier, or another Votifier plugin
[01:11:48] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.16.3
[01:11:48] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.0.5
[01:11:49] [Server thread/INFO]: Server version: v1_21_R1 - 1.21.0 - paper  1.21-DEV-8d91b85 (MC: 1.21)
[01:11:49] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[01:11:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [**.**.**.**]
[01:11:49] [Server thread/INFO]: PlaceholderAPI hooked.
[01:11:50] [Server thread/INFO]: Updated (EN) language file. Took 62ms
[01:11:50] [Server thread/INFO]: [Towny] Enabling Towny v0.100.3.4
[01:11:50] [Server thread/INFO]: ====================      Towny      ========================
[01:11:51] [Server thread/INFO]: [Towny] Successfully loaded translations for 42 languages.
[01:11:51] [Server thread/INFO]: [Towny] Config: Loaded 9 townblock types: shop, inn, arena, jail, default, bank, wilds, farm, embassy.
[01:11:51] [Server thread/INFO]: [Towny] Database: [Load] flatfile [Save] flatfile
[01:11:51] [Server thread/INFO]: [Towny] Database: Loaded in 42ms.
[01:11:51] [ForkJoinPool.commonPool-worker-1/INFO]: [Towny] Cleaning up old backups...
[01:11:51] [ForkJoinPool.commonPool-worker-1/INFO]: [Towny] Successfully cleaned backups.
[01:11:51] [ForkJoinPool.commonPool-worker-2/INFO]: [Towny] Making backup...
[01:11:51] [Folia Async Scheduler Thread #0/INFO]: [Towny] Time until a New Day: 10 hours, 48 minutes, 9 seconds
[01:11:51] [Folia Async Scheduler Thread #1/INFO]: [Towny] Checking for updates...
[01:11:51] [ForkJoinPool.commonPool-worker-2/INFO]: [Towny] Towny flatfiles and settings successfully backed up.
[01:11:51] [Server thread/INFO]: [Towny] Searching for third-party plugins...
[01:11:51] [Server thread/INFO]: [Towny] Plugins found: 
[01:11:51] [Server thread/INFO]: [Towny]   Permissions: TownyPerms, LuckPerms v5.4.131 via Vault
[01:11:51] [Server thread/INFO]: [Towny]   Chat: LuckPerms v5.4.131 via Vault
[01:11:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: townyadvanced [**.**.**.**]
[01:11:51] [Server thread/INFO]: [Towny]   Add-ons: PlaceholderAPI v2.11.6
[01:11:52] [Folia Async Scheduler Thread #1/INFO]: [Towny] No new updates found.
[01:11:52] [Server thread/INFO]: =============================================================
[01:11:52] [Server thread/INFO]: [Towny] Version: 0.100.3.4 - Plugin Enabled
[01:11:52] [Server thread/INFO]: =============================================================
[01:11:52] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.0.1
[01:11:52] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.3-SNAPSHOT (b109-49bd564)
[01:11:53] [Server thread/INFO]: [SpawnerMeta] Enabling SpawnerMeta v24.3
[01:11:53] [Server thread/INFO]: [SpawnerMeta v24.3] enabled!
[01:11:53] [Server thread/INFO]: [SpawnerMeta] Vault has been found, economy enabled!
[01:11:53] [Server thread/INFO]: [SpawnerMeta] Wild Tools has been found, custom drop provided!
[01:11:53] [Server thread/INFO]: [Skript] Enabling Skript v2.8.7
[01:11:54] [ForkJoinPool.commonPool-worker-2/INFO]: [Skript] You're currently running the latest stable version of Skript.
[01:11:54] [Server thread/ERROR]: Error occurred while enabling Skript v2.8.7 (Is it up to date?)
java.lang.IllegalArgumentException: LAVA_CAULDRON isn't an item
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
    at org.bukkit.inventory.ItemStack.of(ItemStack.java:58) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.inventory.ItemStack.<init>(ItemStack.java:138) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.inventory.ItemStack.<init>(ItemStack.java:117) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.inventory.ItemStack.<init>(ItemStack.java:104) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.inventory.ItemStack.<init>(ItemStack.java:87) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at Skript-2.8.7.jar/ch.njol.skript.aliases.AliasesProvider.addAlias(AliasesProvider.java:307) ~[Skript-2.8.7.jar:?]
    at Skript-2.8.7.jar/ch.njol.skript.aliases.AliasesParser.loadSingleAlias(AliasesParser.java:705) ~[Skript-2.8.7.jar:?]
    at Skript-2.8.7.jar/ch.njol.skript.aliases.AliasesParser.loadAlias(AliasesParser.java:614) ~[Skript-2.8.7.jar:?]
    at Skript-2.8.7.jar/ch.njol.skript.aliases.AliasesParser.load(AliasesParser.java:121) ~[Skript-2.8.7.jar:?]
    at Skript-2.8.7.jar/ch.njol.skript.aliases.Aliases.load(Aliases.java:506) ~[Skript-2.8.7.jar:?]
    at Skript-2.8.7.jar/ch.njol.skript.aliases.Aliases.load(Aliases.java:492) ~[Skript-2.8.7.jar:?]
    at Skript-2.8.7.jar/ch.njol.skript.aliases.Aliases.lambda$loadDirectory$1(Aliases.java:475) ~[Skript-2.8.7.jar:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184) ~[?:?]
    at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) ~[?:?]
    at java.base/java.util.stream.SortedOps$RefSortingSink.end(SortedOps.java:395) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:510) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:151) ~[?:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:174) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]
    at Skript-2.8.7.jar/ch.njol.skript.aliases.Aliases.loadDirectory(Aliases.java:468) ~[Skript-2.8.7.jar:?]
    at Skript-2.8.7.jar/ch.njol.skript.aliases.Aliases.loadInternal(Aliases.java:433) ~[Skript-2.8.7.jar:?]
    at Skript-2.8.7.jar/ch.njol.skript.aliases.Aliases.load(Aliases.java:389) ~[Skript-2.8.7.jar:?]
    at Skript-2.8.7.jar/ch.njol.skript.Skript.onEnable(Skript.java:508) ~[Skript-2.8.7.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.jar:1.21-DEV-8d91b85]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.jar:1.21-DEV-8d91b85]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:629) ~[?:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:578) ~[?:?]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752) ~[paper-1.21.jar:1.21-DEV-8d91b85]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514) ~[paper-1.21.jar:1.21-DEV-8d91b85]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:327) ~[paper-1.21.jar:1.21-DEV-8d91b85]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1219) ~[paper-1.21.jar:1.21-DEV-8d91b85]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.jar:1.21-DEV-8d91b85]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[01:11:54] [Server thread/INFO]: [Skript] Disabling Skript v2.8.7
[01:11:54] [Server thread/ERROR]: Error occurred while disabling Skript v2.8.7
java.lang.ExceptionInInitializerError: null
    at Skript-2.8.7.jar/ch.njol.skript.Skript.beforeDisable(Skript.java:1192) ~[Skript-2.8.7.jar:?]
    at Skript-2.8.7.jar/ch.njol.skript.Skript.onDisable(Skript.java:1204) ~[Skript-2.8.7.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:291) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237) ~[paper-1.21.jar:1.21-DEV-8d91b85]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:114) ~[paper-1.21.jar:1.21-DEV-8d91b85]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:550) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:206) ~[paper-1.21.jar:1.21-DEV-8d91b85]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.jar:1.21-DEV-8d91b85]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:629) ~[?:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:578) ~[?:?]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752) ~[paper-1.21.jar:1.21-DEV-8d91b85]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514) ~[paper-1.21.jar:1.21-DEV-8d91b85]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:327) ~[paper-1.21.jar:1.21-DEV-8d91b85]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1219) ~[paper-1.21.jar:1.21-DEV-8d91b85]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.jar:1.21-DEV-8d91b85]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: ch.njol.skript.SkriptAPIException: Registration can only be done during plugin initialization
    at Skript-2.8.7.jar/ch.njol.skript.Skript.checkAcceptRegistrations(Skript.java:1299) ~[Skript-2.8.7.jar:?]
    at Skript-2.8.7.jar/ch.njol.skript.Skript.registerEvent(Skript.java:1501) ~[Skript-2.8.7.jar:?]
    at Skript-2.8.7.jar/ch.njol.skript.events.EvtSkript.<clinit>(EvtSkript.java:39) ~[Skript-2.8.7.jar:?]
    ... 17 more
[01:11:54] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.10
[01:11:54] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.13.1
[01:11:54] [Server thread/INFO]: [NBTAPI] Checking bindings...
[01:11:54] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[01:11:54] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[01:11:54] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[01:11:54] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[01:11:54] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.9
[01:11:55] [Server thread/INFO]: [Denizen] Enabling Denizen v1.3.1-SNAPSHOT (build 7051-DEV)
[01:11:55] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1383), impl for Spigot v1.3.1-SNAPSHOT (build 7051-DEV) 
[01:11:55] [Server thread/INFO]: +> [Denizen] Running on java version: 21.0.2 
[01:11:55] [Server thread/INFO]: +> [Denizen] Running on fully supported Java 21. 
[01:11:56] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[01:11:56] [Server thread/INFO]: +> [Denizen]  Denizen  scriptable minecraft 
[01:11:56] [Server thread/INFO]: +> [Denizen]  
[01:11:56] [Server thread/INFO]: +> [Denizen] by: The DenizenScript team 
[01:11:56] [Server thread/INFO]: +> [Denizen] Chat with us at: https://discord.gg/Q6pZGSR 
[01:11:56] [Server thread/INFO]: +> [Denizen] Or learn more at: https://denizenscript.com 
[01:11:56] [Server thread/INFO]: +> [Denizen] version: 1.3.1-SNAPSHOT (build 7051-DEV) 
[01:11:56] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[01:11:57] [Server thread/INFO]: +> [TriggerRegistry] Loaded 4 core triggers 
[01:11:58] [pool-21-thread-1/WARN]: [floodgate] 
**********************************
* The prefix you entered in your Floodgate config (BR_) could lead to username conflicts!
* Should a Java player join with the username BR_Notch, and a Bedrock player join as Notch (who will be given the name BR_Notch), unwanted results will happen!
* We strongly recommend using . as the prefix, but other alternatives that will not conflict include: +, - and *
**********************************
[01:11:58] [pool-21-thread-1/WARN]: [floodgate] 
**********************************
* The prefix you entered in your Floodgate config (BR_) is long! (3 characters)
* A prefix is there to prevent username conflicts. However, a long prefix makes the chance of username conflicts higher.
* We strongly recommend using . as the prefix, but other alternatives that will not conflict include: +, - and *
**********************************
[01:11:58] [Server thread/INFO]: +> [PaperModule] Loading Paper support module... 
[01:11:58] [Server thread/INFO]: +> [Denizen] Loaded 153 core commands and 30 core object types, at 3387ms from start. 
[01:11:58] [Server thread/INFO]: +> [ScriptRegistry] Loading 4 script files... 
[01:11:58] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 11ms, processing 13ms. 
[01:11:58] [Server thread/INFO]: +> [Denizen] Final full init took 3457ms. 
[01:11:58] [Server thread/INFO]: [Quests] Enabling Quests v3.15-b636bef
[01:11:58] [Server thread/INFO]: [Quests] Running server scheduler: FoliaServerScheduler
[01:11:58] [Server thread/INFO]: [Quests] Initialising storage provider 'yaml'
[01:11:58] [Server thread/WARN]: [Quests] Failed to resolve server version - some features may not work!
[01:11:58] [Server thread/INFO]: [Quests] Your server is running version 1.0
[01:11:58] [Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[01:11:58] [Server thread/INFO]: [Jobs] Enabling Jobs v5.2.4.0
[01:11:58] [Server thread/INFO]: ------------- Jobs -------------
[01:11:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jobsr [**.**.**.**]
[01:11:58] [Server thread/INFO]: PlaceholderAPI hooked.
[01:11:58] [Server thread/INFO]: Connected to database (SqLite)
[01:11:58] [Server thread/INFO]: Loaded 8 titles
[01:11:58] [Server thread/INFO]: Loaded 69 protected blocks timers
[01:11:59] [Server thread/INFO]: Loaded 1481 custom item names
[01:11:59] [Server thread/INFO]: Loaded 84 custom entity names
[01:11:59] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[01:11:59] [Server thread/INFO]: Loaded 43 custom enchant names
[01:11:59] [Server thread/INFO]: Loaded 46 custom enchant names
[01:11:59] [Server thread/INFO]: Loaded 16 custom color names
[01:11:59] [Server thread/INFO]: Update shops items icon section and use 'ItemStack' instead
[01:11:59] [Server thread/INFO]: Loaded 4 shop items
[01:11:59] [Server thread/INFO]: Loaded 1 quests for Builder
[01:11:59] [Server thread/INFO]: Loaded 1 quests for Weaponsmith
[01:11:59] [Server thread/INFO]: Loaded 1 quests for Miner
[01:11:59] [Server thread/INFO]: Loaded 1 quests for Hunter
[01:11:59] [Server thread/INFO]: Loaded 1 quests for Brewer
[01:11:59] [Server thread/INFO]: Loaded 1 quests for Enchanter
[01:11:59] [Server thread/INFO]: Loaded 1 quests for Explorer
[01:11:59] [Server thread/INFO]: Loaded 1 quests for Woodcutter
[01:11:59] [Server thread/INFO]: Loaded 1 quests for Digger
[01:11:59] [Server thread/INFO]: Loaded 1 quests for Fisherman
[01:11:59] [Server thread/INFO]: Loaded 1 quests for Crafter
[01:11:59] [Server thread/INFO]: Loaded 1 quests for Farmer
[01:11:59] [Server thread/INFO]: Loaded 12 jobs
[01:11:59] [Server thread/INFO]: Loaded 0 boosted items
[01:11:59] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[01:11:59] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[01:11:59] [Server thread/INFO]: Registering listeners...
[01:11:59] [Server thread/INFO]: Listeners registered successfully
[01:11:59] [Server thread/INFO]: Plugin has been enabled successfully.
[01:11:59] [Server thread/INFO]: ------------------------------------
[01:11:59] [Server thread/INFO]: [CombatLogX] Enabling CombatLogX v11.5.0.0.1242
[01:11:59] [Server thread/INFO]: [CombatLogX] Successfully loaded 29 language(s).
[01:11:59] [Server thread/INFO]: [CombatLogX] Detected server as regular SpigotMC/PaperMC (not Folia)
[01:11:59] [Server thread/INFO]: CombatLogX was loaded successfully.
[01:11:59] [Server thread/INFO]: [CombatLogX] Enabling expansions...
[01:11:59] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Action Bar v17.3'...
[01:11:59] [Server thread/INFO]: [CombatLogX]  
[01:11:59] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Boss Bar v17.1'...
[01:11:59] [Server thread/INFO]: [CombatLogX]  
[01:11:59] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Citizens Compatibility v17.9'...
[01:11:59] [Server thread/INFO]: [CombatLogX] [Citizens Compatibility] Successfully found a dependency: Citizens v2.0.35-SNAPSHOT (build 3454)
[01:11:59] [Server thread/INFO]: [CombatLogX] [Citizens Compatibility] Dependency 'Citizens' is not the correct version!
[01:11:59] [Server thread/INFO]: [CombatLogX] Disabling expansion 'Citizens Compatibility v17.9'...
[01:11:59] [Server thread/INFO]: [CombatLogX]  
[01:11:59] [Server thread/INFO]: [CombatLogX] Enabling expansion 'EssentialsX Compatibility v17.2'...
[01:11:59] [Server thread/INFO]: [CombatLogX] [EssentialsX Compatibility] Successfully found a dependency: Essentials v2.21.0-dev+102-fcf6e64
[01:11:59] [Server thread/INFO]: [CombatLogX] [EssentialsX Compatibility] Detected EssentialsX successfully.
[01:11:59] [Server thread/INFO]: [CombatLogX]  
[01:11:59] [Server thread/INFO]: [CombatLogX] Enabling expansion 'LuckPerms Compatibility v17.1'...
[01:11:59] [Server thread/INFO]: [CombatLogX] [LuckPerms Compatibility] Successfully found a dependency: LuckPerms v5.4.131
[01:12:00] [Server thread/INFO]: [CombatLogX]  
[01:12:00] [Server thread/INFO]: [CombatLogX] Enabling expansion 'SuperVanish Compatibility v17.1'...
[01:12:00] [Server thread/WARN]: [CombatLogX] [SuperVanish Compatibility] A dependency is not installed on the server: PremiumVanish
[01:12:00] [Server thread/INFO]: [CombatLogX] [SuperVanish Compatibility] Missing PremiumVanish, checking for regular SuperVanish...
[01:12:00] [Server thread/INFO]: [CombatLogX] [SuperVanish Compatibility] Successfully found a dependency: SuperVanish v6.2.19
[01:12:00] [Server thread/INFO]: [CombatLogX]  
[01:12:00] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Towny Compatibility v17.2'...
[01:12:00] [Server thread/INFO]: [CombatLogX] [Towny Compatibility] Successfully found a dependency: Towny v0.100.3.4
[01:12:00] [Server thread/INFO]: [CombatLogX] [Towny Compatibility] Dependency 'Towny' is not the correct version!
[01:12:00] [Server thread/INFO]: [CombatLogX] [Towny Compatibility] Some dependencies for this expansion are missing!
[01:12:00] [Server thread/INFO]: [CombatLogX] Disabling expansion 'Towny Compatibility v17.2'...
[01:12:00] [Server thread/INFO]: [CombatLogX]  
[01:12:00] [Server thread/INFO]: [CombatLogX] Enabling expansion 'WorldGuard Compatibility v17.2'...
[01:12:00] [Server thread/INFO]: [CombatLogX] [WorldGuard Compatibility] Successfully found a dependency: WorldGuard v7.0.10+d9424b1
[01:12:00] [Server thread/INFO]: [CombatLogX]  
[01:12:00] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Damage Effects v17.0'...
[01:12:00] [Server thread/INFO]: [CombatLogX]  
[01:12:00] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Damage Tagger v17.1'...
[01:12:00] [Server thread/INFO]: [CombatLogX]  
[01:12:00] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Death Effects v17.0'...
[01:12:00] [Server thread/INFO]: [CombatLogX]  
[01:12:00] [Server thread/INFO]: [CombatLogX] Enabling expansion 'End Crystal Helper v17.1'...
[01:12:00] [Server thread/INFO]: [CombatLogX]  
[01:12:00] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Force Field v17.4'...
[01:12:00] [Server thread/INFO]: [CombatLogX] [Force Field] Successfully found a dependency: ProtocolLib v5.3.0-SNAPSHOT-723
[01:12:00] [Server thread/INFO]: [CombatLogX]  
[01:12:00] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Glowing v17.0'...
[01:12:00] [Server thread/INFO]: [CombatLogX]  
[01:12:00] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Logger v17.2'...
[01:12:00] [Server thread/INFO]: [CombatLogX]  
[01:12:00] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Loot Protection v17.1'...
[01:12:00] [Server thread/INFO]: [CombatLogX]  
[01:12:00] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Newbie Helper v17.2'...
[01:12:00] [Server thread/INFO]: [CombatLogX]  
[01:12:00] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Rewards v17.4'...
[01:12:00] [Server thread/INFO]: [CombatLogX] [Rewards] Successfully found a dependency: Vault v1.7.3-b131
[01:12:00] [Server thread/INFO]: [CombatLogX] [Rewards] Successfully hooked into economy handler 'EssentialsX Economy' from plugin 'Essentials v2.21.0-dev+102-fcf6e64'.
[01:12:00] [Server thread/INFO]: [CombatLogX]  
[01:12:00] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Scoreboard v17.1'...
[01:12:00] [Server thread/INFO]: [CombatLogX]  
[01:12:00] [Server thread/INFO]: [CombatLogX] Successfully enabled 17 expansions.
[01:12:00] [Server thread/INFO]: CombatLogX was enabled successfully.
[01:12:00] [Server thread/INFO]: [packetevents] Enabling packetevents v2.4.0
[01:12:00] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[01:12:00] [Server thread/INFO]: [GrimAC] Enabling GrimAC v2.3.65
[01:12:00] [Server thread/INFO]: [GrimAC] Registering singular bukkit event... (PistonEvent)
[01:12:00] [Server thread/INFO]: [GrimAC] Registering packets...
[01:12:00] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.4.0)
[01:12:00] [Server thread/INFO]: [GrimAC] Registering tick schedulers...
[01:12:00] [Server thread/INFO]: [GrimAC] [ACF] Enabled Asynchronous Tab Completion Support!
[01:12:00] [Server thread/INFO]: [JShader] Enabling JShader v1.1
[01:12:00] [Server thread/INFO]: [JShader] Looking for Java Version...
[01:12:00] [Server thread/INFO]: [JShader]     Java Version: 21.0.2
[01:12:00] [Server thread/INFO]: [JShader]     Legacy Java: false
[01:12:00] [Server thread/INFO]: [JShader] Checking if JavaScript engine is already shaded..
[01:12:00] [Server thread/INFO]: [JShader] JavaScript engine shaded.
[01:12:00] [Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v6.7.5
[01:12:00] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using lang-en.yml as language file.
[01:12:00] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 7 section configs from /sections/
[01:12:00] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 7 shop configs from /shops/
[01:12:00] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Updating Shop settings...
[01:12:00] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault
[01:12:00] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 1 economy provider(s) for all 7 shop sections.
[01:12:00] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using minecraft version 1.21...
[01:12:00] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Spawner provider set to DEFAULT in config
[01:12:00] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using plugin default spawners...
[01:12:00] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Debug mode is enabled.
[01:12:00] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Loading all items...
[01:12:00] [Server thread/INFO]: [EconomyShopGUI] [DEBUG]: Found incompatible component tag for current minecraft version: Did you mean 'repair_cost' instead of 'RepairCost'?
Please change the value manually to get rid of this message
[01:12:00] [Server thread/INFO]: [EconomyShopGUI] [WARN]: Item path in config.yml: sold-items-ignored-NBTtags
[01:12:00] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Initialized - Took 253ms to complete
[01:12:00] [Server thread/INFO]: [MythicalRaces] Enabling MythicalRaces v2.5.3-SE-V1
[01:12:00] [Server thread/INFO]: [MythicalRaces] Using local H2 database at jdbc:h2:/home/********/multicraft/servers/server774114/plugins/MythicalRaces/quests;MODE=MySQL
[01:12:01] [Server thread/INFO]: [WorldGuard] Registering session handler src.me.korbsti.mythicalraces.events.worldguard.PlayerEntryHandler
[01:12:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythicalraces [2.5.3-SE-V1]
[01:12:01] [Server thread/INFO]: [GSit] Enabling GSit v1.9.5
[01:12:01] [Server thread/INFO]: [!] Sit → The Plugin was successfully enabled.
[01:12:01] [Server thread/INFO]: [!] Sit → Link with PlaceholderAPI successful!
[01:12:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [1.9.5]
[01:12:01] [Server thread/INFO]: [!] Sit → Link with ViaVersion successful!
[01:12:01] [Server thread/INFO]: [!] Sit → Link with WorldGuard successful!
[01:12:01] [Server thread/INFO]: [TAB] Enabling TAB v4.1.6
[01:12:01] [Server thread/INFO]: [TAB] Loaded NMS hook in 335ms
[01:12:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.1.6]
[01:12:02] [Server thread/INFO]: [TAB] [WARN] ---------------------------------------------------------------------
[01:12:02] [Server thread/INFO]: [TAB] [WARN] You have unlimited nametag mode feature enabled.
[01:12:02] [Server thread/INFO]: [TAB] [WARN] This feature is scheduled for removal in a future TAB release.
[01:12:02] [Server thread/INFO]: [TAB] [WARN] Please considering the alternative solutions available to achieve your desired result.
[01:12:02] [Server thread/INFO]: [TAB] [WARN] No bug reports with this feature will be accepted anymore.
[01:12:02] [Server thread/INFO]: [TAB] [WARN] No support with this feature will be provided anymore.
[01:12:02] [Server thread/INFO]: [TAB] [WARN] See https://gist.github.com/NEZNAMY/f4cabf2fd9251a836b5eb877720dee5c/ for more info.
[01:12:02] [Server thread/INFO]: [TAB] [WARN] ---------------------------------------------------------------------
[01:12:02] [Server thread/INFO]: [TAB] Enabled in 498ms
[01:12:02] [Server thread/INFO]: [ChestSort] Enabling ChestSort v14.1.0
[01:12:02] [Server thread/INFO]: [ChestSort] Hooked into WorldGuard 7.0.10+d9424b1
[01:12:02] [Server thread/INFO]: [ChestSort] Use permissions: true
[01:12:02] [Server thread/INFO]: [ChestSort] Current sorting method: {category},{itemsFirst},{name},{color},{customName}
[01:12:02] [Server thread/INFO]: [ChestSort] Allow automatic chest sorting:true
[01:12:02] [Server thread/INFO]: [ChestSort]   |- Chest sorting enabled by default: false
[01:12:02] [Server thread/INFO]: [ChestSort]   |- Sort time: close
[01:12:02] [Server thread/INFO]: [ChestSort] Allow automatic inventory sorting:true
[01:12:02] [Server thread/INFO]: [ChestSort]   |- Inventory sorting enabled by default: false
[01:12:02] [Server thread/INFO]: [ChestSort] Auto generate category files: true
[01:12:02] [Server thread/INFO]: [ChestSort] Allow hotkeys: true
[01:12:02] [Server thread/INFO]: [ChestSort] Hotkeys enabled by default:
[01:12:02] [Server thread/INFO]: [ChestSort]   |- Middle-Click: true
[01:12:02] [Server thread/INFO]: [ChestSort]   |- Shift-Click: true
[01:12:02] [Server thread/INFO]: [ChestSort]   |- Double-Click: true
[01:12:02] [Server thread/INFO]: [ChestSort]   |- Shift-Right-Click: true
[01:12:02] [Server thread/INFO]: [ChestSort] Allow additional hotkeys: true
[01:12:02] [Server thread/INFO]: [ChestSort] Additional hotkeys enabled by default:
[01:12:02] [Server thread/INFO]: [ChestSort]   |- Left-Click: false
[01:12:02] [Server thread/INFO]: [ChestSort]   |- Right-Click: false
[01:12:02] [Server thread/INFO]: [ChestSort] Check for updates: true
[01:12:02] [Server thread/INFO]: [ChestSort] Check interval: 4 hours (4.0 seconds)
[01:12:02] [Server thread/INFO]: [ChestSort] Categories: 900-weapons (6), 905-common-tools (4), 907-other-tools (6), 909-food (33), 910-valuables (47), 920-armor-and-arrows (9), 930-brewing (18), 950-redstone (23), 960-wood (60), 970-stone (38), 980-plants (50), 981-corals (1)
[01:12:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chestsort [14.1.0]
[01:12:02] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.28.0-SNAPSHOT
[01:12:02] [Server thread/INFO]: [ChunkyBorder] Enabling ChunkyBorder v1.2.13
[01:12:02] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.9.0
[01:12:03] [pool-73-thread-1/INFO]: [DiscordSRV] This build of DiscordSRV is identical to develop. [latest public dev build]
[01:12:03] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[01:12:03] [Server thread/INFO]: [ajLeaderboards] Loaded 7 boards
[01:12:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.9.0]
[01:12:04] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[01:12:04] [Server thread/INFO]: [ajLeaderboards] LuckPerms position context calculator registered!
[01:12:04] [Server thread/WARN]: [ajLeaderboards] Luckperms Contexts are enabled, but only-register-lpc-for has not been configured! Configuring only-register-lpc-for is strongly recommended to improve performance!
[01:12:04] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.9.0 by ajgeiss0702 enabled!
[01:12:04] [Server thread/INFO]: [BlockParticles] Enabling BlockParticles v1.12
[01:12:04] [Server thread/INFO]: [BlockParticles] Loading the config.yml
[01:12:04] [Server thread/INFO]: [BlockParticles] Successfully loaded config.yml
[01:12:04] [Server thread/INFO]: [BlockParticles] Loading the data.yml
[01:12:04] [Server thread/INFO]: [BlockParticles] Successfully loaded data.yml
[01:12:04] [Server thread/INFO]: [BetterBalls] Enabling BetterBalls v0.7-BETA
[01:12:04] [Server thread/INFO]:   ___      _   _           ___       _ _     Running v0.7-BETA (v1_21)
[01:12:04] [Server thread/INFO]:  | _ ) ___| |_| |_ ___ _ _| _ ) __ _| | |___ Server Paper v1.21-DEV-8d91b85 (MC: 1.21)
[01:12:04] [Server thread/INFO]:  | _ \/ -_)  _|  _/ -_) '_| _ \/ _` | | (_-< Discord for support: https://alonsoaliaga.com/discord
[01:12:04] [Server thread/INFO]:  |___/\___|\__|\__\___|_| |___/\__,_|_|_/__/ Thanks for using my plugin ❤!
[01:12:04] [Server thread/INFO]:           Developed by AlonsoAliaga
[01:12:04] [Server thread/INFO]: 
[01:12:04] [Server thread/INFO]: ==============================================================================================
[01:12:04] [Server thread/INFO]: [BetterBalls] You are using a Paper fork (Paper), plugin should work fine!
[01:12:04] [Server thread/INFO]: [BetterBalls] If you have issues, join us on our official support server on alonsoaliaga.com/discord
[01:12:04] [Server thread/INFO]: ==============================================================================================
[01:12:04] [Server thread/INFO]: 
[01:12:04] [Server thread/INFO]: [BetterBalls] BungeeCord action bar available. Hooking..
[01:12:04] [Server thread/INFO]: [BetterBalls] ProtocolLib found! Checking..
[01:12:04] [Server thread/INFO]: [Auto-update] Configuration is up-to-date!
[01:12:04] [Server thread/INFO]: [BetterBalls] Old ItemStack constructor is available!
[01:12:04] [Server thread/INFO]: [BetterBalls] SkullMeta#setOwningPlayer method is available for heads.
[01:12:04] [Server thread/INFO]: [BetterBalls] SkullMeta#setOwner method is available for heads.
[01:12:04] [Server thread/INFO]: [BetterBalls] SkullMeta#setOwnerProfile method is available for heads. Using it for heads..
[01:12:04] [Server thread/INFO]: [BetterBalls] New setUnbreakable method found! Using it..
[01:12:04] [Server thread/INFO]: [BetterBalls] New setOwningPlayer method is available!
[01:12:04] [Server thread/INFO]: [BetterBalls] Old Bukkit#getOfflinePlayer(String name) method is available!
[01:12:04] [Server thread/INFO]: [BetterBalls] New isUnbreakable method found! Using it..
[01:12:04] [Server thread/INFO]: [BetterBalls] Random texture is enabled. Loaded textures: 26!
[01:12:04] [Server thread/INFO]: [BetterBalls] Unique texture is enabled. Loaded textures: 27!
[01:12:04] [Server thread/INFO]: [BetterBalls] Metadata filter is disabled!
[01:12:04] [Server thread/INFO]: [BetterBalls] Enabling Ball recipe!
[01:12:04] [Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.1.5
[01:12:04] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[01:12:05] [Server thread/INFO]: [AuraSkills] Loaded 21 message files
[01:12:05] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[01:12:05] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[01:12:05] [Server thread/INFO]: [AuraSkills] Successfully registered hook DecentHolograms
[01:12:05] [Server thread/INFO]: [AuraSkills] Successfully registered hook LuckPerms
[01:12:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auraskills [2.1.5]
[01:12:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [2.1.5]
[01:12:05] [Server thread/INFO]: [AuraSkills] Successfully registered hook PlaceholderAPI
[01:12:05] [Server thread/INFO]: [AuraSkills] Successfully registered hook ProtocolLib
[01:12:05] [Server thread/INFO]: [AuraSkills] Successfully registered hook Towny
[01:12:05] [Server thread/INFO]: [AuraSkills] Successfully registered hook Vault
[01:12:05] [Server thread/INFO]: [AuraSkills] Successfully registered hook WorldGuard
[01:12:05] [Server thread/INFO]: [AuraSkills] Loaded 126 config options in 79 ms
[01:12:05] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: v1_21_R1! Trying to find NMS support
[01:12:05] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[01:12:05] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AuraSkills' to create a bStats instance!
[01:12:05] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:🌋︱𝙻𝚘𝚐𝚜(1212813299658268784)
[01:12:05] [Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
[01:12:06] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[01:12:06] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling SuperVanish hook
[01:12:06] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[01:12:06] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[01:12:06] [pool-76-thread-1/INFO]: [ajLeaderboards] You are up to date! (2.9.0)
[01:12:06] [Server thread/INFO]: [AuraSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[01:12:06] [Server thread/INFO]: [BlueMap-Towny] Enabling BlueMap-Towny v2.1.1
[01:12:06] [Server thread/INFO]: [CrazyEnchantments] Enabling CrazyEnchantments v2.4
[01:12:06] [Server thread/INFO]: [CrazyEnchantments] Loading the config.yml
[01:12:06] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded config.yml
[01:12:06] [Server thread/INFO]: [CrazyEnchantments] Loading the BlockList.yml
[01:12:06] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded BlockList.yml
[01:12:06] [Server thread/INFO]: [CrazyEnchantments] Loading the HeadMap.yml
[01:12:06] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded HeadMap.yml
[01:12:06] [Server thread/INFO]: [CrazyEnchantments] Loading the Data.yml
[01:12:06] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Data.yml
[01:12:06] [Server thread/INFO]: [CrazyEnchantments] Loading the Enchantments.yml
[01:12:06] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Enchantments.yml
[01:12:06] [Server thread/INFO]: [CrazyEnchantments] Loading the GKitz.yml
[01:12:06] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded GKitz.yml
[01:12:06] [Server thread/INFO]: [CrazyEnchantments] Loading the Messages.yml
[01:12:06] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Messages.yml
[01:12:06] [Server thread/INFO]: [CrazyEnchantments] Loading the Enchantment-Types.yml
[01:12:06] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Enchantment-Types.yml
[01:12:06] [Server thread/INFO]: [CrazyEnchantments] Loading the Tinker.yml
[01:12:06] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Tinker.yml
[01:12:06] [Server thread/INFO]: [CrazyEnchants]: === CrazyEnchantment Hook Status ===
[01:12:06] [Server thread/INFO]: [CrazyEnchants]: WORLDEDIT FOUND
[01:12:06] [Server thread/INFO]: [CrazyEnchants]: SUPERIORSKYBLOCK NOT FOUND
[01:12:06] [Server thread/INFO]: [CrazyEnchants]: WORLDGUARD FOUND
[01:12:06] [Server thread/INFO]: [CrazyEnchants]: TOWNYADVANCED FOUND
[01:12:06] [Server thread/INFO]: [CrazyEnchants]: MCMMO NOT FOUND
[01:12:06] [Server thread/INFO]: [CrazyEnchants]: FACTIONS_UUID NOT FOUND
[01:12:06] [Server thread/INFO]: [CrazyEnchants]: VAULT FOUND
[01:12:06] [Server thread/INFO]: [CrazyEnchants]: GRIEF_PREVENTION NOT FOUND
[01:12:06] [Server thread/INFO]: [CrazyEnchants]: ORAXEN NOT FOUND
[01:12:06] [Server thread/INFO]: [CrazyEnchants]: NO_CHEAT_PLUS NOT FOUND
[01:12:06] [Server thread/INFO]: [CrazyEnchants]: PLOT_SQUARED NOT FOUND
[01:12:07] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: v1_21_R1! Trying to find NMS support
[01:12:07] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[01:12:07] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'CrazyEnchantments' to create a bStats instance!
[01:12:07] [Server thread/INFO]: [CrazyEnchantments] G-Kitz support is now enabled.
[01:12:07] [Server thread/WARN]: [CrazyEnchantments] Created examples because we couldn't find it.
[01:12:07] [Server thread/INFO]: [CrazyVouchers] Enabling CrazyVouchers v3.6.4
[01:12:07] [Server thread/INFO]: [CrazyVouchers] Loading the users.yml
[01:12:07] [Server thread/INFO]: [CrazyVouchers] Successfully loaded users.yml
[01:12:07] [Server thread/INFO]: [CrazyVouchers] Loading custom files.
[01:12:07] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/VIP-Rank.yml.
[01:12:07] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Pro-Rank.yml.
[01:12:07] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/MVP-Rank.yml.
[01:12:07] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Elite-Rank.yml.
[01:12:07] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /vouchers/Immortal-Rank.yml.
[01:12:07] [Server thread/INFO]: [CrazyVouchers] Loaded new custom file: /codes/Starter-Money.yml.
[01:12:07] [Server thread/INFO]: [CrazyVouchers] Finished loading custom files.
[01:12:07] [Server thread/INFO]: [CLV] Enabling CyberLevels v0.5.9
[01:12:07] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[01:12:07] [Server thread/INFO]: [CLV] ╭━━━╮╱╱╱╭╮╱╱╱╱╱╱╭╮╱╱╱╱╱╱╱╱╱╱╱╭╮
[01:12:07] [Server thread/INFO]: [CLV] ┃╭━╮┃╱╱╱┃┃╱╱╱╱╱╱┃┃╱╱╱╱╱╱╱╱╱╱╱┃┃
[01:12:07] [Server thread/INFO]: [CLV] ┃┃╰╋╮╭┫╰━┳━━┳━┫┃╱╱╭━━┳╮╭┳━━┫┃╭━━╮
[01:12:07] [Server thread/INFO]: [CLV] ┃┃╭┫┃┃┃╭╮┃┃━┫╭┫┃╭┫┃━┫╰╯┃┃━┫┃┃━━┫
[01:12:07] [Server thread/INFO]: [CLV] ┃╰━╯┃╰━╯┃╰╯┃┃━┫┃┃╰━╯┃┃━╋╮╭┫┃━┫╰╋━━┃
[01:12:07] [Server thread/INFO]: [CLV] ╰━━━┻━╮╭┻━━┻━━┻╯╰━━━┻━━╯╰╯╰━━┻━┻━━╯
[01:12:07] [Server thread/INFO]: [CLV] ╱╱╱╱╭━╯┃  Authors: Kihsomray, CroaBeast
[01:12:07] [Server thread/INFO]: [CLV] ╱╱╱╱╰━━╯  Version: 0.5.9
[01:12:07] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[01:12:07] [Server thread/INFO]: [CLV] 
[01:12:07] [Server thread/INFO]: [CLV] Loading YAML files...
[01:12:07] [Server thread/INFO]: [CLV] Loaded file config.yml.
[01:12:07] [Server thread/INFO]: [CLV] Loaded file lang.yml.
[01:12:07] [Server thread/INFO]: [CLV] Loaded file levels.yml.
[01:12:07] [Server thread/INFO]: [CLV] Loaded file rewards.yml.
[01:12:07] [Server thread/INFO]: [CLV] Loaded file earn-exp.yml.
[01:12:07] [Server thread/INFO]: [CLV] Loaded file anti-abuse.yml.
[01:12:07] [Server thread/INFO]: [CLV] Loaded 6 files in 37ms.
[01:12:07] [Server thread/INFO]: [CLV] 
[01:12:07] [Server thread/INFO]: [CLV] Loading exp earning events...
[01:12:07] [Server thread/INFO]: [CLV] Loaded 7 exp earn events in 3ms.
[01:12:07] [Server thread/INFO]: [CLV] 
[01:12:07] [Server thread/INFO]: [CLV] Loading anti-abuse...
[01:12:07] [Server thread/INFO]: [CLV] Loaded 2 anti-abuse settings in 1ms.
[01:12:07] [Server thread/INFO]: [CLV] 
[01:12:07] [Server thread/INFO]: [CLV] Loading level data...
[01:12:07] [Server thread/INFO]: [CLV] Loaded 100 level(s) in 1ms.
[01:12:07] [Server thread/INFO]: [CLV] 
[01:12:07] [Server thread/INFO]: [CLV] Loading reward data...
[01:12:07] [Server thread/INFO]: [CLV] Loaded 1 reward(s) in 3ms.
[01:12:07] [Server thread/INFO]: [CLV] 
[01:12:07] [Server thread/INFO]: [CLV] Loading leaderboard data...
[01:12:07] [Server thread/INFO]: [CLV] Loaded 10 players in 3ms.
[01:12:07] [Server thread/INFO]: [CLV] 
[01:12:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: clv [0.5.9]
[01:12:07] [Server thread/INFO]: [CLV] Loaded CLV v0.5.9 in 105ms.
[01:12:07] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[01:12:07] [Server thread/INFO]: [DailyRewards] Enabling DailyRewards v1.4
[01:12:07] [Server thread/INFO]: [DailyRewards] Thank you for using the DailyRewards plugin! If you enjoy using this plugin, please consider making a donation to support the development. You can donate at: https://donate.ashkiano.com
[01:12:08] [Server thread/INFO]: [DailyRewards] This plugin is up to date!
[01:12:08] [Server thread/INFO]: [dDiscordBot] Enabling dDiscordBot v0.7 (build 303)
[01:12:08] [Server thread/INFO]: +> [DenizenDisco...] dDiscordBot loaded! 
[01:12:08] [Server thread/INFO]: +> [JDA] SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". 
[01:12:08] [Server thread/INFO]: +> [JDA] SLF4J: Defaulting to no-operation (NOP) logger implementation 
[01:12:08] [Server thread/INFO]: +> [JDA] SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details. 
[01:12:08] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[01:12:08] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[01:12:09] [Server thread/INFO]: [DeluxeMenus] 35 GUI menus loaded!
[01:12:09] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[01:12:09] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[01:12:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[01:12:09] [Server thread/INFO]: [Depenizen] Enabling Depenizen v2.1.0 (build 863)
[01:12:09] [Server thread/INFO]: +> [Depenizen] Depenizen loading... 
[01:12:09] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'CoreProtect'! 
[01:12:09] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'LuckPerms'! 
[01:12:09] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'WorldEdit'! 
[01:12:09] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'Essentials'! 
[01:12:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: denizen [2.0.0]
[01:12:09] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'PlaceholderAPI'! 
[01:12:09] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'Towny'! 
[01:12:09] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'Jobs'! 
[01:12:09] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'PlayerPoints'! 
[01:12:09] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'WorldGuard'! 
[01:12:09] [Server thread/INFO]:  ERROR!
                 Error Message: Unable to register property 'QuestsPlayerProperties'! 
[01:12:09] [Server thread/INFO]: Additional Error Info: Internal exception was thrown!
[Error Continued] java.lang.NoClassDefFoundError: me/pikamug/quests/player/Quester
[Error Continued]   java.base/java.lang.Class.getDeclaredMethods0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredMethods(Class.java:3578)
[Error Continued]   java.base/java.lang.Class.privateGetPublicMethods(Class.java:3603)
[Error Continued]   java.base/java.lang.Class.getMethods(Class.java:2185)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizencore.objects.properties.PropertyParser.registerProperty(PropertyParser.java:249)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:29)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugin(CraftServer.java:629)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugins(CraftServer.java:578)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:327)
[Error Continued]   net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1219)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)
[Error Continued] Caused by: java.lang.ClassNotFoundException: me.pikamug.quests.player.Quester
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[Error Continued]   java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[Error Continued]   java.base/java.lang.Class.getDeclaredMethods0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredMethods(Class.java:3578)
[Error Continued]   java.base/java.lang.Class.privateGetPublicMethods(Class.java:3603)
[Error Continued]   java.base/java.lang.Class.getMethods(Class.java:2185)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizencore.objects.properties.PropertyParser.registerProperty(PropertyParser.java:249)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:29)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugin(CraftServer.java:629)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugins(CraftServer.java:578)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:327)
[Error Continued]   net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1219)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)

[01:12:09] [Server thread/INFO]: Additional Error Info: Could not register command com.denizenscript.depenizen.bukkit.commands.quests.QuestsCommand, exception follows... 
[01:12:09] [Server thread/INFO]: Additional Error Info: Internal exception was thrown!
[Error Continued] java.lang.NoClassDefFoundError: me/pikamug/quests/player/Quester
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3549)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3754)
[Error Continued]   java.base/java.lang.Class.newInstance(Class.java:706)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizencore.scripts.commands.CommandRegistry.registerCommand(CommandRegistry.java:159)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:30)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugin(CraftServer.java:629)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugins(CraftServer.java:578)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:327)
[Error Continued]   net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1219)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)
[Error Continued] Caused by: java.lang.ClassNotFoundException: me.pikamug.quests.player.Quester
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[Error Continued]   java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3549)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3754)
[Error Continued]   java.base/java.lang.Class.newInstance(Class.java:706)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizencore.scripts.commands.CommandRegistry.registerCommand(CommandRegistry.java:159)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:30)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugin(CraftServer.java:629)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugins(CraftServer.java:578)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:327)
[Error Continued]   net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1219)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)

[01:12:09] [Server thread/INFO]: Additional Error Info: Failed to register script event 'com.denizenscript.depenizen.bukkit.events.quests.PlayerCompletesQuestScriptEvent': 
[01:12:09] [Server thread/INFO]: Additional Error Info: Internal exception was thrown!
[Error Continued] java.lang.NoClassDefFoundError: me/pikamug/quests/events/quester/BukkitQuesterPreCompleteQuestEvent
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3549)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3754)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2442)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:31)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugin(CraftServer.java:629)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugins(CraftServer.java:578)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:327)
[Error Continued]   net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1219)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)
[Error Continued] Caused by: java.lang.ClassNotFoundException: me.pikamug.quests.events.quester.BukkitQuesterPreCompleteQuestEvent
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[Error Continued]   java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3549)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3754)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2442)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:31)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugin(CraftServer.java:629)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugins(CraftServer.java:578)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:327)
[Error Continued]   net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1219)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)

[01:12:09] [Server thread/INFO]: Additional Error Info: Failed to register script event 'com.denizenscript.depenizen.bukkit.events.quests.PlayerFailsQuestScriptEvent': 
[01:12:09] [Server thread/INFO]: Additional Error Info: Internal exception was thrown!
[Error Continued] java.lang.NoClassDefFoundError: me/pikamug/quests/events/quester/BukkitQuesterPreFailQuestEvent
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3549)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3754)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2442)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:32)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugin(CraftServer.java:629)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugins(CraftServer.java:578)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:327)
[Error Continued]   net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1219)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)
[Error Continued] Caused by: java.lang.ClassNotFoundException: me.pikamug.quests.events.quester.BukkitQuesterPreFailQuestEvent
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[Error Continued]   java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3549)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3754)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2442)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:32)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugin(CraftServer.java:629)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugins(CraftServer.java:578)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:327)
[Error Continued]   net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1219)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)

[01:12:09] [Server thread/INFO]: Additional Error Info: Failed to register script event 'com.denizenscript.depenizen.bukkit.events.quests.PlayerStartsQuestScriptEvent': 
[01:12:09] [Server thread/INFO]: Additional Error Info: Internal exception was thrown!
[Error Continued] java.lang.NoClassDefFoundError: me/pikamug/quests/events/quester/BukkitQuesterPreStartQuestEvent
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3549)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3754)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2442)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:33)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugin(CraftServer.java:629)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugins(CraftServer.java:578)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:327)
[Error Continued]   net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1219)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)
[Error Continued] Caused by: java.lang.ClassNotFoundException: me.pikamug.quests.events.quester.BukkitQuesterPreStartQuestEvent
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[Error Continued]   java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3549)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3754)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2442)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:33)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugin(CraftServer.java:629)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugins(CraftServer.java:578)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:327)
[Error Continued]   net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1219)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)

[01:12:09] [Server thread/INFO]: Additional Error Info: Failed to register script event 'com.denizenscript.depenizen.bukkit.events.quests.PlayerQuestStageChangeScriptEvent': 
[01:12:09] [Server thread/INFO]: Additional Error Info: Internal exception was thrown!
[Error Continued] java.lang.NoClassDefFoundError: me/pikamug/quests/events/quester/BukkitQuesterPostChangeStageEvent
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3549)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3754)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2442)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:34)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugin(CraftServer.java:629)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugins(CraftServer.java:578)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:327)
[Error Continued]   net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1219)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)
[Error Continued] Caused by: java.lang.ClassNotFoundException: me.pikamug.quests.events.quester.BukkitQuesterPostChangeStageEvent
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[Error Continued]   java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3549)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3754)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2442)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:34)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.0-b863.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugin(CraftServer.java:629)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugins(CraftServer.java:578)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:327)
[Error Continued]   net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1219)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)

[01:12:09] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'Quests'! 
[01:12:09] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'ViaVersion'! 
[01:12:09] [Server thread/INFO]: +> [Depenizen] Depenizen loaded! 11 plugin bridge(s) loaded (of 42 available) 
[01:12:09] [Server thread/INFO]: [Duels] Enabling Duels v3.5.1
[01:12:10] [Server thread/INFO]: [DuelsOptimised] Failed to hook into CombatLogX: This version of CombatLogX is not supported. Please try upgrading to the latest version.
[01:12:10] [Server thread/INFO]: [DuelsOptimised] Successfully hooked into 'Essentials'!
[01:12:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: duels [3.5.1]
[01:12:10] [Server thread/INFO]: [DuelsOptimised] Successfully hooked into 'PlaceholderAPI'!
[01:12:10] [Server thread/INFO]: [Duels] Using Economy Provider: com.earth2me.essentials.economy.vault.VaultEconomyProvider
[01:12:10] [Server thread/INFO]: [DuelsOptimised] Successfully hooked into 'Vault'!
[01:12:10] [Server thread/INFO]: [DuelsOptimised] Successfully hooked into 'WorldGuard'!
[01:12:10] [Server thread/INFO]: [DuelsOptimised] Registering commands...
[01:12:10] [Server thread/INFO]: [DuelsOptimised] Successfully registered commands [0ms]
[01:12:11] [Server thread/INFO]: [DuelsOptimised] Loaded 5 kit(s).
[01:12:11] [Server thread/INFO]: [DuelsOptimised] Loaded 10 arena(s).
[01:12:11] [Server thread/INFO]: [DuelsOptimised] Loaded 0 queue(s).
[01:12:11] [Server thread/INFO]: [DuelsOptimised] Loaded 0 queue sign(s).
[01:12:11] [Server thread/INFO]: [DuelsOptimised] Successfully enabled Duels in 1551ms.
[01:12:11] [Server thread/INFO]: [EpicRename] Enabling EpicRename v3.12
[01:12:11] [Server thread/INFO]: [EpicRename] [CheckServerVersion] Server running 1.16 or newer. Hex color code support has been enabled.
[01:12:11] [Server thread/INFO]: [EpicRename] Version: 3.12 MC Version: ONE_DOT_SIXTEEN_OR_NEWER
[01:12:11] [Server thread/INFO]: [EpicRename] This plugin is Copyright (c) 2022 Justin "JustBru00" Brubaker. This plugin is licensed under the MPL v2.0. You can view a copy of the MPL v2.0 license at: http://bit.ly/2eMknxx
[01:12:11] [Server thread/INFO]: [EpicRename] Starting to enable plugin...
[01:12:11] [Server thread/INFO]: [!] Rename → Prefix set to: '[!] Rename → '
[01:12:11] [Server thread/INFO]: [!] Rename → Plugin Enabled!
[01:12:11] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+102-fcf6e64
[01:12:11] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[01:12:11] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v5.2.3.1
[01:12:11] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[01:12:11] [Server thread/INFO]: [ExcellentCrates] Read database configuration...
[01:12:11] [Server thread/INFO]: [ExcellentCrates] Using Internal hologram handler.
[01:12:11] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[01:12:11] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@6ebcb4f9
[01:12:11] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[01:12:12] [Server thread/INFO]: [ExcellentCrates] Registered currency: xp
[01:12:12] [Server thread/INFO]: [ExcellentCrates] Registered currency: levels
[01:12:12] [Server thread/INFO]: [ExcellentCrates] Registered currency: money
[01:12:12] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crate openings.
[01:12:12] [Server thread/INFO]: [ExcellentCrates] Loaded 5 crate keys.
[01:12:12] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[01:12:12] [Server thread/WARN]: [nightcore] 'Head_Texture' itemstack option is deprecated and will be removed soon. Please, use 'SkinURL' option instead. Caused by: plugins/ExcellentCrates/previews/default.yml
[01:12:12] [Server thread/WARN]: [nightcore] 'Head_Texture' itemstack option is deprecated and will be removed soon. Please, use 'SkinURL' option instead. Caused by: plugins/ExcellentCrates/previews/default.yml
[01:12:12] [Server thread/WARN]: [nightcore] 'Head_Texture' itemstack option is deprecated and will be removed soon. Please, use 'SkinURL' option instead. Caused by: plugins/ExcellentCrates/previews/default.yml
[01:12:12] [Server thread/INFO]: [ExcellentCrates] Loaded 5 crates.
[01:12:12] [Server thread/WARN]: [nightcore] 'Head_Texture' itemstack option is deprecated and will be removed soon. Please, use 'SkinURL' option instead. Caused by: plugins/ExcellentCrates/milestones.yml
[01:12:12] [Server thread/WARN]: [nightcore] 'Head_Texture' itemstack option is deprecated and will be removed soon. Please, use 'SkinURL' option instead. Caused by: plugins/ExcellentCrates/milestones.yml
[01:12:12] [Server thread/WARN]: [nightcore] 'Head_Texture' itemstack option is deprecated and will be removed soon. Please, use 'SkinURL' option instead. Caused by: plugins/ExcellentCrates/milestones.yml
[01:12:12] [Server thread/WARN]: [nightcore] 'Head_Texture' itemstack option is deprecated and will be removed soon. Please, use 'SkinURL' option instead. Caused by: plugins/ExcellentCrates/milestones.yml
[01:12:12] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[01:12:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [**.**.**.**]
[01:12:12] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 947 ms!
[01:12:12] [Server thread/INFO]: [EZColors] Enabling EZColors v2.2.4
[01:12:13] [Server thread/INFO]: [!] Chat Colors →  Successfully downloaded 12 languages from the cloud!
[01:12:13] [Server thread/INFO]: [!] Chat Colors →  Loading EZColors v2.2.4!
[01:12:13] [Server thread/INFO]: [!] Chat Colors →  Could not find a compatible minecraft version (V1_21_R1)
[01:12:13] [Server thread/INFO]: [!] Chat Colors →  Some things may not work correctly.
[01:12:13] [Server thread/INFO]: [!] Chat Colors →  Using HIGHEST as the Chat Listener.
[01:12:13] [Server thread/INFO]: [!] Chat Colors →  Found PlaceholderAPI. Loading hook!
[01:12:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ezcolors [1.0.0]
[01:12:13] [Server thread/INFO]: [!] Chat Colors →  Successfully Loaded EZColors v2.2.4 in 793ms!
[01:12:13] [Server thread/INFO]: [GraveStonesPlus] Enabling GraveStonesPlus v1.6.7
[01:12:13] [Server thread/INFO]: [GraveStonesPlus] Loaded LuckPerms hook!
[01:12:13] [Server thread/INFO]: [Mclogs] Enabling Mclogs v2.6.3
[01:12:13] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.1.2
[01:12:14] [Server thread/INFO]: [Pl-Hide-Pro] Enabling Pl-Hide-Pro v2.10.2
[01:12:14] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v6.30.0
[01:12:15] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[01:12:15] [Server thread/INFO]: [PlayerWarps] Found 23 config files to load!
[01:12:16] [Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[01:12:16] [Server thread/INFO]: [PlayerWarps] Economy plugin found! (EssentialsX Economy)
[01:12:16] [Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[01:12:16] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[01:12:16] [Server thread/INFO]: [PlayerWarps] Found Essentials Expansion integrating support...
[01:12:16] [Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[01:12:16] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[01:12:16] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[01:12:16] [Server thread/INFO]: [VeinMiner] Enabling VeinMiner v2.2.4
[01:12:16] [Server thread/INFO]: [VeinMiner] Using SQLITE for persistent storage.
[01:12:16] [Server thread/INFO]: [VeinMiner] Loading configuration options to local memory
[01:12:16] [Server thread/INFO]: [VeinMiner] Added 13 aliases.
[01:12:16] [Server thread/INFO]: [VeinMiner] Registered category with id "Axe" holding 6 unique items and 26 unique blocks.
[01:12:16] [Server thread/INFO]: [VeinMiner] Registered category with id "Hoe" holding 6 unique items and 10 unique blocks.
[01:12:16] [Server thread/INFO]: [VeinMiner] Registered category with id "Pickaxe" holding 6 unique items and 23 unique blocks.
[01:12:16] [Server thread/INFO]: [VeinMiner] Registered category with id "Shears" holding 1 unique items and 27 unique blocks.
[01:12:16] [Server thread/INFO]: [VeinMiner] Registered category with id "Shovel" holding 6 unique items and 10 unique blocks.
[01:12:16] [Server thread/WARN]: [VeinMiner] No block list configured for category with id "Hand"! Is this intentional?
[01:12:16] [Server thread/INFO]: [VeinMiner] Registered category with id "Hand" holding 0 unique items and 0 unique blocks.
[01:12:16] [Server thread/INFO]: [VeinMiner] Performing an update check!
[01:12:16] [Server thread/INFO]: [VeinMiner] Anti cheat detected. Enabling anti cheat support for "GrimAC"
[01:12:16] [Server thread/INFO]: [VeinMiner] Registering commands
[01:12:16] [Server thread/INFO]: [VeinMiner] Registering events
[01:12:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: veinminer [2.2.4]
[01:12:16] [Server thread/INFO]: [VeinMiner] Vault found. Attempting to enable economy support...
[01:12:16] [Server thread/INFO]: [VeinMiner] Enabling Plugin Metrics
[01:12:16] [Server thread/INFO]: [VeinMiner] Thanks for enabling Metrics! The anonymous stats are appreciated
[01:12:16] [ForkJoinPool.commonPool-worker-2/INFO]: [VeinMiner] You are on the latest version of VeinMiner.
[01:12:16] [Server thread/INFO]: [RocketPlaceholders] Enabling RocketPlaceholders v2.3.1
[01:12:16] [Server thread/INFO]: [RocketPlaceholders] Loaded 16 placeholders!
[01:12:16] [Server thread/INFO]: [RocketPlaceholders] Hooked into JShader for JavaScript support.
[01:12:16] [Server thread/INFO]: [RocketPlaceholders] PlaceholderAPI hooked!
[01:12:16] [Server thread/INFO]: [RocketPlaceholders] RocketPlaceholders v2.3.1 by Lorenzo0111 is now enabled!
[01:12:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rp [2.3.1]
[01:12:16] [Server thread/INFO]: [StaffChat] Enabling StaffChat v3.4
[01:12:16] [Server thread/INFO]: [StaffChat] Hooked into PlaceholderAPI! But configuration disables it, it is still in beta testing so we do not recommend using it.
[01:12:16] [Server thread/INFO]: [Tebex] Enabling Tebex v2.0.5
[01:12:18] [Server thread/WARN]: [Tebex] Welcome to Tebex! It seems like this is a new setup.
[01:12:18] [Server thread/WARN]: [Tebex] To get started, please use the 'tebex secret <key>' command in the console.
[01:12:18] [Server thread/INFO]: [Sellwand] Enabling Sellwand v1.6.2
[01:12:18] [Server thread/INFO]:  
[01:12:18] [Server thread/INFO]: ====================================
[01:12:18] [Server thread/INFO]: Plugin name: Sellwand
[01:12:18] [Server thread/INFO]: Version: 1.6.2
[01:12:18] [Server thread/INFO]: Core version: 0.7.25
[01:12:18] [Server thread/INFO]: ====================================
[01:12:18] [Server thread/INFO]:  
[01:12:18] [Server thread/INFO]: [Sellwand] Loaded locale "en_US"
[01:12:18] [Server thread/INFO]: [MRPremiumAddons] Enabling MRPremiumAddons v2.5.3-SE-V1
[01:12:18] [Server thread/INFO]: [Infiniteannouncements] Enabling Infiniteannouncements v2.3.1
[01:12:18] [Server thread/INFO]:  
[01:12:18] [Server thread/INFO]: ====================================
[01:12:18] [Server thread/INFO]: Plugin name: Infiniteannouncements
[01:12:18] [Server thread/INFO]: Version: 2.3.1
[01:12:18] [Server thread/INFO]: Core version: 0.7.25
[01:12:18] [Server thread/INFO]: ====================================
[01:12:18] [Server thread/INFO]:  
[01:12:18] [Server thread/INFO]: [Infiniteannouncements] Loaded locale "en_US"
[01:12:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: infiniteannouncements [1.0.0]
[01:12:18] [Server thread/INFO]: [GenBucket] Enabling GenBucket v1.0.7
[01:12:19] [Server thread/INFO]: [GenBucket] Hooked into WorldGuard 7
[01:12:19] [Server thread/INFO]: [GenBucket] Hooked into CoreProtect
[01:12:19] [Server thread/INFO]: [GenBucket] Hooked into Minecraft 1.9+
[01:12:19] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[01:12:19] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[01:12:19] [Server thread/INFO]: [ClearLag] Loading modules...
[01:12:19] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (net.minecraft.server.v1_21_R1.MinecraftServer)
[01:12:19] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[01:12:19] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[01:12:19] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[01:12:19] [Thread-50/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.21]...
[01:12:19] [Server thread/INFO]: [eGlow] Enabling eGlow v3.2.4
[01:12:19] [Server thread/INFO]: Disabling eGlow! Your server version is not compatible! (v1_21_R1)
[01:12:19] [Server thread/INFO]: [eGlow] Disabling eGlow v3.2.4
[01:12:19] [Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
[01:12:19] [Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
[01:12:19] [Server thread/INFO]: [DeluxeTags] 22 tags loaded
[01:12:19] [Thread-50/INFO]: [ClearLag] No updates found!
[01:12:19] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[01:12:19] [Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
[01:12:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxetags [1.8.2-Release]
[01:12:19] [Server thread/INFO]: [DeluxeTags] ----------------------------
[01:12:19] [Server thread/INFO]: [DeluxeTags]      DeluxeTags Updater
[01:12:19] [Server thread/INFO]: [DeluxeTags]  
[01:12:19] [Server thread/INFO]: [DeluxeTags] You are running 1.8.2-Release
[01:12:19] [Server thread/INFO]: [DeluxeTags] The latest version
[01:12:19] [Server thread/INFO]: [DeluxeTags] of DeluxeTags!
[01:12:19] [Server thread/INFO]: [DeluxeTags]  
[01:12:19] [Server thread/INFO]: [DeluxeTags] ----------------------------
[01:12:19] [Server thread/INFO]: [UltraCosmetics] Enabling UltraCosmetics v3.6.0.1-RELEASE
[01:12:19] [Server thread/INFO]: [UltraCosmetics] Checking for update...
[01:12:19] [Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[01:12:19] [Server thread/INFO]: [UltraCosmetics] Thanks for using UltraCosmetics! Version: 3.6.0.1-RELEASE (commit f734193)
[01:12:19] [Server thread/INFO]: [UltraCosmetics] Plugin by Datatags. Original Author: iSach
[01:12:19] [Server thread/INFO]: [UltraCosmetics] Link: https://bit.ly/UltraCosmetics
[01:12:19] [Server thread/INFO]: [UltraCosmetics] 
[01:12:19] [Server thread/WARN]: [UltraCosmetics] This server version is unknown (1.21), but UltraCosmetics will try to continue running.
[01:12:19] [Server thread/INFO]: [UltraCosmetics] Initializing module NEW (expected version: ???)
[01:12:19] [Server thread/INFO]: [UltraCosmetics] Loading NMS-less mode...
[01:12:19] [Server thread/INFO]: [UltraCosmetics] Loaded NMS-less mode
[01:12:22] [Server thread/INFO]: [UltraCosmetics] 
[01:12:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultracosmetics [**.**.**.**-RELEASE]
[01:12:22] [Server thread/INFO]: [UltraCosmetics] Hooked into PlaceholderAPI
[01:12:22] [Server thread/INFO]: [WorldGuard] Registering session handler be.isach.ultracosmetics.worldguard.FlagManager
[01:12:22] [Server thread/INFO]: [UltraCosmetics] 
[01:12:22] [Server thread/INFO]: [UltraCosmetics] WorldGuard custom flags enabled
[01:12:22] [Server thread/INFO]: [UltraCosmetics] 
[01:12:22] [Server thread/INFO]: [UltraCosmetics] Hooked into PlayerPoints for economy.
[01:12:22] [Server thread/INFO]: [UltraCosmetics] 
[01:12:22] [Server thread/INFO]: [UltraCosmetics] 
[01:12:22] [Server thread/INFO]: [UltraCosmetics] Hooked into ChestSort
[01:12:22] [Server thread/INFO]: [UltraCosmetics] 
[01:12:22] [Server thread/INFO]: [UltraCosmetics] Hooked into Towny
[01:12:23] [Server thread/INFO]: [UltraCosmetics] 
[01:12:23] [Server thread/INFO]: [UltraCosmetics] UltraCosmetics successfully finished loading in 3649ms!
[01:12:23] [Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[01:12:23] [Server thread/INFO]: [AdvancedBan] Enabling AdvancedBan v2.3.0
[01:12:23] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[01:12:25] [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)
[01:12:25] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[01:12:25] [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
[]================================[]
 
[01:12:26] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[01:12:26] [Server thread/INFO]: Running delayed init tasks
[01:12:26] [Craft Scheduler Thread - 8 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[01:12:26] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[01:12:26] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[01:12:26] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.TownyFeature] Plugin 'Towny' found. Using it now.
[01:12:26] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'Towny'
[01:12:26] [Craft Scheduler Thread - 8 - BlueMap/INFO]: [BlueMap] Loading...
[01:12:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerpoints [3.2.7]
[01:12:26] [Craft Scheduler Thread - 14 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[01:12:26] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[01:12:26] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[01:12:26] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'CombatLogX'.
[01:12:26] [Craft Scheduler Thread - 9 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[01:12:26] [Craft Scheduler Thread - 11 - GraveStonesPlus/INFO]: [GraveStonesPlus] GraveStonesPlus is up to date! Version: 1.6.7
[01:12:26] [Server thread/INFO]: [CoreProtect] FastAsyncWorldEdit logging successfully initialized.
[01:12:26] [Craft Scheduler Thread - 11 - Vault/INFO]: [Vault] Checking for Updates ... 
[01:12:26] [Craft Scheduler Thread - 11 - Vault/INFO]: [Vault] No new version available
[01:12:26] [Craft Scheduler Thread - 10 - Essentials/INFO]: [Essentials] Fetching version information...
[01:12:26] [Craft Scheduler Thread - 14 - DecentHolograms/INFO]: [DecentHolograms] Loaded 10 holograms!
[01:12:26] [Craft Scheduler Thread - 16 - Duels/INFO]: [DuelsOptimised] No updates were available. You are on the latest version!
[01:12:26] [Server thread/INFO]: WorldGuard detected.
[01:12:26] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (Essentials)
[01:12:26] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (LuckPerms)
[01:12:26] [Craft Scheduler Thread - 6 - UltraCosmetics/INFO]: [UltraCosmetics] You are running the latest version on Spigot.
[01:12:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.28.0-SNAPSHOT]
[01:12:26] [Craft Scheduler Thread - 25 - StaffChat/INFO]: [StaffChat] No update found for Staff Chat.
[01:12:27] [Craft Scheduler Thread - 8 - BlueMap/INFO]: [BlueMap] Loading resources...
[01:12:27] [Server thread/INFO]: [AuraSkills] Loaded 15 skills with 318 total sources
[01:12:27] [Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
[01:12:27] [Craft Scheduler Thread - 7 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[01:12:27] [Craft Scheduler Thread - 7 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'BlueSlimeCore'.
[01:12:27] [Server thread/INFO]: [AuraSkills] Loaded 30 pattern rewards and 0 level rewards
[01:12:27] [Server thread/INFO]: [AuraSkills] Loaded 53 loot entries in 4 pools and 2 tables
[01:12:28] [Craft Scheduler Thread - 8 - BlueMap/INFO]: [BlueMap] Loading textures...
[01:12:28] [Server thread/INFO]: [AuraSkills] Loaded 6 menus
[01:12:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pw [1.0.0]
[01:12:29] [Server thread/INFO]: [Citizens] Loaded 15 NPCs.
[01:12:29] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled partial tag '<server...' with '(Base-Object)', and cached result. 
[01:12:29] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled partial tag '<util...' with '(Base-Object)', and cached result. 
[01:12:29] [Server thread/INFO]: +> [ScriptEvent] Processed 8 script event paths. 
[01:12:29] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[01:12:29] [Server thread/INFO]: +> [Denizen] Denizen fully loaded at: 2024/07/06 01:11:55 
[01:12:29] [Server thread/INFO]: [CombatLogX] Successfully enabled 0 late-load expansions.
[01:12:29] [Server thread/INFO]: [DuelsOptimised] Registering listeners...
[01:12:29] [Server thread/INFO]: [DuelsOptimised] Successfully registered listeners [0ms]
[01:12:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[01:12:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[01:12:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.4]
[01:12:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[01:12:29] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion superbvote due to a missing plugin: SuperbVote
[01:12:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.1]
[01:12:29] [Server thread/INFO]: 5 placeholder hook(s) registered! 2 placeholder hook(s) have an update available.
[01:12:29] [Server thread/INFO]: Done (88.425s)! For help, type "help"
[01:12:29] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2919ms or 58 ticks behind
[01:12:29] [Server thread/INFO]: Timings Reset
[01:12:29] [Server thread/INFO]: [WildTools] Loading providers started...
[01:12:29] [Server thread/INFO]: [WildTools]  - Using EconomyShopGUI as PricesProvider.
[01:12:29] [Server thread/INFO]: [WildTools]  - Couldn't find any factions providers for tnt banks, using default one.
[01:12:29] [Server thread/INFO]: [WildTools] Using Vault as an economy provider.
[01:12:29] [Server thread/INFO]: [WildTools] Loading providers done (Took 15ms)
[01:12:29] [Craft Scheduler Thread - 8 - BlueMap/INFO]: [BlueMap] Baking resources...
[01:12:29] [Craft Scheduler Thread - 8 - BlueMap/INFO]: [BlueMap] Resources loaded.
[01:12:29] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[01:12:29] [Craft Scheduler Thread - 8 - BlueMap/INFO]: [BlueMap] Initializing Storage: 'file' (Type: 'bluemap:file')
[01:12:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: quests [3.15-b636bef]
[01:12:29] [Craft Scheduler Thread - 8 - BlueMap/INFO]: [BlueMap] Loading map 'world'...
[01:12:29] [Server thread/INFO]: [Quests] 39 task types have been registered.
[01:12:29] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[01:12:29] [Server thread/INFO]: [Quests] 7 quests have been registered.
[01:12:29] [Craft Scheduler Thread - 8 - BlueMap/INFO]: [BlueMap] Loading map 'world_the_end'...
[01:12:29] [Craft Scheduler Thread - 8 - BlueMap/INFO]: [BlueMap] Loading map 'world_nether'...
[01:12:29] [Craft Scheduler Thread - 8 - BlueMap/INFO]: [BlueMap] WebServer bound to all network interfaces on port 8171
[01:12:29] [Thread-56/INFO]: [BlueMap] WebServer started.
[01:12:30] [Craft Scheduler Thread - 8 - BlueMap/INFO]: [BlueMap] Loaded!
[01:12:30] [Server thread/INFO]: +> [JDA] SLF4J: Failed to load class "org.slf4j.impl.StaticMDCBinder". 
[01:12:30] [Server thread/INFO]: +> [JDA] SLF4J: Defaulting to no-operation MDCAdapter implementation. 
[01:12:30] [Server thread/INFO]: +> [JDA] SLF4J: See http://www.slf4j.org/codes.html#no_static_mdc_binder for further details. 
[01:12:30] [Craft Scheduler Thread - 10 - BetterBalls/INFO]: [BetterBalls] Checking for updates...
[01:12:30] [Craft Scheduler Thread - 10 - BetterBalls/INFO]: [BetterBalls] Plugin up-to-date! You have the latest version!
[01:12:32] [Craft Scheduler Thread - 10 - Sellwand/INFO]: Hooked EconomyShopGUI as item price. (Config: EconomyShopGUI, Hook name: EconomyShopGUI)
[01:12:32] [Server thread/INFO]:  ERROR in script 'bot_status_update' in queue 'BOT_STATUS_UPDATE_5_RemainingTrusts' while executing command 'discordmessage' in file 'scripts/Status.dsc' on line '54'!
                 Error Message: Woah! An exception has been called with this command! ... Enable debug on the script for more information. 
[01:12:32] [Server thread/INFO]: Additional Error Info: Internal exception was thrown!
[Error Continued] java.lang.NullPointerException: Cannot invoke "com.denizenscript.shaded.net.dv8tion.jda.api.JDA.getGuildChannelById(long)" because "this.client" is null
[Error Continued]   dDiscordBot-0.7-b303.jar//com.denizenscript.ddiscordbot.DiscordConnection.getChannel(DiscordConnection.java:67)
[Error Continued]   dDiscordBot-0.7-b303.jar//com.denizenscript.ddiscordbot.commands.DiscordMessageCommand.autoExecute(DiscordMessageCommand.java:192)
[Error Continued]   com.denizenscript._generated_.Commands.Cmd51_DiscordMessageCommand.execute(GENERATED_CMD_EXEC:3)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizencore.scripts.commands.CommandExecutor.execute(CommandExecutor.java:110)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizencore.scripts.queues.ScriptEngine.revolve(ScriptEngine.java:56)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizencore.scripts.queues.core.InstantQueue.onStart(InstantQueue.java:19)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizencore.scripts.queues.ScriptQueue.start(ScriptQueue.java:334)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizencore.utilities.ScriptUtilities.createAndStartQueue(ScriptUtilities.java:118)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizencore.scripts.commands.queue.RunCommand.execute(RunCommand.java:223)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizencore.scripts.commands.CommandExecutor.execute(CommandExecutor.java:114)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizencore.scripts.queues.ScriptEngine.revolve(ScriptEngine.java:56)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizencore.scripts.queues.core.TimedQueue.revolve(TimedQueue.java:139)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizencore.scripts.queues.core.TimedQueue.tryRevolveOnce(TimedQueue.java:125)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizencore.DenizenCore.tick(DenizenCore.java:321)
[Error Continued]   Denizen-1.3.1-b7051-DEV.jar//com.denizenscript.denizen.Denizen.lambda$onEnable$1(Denizen.java:419)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.scheduler.CraftTask.run(CraftTask.java:101)
[Error Continued]   org.bukkit.craftbukkit.v1_21_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:482)
[Error Continued]   net.minecraft.server.MinecraftServer.c(MinecraftServer.java:1717)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.c(DedicatedServer.java:471)
[Error Continued]   net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1601)
[Error Continued]   net.minecraft.server.MinecraftServer.y(MinecraftServer.java:1308)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)

[01:12:32] [Server thread/INFO]: +> [CommandExecutor] (Attempted: discordmessage id:bot edit:<discord_message[<[message_id]>]> channel:<discord_channel[<[channel]>]> <[status].with[color].as[yellow]>) 
[01:12:32] [Server thread/INFO]: +> [JDA] [pool-94-thread-1] INFO JDA - Login Successful! 
[01:12:32] [Server thread/INFO]: +> [JDA] [JDA MainWS-ReadThread] INFO WebSocketClient - Connected to WebSocket 
[01:12:33] [Server thread/INFO]: +> [JDA] [JDA MainWS-ReadThread] INFO JDA - Finished Loading! 
[01:12:34] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[01:12:34] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[01:12:34] [Server thread/INFO]: [GraveStonesPlus] Successfully hooked into vault economy!
[01:12:34] [Server thread/INFO]: [GraveStonesPlus] Hooked into vault permissions
[01:12:39] [Craft Scheduler Thread - 25 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.16.3
[01:12:42] [Server thread/INFO]: Server Plugins (77):
[01:12:42] [Server thread/INFO]: Paper Plugins:
[01:12:42] [Server thread/INFO]:  - EconomyShopGUI
[01:12:42] [Server thread/INFO]: Bukkit Plugins:
[01:12:42] [Server thread/INFO]:  - AdvancedBan, ajLeaderboards, AuraSkills, BetterBalls, BlockParticles, BlueMap, BlueMap-Towny, BlueSlimeCore, ChestSort, Chunky
[01:12:42] [Server thread/INFO]:  ChunkyBorder, Citizens, ClearLag, CMILib, CombatLogX, CoreProtect, CrazyEnchantments, CrazyVouchers, CyberLevels, DailyRewards
[01:12:42] [Server thread/INFO]:  dDiscordBot, DecentHolograms, DeluxeMenus, DeluxeTags, Denizen, Depenizen, DiscordSRV, Duels, eGlow, EpicRename
[01:12:42] [Server thread/INFO]:  Essentials, EssentialsSpawn, ExcellentCrates, EZColors, FastAsyncWorldEdit, floodgate, GenBucket, GraveStonesPlus, GrimAC, GSit
[01:12:42] [Server thread/INFO]:  Infiniteannouncements, Jobs, JShader, LuckPerms, Mclogs, MiniMOTD, MRPremiumAddons, MythicalRaces, NBTAPI, NexEngine
[01:12:42] [Server thread/INFO]:  nightcore, packetevents, Pl-Hide-Pro, PlaceholderAPI, PlayerPoints, PlayerWarps, PlugManX, ProtocolLib, Quests, RocketPlaceholders
[01:12:42] [Server thread/INFO]:  Sellwand, Skript, SpawnerMeta, StaffChat, SuperVanish, TAB, Tebex, Towny, UltraCosmetics, Vault
[01:12:42] [Server thread/INFO]:  VeinMiner, ViaBackwards, ViaVersion, VotingPlugin, WildTools, WorldGuard