Paste #133637: citizens

Date: 2025/05/28 21:36:15 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


[21:11:55] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.7+6-LTS; Eclipse Adoptium Temurin-21.0.7+6) on Windows 10 10.0 (amd64)
[21:11:55] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.1-133-ver/1.21.1@3cb8529 (2025-03-28T16:14:36Z) for Minecraft 1.21.1
[21:11:56] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[21:12:00] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins\Citizens-2.0.34-b3430.jar'...
[21:12:04] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins\Citizens-2.0.34-b3430.jar' in 3888ms.
[21:12:04] [ServerMain/INFO]: [PluginInitializerManager] Initialized 67 plugins
[21:12:04] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (1):
 - Minepacks (2.4.31.7-T20250421160243)
[21:12:04] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (66):
 - AdvancedBan (2.3.0), AuraSkills (2.2.2), Badword (1.0), BestTools (2.2.3), BetterRTP (3.6.11), BetterTeams (4.9.4), BlockParticles (1.12), BlueSlimeCore (2.9.4.377), CMILib (1.5.0.9), ChatEmojis (2.4.1), ChatGames (1.2.1), Citizens (2.0.34-SNAPSHOT (build 3430)), Codex (1.16.2), CoinsEngine (2.3.4), CombatLogX (11.4.0.1.1193), CrazyEnvoys (1.6), CrazyVouchers (3.8.3), DecentHolograms (2.8.11), DeluxeMenus (1.14.1-DEV-184), DeluxeTags (1.8.2-Release), DiceFurniture (3.9.2), EasyCommandBlocker (1.9.2), Essentials (2.21.0-dev+111-b54c8c1), EssentialsSpawn (2.21.0-dev+111-b54c8c1), ExcellentCrates (5.3.1), ExcellentEnchants (4.2.1), FastAsyncWorldEdit (2.11.2-SNAPSHOT-888;75fb1cb), ForcePack (1.3.5), FurnitureLib (3.2.1), Infiniteannouncements (2.3.1), InteractiveChat (4.2.12.0), Jobs (5.2.4.0), KoTH (2.0.8), LPC (3.6.0), LifestealCore (2024.12-c), Lottery (1.4.9), LuckPerms (5.4.89), Multiverse-Core (4.3.1-b861), ODailyQuests (2.3.0-SNAPSHOT-16), PermSk (2.0.0), PlaceholderAPI (2.11.6), PlayerAuctions (1.31.1), PlayerWarps (7.5.3), ProtocolLib (5.4.0-SNAPSHOT-748), Quests (3.15-ed67edd), SetModelData (1.0.0), SkBee (3.6.0), Skript (2.9.0), SpawnerMeta (24.5), SuperbVote (0.5.5), TAB (5.2.1), Themis (0.16.0), UltraCosmetics (3.11.2-RELEASE), Vault (1.7.3-b131), ViaBackwards (5.3.2), ViaVersion (5.3.2), Votifier (2.7.3), WorldGuard (7.0.11-beta1+a801a9d), WorldGuardExtraFlags (4.2.4-SNAPSHOT), ajLeaderboards (2.9.0), nightcore (2.6.3), packetevents (2.8.0), skRayFall (1.9.28), skUtilities (0.9.2), skript-placeholders (1.6.0), sleep-most (5.5.0)
[21:12:13] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[21:12:17] [ServerMain/INFO]: Loaded 1290 recipes
[21:12:18] [ServerMain/INFO]: Loaded 1399 advancements
[21:12:18] [Server thread/INFO]: Starting minecraft server version 1.21.1
[21:12:18] [Server thread/INFO]: Loading properties
[21:12:18] [Server thread/INFO]: This server is running Paper version 1.21.1-133-ver/1.21.1@3cb8529 (2025-03-28T16:14:36Z) (Implementing API version 1.21.1-R0.1-SNAPSHOT)
[21:12:20] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[21:12:20] [Server thread/INFO]: Server Ping Player Sample Count: 12
[21:12:20] [Server thread/INFO]: Using 4 threads for Netty based IO
[21:12:20] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 2 worker threads, and population gen parallelism of 2 threads
[21:12:21] [Server thread/INFO]: Default game type: SURVIVAL
[21:12:21] [Server thread/INFO]: Generating keypair
[21:12:21] [Server thread/INFO]: Starting Minecraft server on *:25565
[21:12:21] [Server thread/INFO]: Using default channel type
[21:12:21] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[21:12:21] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[21:12:22] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loading 2 libraries... please wait
[21:12:23] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library C:\Users\HP INTEL\Documents\setups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\com\zaxxer\HikariCP\5.0.1\HikariCP-5.0.1.jar
[21:12:23] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library C:\Users\HP INTEL\Documents\setups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\org\slf4j\slf4j-api\2.0.0-alpha1\slf4j-api-2.0.0-alpha1.jar
[21:12:23] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library C:\Users\HP INTEL\Documents\setups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\it\unimi\dsi\fastutil-core\8.5.13\fastutil-core-8.5.13.jar
[21:12:24] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loading 2 libraries... please wait
[21:12:24] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library C:\Users\HP INTEL\Documents\setups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\com\github\cryptomorin\XSeries\13.3.0\XSeries-13.3.0.jar
[21:12:24] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library C:\Users\HP INTEL\Documents\setups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\com\zaxxer\HikariCP\6.3.0\HikariCP-6.3.0.jar
[21:12:24] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library C:\Users\HP INTEL\Documents\setups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\org\slf4j\slf4j-api\1.7.36\slf4j-api-1.7.36.jar
[21:12:24] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[21:12:38] [Server thread/WARN]: Legacy plugin skUtilities v0.9.2 does not specify an api-version.
[21:12:38] [Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loading 2 libraries... please wait
[21:12:38] [Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loaded library C:\Users\HP INTEL\Documents\setups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\com\zaxxer\HikariCP\5.0.1\HikariCP-5.0.1.jar
[21:12:38] [Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loaded library C:\Users\HP INTEL\Documents\setups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\org\slf4j\slf4j-api\2.0.0-alpha1\slf4j-api-2.0.0-alpha1.jar
[21:12:38] [Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loaded library C:\Users\HP INTEL\Documents\setups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\1.21.1-PremiumLifestealSetupV3.5.1-NitroSetups\server\libraries\com\h2database\h2\2.1.214\h2-2.1.214.jar
[21:12:38] [Server thread/INFO]: [Minepacks] PCGF-PluginLib not installed. Switching to standalone mode!
[21:12:39] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.3.2
[21:12:39] [Server thread/INFO]: [ViaVersion] ViaVersion 5.3.2 is now loaded. Registering protocol transformers and injecting...
[21:12:40] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[21:12:40] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[21:12:41] [Server thread/INFO]: [ViaBackwards] Loading translations...
[21:12:41] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[21:12:41] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.89
[21:12:42] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[21:12:42] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.11.2-SNAPSHOT-888;75fb1cb
[21:12:44] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@4c3208cc]
[21:12:44] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0-SNAPSHOT-748
[21:12:44] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.11-beta1+a801a9d
[21:12:44] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[21:12:44] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.3.2
[21:12:44] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.6.3
[21:12:44] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.34-SNAPSHOT (build 3430)
[21:12:44] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+111-b54c8c1
[21:12:44] [Server thread/INFO]: [Blue Slime Core] Loading server plugin BlueSlimeCore v2.9.4.377
[21:12:44] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.8.0
[21:12:46] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[21:12:46] [Server thread/INFO]: [CoinsEngine] Loading server plugin CoinsEngine v2.3.4
[21:12:46] [Server thread/INFO]: [PlayerAuctions] Loading server plugin PlayerAuctions v1.31.1
[21:12:50] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[21:12:50] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.9.0
[21:12:50] [Server thread/INFO]: [CombatLogX] Loading server plugin CombatLogX v11.4.0.1.1193
[21:12:50] [Server thread/INFO]: [CombatLogX] Configuration version is recent, no major changes necessary.
[21:12:50] [Server thread/INFO]: [CombatLogX] Loading expansions...
[21:12:50] [Server thread/INFO]: [CombatLogX] There were no expansions to load.
[21:12:50] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.11
[21:12:50] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.0.9
[21:12:50] [Server thread/INFO]: [ExcellentEnchants] Loading server plugin ExcellentEnchants v4.2.1
[21:12:50] [Server thread/INFO]: [FurnitureLib] Loading server plugin FurnitureLib v3.2.1
[21:12:50] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.4-SNAPSHOT
[21:12:50] [Server thread/INFO]: [UltraCosmetics] Loading server plugin UltraCosmetics v3.11.2-RELEASE
[21:12:50] [Server thread/INFO]: [Themis] Loading server plugin Themis v0.16.0
[21:12:50] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.2.1
[21:12:50] [Server thread/INFO]: [SuperbVote] Loading server plugin SuperbVote v0.5.5
[21:12:50] [Server thread/INFO]: [SpawnerMeta] Loading server plugin SpawnerMeta v24.5
[21:12:50] [Server thread/INFO]: [sleep-most] Loading server plugin sleep-most v5.5.0
[21:12:50] [Server thread/INFO]: [skUtilities] Loading server plugin skUtilities v0.9.2
[21:12:50] [Server thread/INFO]: [skript-placeholders] Loading server plugin skript-placeholders v1.6.0
[21:12:50] [Server thread/INFO]: [skRayFall] Loading server plugin skRayFall v1.9.28
[21:12:50] [Server thread/INFO]: [SkBee] Loading server plugin SkBee v3.6.0
[21:12:50] [Server thread/INFO]: [SetModelData] Loading server plugin SetModelData v1.0.0
[21:12:50] [Server thread/INFO]: [Quests] Loading server plugin Quests v3.15-ed67edd
[21:12:50] [Server thread/INFO]: [PlayerWarps] Loading server plugin PlayerWarps v7.5.3
[21:12:51] [Server thread/INFO]: [PermSk] Loading server plugin PermSk v2.0.0
[21:12:51] [Server thread/INFO]: [O'DailyQuests] Loading server plugin ODailyQuests v2.3.0-SNAPSHOT-16
[21:12:51] [Server thread/INFO]: [Minepacks] Loading server plugin Minepacks v2.4.31.7-T20250421160243
[21:12:51] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[21:12:51] [Server thread/INFO]: [Lottery] Loading server plugin Lottery v1.4.9
[21:12:51] [Server thread/INFO]: [LifestealCore] Loading server plugin LifestealCore v2024.12-c
[21:12:51] [Server thread/INFO]: [KoTH] Loading server plugin KoTH v2.0.8
[21:12:51] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.4.0
[21:12:51] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.12.0
[21:12:51] [Server thread/INFO]: [Infiniteannouncements] Loading server plugin Infiniteannouncements v2.3.1
[21:12:51] [Server thread/INFO]: [ForcePack] Loading server plugin ForcePack v1.3.5
[21:12:51] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v5.3.1
[21:12:51] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+111-b54c8c1
[21:12:51] [Server thread/INFO]: [EasyCommandBlocker] Loading server plugin EasyCommandBlocker v1.9.2
[21:12:51] [Server thread/INFO]: [DiceFurniture] Loading server plugin DiceFurniture v3.9.2
[21:12:51] [Server thread/INFO]: [DeluxeTags] Loading server plugin DeluxeTags v1.8.2-Release
[21:12:51] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.1-DEV-184
[21:12:51] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[21:12:51] [Server thread/INFO]: [CrazyVouchers] Loading server plugin CrazyVouchers v3.8.3
[21:12:51] [Server thread/INFO]: [CrazyEnvoys] Loading server plugin CrazyEnvoys v1.6
[21:12:51] [Server thread/INFO]: [Codex] Loading server plugin Codex v1.16.2
[21:12:51] [Server thread/INFO]: [ChatGames] Loading server plugin ChatGames v1.2.1
[21:12:51] [Server thread/INFO]: [ChatEmojis] Loading server plugin ChatEmojis v2.4.1
[21:12:51] [Server thread/INFO]: [BlockParticles] Loading server plugin BlockParticles v1.12
[21:12:51] [Server thread/INFO]: [BetterTeams] Loading server plugin BetterTeams v4.9.4
[21:12:51] [Server thread/INFO]: [BetterTeams] Checking if the file config.yml is up to date
[21:12:51] [Server thread/INFO]: [BetterTeams] File is up to date
[21:12:51] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.11
[21:12:51] [Server thread/INFO]: [BestTools] Loading server plugin BestTools v2.2.3
[21:12:51] [Server thread/INFO]: [Badword] Loading server plugin Badword v1.0
[21:12:51] [Server thread/INFO]: Loading badwords
[21:12:51] [Server thread/INFO]: [AuraSkills] Loading server plugin AuraSkills v2.2.2
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.9.0
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okhttp
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okhttp
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio-jvm
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio-jvm
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk8
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk8
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-common
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-common
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for annotations
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Checksum matched for annotations
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk7
[21:12:51] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk7
[21:12:51] [Server thread/INFO]: [AdvancedBan] Loading server plugin AdvancedBan v2.3.0
[21:12:51] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[21:12:51] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.89
[21:12:53] [Server thread/INFO]:         __    
[21:12:53] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.89
[21:12:53] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[21:12:53] [Server thread/INFO]: 
[21:12:53] [Server thread/INFO]: [LuckPerms] Loading configuration...
[21:12:54] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[21:12:55] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[21:12:55] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[21:12:56] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 4355ms)
[21:12:56] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[21:12:56] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[21:12:56] [Server thread/INFO]: [Vault] [Permission] GroupManager found: Waiting
[21:12:56] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[21:12:56] [Server thread/INFO]: [Vault] [Chat] GroupManager found: Waiting
[21:12:56] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[21:12:56] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[21:12:56] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.11.2-SNAPSHOT-888;75fb1cb
[21:12:56] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[21:12:56] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[21:12:56] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[21:12:56] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[21:12:57] [Server thread/WARN]: 
**********************************************
** This FastAsyncWorldEdit version does not fully support your version of Bukkit.
** You can fix this by:
** - Updating your server version (Check /version to see how many versions you are behind)
** - Updating FAWE
**
** When working with blocks or undoing, chests will be empty, signs
** will be blank, and so on. There will be no support for entity
** and block property-related functions.
**********************************************

[21:12:58] [Server thread/ERROR]: Unknown block: minecraft:grass. Neither the DataFixer nor defaulting worked to recognize this block.
[21:12:58] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=0]. Neither the DataFixer nor defaulting worked to recognize this block.
[21:12:58] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=1]. Neither the DataFixer nor defaulting worked to recognize this block.
[21:12:58] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=2]. Neither the DataFixer nor defaulting worked to recognize this block.
[21:12:58] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=3]. Neither the DataFixer nor defaulting worked to recognize this block.
[21:12:58] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=4]. Neither the DataFixer nor defaulting worked to recognize this block.
[21:12:58] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=5]. Neither the DataFixer nor defaulting worked to recognize this block.
[21:12:58] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=6]. Neither the DataFixer nor defaulting worked to recognize this block.
[21:12:58] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=7]. Neither the DataFixer nor defaulting worked to recognize this block.
[21:12:58] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=8]. Neither the DataFixer nor defaulting worked to recognize this block.
[21:12:58] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=9]. Neither the DataFixer nor defaulting worked to recognize this block.
[21:12:58] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=10]. Neither the DataFixer nor defaulting worked to recognize this block.
[21:12:58] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=11]. Neither the DataFixer nor defaulting worked to recognize this block.
[21:12:58] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=12]. Neither the DataFixer nor defaulting worked to recognize this block.
[21:12:58] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=13]. Neither the DataFixer nor defaulting worked to recognize this block.
[21:12:58] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=14]. Neither the DataFixer nor defaulting worked to recognize this block.
[21:12:58] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=15]. Neither the DataFixer nor defaulting worked to recognize this block.
[21:12:58] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=north]. Neither the DataFixer nor defaulting worked to recognize this block.
[21:12:58] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=south]. Neither the DataFixer nor defaulting worked to recognize this block.
[21:12:58] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=west]. Neither the DataFixer nor defaulting worked to recognize this block.
[21:12:58] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=east]. Neither the DataFixer nor defaulting worked to recognize this block.
[21:12:58] [Server thread/ERROR]: Unknown block: minecraft:grass_path. Neither the DataFixer nor defaulting worked to recognize this block.
[21:12:58] [Server thread/ERROR]: Unknown item: minecraft:grass. Neither the DataFixer nor defaulting worked to recognize this item.
[21:12:58] [Server thread/ERROR]: Unknown item: minecraft:grass_path. Neither the DataFixer nor defaulting worked to recognize this item.
[21:12:58] [Server thread/ERROR]: Unknown item: minecraft:sign. Neither the DataFixer nor defaulting worked to recognize this item.
[21:12:58] [Server thread/ERROR]: Unknown item: minecraft:rose_red. Neither the DataFixer nor defaulting worked to recognize this item.
[21:12:58] [Server thread/ERROR]: Unknown item: minecraft:cactus_green. Neither the DataFixer nor defaulting worked to recognize this item.
[21:12:58] [Server thread/ERROR]: Unknown item: minecraft:dandelion_yellow. Neither the DataFixer nor defaulting worked to recognize this item.
[21:12:58] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0-SNAPSHOT-748
[21:12:58] [Server thread/INFO]: [nightcore] Enabling nightcore v2.6.3
[21:12:58] [Server thread/WARN]: [nightcore] Locale file for 'da' language not found. Using default 'en' locale.
[21:12:58] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[21:12:58] [Server thread/INFO]: [nightcore] Found economy provider: EssentialsX Economy
[21:12:58] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[21:12:58] [Server thread/INFO]: [nightcore] Server Version: 1.21 ✔
[21:12:58] [Server thread/INFO]: [nightcore] Entity Id Counter: OK ✔
[21:12:58] [Server thread/INFO]: [nightcore] Item NBT Compress: OK ✔
[21:12:58] [Server thread/WARN]: [nightcore] ========== WARNING ==========
[21:12:58] [Server thread/WARN]: [nightcore] Enabled Mojang's DataFixer for ItemStacks to update/fix NBT structure from <= 1.20.4 to 1.20.6+
[21:12:58] [Server thread/WARN]: [nightcore] This may significally affect server's performance.
[21:12:58] [Server thread/WARN]: [nightcore] Please, re-save all configuration(s) using in-game GUI editor(s) (if there is any).
[21:12:58] [Server thread/WARN]: [nightcore] Then disable this 'feature' in the config.yml of nightcore.
[21:12:58] [Server thread/INFO]: [nightcore] Plugin loaded in 334 ms!
[21:12:58] [Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.9.4.377
[21:12:58] [Server thread/INFO]: [Blue Slime Core] Successfully loaded 2 language(s).
[21:12:58] [Server thread/INFO]: [Blue Slime Core] Detected server as regular SpigotMC/PaperMC (not Folia)
[21:12:59] [Server thread/INFO]: [CoinsEngine] Enabling CoinsEngine v2.3.4
[21:12:59] [Server thread/INFO]: [CoinsEngine] Powered by nightcore
[21:12:59] [Server thread/INFO]: [CoinsEngine] Read database configuration...
[21:12:59] [Server thread/WARN]: [CoinsEngine] Locale file for 'da' language not found. Using default 'en' locale.
[21:12:59] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[21:12:59] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 221 build(s) out of date.
You are running build 888, the latest version is build 1109.
Update at https://www.spigotmc.org/resources/13932/
[21:12:59] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@131ebb83
[21:12:59] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[21:12:59] [Server thread/INFO]: [CoinsEngine] Currency registered: 'coins'!
[21:12:59] [Server thread/INFO]: [CoinsEngine] Currency registered: 'levelxp'!
[21:12:59] [Server thread/INFO]: [CoinsEngine] Detected plugin available for data migration: Vault
[21:12:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: coinsengine [2.3.4]
[21:12:59] [Server thread/INFO]: [CoinsEngine] Plugin loaded in 557 ms!
[21:12:59] [Server thread/INFO]: [ExcellentEnchants] Enabling ExcellentEnchants v4.2.1
[21:12:59] [Server thread/INFO]: [ExcellentEnchants] Powered by nightcore
[21:12:59] [Server thread/WARN]: [ExcellentEnchants] Locale file for 'da' language not found. Using default 'en' locale.
[21:12:59] [Server thread/INFO]: [ExcellentEnchants] Loaded 4 rarities.
[21:12:59] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: auto_reel
[21:12:59] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: double_catch
[21:12:59] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: seasoned_angler
[21:12:59] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: survivalist
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_drowned
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: river_master
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: blast_mining
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_breaking
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_misfortune
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: divine_touch
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: haste
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: lucky_miner
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: replanter
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: silk_chest
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: smelter
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: telekinesis
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: treasure_hunter
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: tunnel
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: veinminer
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bane_of_netherspawn
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: blindness
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: confusion
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cutter
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_death
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: decapitator
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: double_strike
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: exhaust
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: exp_hunter
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ice_aspect
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: infernus
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: nimble
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: paralyze
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cure
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rage
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rocket
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: scavenger
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: surprise
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: swiper
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: temper
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: thrifty
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: thunder
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: vampire
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: venom
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: village_defender
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: wither
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: aquaman
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bunny_hop
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cold_steel
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ice_shield
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: elemental_protection
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: fire_shield
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: flame_walker
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: hardened
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: night_vision
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: regrowth
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: saturation
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: self_destruction
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rebound
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: stopping_force
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: sonic
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bomber
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: confusing_arrows
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: dragonfire_arrows
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: electrified_arrows
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ender_bow
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: explosive_arrows
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: lingering
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: flare
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ghast
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: hover
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: sniper
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: poisoned_arrows
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: vampiric_arrows
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: withered_arrows
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: darkness_arrows
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: darkness_cloak
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_fragility
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_mediocrity
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: soulbound
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: restore
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Enchantments Registered: 80
[21:13:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentenchants [4.2.1]
[21:13:00] [Server thread/INFO]: [ExcellentEnchants] Plugin loaded in 809 ms!
[21:13:00] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[21:13:00] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[21:13:00] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[21:13:00] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[21:13:00] [Server thread/INFO]: Preparing level "playworld"
[21:13:00] [Server thread/WARN]: Failed to load biomes via adapter (not present). Will load via bukkit
[21:13:00] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[21:13:02] [Server thread/INFO]: Time elapsed: 1828 ms
[21:13:02] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.3.2
[21:13:02] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21-1.21.1 (767)
[21:13:02] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.11-beta1+a801a9d
[21:13:03] [Server thread/INFO]: [WorldGuard] (playworld) TNT ignition is PERMITTED.
[21:13:03] [Server thread/INFO]: [WorldGuard] (playworld) Lighters are PERMITTED.
[21:13:03] [Server thread/INFO]: [WorldGuard] (playworld) Lava fire is PERMITTED.
[21:13:03] [Server thread/INFO]: [WorldGuard] (playworld) Fire spread is UNRESTRICTED.
[21:13:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'playworld'
[21:13:03] [Server thread/INFO]: [WorldGuard] Loading region data...
[21:13:03] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[21:13:04] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[21:13:04] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.3.2
[21:13:04] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.34-SNAPSHOT (build 3430)
[21:13:04] [Server thread/INFO]: [Citizens] Loading external libraries
[21:13:15] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.34-SNAPSHOT (build 3430) (Is it up to date?)
java.lang.RuntimeException: Failed to download library 'net.kyori:adventure-platform-bukkit:4.3.3-SNAPSHOT'
    at Citizens-2.0.34-b3430.jar/clib.net.byteflux.libby.LibraryManager.downloadLibrary(LibraryManager.java:382) ~[Citizens-2.0.34-b3430.jar:?]
    at Citizens-2.0.34-b3430.jar/clib.net.byteflux.libby.LibraryManager.loadLibrary(LibraryManager.java:442) ~[Citizens-2.0.34-b3430.jar:?]
    at Citizens-2.0.34-b3430.jar/net.citizensnpcs.Citizens.loadMavenLibraries(Citizens.java:305) ~[Citizens-2.0.34-b3430.jar:?]
    at Citizens-2.0.34-b3430.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:375) ~[Citizens-2.0.34-b3430.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-133-3cb8529]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[21:13:15] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.34-SNAPSHOT (build 3430)
[21:13:15] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+111-b54c8c1
[21:13:16] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[21:13:16] [Server thread/INFO]: [Essentials] No kits found to migrate.
[21:13:17] [Server thread/INFO]: [Essentials] Loaded 42679 items from items.json.
[21:13:17] [Server thread/INFO]: [Essentials] Using locale en
[21:13:17] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[21:13:19] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[21:13:19] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[21:13:19] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[21:13:19] [Server thread/INFO]: [packetevents] Enabling packetevents v2.8.0
[21:13:19] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[21:13:19] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[21:13:19] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[21:13:19] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[21:13:20] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.8.0)
[21:13:20] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: playworld_nether
[21:13:20] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[21:13:20] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[21:13:22] [Server thread/INFO]: Time elapsed: 1218 ms
[21:13:22] [Server thread/INFO]: [WorldGuard] (spawn) TNT ignition is PERMITTED.
[21:13:22] [Server thread/INFO]: [WorldGuard] (spawn) Lighters are PERMITTED.
[21:13:22] [Server thread/INFO]: [WorldGuard] (spawn) Lava fire is PERMITTED.
[21:13:22] [Server thread/INFO]: [WorldGuard] (spawn) Fire spread is UNRESTRICTED.
[21:13:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawn'
[21:13:22] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: playworld_the_end
[21:13:22] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[21:13:22] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: arena
[21:13:22] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[21:13:22] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: mining
[21:13:22] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[21:13:22] [Server thread/INFO]: [Multiverse-Core] 2 - World(s) loaded.
[21:13:22] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[21:13:22] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[21:13:22] [Server thread/INFO]: [PlayerAuctions] Enabling PlayerAuctions v1.31.1
[21:13:22] [Server thread/INFO]: [PlayerAuctions] Vault found, now enabling PlayerAuctions...
[21:13:24] [Server thread/INFO]: [PlayerAuctions] Found 21 config files to load!
[21:13:28] [Server thread/INFO]: [PlayerAuctions] There has been an issue while trying to get the latest version for protocollibexpansion.jar: Server returned HTTP response code: 400 for URL: https://api.olziedev.com/resources/expansionVersion?resource_name=playerauctions&expansion_name=protocollibexpansion&plugin_version=1.31.1. Turn on debug mode in the config.yml for the stack trace.
[21:13:29] [Server thread/INFO]: [PlayerAuctions] There has been an issue while trying to get the latest version for packeteventsexpansion.jar: Server returned HTTP response code: 400 for URL: https://api.olziedev.com/resources/expansionVersion?resource_name=playerauctions&expansion_name=packeteventsexpansion&plugin_version=1.31.1. Turn on debug mode in the config.yml for the stack trace.
[21:13:33] [Server thread/INFO]: [PlayerAuctions] Permissions plugin found! (LuckPerms)
[21:13:33] [Server thread/INFO]: [PlayerAuctions] Economy plugin found! (EssentialsX Economy)
[21:13:33] [Server thread/INFO]: [PlayerAuctions] Chat plugin found! (LuckPerms)
[21:13:33] [Server thread/INFO]: [PlayerAuctions] Found PlaceholderAPI integrating support...
[21:13:33] [Server thread/INFO]: [PlayerAuctions] Found Product Converter integrating support...
[21:13:33] [Server thread/INFO]: [PlayerAuctions] Found Item Currency integrating support...
[21:13:33] [Server thread/INFO]: [PlayerAuctions] Found XP Currency integrating support...
[21:13:33] [Server thread/INFO]: [PlayerAuctions] Found Vault Currency integrating support...
[21:13:35] [Server thread/INFO]: [PlayerAuctions] SQLite database is enabling...
[21:13:35] [Server thread/INFO]: [PlayerAuctions] Loading Metrics...
[21:13:35] [Server thread/INFO]: [PlayerAuctions] Successfully loaded Metrics!
[21:13:35] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[21:13:35] [Server thread/INFO]: [Votifier] Loaded token for website: default
[21:13:36] [Server thread/INFO]: [Votifier] Using NIO transport to accept votes.
[21:13:36] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[21:13:36] [Server thread/INFO]: [Skript] Enabling Skript v2.9.0
[21:13:36] [Votifier NIO boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0]:8192.
[21:13:37] [Server thread/INFO]: [Skript] The updater is disabled, so a check for the latest version of Skript was not performed.
[21:14:10] [Server thread/INFO]: [Skript] Loaded 233074 aliases in 32218ms
[21:14:11] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[21:14:11] [Server thread/INFO]: [CombatLogX] Enabling CombatLogX v11.4.0.1.1193
[21:14:11] [Server thread/INFO]: [CombatLogX] Successfully loaded 20 language(s).
[21:14:11] [Server thread/INFO]: [CombatLogX] Detected server as regular SpigotMC/PaperMC (not Folia)
[21:14:11] [Server thread/INFO]: CombatLogX was loaded successfully.
[21:14:11] [Server thread/INFO]: [CombatLogX] Enabling expansions...
[21:14:11] [Server thread/INFO]: [CombatLogX] There were no expansions to enable.
[21:14:12] [Server thread/INFO]: CombatLogX was enabled successfully.
[21:14:12] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.11
[21:14:12] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[21:14:12] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[21:14:12] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[21:14:12] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.0.9
[21:14:13] [Server thread/INFO]: [CMILib] Server version detection needs aditional update
[21:14:13] [Server thread/INFO]: Server version: v1_21_R1 - 1.21.1 - paper  1.21.1-133-3cb8529 (MC: 1.21.1)
[21:14:14] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[21:14:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.0.9]
[21:14:14] [Server thread/INFO]: PlaceholderAPI hooked.
[21:14:14] [Server thread/INFO]: Updated (EN) language file. Took 58ms
[21:14:14] [Server thread/INFO]: [FurnitureLib] Enabling FurnitureLib v3.2.1
[21:14:15] [Server thread/INFO]: ==========================================
[21:14:15] [Server thread/INFO]: FurnitureLib Version: 3.2.1
[21:14:15] [Server thread/INFO]: Furniture Author: Ste3et_C0st
[21:14:15] [Server thread/INFO]: Furniture Website: https://dicecraft.de/furniture/
[21:14:15] [Server thread/INFO]: Furniture find ProtectionLib: false
[21:14:15] [Server thread/INFO]: [FurnitureLib] FurnitureLib use FurnitureLib-Paper module
[21:14:15] [Server thread/INFO]: [de.Ste3et_C0st.FurnitureLib.Database.com.zaxxer.hikari.HikariDataSource] FurnitureLib - Starting...
[21:14:15] [Server thread/INFO]: [de.Ste3et_C0st.FurnitureLib.Database.com.zaxxer.hikari.HikariDataSource] FurnitureLib - Start completed.
[21:14:15] [Server thread/INFO]: [FurnitureLib] FurnitureLib Started SQLite database. Took 68ms
[21:14:15] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (playworld)
[21:14:15] [Server thread/INFO]: [FurnitureLib] No Models are found in world: playworld
[21:14:15] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (spawn)
[21:14:15] [Server thread/INFO]: [FurnitureLib] No Models are found in world: spawn
[21:14:19] [Server thread/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:tripwire'
[21:14:19] [Server thread/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:tripwire'
[21:14:19] [Server thread/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:sign'
[21:14:20] [Server thread/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:tripwire'
[21:14:20] [Server thread/INFO]: [FurnitureLib] FurnitureLib Load 66 model schematics into Ram. Took 5380ms
[21:14:20] [Server thread/INFO]: Furniture load finish :)
[21:14:20] [Server thread/INFO]: ==========================================
[21:14:20] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.4-SNAPSHOT
[21:14:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[21:14:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[21:14:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[21:14:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[21:14:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[21:14:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[21:14:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[21:14:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[21:14:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[21:14:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[21:14:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[21:14:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[21:14:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[21:14:20] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[21:14:20] [Server thread/INFO]: [UltraCosmetics] Enabling UltraCosmetics v3.11.2-RELEASE
[21:14:21] [Server thread/INFO]: [UltraCosmetics] Checking for update...
[21:14:21] [Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[21:14:21] [Server thread/INFO]: [UltraCosmetics] Thanks for using UltraCosmetics! Version: 3.11.2-RELEASE (commit a83d951)
[21:14:21] [Server thread/INFO]: [UltraCosmetics] Plugin by Datatags. Original Author: iSach
[21:14:21] [Server thread/INFO]: [UltraCosmetics] Link: https://bit.ly/UltraCosmetics
[21:14:21] [Server thread/INFO]: [UltraCosmetics] Initializing module v1_21 (expected version: 1.21.5)
[21:14:21] [Server thread/INFO]: [UltraCosmetics] Loading NMS-less mode...
[21:14:21] [Server thread/INFO]: [UltraCosmetics] Loaded NMS-less mode
[21:14:24] [Server thread/INFO]: [UltraCosmetics] 
[21:14:24] [Server thread/WARN]: [UltraCosmetics] Morphs require Lib's Disguises, but it is not installed. Morphs will be disabled.
[21:14:24] [Server thread/INFO]: [UltraCosmetics] 
[21:14:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultracosmetics [3.11.2-RELEASE]
[21:14:24] [Server thread/INFO]: [UltraCosmetics] Hooked into PlaceholderAPI
[21:14:24] [Server thread/INFO]: [WorldGuard] Registering session handler be.isach.ultracosmetics.worldguard.FlagManager
[21:14:24] [Server thread/INFO]: [UltraCosmetics] 
[21:14:24] [Server thread/INFO]: [UltraCosmetics] WorldGuard custom flags enabled
[21:14:24] [Server thread/INFO]: [UltraCosmetics] 
[21:14:24] [Server thread/INFO]: [UltraCosmetics] Hooked into Vault:EssentialsX Economy for economy.
[21:14:24] [Server thread/INFO]: [UltraCosmetics] 
[21:14:24] [Server thread/INFO]: [UltraCosmetics] 
[21:14:24] [Server thread/INFO]: [UltraCosmetics] Hooked into PlayerAuctions
[21:14:24] [Server thread/INFO]: [UltraCosmetics] 
[21:14:24] [Server thread/INFO]: [UltraCosmetics] UltraCosmetics successfully finished loading in 3749ms!
[21:14:24] [Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[21:14:24] [Server thread/INFO]: [Themis] Enabling Themis v0.16.0
[21:14:24] [Server thread/WARN]: [Themis] Couldn't find Floodgate which is required for Bedrock support
[21:14:25] [Server thread/INFO]: [TAB] Enabling TAB v5.2.1
[21:14:26] [Server thread/INFO]: [TAB] [WARN] [config.yml] placeholders: Missing configuration section "placeholders.register-tab-expansion" of type Boolean, using default value false.
[21:14:26] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "customtagname" defined for group "_DEFAULT_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[21:14:26] [Server thread/INFO]: [TAB] [WARN] [users.yml] Unknown property "abovename" defined for user "_NEZNAMY_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[21:14:26] [Server thread/INFO]: [TAB] [WARN] [users.yml] Unknown property "belowname" defined for user "_NEZNAMY_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[21:14:26] [Server thread/INFO]: [TAB] [WARN] Found a total of 4 issues.
[21:14:26] [Server thread/INFO]: [TAB] Enabled in 729ms
[21:14:26] [Server thread/INFO]: [SuperbVote] Enabling SuperbVote v0.5.5
[21:14:26] [Server thread/INFO]: [SuperbVote] Using clip's PlaceholderAPI to provide extra placeholders.
[21:14:26] [Server thread/INFO]: [SpawnerMeta] Enabling SpawnerMeta v24.5
[21:14:26] [Server thread/INFO]: [SpawnerMeta v24.5] enabled!
[21:14:26] [Server thread/INFO]: [SpawnerMeta] Vault has been found, economy enabled!
[21:14:26] [Server thread/INFO]: [sleep-most] Enabling sleep-most v5.5.0
[21:14:27] [Server thread/INFO]: [sleep-most] Hooked to PlaceholderAPI
[21:14:27] [Server thread/INFO]: [sleep-most] Hooked to Essentials
[21:14:27] [Server thread/INFO]: [skUtilities] Enabling skUtilities v0.9.2*
[21:14:27] [Server thread/INFO]: [skUtilities] v0.9.2: loaded modules (Conversions, Files, Yaml, Urls, Utilities) in 127ms
[21:14:27] [Server thread/INFO]: [skript-placeholders] Enabling skript-placeholders v1.6.0
[21:14:27] [Server thread/INFO]: [skRayFall] Enabling skRayFall v1.9.28
[21:14:27] [Server thread/INFO]: [skRayFall] Yay! You are running skRayFall 1.9.28!
[21:14:27] [Server thread/INFO]: [skRayFall] Nathan and Lewis <3 you.
[21:14:27] [Server thread/INFO]: [skRayFall] Cooking Bacon...
[21:14:27] [Server thread/INFO]: [skRayFall] Citizens not found! Sorry you cant make friends, but don't worry we will still be your friend <3
[21:14:27] [Server thread/INFO]: [skRayFall] Got bacon for the EffectLib particle ninjas!
[21:14:27] [Server thread/INFO]: [skRayFall] Getting more bacon for the Votifier runners!
[21:14:27] [Server thread/INFO]: [skRayFall] Enabling general 1.8+ bacon!
[21:14:27] [Server thread/INFO]: [skRayFall] Getting the general 1.9+ bacon!
[21:14:27] [Server thread/INFO]: [skRayFall] Getting the extra special 1.17+ bacon!
[21:14:27] [Server thread/INFO]: [skRayFall] Bacon is ready!
[21:14:27] [Server thread/INFO]: [SkBee] Enabling SkBee v3.6.0
[21:14:28] [Server thread/INFO]: [SkBee] Loading NBTApi...
[21:14:28] [Server thread/INFO]: [SkBee] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[21:14:28] [Server thread/INFO]: [SkBee] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[21:14:28] [Server thread/INFO]: [SkBee] Successfully loaded NBTApi!
[21:14:28] [Server thread/INFO]: [SkBee] NBT Elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] Text Component Elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] Advancement Elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] BossBar Elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] Bound Elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] Damage Source elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] Display Entity elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] Fishing elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] Game Event Elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] Item Component Elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] Particle Elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] RayTrace elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] Recipe Elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] Scoreboard Elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] Scoreboard Objective Elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] Statistic Elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] Structure Elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] Minecraft Tag elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] Team Elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] Tick Manager elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] Villager Elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] Virtual Furnace Elements disabled via config
[21:14:28] [Server thread/INFO]: [SkBee] World Border Elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] World Creator Elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] Chunk Generator Elements successfully loaded
[21:14:28] [Server thread/INFO]: [SkBee] Loaded (423) elements:
[21:14:28] [Server thread/INFO]: [SkBee]  - 55 events
[21:14:28] [Server thread/INFO]: [SkBee]  - 69 effects
[21:14:28] [Server thread/INFO]: [SkBee]  - 257 expressions
[21:14:28] [Server thread/INFO]: [SkBee]  - 27 conditions
[21:14:28] [Server thread/INFO]: [SkBee]  - 15 sections
[21:14:28] [Server thread/INFO]: [SkBee] Checking for update...
[21:14:29] [Server thread/INFO]: [SkBee] Plugin is not up to date!
[21:14:29] [Server thread/INFO]: [SkBee]  - Current version: v3.6.0
[21:14:29] [Server thread/INFO]: [SkBee]  - Available update: v3.11.2
[21:14:29] [Server thread/INFO]: [SkBee]  - Download available at: https://github.com/ShaneBeee/SkBee/releases
[21:14:29] [Server thread/INFO]: [SkBee] Successfully enabled v3.6.0 in 1.62 seconds
[21:14:29] [Server thread/INFO]: [SetModelData] Enabling SetModelData v1.0.0
[21:14:29] [Server thread/INFO]: [SetModelData] SetModelData is loaded!
[21:14:29] [Server thread/INFO]: [Quests] Enabling Quests v3.15-ed67edd
[21:14:29] [Server thread/INFO]: [Quests] Running server scheduler: FoliaServerScheduler
[21:14:29] [Server thread/INFO]: [Quests] Initialising storage provider 'yaml'
[21:14:29] [Server thread/INFO]: [Quests] Your server is running version 1.21
[21:14:29] [Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[21:14:29] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v7.5.3
[21:14:29] [Folia Async Scheduler Thread #3/INFO]: [Quests] A new version 3.15.2 was found on Spigot (your version: 3.15-ed67edd). Please update me! <3 - Link: https://get.leonardobishop.com/quests
[21:14:29] [Server thread/INFO]: [PlayerWarps] This plugin is licensed to NitroSetups (222259) from BuiltByBit!
[21:14:30] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[21:14:32] [Server thread/INFO]: [PlayerWarps] Found 25 config files to load!
[21:14:34] [Server thread/INFO]: [PlayerWarps] There has been an issue while trying to get the latest version for protocollibexpansion.jar: Server returned HTTP response code: 400 for URL: https://api.olziedev.com/resources/expansionVersion?resource_name=playerwarps&expansion_name=protocollibexpansion&plugin_version=7.5.3. Turn on debug mode in the config.yml for the stack trace.
[21:14:34] [Server thread/INFO]: [PlayerWarps] There has been an issue while trying to get the latest version for packeteventsexpansion.jar: Server returned HTTP response code: 400 for URL: https://api.olziedev.com/resources/expansionVersion?resource_name=playerwarps&expansion_name=packeteventsexpansion&plugin_version=7.5.3. Turn on debug mode in the config.yml for the stack trace.
[21:14:38] [Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[21:14:38] [Server thread/INFO]: [PlayerWarps] Economy plugin found! (EssentialsX Economy)
[21:14:38] [Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[21:14:38] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[21:14:38] [Server thread/INFO]: [PlayerWarps] Found Item Currency integrating support...
[21:14:38] [Server thread/INFO]: [PlayerWarps] Found Vault Currency integrating support...
[21:14:38] [Server thread/INFO]: [PlayerWarps] Found XP Currency integrating support...
[21:14:38] [Server thread/INFO]: [PlayerWarps] Found Essentials Expansion integrating support...
[21:14:38] [Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[21:14:38] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[21:14:38] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[21:14:38] [Server thread/INFO]: [PermSk] Enabling PermSk v2.0.0
[21:14:38] [Server thread/INFO]: [PermSk] Loaded dependency: LuckPerms
[21:14:38] [Server thread/INFO]: [PermSk] Plugin enabled!
[21:14:38] [Server thread/INFO]: [PermSk] [bStats] Sucessfully loaded
[21:14:38] [Server thread/INFO]: [PermSk] Checking for update...
[21:14:38] [Server thread/INFO]: [PermSk] Plugin is up to date!
[21:14:38] [Server thread/INFO]: [O'DailyQuests] Enabling ODailyQuests v2.3.0-SNAPSHOT-16
[21:14:38] [Server thread/INFO]: [O'DailyQuests] Plugin is starting...
[21:14:38] [Server thread/INFO]: [O'DailyQuests] Checking for update...
[21:14:38] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[21:14:39] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-2 - Added connection conn0: url=jdbc:h2:./plugins/ODailyQuests/database user=ODQ
[21:14:39] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[21:14:39] [Server thread/INFO]: [O'DailyQuests] Plugin successfully connected to database DATABASE.
[21:14:39] [Server thread/INFO]: [O'DailyQuests] Vault successfully hooked.
[21:14:39] [Server thread/INFO]: [O'DailyQuests] CoinsEngine successfully hooked.
[21:14:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: odailyquests [1.0.4]
[21:14:39] [Server thread/INFO]: [O'DailyQuests] PlaceholderAPI successfully hooked.
[21:14:39] [Server thread/INFO]: [O'DailyQuests] WorldGuard detected, hook enabled.
[21:14:39] [Server thread/INFO]: [O'DailyQuests] 55 quests loaded from globalQuests file.
[21:14:39] [Server thread/ERROR]: [O'DailyQuests] org.bukkit.craftbukkit.inventory.CraftMetaSkull.setProfile(com.mojang.authlib.GameProfile)
[21:14:39] [Server thread/ERROR]: [O'DailyQuests] org.bukkit.craftbukkit.inventory.CraftMetaSkull.setProfile(com.mojang.authlib.GameProfile)
[21:14:40] [Server thread/INFO]: [O'DailyQuests] Plugin is started!
[21:14:40] [Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.31.7-T20250421160243
[21:14:40] [Server thread/INFO]: [Minepacks] Starting Minepacks in standalone mode!
[21:14:40] [Server thread/INFO]: [Minepacks] Config file successfully loaded.
[21:14:40] [Server thread/WARN]: [Minepacks] Paper support is experimental! Use at your own risk!
[21:14:40] [Server thread/WARN]: [Minepacks] No guarantee for data integrity! Backup constantly!
[21:14:40] [Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: english  Author: GeorgH93
[21:14:40] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting...
[21:14:40] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed.
[21:14:41] [Server thread/INFO]: [Minepacks] Item name language file successfully loaded. Language: english  Author: GeorgH93
[21:14:41] [Server thread/INFO]: [Minepacks] Loading item translations ...
[21:14:41] [Server thread/INFO]: [Minepacks] Finished loading item translations for 826 items.
[21:14:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: minepacks [2.4.31.7-T20250421160243]
[21:14:41] [Server thread/INFO]: [Minepacks] PlaceholderAPI hook was successfully registered!
[21:14:41] [Server thread/INFO]: [Minepacks]  Minepacks has been enabled!  :) 
[21:14:41] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[21:14:41] [Server thread/INFO]: [Lottery] Enabling Lottery v1.4.9
[21:14:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lottery [1.0.0]
[21:14:41] [Server thread/INFO]: [LifestealCore] Enabling LifestealCore v2024.12-c
[21:14:42] [Thread-18/INFO]: [Minepacks] Start downloading update: 2.4.32-release
[21:14:42] [Thread-18/INFO]: [Minepacks] Downloading update: 10% of 1.84 MiB
[21:14:42] [Thread-18/INFO]: [Minepacks] Downloading update: 20% of 1.84 MiB
[21:14:42] [Thread-18/INFO]: [Minepacks] Downloading update: 30% of 1.84 MiB
[21:14:42] [Thread-18/INFO]: [Minepacks] Downloading update: 40% of 1.84 MiB
[21:14:42] [Server thread/INFO]: [LifestealCore] 2024.12-c, a premium resource by Norska - Thanks for purchasing!
[21:14:42] [Thread-18/INFO]: [Minepacks] Downloading update: 50% of 1.84 MiB
[21:14:42] [Thread-18/INFO]: [Minepacks] Downloading update: 60% of 1.84 MiB
[21:14:42] [Server thread/INFO]: [KoTH] Enabling KoTH v2.0.8
[21:14:42] [Server thread/INFO]: [KoTH] Enabling KoTH v2.0.8
[21:14:42] [Server thread/INFO]: [KoTH] Could not load all the koths because one or more worlds were not loaded, These will be loaded when the worlds load.
[21:14:42] [Server thread/INFO]: [KoTH] PlaceholderAPI Support: Yes
[21:14:42] [Server thread/INFO]: [KoTH] Scoreboard Hook: Scoreboard Disabled
[21:14:42] [Server thread/INFO]: [KoTH] The koth koth could not be loaded since the world arena is not loaded.
[21:14:42] [Server thread/INFO]: [KoTH] Could not load all the koths because one or more worlds were not loaded, These will be loaded when the worlds load.
[21:14:42] [Thread-18/INFO]: [Minepacks] Downloading update: 70% of 1.84 MiB
[21:14:42] [Thread-18/INFO]: [Minepacks] Downloading update: 80% of 1.84 MiB
[21:14:42] [Thread-18/INFO]: [Minepacks] Downloading update: 90% of 1.84 MiB
[21:14:42] [Thread-18/INFO]: [Minepacks] Downloading update: 100% of 1.84 MiB
[21:14:42] [Thread-18/INFO]: [Minepacks] Finished updating.
[21:14:42] [Server thread/INFO]: [KoTH] You are using the latest version of KoTH!
[21:14:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: koth [1.0]
[21:14:42] [Server thread/INFO]: [Jobs] Enabling Jobs v5.2.4.0
[21:14:42] [Server thread/INFO]: ------------- Jobs -------------
[21:14:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jobsr [5.2.4.0]
[21:14:42] [Server thread/INFO]: PlaceholderAPI hooked.
[21:14:42] [Server thread/INFO]: Connected to database (SqLite)
[21:14:43] [Server thread/INFO]: Loaded 8 titles
[21:14:43] [Server thread/INFO]: Loaded 69 protected blocks timers
[21:14:43] [Server thread/INFO]: Loaded 1481 custom item names
[21:14:43] [Server thread/INFO]: Loaded 84 custom entity names
[21:14:43] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[21:14:43] [Server thread/INFO]: Loaded 122 custom enchant names
[21:14:43] [Server thread/INFO]: Loaded 46 custom enchant names
[21:14:43] [Server thread/INFO]: Loaded 16 custom color names
[21:14:43] [Server thread/INFO]: Update shops items icon section and use 'ItemStack' instead
[21:14:43] [Server thread/INFO]: Loaded 4 shop items
[21:14:43] [Server thread/INFO]: Update Crafter jobs gui item section to use `ItemStack` instead of `Item` sections format. More information inside _EXAMPLE job file
[21:14:43] [Server thread/INFO]: Loaded 12 jobs
[21:14:43] [Server thread/INFO]: Loaded 0 boosted items
[21:14:43] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[21:14:43] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[21:14:43] [Server thread/INFO]: Preloaded 2 players data in 0.02
[21:14:43] [Server thread/INFO]: Registering listeners...
[21:14:43] [Server thread/INFO]: Listeners registered successfully
[21:14:43] [Server thread/INFO]: Plugin has been enabled successfully.
[21:14:43] [Server thread/INFO]: ------------------------------------
[21:14:43] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.12.0
[21:14:43] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[21:14:44] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[21:14:44] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[21:14:44] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ExcellentEnchants!
[21:14:44] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[21:14:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactivechat [4.2.12.0]
[21:14:44] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[21:14:44] [Server thread/INFO]: [Infiniteannouncements] Enabling Infiniteannouncements v2.3.1
[21:14:44] [Server thread/INFO]:  
[21:14:44] [Server thread/INFO]: ====================================
[21:14:44] [Server thread/INFO]: Plugin name: Infiniteannouncements
[21:14:44] [Server thread/INFO]: Version: 2.3.1
[21:14:44] [Server thread/INFO]: Core version: 0.7.25
[21:14:44] [Server thread/INFO]: ====================================
[21:14:44] [Server thread/INFO]:  
[21:14:44] [Server thread/INFO]: [Infiniteannouncements] Loaded locale "en_US"
[21:14:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: infiniteannouncements [1.0.0]
[21:14:44] [Server thread/INFO]: [ForcePack] Enabling ForcePack v1.3.5
[21:14:44] [Server thread/INFO]: [ForcePack] Generated en_gb.yml
[21:14:44] [Server thread/INFO]: [ForcePack] Generated es_es.yml
[21:14:44] [Server thread/INFO]: [ForcePack] Generated zh_cn.yml
[21:14:44] [Server thread/INFO]: [ForcePack] Generated zh_tw.yml
[21:14:44] [Server thread/WARN]: [ForcePack] [packetevents] We currently do not support the minecraft version 1.21.1, so things might break. PacketEvents will behave as if the minecraft version were 1.21.0!
[21:14:48] [Server thread/INFO]: [ForcePack] Auto-generating resource pack hash.
[21:14:51] [Server thread/INFO]: [ForcePack] Size of resource pack: 2 MB
[21:14:51] [Server thread/INFO]: [ForcePack] Auto-generated resource pack hash: 2A9123973DD5159C9048678D126C43856246A71B
[21:14:51] [Server thread/INFO]: [ForcePack] Performing version size check...
[21:14:51] [Server thread/INFO]: 1.8-1.15 (50 MB): Supported.
[21:14:51] [Server thread/INFO]: 1.16-1.17 (100 MB): Supported.
[21:14:51] [Server thread/INFO]: 1.18+ (250 MB): Supported.
[21:14:51] [Server thread/INFO]: Hash verification complete.
[21:14:51] [Server thread/INFO]: [ForcePack] Generated resource pack (https://www.dropbox.com/scl/fi/5a6mh3ivge0aj4ri53agk/PremiumSetupTexturepack.zip?rlkey=ebv8ykdjfz34pbyv8yabfo1nb&st=lf0bdh9z&dl=1#2A9123973DD5159C9048678D126C43856246A71B) for version all with id 28e5c1e0-883e-3a0c-863d-cb7e01b0bf22
[21:14:51] [Server thread/INFO]: [ForcePack] [ForcePack] Enabled!
[21:14:51] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v5.3.1
[21:14:51] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[21:14:51] [Server thread/INFO]: [ExcellentCrates] Read database configuration...
[21:14:51] [Server thread/INFO]: [ExcellentCrates] Using Internal hologram handler.
[21:14:51] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Starting...
[21:14:51] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-3 - Added connection org.sqlite.jdbc4.JDBC4Connection@56aba660
[21:14:51] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Start completed.
[21:14:51] [Server thread/INFO]: [ExcellentCrates] Registered currency: xp
[21:14:51] [Server thread/INFO]: [ExcellentCrates] Registered currency: levels
[21:14:51] [Server thread/INFO]: [ExcellentCrates] Registered currency: money
[21:14:51] [Server thread/INFO]: [ExcellentCrates] Registered currency: coinsengine_levelxp
[21:14:51] [Server thread/INFO]: [ExcellentCrates] Registered currency: coinsengine_coins
[21:14:51] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crate openings.
[21:14:51] [Server thread/INFO]: [ExcellentCrates] Loaded 5 crate keys.
[21:14:51] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[21:14:52] [Server thread/INFO]: [ExcellentCrates] Loaded 5 crates.
[21:14:52] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[21:14:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [5.3.1]
[21:14:52] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 1534 ms!
[21:14:52] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+111-b54c8c1
[21:14:52] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[21:14:52] [Server thread/INFO]: [EasyCommandBlocker] Enabling EasyCommandBlocker v1.9.2
[21:14:53] [Server thread/INFO]: [EasyCommandBlocker] Has been enabled! Version: 1.9.2
[21:14:53] [Server thread/INFO]: [EasyCommandBlocker] Thanks for using my plugin!   ~Ajneb97
[21:14:53] [Server thread/INFO]: There is a new version available. (1.13.1)
[21:14:53] [Server thread/INFO]: You can download it at: https://www.spigotmc.org/resources/101752/
[21:14:53] [Server thread/INFO]: [DiceFurniture] Enabling DiceFurniture v3.9.2
[21:14:58] [Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
[21:14:58] [Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
[21:14:58] [Server thread/INFO]: [DeluxeTags] Could not load tag: Superman because it does not have a display set.
[21:14:58] [Server thread/INFO]: [DeluxeTags] 100 tags loaded
[21:14:58] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[21:14:58] [Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
[21:14:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxetags [1.8.2-Release]
[21:14:58] [Server thread/INFO]: [DeluxeTags] ----------------------------
[21:14:58] [Server thread/INFO]: [DeluxeTags]      DeluxeTags Updater
[21:14:58] [Server thread/INFO]: [DeluxeTags]  
[21:14:58] [Server thread/INFO]: [DeluxeTags] You are running 1.8.2-Release
[21:14:58] [Server thread/INFO]: [DeluxeTags] The latest version
[21:14:58] [Server thread/INFO]: [DeluxeTags] of DeluxeTags!
[21:14:58] [Server thread/INFO]: [DeluxeTags]  
[21:14:58] [Server thread/INFO]: [DeluxeTags] ----------------------------
[21:14:58] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.1-DEV-184
[21:14:58] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[21:14:59] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[21:15:00] [Server thread/WARN]: [DeluxeMenus] Material for item: grass in menu: shop_decorations1 is not valid!
Skipping item: grass
[21:15:02] [Server thread/INFO]: [DeluxeMenus] 264 GUI menus loaded!
[21:15:02] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[21:15:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.1-DEV-184]
[21:15:02] [Server thread/INFO]: [CrazyVouchers] Enabling CrazyVouchers v3.8.3
[21:15:02] [Server thread/INFO]: [CrazyEnvoys] Enabling CrazyEnvoys v1.6
[21:15:02] [Server thread/INFO]: [CrazyEnvoys] Loading the config.yml
[21:15:02] [Server thread/INFO]: [CrazyEnvoys] Successfully loaded config.yml
[21:15:02] [Server thread/INFO]: [CrazyEnvoys] Loading the messages.yml
[21:15:02] [Server thread/INFO]: [CrazyEnvoys] Successfully loaded messages.yml
[21:15:02] [Server thread/INFO]: [CrazyEnvoys] Loading the data.yml
[21:15:02] [Server thread/INFO]: [CrazyEnvoys] Successfully loaded data.yml
[21:15:02] [Server thread/INFO]: [CrazyEnvoys] Loading custom files.
[21:15:02] [Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Tier1.yml.
[21:15:02] [Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Tier2.yml.
[21:15:02] [Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Tier3.yml.
[21:15:02] [Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Tier4.yml.
[21:15:02] [Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Tier5.yml.
[21:15:02] [Server thread/INFO]: [CrazyEnvoys] Finished loading custom files.
[21:15:02] [Server thread/INFO]: [CrazyEnvoys] Failed to load 241 locations and will reattempt in 10s.
[21:15:02] [Server thread/INFO]: [CrazyEnvoys] Failed to fix Center. Will try again next event.
[21:15:05] [Server thread/INFO]: [CrazyEnvoys] DecentHolograms support has been enabled.
[21:15:05] [Server thread/INFO]: [CrazyEnvoys] Attempting to fix 241 locations that failed.
[21:15:05] [Server thread/INFO]: [CrazyEnvoys] Failed to fix 241 locations and will not reattempt.
[21:15:05] [Server thread/INFO]: [CrazyEnvoys] Metrics has been enabled.
[21:15:05] [Server thread/WARN]: [CrazyEnvoys] We no longer support placeholders using {}
[21:15:05] [Server thread/WARN]: [CrazyEnvoys] We only support %% placeholders i.e %crazyenvoys_cooldown%
[21:15:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: crazyenvoys [1.6]
[21:15:06] [Server thread/INFO]: [Codex] Enabling Codex v1.16.2
[21:15:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: codex [1.16.2]
[21:15:06] [Server thread/INFO]: [Codex] Has been enabled! Version: 1.16.2
[21:15:06] [Server thread/INFO]: [Codex] Thanks for using my plugin!  ~Ajneb97
[21:15:06] [Server thread/INFO]: There is a new version available. (2.4.2)
[21:15:06] [Server thread/INFO]: You can download it at: https://www.spigotmc.org/resources/90371/
[21:15:06] [Server thread/INFO]: [ChatGames] Enabling ChatGames v1.2.1
[21:15:06] [Server thread/INFO]: [ChatGames] ChatGames is now enabled!
[21:15:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatgames [1.0.0]
[21:15:06] [Server thread/INFO]: [ChatGames] PlaceholderAPI Hooked!
[21:15:06] [Server thread/INFO]: [ChatGames] Points loaded successfully!
[21:15:06] [Server thread/INFO]: [ChatEmojis] Enabling ChatEmojis v2.4.1
[21:15:06] [Server thread/INFO]: [BlockParticles] Enabling BlockParticles v1.12
[21:15:06] [Server thread/INFO]: [BlockParticles] Loading the config.yml
[21:15:06] [Server thread/INFO]: [BlockParticles] Successfully loaded config.yml
[21:15:06] [Server thread/INFO]: [BlockParticles] Loading the data.yml
[21:15:06] [Server thread/INFO]: [BlockParticles] Successfully loaded data.yml
[21:15:06] [Server thread/INFO]: [BetterTeams] Enabling BetterTeams v4.9.4
[21:15:06] [Server thread/INFO]: [BetterTeams] Checking if the file messages.yml is up to date
[21:15:06] [Server thread/INFO]: [BetterTeams] File is up to date
[21:15:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterTeams [4.9.4]
[21:15:06] [Server thread/INFO]: Display team name config value: prefix
[21:15:06] [Server thread/INFO]: Loading below name. Type: PREFIX
[21:15:06] [Server thread/INFO]: teamManagement declared: com.booksaw.betterTeams.events.MCTeamManagement@2db791f
[21:15:06] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.11
[21:15:06] [Server thread/INFO]: [BetterRTP] Cooldown = 600
[21:15:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.11]
[21:15:07] [Server thread/INFO]: [BestTools] Enabling BestTools v2.2.3
[21:15:07] [Server thread/INFO]: [BestTools] Building the <Block,Tool> map took 2 ms
[21:15:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: besttools [2.2.3]
[21:15:07] [Server thread/INFO]: [Badword] Enabling Badword v1.0
[21:15:07] [Server thread/INFO]: Starting up badwords
[21:15:07] [Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.2.2
[21:15:08] [Server thread/INFO]: [AuraSkills] Loaded 21 message files
[21:15:09] [Server thread/INFO]: [AuraSkills] Successfully registered hook DecentHolograms
[21:15:09] [Server thread/INFO]: [AuraSkills] Successfully registered hook LuckPerms
[21:15:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auraskills [2.2.2]
[21:15:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [2.2.2]
[21:15:09] [Server thread/INFO]: [AuraSkills] Successfully registered hook PlaceholderAPI
[21:15:09] [Server thread/INFO]: [AuraSkills] Successfully registered hook ProtocolLib
[21:15:09] [Server thread/INFO]: [AuraSkills] Successfully registered hook Vault
[21:15:09] [Server thread/INFO]: [AuraSkills] Successfully registered hook WorldGuard
[21:15:09] [Server thread/INFO]: [AuraSkills] Loaded 148 config options in 94 ms
[21:15:09] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[21:15:09] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[21:15:09] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AuraSkills' to create a bStats instance!
[21:15:09] [Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
[21:15:10] [Server thread/INFO]: [AuraSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[21:15:10] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.9.0
[21:15:12] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[21:15:12] [Server thread/INFO]: [ajLeaderboards] Loaded 20 boards
[21:15:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.9.0]
[21:15:13] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[21:15:13] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.9.0 by ajgeiss0702 enabled!
[21:15:13] [Server thread/INFO]: [AdvancedBan] Enabling AdvancedBan v2.3.0
[21:15:13] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[21:15:14] [Server thread/INFO]: [hsqldb.db.HSQLDB8A9D5CACEB.ENGINE] checkpointClose start
[21:15:14] [Server thread/INFO]: [hsqldb.db.HSQLDB8A9D5CACEB.ENGINE] checkpointClose synched
[21:15:14] [Server thread/INFO]: [hsqldb.db.HSQLDB8A9D5CACEB.ENGINE] checkpointClose script done
[21:15:14] [Server thread/INFO]: [hsqldb.db.HSQLDB8A9D5CACEB.ENGINE] checkpointClose end
[21:15:14] [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)
[21:15:14] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[21:15:14] [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
[]================================[]
 
[21:15:15] [Server thread/INFO]: [spark] Starting background profiler...
[21:15:15] [Server thread/INFO]: [spark] The async-profiler engine is not supported for your os/arch (windows10/amd64), so the built-in Java engine will be used instead.
[21:15:15] [pool-74-thread-1/INFO]: [ajLeaderboards] An update is available! (2.10.1) Run /ajLeaderboards update to download it!
[21:15:15] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[21:15:15] [Server thread/INFO]: Done preparing level "playworld" (134.863s)
[21:15:15] [Server thread/INFO]: Running delayed init tasks
[21:15:15] [Craft Scheduler Thread - 12 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[21:15:15] [Craft Scheduler Thread - 24 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[21:15:15] [Craft Scheduler Thread - 14 - PlayerAuctions/INFO]: [PlayerAuctions] Loading auction items...
[21:15:15] [Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[21:15:15] [Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] A possible update was found for plugin 'CombatLogX'.
[21:15:15] [Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Current Version: 11.4.0.1.1193
[21:15:15] [Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] New Version: 11.5.0.0.1242
[21:15:15] [Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Download Link: https://www.spigotmc.org/resources/31689/
[21:15:15] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[21:15:15] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[21:15:15] [Craft Scheduler Thread - 19 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[21:15:15] [Craft Scheduler Thread - 21 - Vault/INFO]: [Vault] Checking for Updates ... 
[21:15:15] [Craft Scheduler Thread - 18 - CMILib/INFO]: New version of CMILib was detected. Please update it
[21:15:15] [Craft Scheduler Thread - 7 - ODailyQuests/WARN]: [O'DailyQuests] A new update is available !
[21:15:15] [Craft Scheduler Thread - 7 - ODailyQuests/WARN]: [O'DailyQuests] Current version : 2.3.0-SNAPSHOT-16, Available version : 2.3.0
[21:15:15] [Craft Scheduler Thread - 7 - ODailyQuests/WARN]: [O'DailyQuests] Please download latest version :
[21:15:15] [Craft Scheduler Thread - 7 - ODailyQuests/WARN]: [O'DailyQuests] https://www.spigotmc.org/resources/odailyquests.100990/
[21:15:15] [Craft Scheduler Thread - 23 - sleep-most/INFO]: [sleep-most] UPDATE FOUND: A newer version of sleep-most is available to download!
[21:15:15] [Craft Scheduler Thread - 16 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[21:15:15] [Craft Scheduler Thread - 12 - UltraCosmetics/INFO]: [UltraCosmetics] You are running the latest version on Spigot.
[21:15:15] [Craft Scheduler Thread - 20 - Themis/WARN]: [Themis] You're running an outdated version of Themis, you should update as soon as possible!
[21:15:15] [Craft Scheduler Thread - 28 - BetterTeams/WARN]: There is a new version of better teams released update here: (https://www.spigotmc.org/resources/better-teams.17129/)
[21:15:15] [Craft Scheduler Thread - 8 - PlayerWarps/INFO]: [PlayerWarps] [!] PlayerWarps → PlayerWarps v7.8.0 is out! You are still running v7.5.3!
[21:15:15] [Craft Scheduler Thread - 21 - Vault/INFO]: [Vault] No new version available
[21:15:15] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[21:15:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pa [1.31.1]
[21:15:16] [Craft Scheduler Thread - 16 - DecentHolograms/INFO]: [DecentHolograms] Loaded 40 holograms!
[21:15:16] [Craft Scheduler Thread - 13 - Essentials/INFO]: [Essentials] Fetching version information...
[21:15:16] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[21:15:16] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Found a possible update for plugin 'BlueSlimeCore'.
[21:15:16] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Local Version: 2.9.4.377
[21:15:16] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Remote Version: 2.9.6.454
[21:15:16] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Download Link: https://hangar.papermc.io/SirBlobman/BlueSlimeCore
[21:15:16] [Craft Scheduler Thread - 13 - Essentials/INFO]: [Essentials] Update checking disabled in config.
[21:15:16] [Server thread/INFO]: [Skript] Loading variables...
[21:15:16] [Server thread/INFO]: [Skript] Loaded 0 variables in 0.0 seconds
[21:15:24] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[21:15:24] [Server thread/INFO]: [Skript] Loaded 19 scripts with a total of 72 structures in 7.36 seconds
[21:15:24] [Server thread/INFO]: [Skript] Finished loading.
[21:15:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pw [7.5.3]
[21:15:24] [Server thread/INFO]: WorldGuard detected.
[21:15:24] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (Essentials)
[21:15:24] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (LuckPerms)
[21:15:25] [Craft Scheduler Thread - 36 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[21:15:26] [Server thread/INFO]: [AuraSkills] Loaded 11 skills with 312 total sources
[21:15:26] [Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
[21:15:26] [Server thread/INFO]: [AuraSkills] Loaded 22 pattern rewards and 0 level rewards
[21:15:26] [Server thread/INFO]: [AuraSkills] Loaded 53 loot entries in 4 pools and 2 tables
[21:15:27] [Server thread/INFO]: [AuraSkills] Loaded 6 menus
[21:15:27] [Server thread/INFO]: Done (213.884s)! For help, type "help"
[21:15:27] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 12009ms or 240 ticks behind
[21:15:27] [Server thread/INFO]: Timings Reset
[21:15:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: quests [3.15-ed67edd]
[21:15:27] [Server thread/INFO]: [Quests] 45 task types have been registered ().
[21:15:27] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[21:15:29] [Server thread/INFO]: [Quests] 502 quests have been registered.
[21:15:29] [Server thread/INFO]: [!] Lottery → Plugin successfully linked with vault!
[21:15:29] [Craft Scheduler Thread - 6 - SpawnerMeta/INFO]: [Spawner Meta v24.5] New version is available: v25.1! To download visit: https://www.spigotmc.org/resources/spawnermeta.74188/
[21:15:30] [Server thread/INFO]: [LifestealCore] Attempting hooks...
[21:15:30] [Server thread/INFO]: [LifestealCore] Hooked into PlaceholderAPI!
[21:15:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lifesteal [2024.12-c]
[21:15:30] [Server thread/INFO]: [LifestealCore] Hooked into WorldGuard!
[21:15:30] [Server thread/INFO]: [LifestealCore] Hooked into CombatLogX!
[21:15:30] [Server thread/INFO]: [LifestealCore] Hooked into DecentHolograms!
[21:15:30] [Server thread/INFO]: [LifestealCore] Successfully performed 4 hooks!
[21:15:32] [Server thread/INFO]:  
[21:15:32] [Server thread/INFO]:  [LifestealCore] New update available!
[21:15:32] [Server thread/INFO]:  Current version: 2024.12-c with latest being 2025.04!
[21:15:32] [Server thread/INFO]:  
[21:15:32] [Server thread/INFO]:  SpigotMC -> https://norska.dev/r/spigot/lsc/
[21:15:32] [Server thread/INFO]:  Polymart -> https://norska.dev/r/polymart/lsc/
[21:15:32] [Server thread/INFO]:  BuiltByBit -> https://norska.dev/r/bbb/lsc/
[21:15:32] [Server thread/INFO]:  
[21:15:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: checkitem [2.7.5]
[21:15:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[21:15:33] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion griefprevention due to a missing plugin: GriefPrevention
[21:15:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: localtime [1.2]
[21:15:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[21:15:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [1.4.1]
[21:15:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: multiverse [1.0.1]
[21:15:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: nested [1.3.1]
[21:15:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.3]
[21:15:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: random [1.0.0]
[21:15:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: rng [1.4.0]
[21:15:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.6.1]
[21:15:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[21:15:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: superbvote [1.3.1]
[21:15:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.7.1]
[21:15:33] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion votingplugin due to a missing plugin: VotingPlugin
[21:15:33] [Server thread/INFO]: 14 placeholder hook(s) registered! 6 placeholder hook(s) have an update available.
[21:19:42] [pool-15-thread-1/INFO]: [LifestealCore] [Scheduled Save] Saved data to file... 49ms
[21:24:42] [pool-15-thread-1/INFO]: [LifestealCore] [Scheduled Save] Saved data to file... 5ms
[21:29:42] [pool-15-thread-1/INFO]: [LifestealCore] [Scheduled Save] Saved data to file... 8ms
[21:34:42] [pool-15-thread-1/INFO]: [LifestealCore] [Scheduled Save] Saved data to file... 94ms