Save New Duplicate & Edit Just Text
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
[12:01:58] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.5+11-LTS; Eclipse Adoptium Temurin-21.0.5+11) on Linux 5.10.0-23-amd64 (amd64)
[12:01:58] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.4-232-ver/1.21.4@12d8fe0 (2025-06-09T10:15:42Z) for Minecraft 1.21.4
[12:01:58] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[12:01:58] [ServerMain/INFO]: [PluginInitializerManager] Initialized 69 plugins
[12:01:58] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (3):
- Pl3xMapExtras (1.3.0), TicketManager (11.1.9), TicketManagerCore (11.1.2)
[12:01:58] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (66):
- AdvancedPortals (2.3.2), AntiAFKPlus (3.2.5), AnvilColors (1.0.5), ArmorStandTools (4.4.6), Autorank (5.2.3), AxKoth (2.16.3), AxQuestBoard (1.14.2), BetterRTP (3.6.13), BlockLocker (1.13), CMILib (1.5.6.2), Celebrate (1.0.6), ChatSentry (5.6.5), Citizens (2.0.39-SNAPSHOT (build 3875)), ColoredBooked (1.0), CoreProtect (23.0), CrazyVouchers (4.1.1), DecentHolograms (2.9.6), DeluxeCombat (1.70.5), Elevator (3.14.0), Equine (2.1.12), Essentials (2.22.0-dev+11-58726fb), EssentialsChat (2.22.0-dev+11-58726fb), EssentialsDiscord (2.22.0-dev+11-58726fb), EssentialsSpawn (2.22.0-dev+11-58726fb), FreedomChat (1.7.2), GSit (2.4.3), HeadDatabase (4.21.2), Images (2.5.7), InvSeePlusPlus (0.30.7), Jobs (5.2.6.1), KeepChunks (1.7.3), KixsAutoAnnouncerPremium (1.5.0), KixsChatGames (2.2.0), LootChest (2.5.6), LuckPerms (5.5.10), MCPerks (1.21), MODNMETL (1.0.301-SNAPSHOT), MobFarmManager (3.0.4.0), MyCommand (5.7.4), NightMarket (1.19.0), NoAltsExploits (5.4), OtherAnimalTeleport (2.4-b98), Pl3xMap (1.21.8-534), PlaceholderAPI (2.11.6), PlayerAuctions (1.31.1), PlayerPoints (3.3.2), PlayerWarps (7.8.0), PlugManX (2.4.1), ProtocolLib (5.4.0), ServerTutorialPlus (1.25.2), SignShop (5.0.0-dev), SimpleArmorStandPose (2.0), Statz (1.6.2), TangledMazePlus (3.1.0), Tebex (2.2.1), TimeIsMoney (1.9.12), TooManyGen (1.2.1), Vault (1.7.3-b131), VirtualRealty (2.8.4), Votifier (2.7.3), VotingPlugin (6.18.7), WorldEdit (7.3.16+cbf4bd5), ajLeaderboards (2.10.1), dtlTradersPlus (6.4.34), floodgate (2.2.4-SNAPSHOT (b118-40d320a)), mcMMO (2.2.040)
[12:02:01] [ServerMain/WARN]: resource-pack-id missing, using default of 1edf4d15-46a9-37c7-9f69-9124eba94bc1
[12:02:01] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[12:02:01] [ServerMain/INFO]: [MCTypeRegistry] Initialising converters for DataConverter...
[12:02:02] [ServerMain/INFO]: [MCTypeRegistry] Finished initialising converters for DataConverter in 119.5ms
[12:02:02] [ServerMain/INFO]: Loaded 1370 recipes
[12:02:02] [ServerMain/INFO]: Loaded 1481 advancements
[12:02:02] [Server thread/INFO]: Starting minecraft server version 1.21.4
[12:02:02] [Server thread/INFO]: Loading properties
[12:02:02] [Server thread/INFO]: This server is running Paper version 1.21.4-232-ver/1.21.4@12d8fe0 (2025-06-09T10:15:42Z) (Implementing API version 1.21.4-R0.1-SNAPSHOT)
[12:02:02] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[12:02:02] [Server thread/INFO]: Server Ping Player Sample Count: 12
[12:02:02] [Server thread/INFO]: Using 4 threads for Netty based IO
[12:02:03] [Server thread/INFO]: [MoonriseCommon] Paper is using 5 worker threads, 1 I/O threads
[12:02:03] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[12:02:03] [Server thread/INFO]: Default game type: SURVIVAL
[12:02:03] [Server thread/INFO]: Generating keypair
[12:02:03] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25523
[12:02:03] [Server thread/INFO]: Using epoll channel type
[12:02:03] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[12:02:03] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[12:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loading 2 libraries... please wait
[12:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library /home/container/libraries/com/mysql/mysql-connector-j/9.1.0/mysql-connector-j-9.1.0.jar
[12:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library /home/container/libraries/com/google/protobuf/protobuf-java/4.26.1/protobuf-java-4.26.1.jar
[12:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library /home/container/libraries/org/xerial/sqlite-jdbc/3.46.0.0/sqlite-jdbc-3.46.0.0.jar
[12:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[12:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 3 libraries... please wait
[12:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/ch/ethz/globis/phtree/phtree/2.8.2/phtree-2.8.2.jar
[12:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[12:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
[12:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loading 1 libraries... please wait
[12:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library /home/container/libraries/club/minnced/discord-webhooks/0.8.4/discord-webhooks-0.8.4.jar
[12:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.jar
[12:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library /home/container/libraries/com/squareup/okhttp3/okhttp/4.10.0/okhttp-4.10.0.jar
[12:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library /home/container/libraries/com/squareup/okio/okio-jvm/3.0.0/okio-jvm-3.0.0.jar
[12:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.5.31/kotlin-stdlib-jdk8-1.5.31.jar
[12:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.5.31/kotlin-stdlib-jdk7-1.5.31.jar
[12:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-common/1.5.31/kotlin-stdlib-common-1.5.31.jar
[12:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.6.20/kotlin-stdlib-1.6.20.jar
[12:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library /home/container/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[12:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [AxKoth] Loaded library /home/container/libraries/org/json/json/20230618/json-20230618.jar
[12:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[12:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[12:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[12:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[12:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[12:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[12:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[12:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [MCPerks] Loading 1 libraries... please wait
[12:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [MCPerks] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[12:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [MCPerks] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[12:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [MCPerks] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[12:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [MCPerks] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[12:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [MCPerks] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[12:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [MCPerks] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[12:02:04] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.5.10
[12:02:05] [Server thread/INFO]: [LuckPerms] Loading configuration...
[12:02:05] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[12:02:05] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[12:02:05] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[12:02:05] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0
[12:02:05] [Server thread/INFO]: [PlayerPoints] Loading server plugin PlayerPoints v3.3.2
[12:02:05] [Server thread/INFO]: [PlayerPoints] Initializing using RoseGarden v1.4.7
[12:02:05] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.22.0-dev+11-58726fb
[12:02:05] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.6.2
[12:02:05] [Server thread/INFO]: [mcMMO] Loading server plugin mcMMO v2.2.040
[12:02:05] [Server thread/INFO]: [GSit] Loading server plugin GSit v2.4.3
[12:02:05] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.39-SNAPSHOT (build 3875)
[12:02:05] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.13
[12:02:05] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.6.1
[12:02:05] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.3.16+cbf4bd5
[12:02:05] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@bd94309]
[12:02:05] [Server thread/INFO]: [DeluxeCombat] Loading server plugin DeluxeCombat v1.70.5
[12:02:05] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.21.2
[12:02:05] [Server thread/INFO]: [Pl3xMap] Loading server plugin Pl3xMap v1.21.8-534
[12:02:05] [Server thread/INFO]: [Autorank] Loading server plugin Autorank v5.2.3
[12:02:05] [Server thread/INFO]: [TicketManagerCore] Loading server plugin TicketManagerCore v11.1.2
[12:02:05] [Server thread/INFO]: [LootChest] Loading server plugin LootChest v2.5.6
[12:02:05] [Server thread/INFO]: [AxKoth] Loading server plugin AxKoth v2.16.3
[12:02:05] [Server thread/INFO]: [CrazyVouchers] Loading server plugin CrazyVouchers v4.1.1
[12:02:05] [Server thread/INFO]: [BlockLocker] Loading server plugin BlockLocker v1.13
[12:02:05] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.22.0-dev+11-58726fb
[12:02:05] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.18.7
[12:02:05] [Server thread/INFO]: [PlayerWarps] Loading server plugin PlayerWarps v7.8.0
[12:02:06] [Server thread/INFO]: [Images] Loading server plugin Images v2.5.7
[12:02:06] [Server thread/INFO]: [Statz] Loading server plugin Statz v1.6.2
[12:02:06] [Server thread/INFO]: [Equine] Loading server plugin Equine v2.1.12
[12:02:06] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.4-SNAPSHOT (b118-40d320a)
[12:02:06] [Server thread/INFO]: [floodgate] Took 269ms to boot Floodgate
[12:02:06] [Server thread/INFO]: [TicketManager] Loading server plugin TicketManager v11.1.9
[12:02:06] [Server thread/INFO]: [CommandAPI] Loaded platform NMS_1_21_R3 > NMS_Common > CommandAPIBukkit
[12:02:06] [Server thread/INFO]: [CommandAPI] Hooked into Spigot successfully for Chat/ChatComponents
[12:02:06] [Server thread/INFO]: [CommandAPI] Hooked into Adventure for AdventureChat/AdventureChatComponents
[12:02:06] [Server thread/INFO]: [CommandAPI] Hooked into Paper for paper-specific API implementations
[12:02:06] [Server thread/INFO]: [TangledMazePlus] Loading server plugin TangledMazePlus v3.1.0
[12:02:06] [Server thread/INFO]: [ArmorStandTools] Loading server plugin ArmorStandTools v4.4.6
[12:02:06] [Server thread/INFO]: [NightMarket] Loading server plugin NightMarket v1.19.0
[12:02:07] [Server thread/INFO]: [Server Tutorial Plus] Loading server plugin ServerTutorialPlus v1.25.2
[12:02:07] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v23.0
[12:02:07] [Server thread/INFO]: [AntiAFKPlus] Loading server plugin AntiAFKPlus v3.2.5
[12:02:07] [Server thread/INFO]: [NoAltsExploits] Loading server plugin NoAltsExploits v5.4
[12:02:07] [Server thread/INFO]: [MODNMETL] Loading server plugin MODNMETL v1.0.301-SNAPSHOT
[12:02:07] [Server thread/INFO]: [AnvilColors] Loading server plugin AnvilColors v1.0.5
[12:02:07] [Server thread/INFO]: [AxQuestBoard] Loading server plugin AxQuestBoard v1.14.2
[12:02:07] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.9.6
[12:02:07] [Server thread/INFO]: [dtlTradersPlus] Loading server plugin dtlTradersPlus v6.4.34
[12:02:07] [Server thread/INFO]: [Celebrate] Loading server plugin Celebrate v1.0.6
[12:02:07] [Server thread/INFO]: [KixsChatGames] Loading server plugin KixsChatGames v2.2.0
[12:02:07] [Server thread/INFO]: [SignShop] Loading server plugin SignShop v5.0.0-dev
[12:02:07] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.22.0-dev+11-58726fb
[12:02:07] [Server thread/INFO]: [KixsAutoAnnouncerPremium] Loading server plugin KixsAutoAnnouncerPremium v1.5.0
[12:02:07] [Server thread/INFO]: [Elevator] Loading server plugin Elevator v3.14.0
[12:02:07] [Server thread/INFO]: [Tebex] Loading server plugin Tebex v2.2.1
[12:02:07] [Server thread/INFO]: [KeepChunks] Loading server plugin KeepChunks v1.7.3
[12:02:07] [Server thread/INFO]: [TimeIsMoney] Loading server plugin TimeIsMoney v1.9.12
[12:02:07] [Server thread/INFO]: [EssentialsDiscord] Loading server plugin EssentialsDiscord v2.22.0-dev+11-58726fb
[12:02:07] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.4.1
[12:02:07] [Server thread/INFO]: [InvSee++] Loading server plugin InvSeePlusPlus v0.30.7
[12:02:07] [Server thread/INFO]: [PlayerAuctions] Loading server plugin PlayerAuctions v1.31.1
[12:02:07] [Server thread/INFO]: [SimpleArmorStandPose] Loading server plugin SimpleArmorStandPose v2.0
[12:02:07] [Server thread/INFO]: [MCPerks] Loading server plugin MCPerks v1.21
[12:02:07] [Server thread/INFO]: [Pl3xMapExtras] Loading server plugin Pl3xMapExtras v1.3.0
[12:02:07] [Server thread/INFO]: [AdvancedPortals] Loading server plugin AdvancedPortals v2.3.2
[12:02:07] [Server thread/INFO]: [FreedomChat] Loading server plugin FreedomChat v1.7.2
[12:02:07] [Server thread/INFO]: [OtherAnimalTeleport] Loading server plugin OtherAnimalTeleport v2.4-b98
[12:02:07] [Server thread/INFO]: [MobFarmManager] Loading server plugin MobFarmManager v3.0.4.0
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.10.1
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okhttp
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okhttp
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio-jvm
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio-jvm
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk8
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk8
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-common
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-common
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for annotations
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for annotations
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk7
[12:02:07] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk7
[12:02:07] [Server thread/INFO]: [TooManyGen] Loading server plugin TooManyGen v1.2.1
[12:02:07] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.4
[12:02:07] [Server thread/INFO]: [ColoredBooked] Loading server plugin ColoredBooked v1.0
[12:02:07] [Server thread/INFO]: [ChatSentry] Loading server plugin ChatSentry v5.6.5
[12:02:07] [Server thread/INFO]: [Virtual Realty] Loading server plugin VirtualRealty v2.8.4
[12:02:07] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[12:02:07] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.5.10
[12:02:08] [Server thread/INFO]: __
[12:02:08] [Server thread/INFO]: | |__) LuckPerms v5.5.10
[12:02:08] [Server thread/INFO]: |___ | Running on Bukkit - Paper
[12:02:08] [Server thread/INFO]:
[12:02:08] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MARIADB]
[12:02:08] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[12:02:08] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[12:02:08] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[12:02:08] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[12:02:08] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[12:02:08] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1377ms)
[12:02:08] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[12:02:09] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[12:02:09] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[12:02:09] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[12:02:09] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[12:02:09] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0
[12:02:09] [Server thread/INFO]: [PlayerPoints] Enabling PlayerPoints v3.3.2
[12:02:09] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[12:02:09] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[12:02:09] [Server thread/INFO]: [PlayerPoints] Data handler connected using MySQL.
[12:02:09] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.3.16+cbf4bd5
[12:02:09] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[12:02:09] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[12:02:09] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_21_4.PaperweightAdapter as the Bukkit adapter
[12:02:09] [Server thread/INFO]: [BlockLocker] Enabling BlockLocker v1.13
[12:02:09] [Server thread/INFO]: [MODNMETL] Enabling MODNMETL v1.0.301-SNAPSHOT
[12:02:09] [Server thread/INFO]: [MODNMETL] MODNMETL MINECRAFT LOADING
[12:02:09] [Server thread/INFO]: [MODNMETL] STARTING MODNMETL CONNECTION
[12:02:09] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.4.1
[12:02:09] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[12:02:09] [Server thread/WARN]: [PlugManX] It seems like you're running on paper.
[12:02:09] [Server thread/WARN]: [PlugManX] PlugManX cannot interact with paper-plugins, yet.
[12:02:09] [Server thread/WARN]: [PlugManX] Also, if you encounter any issues, please join my discord: https://discord.gg/GxEFhVY6ff
[12:02:09] [Server thread/WARN]: [PlugManX] Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
[12:02:09] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[12:02:10] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[12:02:10] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[12:02:10] [Server thread/WARN]: Whilst this makes it possible to use Velocity, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[12:02:10] [Server thread/WARN]: Please see https://docs.papermc.io/velocity/security for further information.
[12:02:10] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[12:02:10] [Server thread/INFO]: Preparing level "pineland"
[12:02:10] [EventThread/INFO]: [MODNMETL] MODNMETL CONNECTED as 9787c8fd-5f95-456d-87c8-fd5f95b56dc8
[12:02:10] [EventThread/INFO]: [MODNMETL] MODNMETL STARTING LOGGING
[12:02:10] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[12:02:10] [Server thread/INFO]: Preparing spawn area: 0%
[12:02:11] [Server thread/INFO]: Preparing spawn area: 0%
[12:02:11] [Server thread/INFO]: Time elapsed: 780 ms
[12:02:11] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[12:02:11] [Server thread/INFO]: Preparing spawn area: 0%
[12:02:11] [Server thread/INFO]: Time elapsed: 444 ms
[12:02:11] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[12:02:12] [Server thread/INFO]: Preparing spawn area: 0%
[12:02:12] [Server thread/INFO]: Time elapsed: 322 ms
[12:02:12] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[12:02:12] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[12:02:12] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[12:02:12] [Server thread/INFO]: [Votifier] Loaded token for website: default
[12:02:12] [Server thread/INFO]: [Votifier] ------------------------------------------------------------------------------
[12:02:12] [Server thread/INFO]: [Votifier] Your Votifier port is less than 0, so we assume you do NOT want to start the
[12:02:12] [Server thread/INFO]: [Votifier] votifier port server! Votifier will not listen for votes over any port, and
[12:02:12] [Server thread/INFO]: [Votifier] will only listen for pluginMessaging forwarded votes!
[12:02:12] [Server thread/INFO]: [Votifier] ------------------------------------------------------------------------------
[12:02:12] [Server thread/INFO]: [Votifier] Receiving votes over PluginMessaging channel 'nuvotifier:votes'.
[12:02:12] [Server thread/INFO]: [Essentials] Enabling Essentials v2.22.0-dev+11-58726fb
[12:02:12] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[12:02:12] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[12:02:12] [Server thread/INFO]: [Essentials] No kits found to migrate.
[12:02:12] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[12:02:12] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[12:02:12] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[12:02:12] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[12:02:12] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[12:02:12] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[12:02:12] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[12:02:12] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[12:02:12] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[12:02:12] [Server thread/INFO]: [Essentials] Selected 1.21.4+ Sync Commands Provider as the provider for SyncCommandsProvider
[12:02:12] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[12:02:12] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[12:02:12] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[12:02:12] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[12:02:12] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[12:02:12] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[12:02:12] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[12:02:12] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[12:02:12] [Server thread/INFO]: [Essentials] Selected Legacy Biome Name Provider as the provider for BiomeNameProvider
[12:02:12] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[12:02:12] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[12:02:12] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[12:02:12] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[12:02:12] [Server thread/INFO]: [Essentials] Loaded 36926 items from items.json.
[12:02:12] [Server thread/INFO]: [Essentials] Using locale en
[12:02:12] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[12:02:13] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[12:02:13] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[12:02:13] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[12:02:13] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.6.2
[12:02:13] [Server thread/INFO]: Server version: v1_21_R3 - 1.21.4 - paper 1.21.4-232-12d8fe0 (MC: 1.21.4)
[12:02:13] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[12:02:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.6.2]
[12:02:13] [Server thread/INFO]: PlaceholderAPI hooked.
[12:02:13] [Server thread/INFO]: Updated (EN) language file. Took 21ms
[12:02:13] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.2.040
[12:02:14] [Server thread/INFO]: [mcMMO] Loaded 220 of 220 Alchemy potions.
[12:02:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcmmo [1.0,0]
[12:02:14] [Server thread/INFO]: [GSit] Enabling GSit v2.4.3
[12:02:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [2.4.3]
[12:02:14] [Server thread/INFO]: [GSit] The Plugin was successfully enabled.
[12:02:14] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[12:02:14] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.39-SNAPSHOT (build 3875)
[12:02:14] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[12:02:14] [Server thread/ERROR]: [Citizens] Could not fetch NMS field cv: [[cv.
[12:02:14] [Server thread/ERROR]: [Citizens] Could not fetch NMS field cv: [[null.
[12:02:14] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.39-SNAPSHOT (build 3875) (Is it up to date?)
java.lang.NoSuchFieldError: Class org.bukkit.entity.EntityType does not have member field 'org.bukkit.entity.EntityType HAPPY_GHAST'
at Citizens.jar/net.citizensnpcs.nms.v1_21_R5.util.NMSImpl.<clinit>(NMSImpl.java:2755) ~[Citizens.jar:?]
at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68) ~[reflection-rewriter-runtime-0.0.3.jar:?]
at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at Citizens.jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:175) ~[Citizens.jar:?]
at Citizens.jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:180) ~[Citizens.jar:?]
at Citizens.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:377) ~[Citizens.jar:?]
at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:658) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:607) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[12:02:14] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.39-SNAPSHOT (build 3875)
[12:02:14] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.13
[12:02:15] [Server thread/INFO]: [BetterRTP] Cooldown = 60
[12:02:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.13]
[12:02:15] [Server thread/INFO]: [Jobs] Enabling Jobs v5.2.6.1
[12:02:15] [Server thread/INFO]: ------------- Jobs -------------
[12:02:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jobsr [5.2.6.1]
[12:02:15] [Server thread/INFO]: PlaceholderAPI hooked.
[12:02:15] [Server thread/INFO]: Connected to database (SqLite)
[12:02:15] [Server thread/INFO]: Loaded 8 titles
[12:02:15] [Server thread/INFO]: Loaded 2 restricted areas!
[12:02:15] [Server thread/INFO]: Loaded 69 protected blocks timers
[12:02:15] [Server thread/INFO]: Loaded 1538 custom item names
[12:02:15] [Server thread/INFO]: Loaded 85 custom entity names
[12:02:15] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[12:02:15] [Server thread/INFO]: Loaded 42 custom enchant names
[12:02:15] [Server thread/INFO]: Loaded 46 custom enchant names
[12:02:15] [Server thread/INFO]: Loaded 16 custom color names
[12:02:15] [Server thread/INFO]: Update shops items icon section and use 'ItemStack' instead
[12:02:15] [Server thread/INFO]: Loaded 4 shop items
[12:02:15] [Server thread/INFO]: Update Woodcutter jobs gui item section to use `ItemStack` instead of `Item` sections format. More information inside _EXAMPLE job file
[12:02:15] [Server thread/INFO]: Loaded 1 quests for Woodcutter
[12:02:15] [Server thread/INFO]: Loaded 1 quests for Hunter
[12:02:15] [Server thread/INFO]: Loaded 1 quests for Digger
[12:02:15] [Server thread/INFO]: Loaded 1 quests for Fisherman
[12:02:15] [Server thread/INFO]: Loaded 1 quests for Farmer
[12:02:15] [Server thread/INFO]: Loaded 5 jobs
[12:02:15] [Server thread/INFO]: Loaded 0 boosted items
[12:02:15] [Server thread/INFO]: Loaded 15600 furnace for reassigning.
[12:02:15] [Server thread/INFO]: Loaded 1170 brewing for reassigning.
[12:02:15] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[12:02:15] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[12:02:15] [Server thread/INFO]: Duplicate in database for (Caleene) -> (1997be05-b027-4f71-b140-902961397525) <-> (d859734b-9d3a-4d32-a86d-ac548f7f7005)
[12:02:15] [Server thread/INFO]: Preloaded 20352 players data in 0.09
[12:02:15] [Server thread/INFO]: mcMMO detected.
[12:02:15] [Server thread/INFO]: Registering listeners...
[12:02:15] [Server thread/INFO]: Registered mcMMO 2.x listener.
[12:02:15] [Server thread/INFO]: Listeners registered successfully
[12:02:15] [Server thread/INFO]: Plugin has been enabled successfully.
[12:02:15] [Server thread/INFO]: ------------------------------------
[12:02:15] [Server thread/INFO]: [DeluxeCombat] Enabling DeluxeCombat v1.70.5
[12:02:15] [Server thread/INFO]: [DeluxeCombat] _____ _ ______ _
[12:02:15] [Server thread/INFO]: [DeluxeCombat] (____ \ | | / _____) | | _
[12:02:15] [Server thread/INFO]: [DeluxeCombat] _ \ \ ____| |_ _ _ _ ____| / ___ ____ | | _ ____| |_
[12:02:15] [Server thread/INFO]: [DeluxeCombat] | | | / _ ) | | | ( \ / ) _ ) | / _ \| \| || \ / _ | _)
[12:02:15] [Server thread/INFO]: [DeluxeCombat] | |__/ ( (/ /| | |_| |) X ( (/ /| \____| |_| | | | | |_) | ( | | |__
[12:02:15] [Server thread/INFO]: [DeluxeCombat] |_____/ \____)_|\____(_/ \_)____)\______)___/|_|_|_|____/ \_||_|\___)
[12:02:15] [Server thread/INFO]: [DeluxeCombat]
[12:02:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxecombat [0.1.2]
[12:02:15] [Server thread/INFO]: [DeluxeCombat] Hook PlaceholderAPI (2.10.9, Common Hook) has been registered.
[12:02:15] [Server thread/ERROR]: [DeluxeCombat] Failed to register events for class nl.marido.deluxecombat.hooks.citizens.CombatLogCitizenListener because net/citizensnpcs/api/event/NPCDeathEvent does not exist.
[12:02:15] [Server thread/ERROR]: [DeluxeCombat] Failed to register events for class nl.marido.deluxecombat.hooks.plugins.commonhook.CitizenHook because net/citizensnpcs/api/event/NPCLeftClickEvent does not exist.
[12:02:15] [Server thread/INFO]: [DeluxeCombat] Hook Citizens (2.0.27, Common Hook) has been registered.
[12:02:15] [Server thread/INFO]: [DeluxeCombat] Hook BetterRTP (3.2.1-3, Common Hook) has been registered.
[12:02:15] [Server thread/INFO]: [DeluxeCombat] Hook Vault (1.7.3, Common Hook) has been registered.
[12:02:15] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[12:02:15] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[12:02:15] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DeluxeCombat' to create a bStats instance!
[12:02:15] [Server thread/INFO]: [DeluxeCombat] Spawnpoints (0), Kill-Streaks (1), Rewards (2), Custom Tools (1) loaded!
[12:02:15] [Server thread/INFO]: [DeluxeCombat] Elo-System path not found. Skipping loading...
[12:02:16] [Server thread/INFO]: [DeluxeCombat] Start fetching marketplace addons...
[12:02:16] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.21.2
[12:02:16] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[12:02:16] [Server thread/INFO]: [HeadDatabase] Economy successfully setup using PLAYERPOINTS!
[12:02:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hdb [4.21.2]
[12:02:16] [Server thread/INFO]: [Pl3xMap] Enabling Pl3xMap v1.21.8-534
[12:02:16] [Server thread/ERROR]: Error occurred while enabling Pl3xMap v1.21.8-534 (Is it up to date?)
java.lang.NoSuchMethodError: 'net.minecraft.core.Registry net.minecraft.core.RegistryAccess$Frozen.f(net.minecraft.resources.ResourceKey)'
at Pl3xMap-1.21.8-534.jar/net.pl3x.map.bukkit.Pl3xMapImpl.loadBlocks(Pl3xMapImpl.java:174) ~[Pl3xMap-1.21.8-534.jar:?]
at Pl3xMap-1.21.8-534.jar/net.pl3x.map.core.Pl3xMap.enable(Pl3xMap.java:212) ~[Pl3xMap-1.21.8-534.jar:?]
at Pl3xMap-1.21.8-534.jar/net.pl3x.map.bukkit.Pl3xMapImpl.enable(Pl3xMapImpl.java:77) ~[Pl3xMap-1.21.8-534.jar:?]
at Pl3xMap-1.21.8-534.jar/net.pl3x.map.bukkit.Pl3xMapBukkit.onEnable(Pl3xMapBukkit.java:63) ~[Pl3xMap-1.21.8-534.jar:?]
at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:658) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:607) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[12:02:16] [Server thread/INFO]: [Pl3xMap] Disabling Pl3xMap v1.21.8-534
[12:02:16] [Server thread/INFO]: [Pl3xMap] [STDOUT] [Pl3xMap] [WARN] An error occurred with the internal webserver
[12:02:16] [Server thread/WARN]: Nag author(s): '[granny, BillyGalbreath, JLyne]' of 'Pl3xMap v1.21.8-534' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[12:02:16] [Server thread/INFO]: [Autorank] Enabling Autorank v5.2.3
[12:02:16] [Server thread/INFO]: [Autorank] mainclass getHumanPluginName = Autorank v5.2.3
[12:02:16] [Server thread/INFO]: [Autorank] mainclass getInternalPluginName = Autorank v5.2.3
[12:02:16] [Server thread/INFO]: [Autorank] mainclass isPluginAvailable = true
[12:02:16] [Server thread/INFO]: [Autorank] Generated new log file: log-2025-08-10.txt
[12:02:16] [Server thread/INFO]: [Autorank] The settings.yml is up-to-date
[12:02:16] [Server thread/INFO]: [Autorank] Generating new PluginLibrary instance
[12:02:16] [Server thread/INFO]: [PluginLibrary] ***== Loading libraries ==***
[12:02:16] [Server thread/INFO]: [PluginLibrary] ***== Loaded 9 libraries! ==***
[12:02:16] [Server thread/INFO]: [PluginLibrary] Loaded libraries: Autorank (by Staartvin), EssentialsX (by drtshock), Jobs (by Zrips), mcMMO (by t00thpick1), NuVotifier (by Ichbinjoe), PlaceholderAPI (by HelpChat), PlayerPoints (by Blackixx), Statz (by Staartvin) and Vault (by Kainzo)
[12:02:16] [Server thread/INFO]: [PluginLibrary] *** Ready for plugins to send/retrieve data. ***
[12:02:16] [Server thread/INFO]: [Autorank] Interval check every 1 minutes.
[12:02:16] [Folia Async Scheduler Thread #2/INFO]: [HeadDatabase] Successfully loaded 55360 heads!
[12:02:16] [Server thread/INFO]: [Autorank] Registered requirement service for adding custom requirements!
[12:02:16] [Server thread/INFO]: [Autorank] Registered result service for adding custom results!
[12:02:16] [Server thread/INFO]: [Autorank] Autorank 5.2.3 has been enabled!
[12:02:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: autorank [5.2.3]
[12:02:16] [Server thread/INFO]: [Autorank] Registered placeholders, so you can use them!
[12:02:16] [Server thread/INFO]: [TicketManagerCore] Enabling TicketManagerCore v11.1.2
[12:02:16] [Server thread/INFO]: [LootChest] Enabling LootChest v2.5.6
[12:02:16] [Server thread/INFO]: [LootChest] Initialized NMS adapter for v1_21_R3 (1.21.4).
[12:02:16] [Server thread/INFO]: [LootChest] Loading config files...
[12:02:16] [Server thread/INFO]: [LootChest] config files loaded
[12:02:16] [Server thread/INFO]: [LootChest] Server version: 1.21
[12:02:16] [Server thread/INFO]: [LootChest] Metrics started
[12:02:16] [Server thread/INFO]: [LootChest] Checking for update...
[12:02:16] [Server thread/INFO]: [LootChest] Starting particles...
[12:02:16] [Folia Async Scheduler Thread #2/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[12:02:16] [Server thread/INFO]: [AxKoth] Enabling AxKoth v2.16.3
[12:02:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: axkoth [1.0.0]
[12:02:17] [Server thread/INFO]: [AxKoth] Loaded plugin!
[12:02:17] [Server thread/INFO]: [CrazyVouchers] Enabling CrazyVouchers v4.1.1
[12:02:17] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.22.0-dev+11-58726fb
[12:02:17] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[12:02:17] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.18.7
[12:02:17] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[12:02:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[12:02:17] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[12:02:18] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[12:02:18] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.18.7
[12:02:18] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v7.8.0
[12:02:18] [Server thread/INFO]: [PlayerWarps] This plugin is licensed to MODNMETL (1318562) from Spigot!
[12:02:18] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[12:02:19] [Server thread/INFO]: [PlayerWarps] Found 25 config files to load!
[12:02:21] [Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[12:02:21] [Server thread/INFO]: [PlayerWarps] Economy plugin found! (EssentialsX Economy)
[12:02:21] [Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[12:02:21] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[12:02:21] [Server thread/INFO]: [PlayerWarps] Found XP Currency integrating support...
[12:02:21] [Server thread/INFO]: [PlayerWarps] Found Item Currency integrating support...
[12:02:21] [Server thread/INFO]: [PlayerWarps] Found Essentials Expansion integrating support...
[12:02:21] [Server thread/INFO]: [PlayerWarps] Found Vault Currency integrating support...
[12:02:22] [Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[12:02:22] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[12:02:22] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[12:02:22] [Server thread/INFO]: [Images] Enabling Images v2.5.7
[12:02:22] [Server thread/INFO]: [Images] PaperMC server detected. Adjustments will be made to accommodate...
[12:02:22] [Server thread/INFO]: [Statz] Enabling Statz v1.6.2
[12:02:22] [Server thread/INFO]: [Statz] Generating new PluginLibrary instance
[12:02:22] [Server thread/INFO]: [PluginLibrary] ***== Loading libraries ==***
[12:02:22] [Server thread/INFO]: [PluginLibrary] ***== Loaded 8 libraries! ==***
[12:02:22] [Server thread/INFO]: [PluginLibrary] Loaded libraries: Autorank (by Staartvin), mcMMO (by t00thpick1), Statz (by Staartvin), Jobs (by Zrips), Vault (by Kainzo), EssentialsX (by drtshock), PlayerPoints (by Blackixx) and NuVotifier (by Ichbinjoe)
[12:02:22] [Server thread/INFO]: [PluginLibrary] *** Ready for plugins to send/retrieve data. ***
[12:02:22] [Server thread/INFO]: [Statz] Using SQLite database!
[12:02:22] [Server thread/INFO]: [Statz] Logging is disabled!
[12:02:22] [Server thread/INFO]: [Statz] Language file loaded (lang.yml)
[12:02:22] [Server thread/INFO]: [Statz] Stats disabled file loaded (disabled-stats.yml)
[12:02:22] [Server thread/INFO]: [Statz] Statz v1.6.2 has been enabled!
[12:02:22] [Server thread/INFO]: [Statz] Statistic description file loaded (statistics.yml)
[12:02:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: statz [1.6.2]
[12:02:22] [Server thread/INFO]: [Equine] Enabling Equine v2.1.12
[12:02:22] [Server thread/INFO]: [SimpleJSONConfig] »» Loading plugin: Equine
[12:02:23] [Server thread/INFO]: [Equine] [ACF] Enabled Asynchronous Tab Completion Support!
[12:02:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: equine [1.0.0]
[12:02:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: equineraces [1.0.0]
[12:02:23] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.4-SNAPSHOT (b118-40d320a)
[12:02:23] [Server thread/INFO]: [TicketManager] Enabling TicketManager v11.1.9
[12:02:23] [Server thread/INFO]: [CommandAPI] Hooked into Paper ServerResourcesReloadedEvent
[12:02:23] [Server thread/INFO]: [TangledMazePlus] Enabling TangledMazePlus v3.1.0
[12:02:23] [Server thread/INFO]: [TangledMazePlus] Successfully detected LootChest plugin for spawning loot chests.
[12:02:23] [Server thread/INFO]: [ArmorStandTools] Enabling ArmorStandTools v4.4.6
[12:02:23] [Server thread/INFO]: [ArmorStandTools] PlotSquared plugin not found. Continuing without PlotSquared support.
[12:02:23] [Server thread/INFO]: [ArmorStandTools] WorldGuard plugin not found. Continuing without WorldGuard support.
[12:02:23] [Server thread/INFO]: [NightMarket] Enabling NightMarket v1.19.0
[12:02:23] [Server thread/INFO]: [NightMarket] This plugin is licensed to MODNMETL (26026) from Polymart!
[12:02:25] [Server thread/INFO]: [NightMarket] Found 6 config files to load!
[12:02:26] [Server thread/INFO]: [NightMarket] Loading menus...
[12:02:27] [Server thread/INFO]: [NightMarket] Permissions plugin found! (LuckPerms)
[12:02:27] [Server thread/INFO]: [NightMarket] Economy plugin found! (EssentialsX Economy)
[12:02:27] [Server thread/INFO]: [NightMarket] Chat plugin found! (LuckPerms)
[12:02:27] [Server thread/INFO]: [NightMarket] Found PlaceholderAPI integrating support...
[12:02:27] [Server thread/INFO]: [NightMarket] Found PlayerPoints Currency integrating support...
[12:02:27] [Server thread/INFO]: [NightMarket] Loading Metrics...
[12:02:27] [Server thread/INFO]: [NightMarket] Successfully loaded Metrics!
[12:02:27] [Server thread/INFO]: [Server Tutorial Plus] Enabling ServerTutorialPlus v1.25.2
[12:02:27] [Server thread/INFO]: [Server Tutorial Plus] Enabling server tutorial...
[12:02:27] [Server thread/INFO]: [Server Tutorial Plus] Using FlatFile as datasource...
[12:02:27] [Server thread/INFO]: [Server Tutorial Plus] Using protocol: nl.martenm.servertutorialplus.reflection.v1_14.Protocol_1_14_V1
[12:02:27] [Server thread/INFO]: [Server Tutorial Plus] Loading server tutorial: start
[12:02:27] [Server thread/INFO]: [Server Tutorial Plus] Loading server tutorial: test
[12:02:27] [Server thread/INFO]: Bukkit API version: 1.21.4
[12:02:27] [Server thread/INFO]: [Server Tutorial Plus] PlaceholderAPI has been found!
[12:02:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ServerTutorialPlus [1.25.2]
[12:02:27] [Server thread/INFO]: [Server Tutorial Plus] Servertutorial enabled successfully!
[12:02:27] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v23.0
[12:02:27] [Server thread/INFO]: [CoreProtect] CoreProtect Community Edition has been successfully enabled!
[12:02:27] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[12:02:27] [Server thread/INFO]: --------------------
[12:02:27] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[12:02:27] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[12:02:27] [Server thread/INFO]: --------------------
[12:02:27] [Server thread/INFO]: [AntiAFKPlus] Enabling AntiAFKPlus v3.2.5
[12:02:27] [Server thread/INFO]: [NoAltsExploits] Enabling NoAltsExploits v5.4
[12:02:27] [Server thread/INFO]: [AnvilColors] Enabling AnvilColors v1.0.5
[12:02:27] [Server thread/INFO]: [AxQuestBoard] Enabling AxQuestBoard v1.14.2
[12:02:28] [Server thread/INFO]: [AxQuestBoard] Loaded plugin! Using H2 database to store data!
[12:02:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: axquestboard [1.14.2]
[12:02:28] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.9.6
[12:02:28] [Server thread/INFO]: [DecentHolograms] Initialized NMS adapter for v1_21_R3 (1.21.4).
[12:02:28] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[12:02:28] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[12:02:28] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[12:02:28] [Server thread/INFO]: [DecentHolograms] NBT-API loaded successfully.
[12:02:28] [Server thread/INFO]: [dtlTradersPlus] Enabling dtlTradersPlus v6.4.34
[12:02:28] [Server thread/INFO]: dtlTradersPlus> Welcome to dtlTradersPlus v6.4.34!
[12:02:28] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[12:02:32] [Server thread/INFO]: dtlTradersPlus> Trying to hook into any Vault supported plugin...
[12:02:32] [Server thread/INFO]: dtlTradersPlus> Vault found! Trying to hook...
[12:02:32] [Server thread/INFO]: dtlTradersPlus> Found economy plugin: EssentialsX Economy
[12:02:32] [Server thread/INFO]: dtlTradersPlus> Loaded 31 guis from the guis config!
[12:02:32] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.39-SNAPSHOT (build 3875)
[12:02:32] [Server thread/WARN]: Enabled plugin with unregistered ConfiguredPluginClassLoader Citizens v2.0.39-SNAPSHOT (build 3875)
[12:02:32] [Server thread/ERROR]: [Citizens] Citizens implementation changed, disabling plugin.
[12:02:32] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.39-SNAPSHOT (build 3875)
[12:02:32] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.39-SNAPSHOT (build 3875) (Is it up to date?)
java.lang.NullPointerException: null
at java.base/java.io.Reader.<init>(Reader.java:168) ~[?:?]
at java.base/java.io.InputStreamReader.<init>(InputStreamReader.java:123) ~[?:?]
at Citizens.jar/net.citizensnpcs.api.util.Translator.getBaseTranslations(Translator.java:93) ~[Citizens.jar:?]
at Citizens.jar/net.citizensnpcs.api.util.Translator.<init>(Translator.java:26) ~[Citizens.jar:?]
at Citizens.jar/net.citizensnpcs.api.util.Translator.setInstance(Translator.java:147) ~[Citizens.jar:?]
at Citizens.jar/net.citizensnpcs.Citizens.setupTranslator(Citizens.java:529) ~[Citizens.jar:?]
at Citizens.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:375) ~[Citizens.jar:?]
at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
at dtlTradersPlus-6.4.34.jar/com.degitise.minevid.dtlTraders.Main.onEnable(Main.java:217) ~[dtlTradersPlus-6.4.34.jar:?]
at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:658) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:607) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[12:02:32] [Server thread/INFO]: dtlTradersPlus> Hooking into Citizens!
[12:02:32] [Server thread/ERROR]: Error occurred while enabling dtlTradersPlus v6.4.34 (Is it up to date?)
java.lang.NoClassDefFoundError: net/citizensnpcs/api/CitizensAPI
at dtlTradersPlus-6.4.34.jar/com.degitise.minevid.dtlTraders.utils.citizens.CitizensHook.<init>(CitizensHook.java:27) ~[dtlTradersPlus-6.4.34.jar:?]
at dtlTradersPlus-6.4.34.jar/com.degitise.minevid.dtlTraders.Main.onEnable(Main.java:221) ~[dtlTradersPlus-6.4.34.jar:?]
at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:658) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:607) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.CitizensAPI
at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
... 14 more
[12:02:32] [Server thread/INFO]: [dtlTradersPlus] Disabling dtlTradersPlus v6.4.34
[12:02:32] [Server thread/INFO]: dtlTradersPlus> Saving shops before shutting down...
[12:02:33] [Server thread/INFO]: dtlTradersPlus> Shops Saved!
[12:02:33] [Server thread/INFO]: [Celebrate] Enabling Celebrate v1.0.6
[12:02:33] [Server thread/INFO]: [KixsChatGames] Enabling KixsChatGames v2.2.0
[12:02:33] [Server thread/INFO]:
[12:02:33] [Server thread/INFO]: --------------------------------------
[12:02:33] [Server thread/INFO]: Kix's Chat Games by kixmc
[12:02:33] [Server thread/INFO]: Starting on version 2.2.0
[12:02:33] [Server thread/INFO]: --------------------------------------
[12:02:33] [Server thread/INFO]:
[12:02:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: kixschatgames [2.2.0]
[12:02:33] [Server thread/INFO]: [SignShop] Enabling SignShop v5.0.0-dev
[12:02:33] [Server thread/INFO]: [SignShop] Checking data version.
[12:02:33] [Server thread/INFO]: [SignShop] Your data is current.
[12:02:33] [Server thread/INFO]: [SignShop] Loading and validating shops, please wait...
[12:02:40] [Server thread/INFO]: [SignShop] Loaded 6002 valid shops.
[12:02:40] [Server thread/WARN]: [SignShop] Essentials signs are enabled, checking for conflicts now!
[12:02:40] [Server thread/WARN]: [SignShop] Even if no conflicts are found, it is recommended to disable all of Essentials signs including -color!
[12:02:40] [Server thread/INFO]: [SignShop] Thank you for enabling metrics!
[12:02:40] [Server thread/INFO]: [SignShop] v5.0.0-dev Enabled
[12:02:40] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.22.0-dev+11-58726fb
[12:02:40] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[12:02:40] [Server thread/INFO]: [KixsAutoAnnouncerPremium] Enabling KixsAutoAnnouncerPremium v1.5.0
[12:02:40] [Server thread/INFO]: --------------------------------------
[12:02:40] [Server thread/INFO]: kix's auto announcer premium
[12:02:40] [Server thread/INFO]: enabled on version 1.5.0
[12:02:40] [Server thread/INFO]: --------------------------------------
[12:02:40] [Server thread/INFO]: [Kix's Auto Announcer ++] Data files loaded successfully.
[12:02:40] [Server thread/INFO]: [Kix's Auto Announcer ++] Loaded 16 broadcasts.
[12:02:40] [Server thread/INFO]: [Elevator] Enabling Elevator v3.14.0
[12:02:40] [Server thread/INFO]: [Tebex] Enabling Tebex v2.2.1
[12:02:40] [Server thread/INFO]: [KeepChunks] Enabling KeepChunks v1.7.3
[12:02:40] [Server thread/INFO]:
[12:02:40] [Server thread/INFO]: _ _ _______ _ _
[12:02:40] [Server thread/INFO]: (_) | | (_______) | | | v1.7.3
[12:02:40] [Server thread/INFO]: _____| |_____ _____ ____ _ | |__ _ _ ____ | | _ ___
[12:02:40] [Server thread/INFO]: | _ _) ___ | ___ | _ \| | | _ \| | | | _ \| |_/ )/___)
[12:02:40] [Server thread/INFO]: | | \ \| ____| ____| |_| | |_____| | | | |_| | | | | _ (|___ |
[12:02:40] [Server thread/INFO]: |_| \_)_____)_____) __/ \______)_| |_|____/|_| |_|_| \_|___/
[12:02:40] [Server thread/INFO]: |_|
[12:02:40] [Server thread/INFO]:
[12:02:40] [Server thread/INFO]: [KeepChunks] KeepChunks v1.7.3 has been enabled
[12:02:40] [Server thread/INFO]: [TimeIsMoney] Enabling TimeIsMoney v1.9.12
[12:02:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tim [1.9.12]
[12:02:40] [Server thread/INFO]: [TimeIsMoney] [TimeIsMoney] &aLoaded 10 Payouts!
[12:02:40] [Server thread/INFO]: [TimeIsMoney] Time is Money: Essentials found. Hook in it -> Will use Essentials's AFK feature if afk is enabled.
[12:02:40] [Server thread/INFO]: [TimeIsMoney] Time is Money v1.9.12 started.
[12:02:40] [Server thread/INFO]: [EssentialsDiscord] Enabling EssentialsDiscord v2.22.0-dev+11-58726fb
[12:02:40] [Server thread/INFO]: [EssentialsDiscord] Starting Metrics. Opt-out using the global bStats config.
[12:02:40] [Server thread/INFO]: [EssentialsDiscord] Attempting to login to Discord...
[12:02:41] [OkHttp https://plugin.tebex.io/.../INFO]: [Tebex] Connected to Pinecraft Equestrian's SMP Server - Minecraft (Offline/Geyser) server.
[12:02:41] [Server thread/INFO]: [net.essentialsx.dep.net.dv8tion.jda.api.JDA] Login Successful!
[12:02:42] [JDA MainWS-ReadThread/INFO]: [net.essentialsx.dep.net.dv8tion.jda.internal.requests.WebSocketClient] Connected to WebSocket
[12:02:42] [JDA MainWS-ReadThread/INFO]: [net.essentialsx.dep.net.dv8tion.jda.api.JDA] Finished Loading!
[12:02:42] [Server thread/INFO]: [EssentialsDiscord] Successfully logged in as Pinebot#2652
[12:02:42] [Server thread/INFO]: [InvSee++] Enabling InvSeePlusPlus v0.30.7
[12:02:42] [Server thread/INFO]: [PlayerAuctions] Enabling PlayerAuctions v1.31.1
[12:02:42] [Server thread/INFO]: [PlayerAuctions] Vault found, now enabling PlayerAuctions...
[12:02:43] [Server thread/INFO]: [PlayerAuctions] Found 21 config files to load!
[12:02:46] [Server thread/INFO]: [PlayerAuctions] Permissions plugin found! (LuckPerms)
[12:02:46] [Server thread/INFO]: [PlayerAuctions] Economy plugin found! (EssentialsX Economy)
[12:02:46] [Server thread/INFO]: [PlayerAuctions] Chat plugin found! (LuckPerms)
[12:02:46] [Server thread/INFO]: [PlayerAuctions] Found PlaceholderAPI integrating support...
[12:02:46] [Server thread/INFO]: [PlayerAuctions] Found Vault Currency integrating support...
[12:02:46] [Server thread/INFO]: [PlayerAuctions] Found Product Converter integrating support...
[12:02:46] [Server thread/INFO]: [PlayerAuctions] Found Item Currency integrating support...
[12:02:46] [Server thread/INFO]: [PlayerAuctions] Found XP Currency integrating support...
[12:02:46] [Server thread/INFO]: [PlayerAuctions] SQLite database is enabling...
[12:02:46] [Server thread/INFO]: [PlayerAuctions] Loading Metrics...
[12:02:46] [Server thread/INFO]: [PlayerAuctions] Successfully loaded Metrics!
[12:02:46] [Server thread/INFO]: [SimpleArmorStandPose] Enabling SimpleArmorStandPose v2.0
[12:02:46] [Server thread/INFO]: [SimpleArmorStandPose] Started up!
[12:02:46] [Server thread/INFO]: [MCPerks] Enabling MCPerks v1.21
[12:02:46] [Server thread/INFO]: [MCPerks] Loaded LuckPerms hook!
[12:02:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcperks [1.4]
[12:02:46] [Server thread/INFO]: [MCPerks] Loading PlaceholderAPI expansion
[12:02:46] [Server thread/INFO]: [Pl3xMapExtras] Enabling Pl3xMapExtras v1.3.0
[12:02:46] [Server thread/ERROR]: Error occurred while enabling Pl3xMapExtras v1.3.0 (Is it up to date?)
java.lang.NoClassDefFoundError: me/arcaniax/hdb/api/HeadDatabaseAPI
at Pl3xMapExtras-1.3.0.jar/com.ryderbelserion.fusion.paper.FusionPaper.enable(FusionPaper.java:57) ~[Pl3xMapExtras-1.3.0.jar:?]
at Pl3xMapExtras-1.3.0.jar/com.ryderbelserion.map.Pl3xMapExtras.onEnable(Pl3xMapExtras.java:28) ~[Pl3xMapExtras-1.3.0.jar:?]
at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:658) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:607) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: me.arcaniax.hdb.api.HeadDatabaseAPI
at io.papermc.paper.plugin.entrypoint.classloader.PaperPluginClassLoader.loadClass(PaperPluginClassLoader.java:146) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at io.papermc.paper.plugin.entrypoint.classloader.PaperPluginClassLoader.loadClass(PaperPluginClassLoader.java:107) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
... 14 more
[12:02:46] [Server thread/INFO]: [Pl3xMapExtras] Disabling Pl3xMapExtras v1.3.0
[12:02:46] [Server thread/ERROR]: Error occurred while disabling Pl3xMapExtras v1.3.0
java.lang.NoClassDefFoundError: net/pl3x/map/core/Pl3xMap
at Pl3xMapExtras-1.3.0.jar/com.ryderbelserion.map.util.ModuleUtil.unload(ModuleUtil.java:176) ~[Pl3xMapExtras-1.3.0.jar:?]
at Pl3xMapExtras-1.3.0.jar/com.ryderbelserion.map.Pl3xMapExtras.onDisable(Pl3xMapExtras.java:73) ~[Pl3xMapExtras-1.3.0.jar:?]
at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:286) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:114) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:550) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:206) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:658) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:607) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.pl3x.map.core.Pl3xMap
at io.papermc.paper.plugin.entrypoint.classloader.PaperPluginClassLoader.loadClass(PaperPluginClassLoader.java:146) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at io.papermc.paper.plugin.entrypoint.classloader.PaperPluginClassLoader.loadClass(PaperPluginClassLoader.java:107) ~[paper-1.21.4.jar:1.21.4-232-12d8fe0]
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
... 17 more
[12:02:46] [Server thread/INFO]: [AdvancedPortals] Enabling AdvancedPortals v2.3.2
[12:02:46] [Server thread/INFO]: [AdvancedPortals] Loading Advanced Portals Core v2.3.2 for MC: 1.21.4
[12:02:46] [Server thread/INFO]: [AdvancedPortals] Advanced portals have been enabled!
[12:02:46] [Server thread/INFO]: [FreedomChat] Enabling FreedomChat v1.7.2
[12:02:46] [Server thread/INFO]: [OtherAnimalTeleport] Enabling OtherAnimalTeleport v2.4-b98
[12:02:46] [Server thread/INFO]: [MobFarmManager] Enabling MobFarmManager v3.0.4.0
[12:02:46] [Server thread/INFO]: MobFarmManager Version 3.0.4.0 has been enabled
[12:02:46] [Server thread/INFO]: [MFM] Using EN locale
[12:02:46] [Server thread/INFO]: [MFM] Hopper control enabled
[12:02:46] [Server thread/INFO]: [MFM] Wolf control enabled
[12:02:47] [Server thread/INFO]: [MFM] Entity spawn check enabled
[12:02:47] [Server thread/INFO]: [MFM] Chunk grouping enabled, chunk radius: 2
[12:02:47] [Server thread/INFO]: [MFM] Auto clean enabled with 30 second interval
[12:02:47] [Server thread/INFO]: [MFM] Ignoring from clean: Armor stands with items, Entities with picked items, Item frames with items, Tames animals, Named animals, Entities with sadle, Baby animals
[12:02:47] [Server thread/INFO]: [MFM] Ignored worlds: Test
[12:02:47] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.10.1
[12:02:47] [Server thread/INFO]: [ajLeaderboards] Using MySQL for board cache. (mysql)
[12:02:47] [Server thread/INFO]: [us.ajg0702.leaderboards.libs.hikari.HikariDataSource] HikariPool-1 - Starting...
[12:02:47] [Server thread/INFO]: [us.ajg0702.leaderboards.libs.hikari.HikariDataSource] HikariPool-1 - Start completed.
[12:02:47] [Server thread/INFO]: [ajLeaderboards] Loaded 6 boards
[12:02:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.10.1]
[12:02:47] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[12:02:47] [Server thread/INFO]: [ajLeaderboards] LuckPerms position context calculator registered!
[12:02:47] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.10.1 by ajgeiss0702 enabled!
[12:02:47] [Server thread/INFO]: [TooManyGen] Enabling TooManyGen v1.2.1
[12:02:47] [Server thread/INFO]: [TooManyGen] Initializing listener for world pineland
[12:02:47] [Server thread/INFO]: [TooManyGen] Initializing listener for world pineland_nether
[12:02:47] [Server thread/INFO]: [TooManyGen] Initializing listener for world pineland_the_end
[12:02:47] [Server thread/INFO]: [TooManyGen] Enabling bStats
[12:02:47] [Server thread/INFO]: [TooManyGen] Found ProtocolLib, packet listener enabled
[12:02:47] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.4
[12:02:47] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[12:02:47] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[12:02:47] [Server thread/INFO]: | Command file(s) found : 38
[12:02:47] [Server thread/INFO]: | Config : Ready.
[12:02:47] [Server thread/INFO]: | Custom commands loaded : 38
[12:02:47] [Server thread/INFO]: | New update available : MyCommand v5.7.5
[12:02:47] [Server thread/INFO]: | 0 (custom) commands in cooldown added.
[12:02:47] [Server thread/INFO]: | by emmerrei a.k.a. ivanfromitaly.
[12:02:47] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-* Done! *-=-=-=-=-=-=-=-=-=-=-*
[12:02:47] [Server thread/INFO]: [ColoredBooked] Enabling ColoredBooked v1.0
[12:02:47] [Server thread/INFO]: [ChatSentry] Enabling ChatSentry v5.6.5
[12:02:47] [Server thread/INFO]:
[12:02:47] [Server thread/INFO]: _____ _ _ _____ _
[12:02:47] [Server thread/INFO]: / __ \ | | | / ___| | |
[12:02:47] [Server thread/INFO]: | / \/ |__ __ _| |_\ `--. ___ _ __ | |_ _ __ _ _
[12:02:47] [Server thread/INFO]: | | | '_ \ / _` | __|`--. \/ _ \ '_ \| __| '__| | | |
[12:02:47] [Server thread/INFO]: | \__/\ | | | (_| | |_/\__/ / __/ | | | |_| | | |_| |
[12:02:47] [Server thread/INFO]: \____/_| |_|\__,_|\__\____/ \___|_| |_|\__|_| \__, |
[12:02:47] [Server thread/INFO]: __/ |
[12:02:47] [Server thread/INFO]: |___/
[12:02:47] [Server thread/INFO]: Starting on version 5.6.5
[12:02:47] [Server thread/INFO]:
[12:02:47] [Server thread/INFO]: [ChatSentry] Validating files...
[12:02:47] [Server thread/INFO]: [ChatSentry] Loaded files; no issues were found.
[12:02:47] [Server thread/INFO]: [ChatSentry] Using SQLite (flatfile) for storage.
[12:02:47] [Server thread/INFO]: [ChatSentry] Cache is waiting for the server to begin ticking...
[12:02:47] [Server thread/INFO]: [ChatSentry Anti Join Flood] Startup timer is enabled; monitoring for bot join flood attempts will begin in 2 minutes and 30 seconds.
[12:02:47] [Server thread/INFO]: [ChatSentry Auto Punisher] Auto expiring warnings that are more than 12 hours old; updating database every 12 hours.
[12:02:47] [Server thread/INFO]: [Virtual Realty] Enabling VirtualRealty v2.8.4
[12:02:47] [Server thread/INFO]: [Virtual Realty] Plugin is up to date!
[12:02:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: virtualrealty [2.8.4]
[12:02:49] [Server thread/INFO]: [Virtual Realty] Virtual Realty has been enabled!
[12:02:49] [pool-79-thread-1/INFO]: [ajLeaderboards] You are up to date! (2.10.1)
[12:02:49] [Server thread/INFO]: [spark] Starting background profiler...
[12:02:49] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[12:02:49] [Server thread/INFO]: Done preparing level "pineland" (39.456s)
[12:02:49] [Server thread/INFO]: Running delayed init tasks
[12:02:49] [Craft Scheduler Thread - 15 - Autorank/INFO]: [Autorank] Loading UUID storage files...
[12:02:49] [Craft Scheduler Thread - 19 - LootChest/INFO]: [LootChest] Loading holograms...
[12:02:49] [Craft Scheduler Thread - 12 - Autorank/INFO]: [Autorank] Primary storage provider of Autorank: FlatFileStorageProvider
[12:02:49] [Craft Scheduler Thread - 19 - LootChest/INFO]: [LootChest] Loaded 0 holograms!
[12:02:49] [Craft Scheduler Thread - 20 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[12:02:49] [Craft Scheduler Thread - 6 - Essentials/INFO]: [Essentials] Fetching version information...
[12:02:49] [ForkJoinPool.commonPool-worker-4/ERROR]: [Autorank] Can't find UUID storage file for g
[12:02:49] [Craft Scheduler Thread - 15 - Autorank/INFO]: [Autorank] Loaded UUID storage in 0 seconds.
[12:02:49] [Craft Scheduler Thread - 15 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms...
[12:02:49] [Craft Scheduler Thread - 30 - PlayerAuctions/INFO]: [PlayerAuctions] Loading auction items...
[12:02:49] [Craft Scheduler Thread - 24 - Statz/INFO]: [Statz] ---------- [Applying Database patches] ----------
[12:02:49] [Craft Scheduler Thread - 24 - Statz/INFO]: [Statz] ---------- [No patches were applied! Database is already up-to-date.] ----------
[12:02:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerpoints [3.3.2]
[12:02:49] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[12:02:49] [Craft Scheduler Thread - 40 - MCPerks/INFO]: [MCPerks] VotingPlugin hook loaded
[12:02:49] [Craft Scheduler Thread - 46 - Vault/INFO]: [Vault] Checking for Updates ...
[12:02:49] [Craft Scheduler Thread - 46 - Vault/INFO]: [Vault] No new version available
[12:02:49] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (Essentials)
[12:02:49] [Craft Scheduler Thread - 15 - DecentHolograms/INFO]: [DecentHolograms] Loaded 101 holograms!
[12:02:49] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (LuckPerms)
[12:02:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pw [7.8.0]
[12:02:49] [Craft Scheduler Thread - 9 - LootChest/INFO]: [LootChest] The plugin seems up to date.
[12:02:49] [Craft Scheduler Thread - 25 - TangledMazePlus/INFO]: [TangledMazePlus] Plugin is up to date :)
[12:02:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: nightmarket [1.19.0]
[12:02:49] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[12:02:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pa [1.31.1]
[12:02:49] [Server thread/INFO]: [Autorank] Found Statz plugin: Statz (by Staartvin)
[12:02:49] [Server thread/INFO]: [Autorank] Hooked into Statz (by Staartvin)
[12:02:49] [Server thread/INFO]: [Autorank] Registering statistics of vanilla Minecraft!
[12:02:49] [Server thread/INFO]: [Autorank] Loaded libraries and dependencies
[12:02:49] [Server thread/INFO]: [OtherAnimalTeleport] AnimalTeleport has been enabled!
[12:02:49] [Server thread/INFO]: [ChatSentry] Cached ~213 variables and settings across 21 files.
[12:02:49] [Server thread/INFO]: [ChatSentry] Data caching complete.
[12:02:49] [Server thread/INFO]: [ChatSentry] Initalized modules.
[12:02:49] [Server thread/INFO]: [ChatSentry] Startup finished!
[12:02:49] [Server thread/INFO]: [ChatSentry] Automatically cleaning log data older than 30 day(s).
[12:02:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[12:02:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: servertime [3.2]
[12:02:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[12:02:49] [Server thread/WARN]: [PlaceholderAPI] autorank is attempting to register placeholders via deprecated PlaceholderHook class. This class is no longer supported and will be removed in v2.13.0!
[12:02:49] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion autorank due to an unknown issue.
[12:02:49] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion Statz. Identifier is already in use.
[12:02:49] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion Statz due to an unknown issue.
[12:02:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: objective [4.2.0]
[12:02:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.4]
[12:02:49] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion votingplugin. Identifier is already in use.
[12:02:49] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion votingplugin due to an unknown issue.
[12:02:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.0]
[12:02:49] [Server thread/INFO]: 6 placeholder hook(s) registered! 3 placeholder hook(s) have an update available.
[12:02:49] [Server thread/INFO]: [Kix's Auto Announcer ++ Updater] You are running the latest version of KAA++.
[12:02:49] [Server thread/INFO]: [KixsChatGames Updater] You are running the latest version of KixsChatGames.
[12:02:49] [Server thread/INFO]: [ChatSentry Updater] You are running the latest version of ChatSentry.
[12:02:49] [Server thread/INFO]: Done (52.047s)! For help, type "help"
[12:02:49] [Craft Scheduler Thread - 16 - DeluxeCombat/INFO]: [DeluxeCombat] Successfully fetched 15 marketplace items from the internet!
[12:02:49] [Craft Scheduler Thread - 5 - OtherAnimalTeleport/WARN]: [OtherAnimalTeleport] Hooray! You're running the latest version!
[12:02:49] [Craft Scheduler Thread - 17 - Autorank/INFO]: [Autorank] Removed 0 old storage entries from database!
[12:02:50] [Craft Scheduler Thread - 6 - Essentials/WARN]: [Essentials] You're 1 EssentialsX dev build(s) out of date!
[12:02:50] [Craft Scheduler Thread - 6 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[12:02:50] [Netty Epoll Server IO #0/INFO]: [floodgate] Floodgate player logged in as .Thewinddust disconnected
[12:02:52] [Server thread/INFO]: [LootChest] Loading chests...
[12:02:52] [Server thread/INFO]: [LootChest] Loaded 31 Lootchests in 3 miliseconds
[12:02:52] [Server thread/INFO]: [LootChest] Starting LootChest timers asynchronously...
[12:02:52] [Server thread/INFO]: [LootChest] Plugin loaded
[12:02:52] [Craft Scheduler Thread - 29 - DeluxeCombat/INFO]: [DeluxeCombat] Checking for new updates...
[12:02:52] [Craft Scheduler Thread - 29 - DeluxeCombat/INFO]: [DeluxeCombat] You're running the newest version of DeluxeCombat
[12:02:53] [Server thread/INFO]: [MODNMETL] Checking for queued items...
[12:02:53] [Craft Scheduler Thread - 35 - Images/INFO]: [Images] Loaded 97 images...
[12:02:53] [EventThread/INFO]: [MODNMETL] Successfully got MODNMETL QUEUE - found 0 items
[12:02:54] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[12:02:54] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[12:02:54] [Server thread/INFO]: [MCPerks] Successfully hooked into vault economy!
[12:02:54] [Server thread/INFO]: [MCPerks] Hooked into vault permissions
[12:02:56] [Server thread/INFO]: [DeluxeCombat] Addon GSit Addon (v.1.0.3, timderspieler) has been installed successfully!
[12:02:56] [Server thread/INFO]: [DeluxeCombat] Addon EssentialsX Addon (v.1.0.1, timderspieler) has been installed successfully!
[12:02:56] [Server thread/INFO]: [DeluxeCombat] Hook EssentialsX (2.19.7, Combat Hook) has been registered.
[12:02:56] [Server thread/INFO]: [DeluxeCombat] Addon mcMMO Addon (v.1.0.1, timderspieler) has been installed successfully!
[12:02:56] [Server thread/INFO]: [DeluxeCombat] Hook mcMMO (2.1.219, Common Hook) has been registered.
[12:02:56] [Server thread/INFO]: [DeluxeCombat] Hooked into EssentialsX, PlaceholderAPI, Citizens, BetterRTP, Vault, mcMMO and Vault.
[12:02:59] [Server thread/INFO]: [MyCommand] found an update for MyCommand. Type /mycommand for more infos.
[12:02:59] [Craft Scheduler Thread - 7 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.18.7
[12:03:13] [User Authenticator #0/INFO]: UUID of player Miley123e1 is 650192cb-6535-4540-984b-d4d62df4fde1
[12:03:13] [Server thread/INFO]: Disconnecting Miley123e1 (/202.138.30.69:36216): Whitelist enabled!
[12:03:13] [Server thread/INFO]: Miley123e1 (/202.138.30.69:36216) lost connection: Whitelist enabled!
[12:03:51] [Netty Epoll Server IO #1/INFO]: [floodgate] Floodgate player logged in as .Thewinddust disconnected
[12:04:14] [Netty Epoll Server IO #2/INFO]: [floodgate] Floodgate player logged in as .RenownedRhino29 disconnected
[12:05:02] [Netty Epoll Server IO #0/INFO]: [floodgate] Floodgate player logged in as .RenownedRhino29 disconnected
[12:05:19] [Server thread/INFO]: [ChatSentry Anti Join Flood] Startup timer ended; now monitoring bot join flood attempts!
[12:05:34] [Netty Epoll Server IO #0/INFO]: [floodgate] Floodgate player logged in as .Thewinddust disconnected
[12:05:53] [pool-51-thread-1/INFO]: [VotingPlugin] Pausing skull caching due to hitting rate limit or an error, increasing delay for caching
[12:07:01] [User Authenticator #1/INFO]: UUID of player 2005Blocks is b4a96462-5b53-4484-b8f7-bfabeb49ce56
[12:07:01] [Server thread/INFO]: Disconnecting 2005Blocks (/86.95.252.175:33926): Whitelist enabled!
[12:07:01] [Server thread/INFO]: 2005Blocks (/86.95.252.175:33926) lost connection: Whitelist enabled!
[12:07:12] [User Authenticator #1/INFO]: UUID of player 2005Blocks is b4a96462-5b53-4484-b8f7-bfabeb49ce56
[12:07:12] [Server thread/INFO]: Disconnecting 2005Blocks (/86.95.252.175:53074): Whitelist enabled!
[12:07:12] [Server thread/INFO]: 2005Blocks (/86.95.252.175:53074) lost connection: Whitelist enabled!
[12:07:12] [User Authenticator #1/INFO]: Disconnecting 2005Blocks (/86.95.252.175:53080): You're relogging too fast!
Please wait 7 seconds before connecting again.
[12:07:12] [User Authenticator #1/INFO]: UUID of player 2005Blocks is b4a96462-5b53-4484-b8f7-bfabeb49ce56
[12:07:12] [Server thread/INFO]: 2005Blocks (/86.95.252.175:53080) lost connection: You're relogging too fast!
Please wait 7 seconds before connecting again.
[12:07:30] [User Authenticator #1/INFO]: UUID of player 2005Blocks is b4a96462-5b53-4484-b8f7-bfabeb49ce56
[12:07:30] [Server thread/INFO]: Disconnecting 2005Blocks (/86.95.252.175:36578): Whitelist enabled!
[12:07:30] [Server thread/INFO]: 2005Blocks (/86.95.252.175:36578) lost connection: Whitelist enabled!
[12:07:51] [User Authenticator #1/INFO]: UUID of player Miley123e1 is 650192cb-6535-4540-984b-d4d62df4fde1
[12:07:51] [Server thread/INFO]: Disconnecting Miley123e1 (/202.138.30.69:37416): Whitelist enabled!
[12:07:51] [Server thread/INFO]: Miley123e1 (/202.138.30.69:37416) lost connection: Whitelist enabled!
[12:07:58] [User Authenticator #1/INFO]: UUID of player Miley123e1 is 650192cb-6535-4540-984b-d4d62df4fde1
[12:07:58] [Server thread/INFO]: Disconnecting Miley123e1 (/202.138.30.69:37420): Whitelist enabled!
[12:07:58] [Server thread/INFO]: Miley123e1 (/202.138.30.69:37420) lost connection: Whitelist enabled!
[12:08:30] [Netty Epoll Server IO #0/INFO]: [floodgate] Floodgate player logged in as .PinkPanther9315 disconnected
[12:08:32] [Netty Epoll Server IO #1/INFO]: [floodgate] Floodgate player logged in as .PinkPanther9315 disconnected
[12:08:35] [Netty Epoll Server IO #2/INFO]: [floodgate] Floodgate player logged in as .PinkPanther9315 disconnected
[12:08:46] [User Authenticator #1/INFO]: UUID of player 2005Blocks is b4a96462-5b53-4484-b8f7-bfabeb49ce56
[12:08:46] [Server thread/INFO]: Disconnecting 2005Blocks (/86.95.252.175:38390): Whitelist enabled!
[12:08:46] [Server thread/INFO]: 2005Blocks (/86.95.252.175:38390) lost connection: Whitelist enabled!
[12:09:19] [Netty Epoll Server IO #0/INFO]: [floodgate] Floodgate player logged in as .RenownedRhino29 disconnected
[12:09:27] [User Authenticator #1/INFO]: UUID of player 2005Blocks is b4a96462-5b53-4484-b8f7-bfabeb49ce56
[12:09:27] [Server thread/INFO]: Disconnecting 2005Blocks (/86.95.252.175:51968): Whitelist enabled!
[12:09:27] [Server thread/INFO]: 2005Blocks (/86.95.252.175:51968) lost connection: Whitelist enabled!
[12:10:22] [Server thread/INFO]: Stopping the server
[12:10:22] [Server thread/INFO]: Stopping server
[12:10:22] [Server thread/INFO]: [Virtual Realty] Disabling VirtualRealty v2.8.4
[12:10:22] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[12:10:22] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[12:10:22] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'VirtualRealty' to create a bStats instance!
[12:10:25] [Server thread/INFO]: [ChatSentry] Disabling ChatSentry v5.6.5
[12:10:25] [Server thread/INFO]: [ChatSentry] All processes & tasks have been stopped.
[12:10:25] [Server thread/INFO]: [ColoredBooked] Disabling ColoredBooked v1.0
[12:10:25] [Server thread/INFO]: [MyCommand] Disabling MyCommand v5.7.4
[12:10:25] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[12:10:25] [Server thread/INFO]: | Tasks : Stopped all tasks.
[12:10:25] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-* Bye! *-=-=-=-=-=-=-=-=-=-=-*
[12:10:25] [Server thread/INFO]: [TooManyGen] Disabling TooManyGen v1.2.1
[12:10:25] [Server thread/INFO]: [ajLeaderboards] Disabling ajLeaderboards v2.10.1
[12:10:25] [pool-84-thread-1/INFO]: [ajLeaderboards] Shutting down cache method..
[12:10:25] [pool-84-thread-1/INFO]: [us.ajg0702.leaderboards.libs.hikari.HikariDataSource] HikariPool-1 - Shutdown initiated...
[12:10:25] [pool-84-thread-1/INFO]: [us.ajg0702.leaderboards.libs.hikari.HikariDataSource] HikariPool-1 - Shutdown completed.
[12:10:25] [pool-84-thread-1/INFO]: [ajLeaderboards] Cache method shut down
[12:10:25] [Server thread/INFO]: [ajLeaderboards] Killing remaining workers
[12:10:25] [Server thread/INFO]: [ajLeaderboards] Remaining workers killed
[12:10:25] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.10.1 disabled.
[12:10:25] [Server thread/INFO]: [MobFarmManager] Disabling MobFarmManager v3.0.4.0
[12:10:25] [Server thread/INFO]: [OtherAnimalTeleport] Disabling OtherAnimalTeleport v2.4-b98
[12:10:25] [Server thread/INFO]: [FreedomChat] Disabling FreedomChat v1.7.2
[12:10:25] [Server thread/INFO]: [AdvancedPortals] Disabling AdvancedPortals v2.3.2
[12:10:25] [Server thread/INFO]: [AdvancedPortals] Advanced portals are being disabled!
[12:10:25] [Server thread/INFO]: [MCPerks] Disabling MCPerks v1.21
[12:10:25] [Server thread/INFO]: [MCPerks] Allowing background tasks to finish, this could take up to 5 seconds
[12:10:25] [Server thread/INFO]: [SimpleArmorStandPose] Disabling SimpleArmorStandPose v2.0
[12:10:25] [Server thread/INFO]: [SimpleArmorStandPose] Disabled up!
[12:10:25] [Server thread/INFO]: [PlayerAuctions] Disabling PlayerAuctions v1.31.1
[12:10:25] [Server thread/INFO]: [InvSee++] Disabling InvSeePlusPlus v0.30.7
[12:10:25] [Server thread/INFO]: [PlugManX] Disabling PlugManX v2.4.1
[12:10:25] [Server thread/INFO]: [EssentialsDiscord] Disabling EssentialsDiscord v2.22.0-dev+11-58726fb
[12:10:25] [Server thread/INFO]: [TimeIsMoney] Disabling TimeIsMoney v1.9.12
[12:10:25] [Server thread/INFO]: [KeepChunks] Disabling KeepChunks v1.7.3
[12:10:25] [Server thread/INFO]: [Tebex] Disabling Tebex v2.2.1
[12:10:25] [Server thread/INFO]: [Elevator] Disabling Elevator v3.14.0
[12:10:25] [Server thread/INFO]: [KixsAutoAnnouncerPremium] Disabling KixsAutoAnnouncerPremium v1.5.0
[12:10:25] [Server thread/INFO]: [Kix's Auto Announcer ++] Goodbye!
[12:10:25] [Server thread/INFO]: [EssentialsSpawn] Disabling EssentialsSpawn v2.22.0-dev+11-58726fb
[12:10:25] [Server thread/INFO]: [SignShop] Disabling SignShop v5.0.0-dev
[12:10:26] [Server thread/INFO]: [SignShop] Successfully cancelled async sellers.yml save task with ID: 155
[12:10:26] [Server thread/INFO]: [SignShop] Successfully cancelled async timing.yml save task with ID: 156
[12:10:26] [Server thread/INFO]: [SignShop] Disabled
[12:10:26] [Server thread/INFO]: [KixsChatGames] Disabling KixsChatGames v2.2.0
[12:10:26] [Server thread/INFO]: [Kix's Chat Games] Goodbye!
[12:10:26] [Server thread/INFO]: [Celebrate] Disabling Celebrate v1.0.6
[12:10:26] [Server thread/INFO]: [DecentHolograms] Disabling DecentHolograms v2.9.6
[12:10:26] [Server thread/INFO]: [AxQuestBoard] Disabling AxQuestBoard v1.14.2
[12:10:26] [Server thread/INFO]: [AnvilColors] Disabling AnvilColors v1.0.5
[12:10:26] [Server thread/INFO]: [MODNMETL] Disabling MODNMETL v1.0.301-SNAPSHOT
[12:10:26] [Server thread/INFO]: [MODNMETL] MODNMETL MINECRAFT DISABLED
[12:10:26] [Server thread/INFO]: [NoAltsExploits] Disabling NoAltsExploits v5.4
[12:10:26] [EventThread/ERROR]: [io.socket.thread.EventThread] Task threw exception
java.lang.IllegalStateException: zip file closed
at java.base/java.util.zip.ZipFile.ensureOpen(ZipFile.java:846) ~[?:?]
at java.base/java.util.zip.ZipFile.getEntry(ZipFile.java:338) ~[?:?]
at java.base/java.util.jar.JarFile.getEntry(JarFile.java:516) ~[?:?]
at java.base/java.util.jar.JarFile.getJarEntry(JarFile.java:471) ~[?:?]
at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:209) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:593) ~[?:?]
at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:169) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
at modnmetl-1.0.301-SNAPSHOT.jar/io.socket.engineio.client.Socket.close(Socket.java:757) ~[modnmetl-1.0.301-SNAPSHOT.jar:?]
at modnmetl-1.0.301-SNAPSHOT.jar/io.socket.client.Manager.close(Manager.java:548) ~[modnmetl-1.0.301-SNAPSHOT.jar:?]
at modnmetl-1.0.301-SNAPSHOT.jar/io.socket.client.Manager.destroy(Manager.java:481) ~[modnmetl-1.0.301-SNAPSHOT.jar:?]
at modnmetl-1.0.301-SNAPSHOT.jar/io.socket.client.Socket.destroy(Socket.java:425) ~[modnmetl-1.0.301-SNAPSHOT.jar:?]
at modnmetl-1.0.301-SNAPSHOT.jar/io.socket.client.Socket.access$1300(Socket.java:24) ~[modnmetl-1.0.301-SNAPSHOT.jar:?]
at modnmetl-1.0.301-SNAPSHOT.jar/io.socket.client.Socket$8.run(Socket.java:444) ~[modnmetl-1.0.301-SNAPSHOT.jar:?]
at modnmetl-1.0.301-SNAPSHOT.jar/io.socket.thread.EventThread$2.run(EventThread.java:80) ~[modnmetl-1.0.301-SNAPSHOT.jar:?]
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[12:10:26] [EventThread/WARN]: Exception in thread "EventThread" java.lang.IllegalStateException: zip file closed
[12:10:26] [EventThread/WARN]: at java.base/java.util.zip.ZipFile.ensureOpen(ZipFile.java:846)
[12:10:26] [EventThread/WARN]: at java.base/java.util.zip.ZipFile.getEntry(ZipFile.java:338)
[12:10:26] [EventThread/WARN]: at java.base/java.util.jar.JarFile.getEntry(JarFile.java:516)
[12:10:26] [EventThread/WARN]: at java.base/java.util.jar.JarFile.getJarEntry(JarFile.java:471)
[12:10:26] [EventThread/WARN]: at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:209)
[12:10:26] [EventThread/WARN]: at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:593)
[12:10:26] [EventThread/WARN]: at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:169)
[12:10:26] [EventThread/WARN]: at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[12:10:26] [EventThread/WARN]: at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[12:10:26] [EventThread/WARN]: at modnmetl-1.0.301-SNAPSHOT.jar//io.socket.engineio.client.Socket.close(Socket.java:757)
[12:10:26] [EventThread/WARN]: at modnmetl-1.0.301-SNAPSHOT.jar//io.socket.client.Manager.close(Manager.java:548)
[12:10:26] [EventThread/WARN]: at modnmetl-1.0.301-SNAPSHOT.jar//io.socket.client.Manager.destroy(Manager.java:481)
[12:10:26] [EventThread/WARN]: at modnmetl-1.0.301-SNAPSHOT.jar//io.socket.client.Socket.destroy(Socket.java:425)
[12:10:26] [EventThread/WARN]: at modnmetl-1.0.301-SNAPSHOT.jar//io.socket.client.Socket.access$1300(Socket.java:24)
[12:10:26] [EventThread/WARN]: at modnmetl-1.0.301-SNAPSHOT.jar//io.socket.client.Socket$8.run(Socket.java:444)
[12:10:26] [EventThread/WARN]: at modnmetl-1.0.301-SNAPSHOT.jar//io.socket.thread.EventThread$2.run(EventThread.java:80)
[12:10:26] [EventThread/WARN]: at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[12:10:26] [EventThread/WARN]: at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[12:10:26] [EventThread/WARN]: at java.base/java.lang.Thread.run(Thread.java:1583)
[12:10:26] [Server thread/INFO]: [AntiAFKPlus] Disabling AntiAFKPlus v3.2.5
[12:10:26] [Server thread/INFO]: [CoreProtect] Disabling CoreProtect v23.0
[12:10:26] [Server thread/INFO]: [CoreProtect] Finishing up data logging. Please wait...
[12:10:26] [Server thread/INFO]: [CoreProtect] Success! Disabled CoreProtect v23.0
[12:10:26] [Server thread/INFO]: [Server Tutorial Plus] Disabling ServerTutorialPlus v1.25.2
[12:10:26] [Server thread/INFO]: [Server Tutorial Plus] Disabling server tutorial...
[12:10:26] [Server thread/INFO]: [Server Tutorial Plus] Successfully disabled server tutorial! Thanks for using this plugin.
[12:10:26] [Server thread/INFO]: [NightMarket] Disabling NightMarket v1.19.0
[12:10:27] [Server thread/INFO]: [ArmorStandTools] Disabling ArmorStandTools v4.4.6
[12:10:27] [Server thread/INFO]: [TangledMazePlus] Disabling TangledMazePlus v3.1.0
[12:10:27] [Server thread/INFO]: [TicketManager] Disabling TicketManager v11.1.9
[12:10:27] [Server thread/INFO]: [floodgate] Disabling floodgate v2.2.4-SNAPSHOT (b118-40d320a)
[12:10:27] [Server thread/INFO]: [Equine] Disabling Equine v2.1.12
[12:10:27] [Server thread/INFO]: [Statz] Disabling Statz v1.6.2
[12:10:27] [Server thread/INFO]: [Statz] Statz v1.6.2 has been disabled!
[12:10:27] [Server thread/INFO]: [Images] Disabling Images v2.5.7
[12:10:27] [Server thread/INFO]: [PlayerWarps] Disabling PlayerWarps v7.8.0
[12:10:27] [Server thread/INFO]: [VotingPlugin] Disabling VotingPlugin v6.18.7
[12:10:27] [Server thread/INFO]: [VotingPlugin] Allowing background tasks to finish, this could take up to 5 seconds
[12:10:27] [Server thread/INFO]: [EssentialsChat] Disabling EssentialsChat v2.22.0-dev+11-58726fb
[12:10:27] [Server thread/INFO]: [BlockLocker] Disabling BlockLocker v1.13
[12:10:27] [Server thread/INFO]: [CrazyVouchers] Disabling CrazyVouchers v4.1.1
[12:10:27] [Server thread/INFO]: [AxKoth] Disabling AxKoth v2.16.3
[12:10:28] [Server thread/INFO]: [LootChest] Disabling LootChest v2.5.6
[12:10:28] [Server thread/INFO]: [LootChest] Backed up data file in case of crash
[12:10:28] [Server thread/INFO]: [TicketManagerCore] Disabling TicketManagerCore v11.1.2
[12:10:28] [Server thread/INFO]: [Autorank] Disabling Autorank v5.2.3
[12:10:28] [Server thread/INFO]: [Autorank] Autorank 5.2.3 has been disabled!
[12:10:28] [Server thread/INFO]: [HeadDatabase] Disabling HeadDatabase v4.21.2
[12:10:28] [Server thread/INFO]: [DeluxeCombat] Disabling DeluxeCombat v1.70.5
[12:10:28] [Server thread/INFO]: [DeluxeCombat] Closing SQLite connection...
[12:10:28] [Server thread/INFO]: [DeluxeCombat] SQLite connection closed.
[12:10:28] [Server thread/INFO]: [WorldEdit] Disabling WorldEdit v7.3.16+cbf4bd5
[12:10:28] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[12:10:28] [Server thread/INFO]: [Jobs] Disabling Jobs v5.2.6.1
[12:10:28] [Server thread/INFO]: ------------- Jobs -------------
[12:10:28] [Jobs-DatabaseSaveTask/INFO]: Database save task shutdown!
[12:10:28] [Jobs-BufferedPaymentThread/INFO]: Buffered payment thread shutdown.
[12:10:28] [Server thread/INFO]: Cleared boss bar cache
[12:10:28] [Server thread/INFO]: Saved player data
[12:10:28] [Server thread/INFO]: Closed database connection
[12:10:28] [Server thread/INFO]: ------------------------------------
[12:10:28] [Server thread/INFO]: [GSit] Disabling GSit v2.4.3
[12:10:28] [Server thread/INFO]: [GSit] The Plugin was successfully disabled.
[12:10:28] [Server thread/INFO]: [mcMMO] Disabling mcMMO v2.2.040
[12:10:28] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion mcmmo
[12:10:28] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin mcMMO was disabled.
[12:10:28] [Server thread/INFO]: [mcMMO] Server shutdown has been executed, saving and cleaning up data...
[12:10:28] [Server thread/INFO]: [CMILib] Disabling CMILib v1.5.6.2
[12:10:28] [Server thread/INFO]: [Essentials] Disabling Essentials v2.22.0-dev+11-58726fb
[12:10:28] [Server thread/INFO]: [Vault] [Economy] Essentials Economy unhooked.
[12:10:28] [Server thread/INFO]: [PlayerPoints] Disabling PlayerPoints v3.3.2
[12:10:28] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Shutdown initiated...
[12:10:28] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Shutdown completed.
[12:10:28] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v5.4.0
[12:10:28] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b131
[12:10:28] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion vault
[12:10:28] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin Vault was disabled.
[12:10:28] [Server thread/INFO]: [Votifier] Disabling Votifier v2.7.3
[12:10:28] [Server thread/INFO]: [Votifier] Votifier disabled.
[12:10:28] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.11.6
[12:10:28] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.5.10
[12:10:28] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[12:10:28] [Server thread/INFO]: [LuckPerms] Closing messaging service...
[12:10:28] [Server thread/INFO]: [LuckPerms] Closing storage...
[12:10:28] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Shutdown initiated...
[12:10:28] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Shutdown completed.
[12:10:28] [Server thread/INFO]: [LuckPerms] Goodbye!
[12:10:28] [Server thread/INFO]: Saving players
[12:10:28] [Server thread/INFO]: Saving worlds
[12:10:28] [Server thread/INFO]: Saving chunks for level 'ServerLevel[pineland]'/minecraft:overworld
[12:10:28] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'pineland'
[12:10:28] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'pineland'
[12:10:28] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'pineland'
[12:10:28] [Server thread/INFO]: [ChunkHolderManager] Saved 19 block chunks, 107 entity chunks, 0 poi chunks in world 'pineland' in 0.02s
[12:10:28] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'pineland'
[12:10:28] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'pineland'
[12:10:28] [Server thread/INFO]: Saving chunks for level 'ServerLevel[pineland_nether]'/minecraft:the_nether
[12:10:28] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'pineland_nether'
[12:10:28] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'pineland_nether'
[12:10:28] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'pineland_nether'
[12:10:28] [Server thread/INFO]: [ChunkHolderManager] Saved 29 block chunks, 45 entity chunks, 0 poi chunks in world 'pineland_nether' in 0.01s
[12:10:28] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'pineland_nether'
[12:10:28] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'pineland_nether'
[12:10:28] [Server thread/INFO]: Saving chunks for level 'ServerLevel[pineland_the_end]'/minecraft:the_end
[12:10:28] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'pineland_the_end'
[12:10:28] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'pineland_the_end'
[12:10:28] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'pineland_the_end'
[12:10:28] [Server thread/INFO]: [ChunkHolderManager] Saved 23 block chunks, 12 entity chunks, 0 poi chunks in world 'pineland_the_end' in 0.01s
[12:10:28] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'pineland_the_end'
[12:10:28] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'pineland_the_end'
[12:10:28] [Server thread/INFO]: ThreadedAnvilChunkStorage (pineland): All chunks are saved
[12:10:28] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[12:10:28] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[12:10:28] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved
[12:10:28] [Server thread/INFO]: Waiting for I/O tasks to complete...
[12:10:28] [Server thread/INFO]: All I/O tasks to complete
[12:10:28] [Server thread/INFO]: [MoonriseCommon] Awaiting termination of worker pool for up to 60s...
[12:10:28] [Server thread/INFO]: [MoonriseCommon] Awaiting termination of I/O pool for up to 60s...