Paste #124565: DenizenMetaBot Auto-Repaste Of log From preddie

Date: 2024/07/13 01:40:40 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131


[10:37:00] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[10:37:03] [ServerMain/INFO]: Loaded 1290 recipes
[10:37:04] [ServerMain/INFO]: Loaded 1399 advancements
[10:37:04] [Server thread/INFO]: Starting minecraft server version 1.21
[10:37:04] [Server thread/WARN]: ****************************
[10:37:04] [Server thread/WARN]: YOU ARE RUNNING THIS SERVER AS AN ADMINISTRATIVE OR ROOT USER. THIS IS NOT ADVISED.
[10:37:04] [Server thread/WARN]: YOU ARE OPENING YOURSELF UP TO POTENTIAL RISKS WHEN DOING THIS.
[10:37:04] [Server thread/WARN]: FOR MORE INFORMATION, SEE https://madelinemiller.dev/blog/root-minecraft-server/
[10:37:04] [Server thread/WARN]: ****************************
[10:37:04] [Server thread/INFO]: Loading properties
[10:37:04] [Server thread/INFO]: This server is running Paper version 1.21-50-master@20889d0 (2024-07-10T16:28:03Z) (Implementing API version 1.21-R0.1-SNAPSHOT)
[10:37:06] [Server thread/INFO]: Server Ping Player Sample Count: 12
[10:37:06] [Server thread/INFO]: Using 4 threads for Netty based IO
[10:37:06] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[10:37:06] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 6 worker threads, and population gen parallelism of 6 threads
[10:37:07] [Server thread/INFO]: Default game type: SURVIVAL
[10:37:07] [Server thread/INFO]: Generating keypair
[10:37:07] [Server thread/INFO]: Starting Minecraft server on *:25565
[10:37:07] [Server thread/INFO]: Using default channel type
[10:37:07] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[10:37:07] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[10:37:08] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loading 1 libraries... please wait
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\redisson\redisson\3.26.0\redisson-3.26.0.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\io\netty\netty-common\4.1.104.Final\netty-common-4.1.104.Final.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\io\netty\netty-codec\4.1.104.Final\netty-codec-4.1.104.Final.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\io\netty\netty-buffer\4.1.104.Final\netty-buffer-4.1.104.Final.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\io\netty\netty-transport\4.1.104.Final\netty-transport-4.1.104.Final.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\io\netty\netty-resolver\4.1.104.Final\netty-resolver-4.1.104.Final.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\io\netty\netty-resolver-dns\4.1.104.Final\netty-resolver-dns-4.1.104.Final.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\io\netty\netty-codec-dns\4.1.104.Final\netty-codec-dns-4.1.104.Final.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\io\netty\netty-handler\4.1.104.Final\netty-handler-4.1.104.Final.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\io\netty\netty-transport-native-unix-common\4.1.104.Final\netty-transport-native-unix-common-4.1.104.Final.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\javax\cache\cache-api\1.1.1\cache-api-1.1.1.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\io\projectreactor\reactor-core\3.6.0\reactor-core-3.6.0.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\reactivestreams\reactive-streams\1.0.4\reactive-streams-1.0.4.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\io\reactivex\rxjava3\rxjava\3.1.6\rxjava-3.1.6.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\jboss\marshalling\jboss-marshalling\2.0.11.Final\jboss-marshalling-2.0.11.Final.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\jboss\marshalling\jboss-marshalling-river\2.0.11.Final\jboss-marshalling-river-2.0.11.Final.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\com\esotericsoftware\kryo\5.6.0\kryo-5.6.0.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\com\esotericsoftware\reflectasm\1.11.9\reflectasm-1.11.9.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\objenesis\objenesis\3.3\objenesis-3.3.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\com\esotericsoftware\minlog\1.3.1\minlog-1.3.1.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\slf4j\slf4j-api\2.0.9\slf4j-api-2.0.9.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\com\fasterxml\jackson\core\jackson-annotations\2.16.1\jackson-annotations-2.16.1.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\com\fasterxml\jackson\dataformat\jackson-dataformat-yaml\2.16.1\jackson-dataformat-yaml-2.16.1.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\yaml\snakeyaml\2.2\snakeyaml-2.2.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\com\fasterxml\jackson\core\jackson-core\2.16.1\jackson-core-2.16.1.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\com\fasterxml\jackson\core\jackson-databind\2.16.1\jackson-databind-2.16.1.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\bytebuddy\byte-buddy\1.14.5\byte-buddy-1.14.5.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\jodd\jodd-bean\5.1.6\jodd-bean-5.1.6.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\jodd\jodd-core\5.1.6\jodd-core-5.1.6.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loading 1 libraries... please wait
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\openjdk\nashorn\nashorn-core\15.3\nashorn-core-15.3.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\ow2\asm\asm\7.3.1\asm-7.3.1.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\ow2\asm\asm-commons\7.3.1\asm-commons-7.3.1.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\ow2\asm\asm-analysis\7.3.1\asm-analysis-7.3.1.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\ow2\asm\asm-tree\7.3.1\asm-tree-7.3.1.jar
[10:37:09] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\ow2\asm\asm-util\7.3.1\asm-util-7.3.1.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loading 10 libraries... please wait
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\springframework\spring-expression\6.0.6\spring-expression-6.0.6.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\springframework\spring-core\6.0.6\spring-core-6.0.6.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\springframework\spring-jcl\6.0.6\spring-jcl-6.0.6.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\apache\httpcomponents\httpmime\4.5.13\httpmime-4.5.13.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\apache\httpcomponents\httpclient\4.5.13\httpclient-4.5.13.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\apache\httpcomponents\httpcore\4.4.13\httpcore-4.4.13.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\commons-logging\commons-logging\1.2\commons-logging-1.2.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\commons-codec\commons-codec\1.11\commons-codec-1.11.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\joml\joml\1.10.5\joml-1.10.5.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\kyori\adventure-text-minimessage\4.17.0\adventure-text-minimessage-4.17.0.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\kyori\adventure-api\4.17.0\adventure-api-4.17.0.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\kyori\adventure-key\4.17.0\adventure-key-4.17.0.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\jetbrains\annotations\24.1.0\annotations-24.1.0.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\kyori\adventure-text-serializer-plain\4.17.0\adventure-text-serializer-plain-4.17.0.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\kyori\adventure-text-serializer-ansi\4.17.0\adventure-text-serializer-ansi-4.17.0.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\kyori\ansi\1.0.3\ansi-1.0.3.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\kyori\adventure-platform-bukkit\4.3.3\adventure-platform-bukkit-4.3.3.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\kyori\adventure-platform-api\4.3.3\adventure-platform-api-4.3.3.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.3\adventure-text-serializer-bungeecord-4.3.3.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\kyori\adventure-text-serializer-legacy\4.13.1\adventure-text-serializer-legacy-4.13.1.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\kyori\adventure-text-serializer-gson\4.13.1\adventure-text-serializer-gson-4.13.1.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.13.1\adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\kyori\adventure-platform-facet\4.3.3\adventure-platform-facet-4.3.3.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\kyori\adventure-platform-viaversion\4.3.3\adventure-platform-viaversion-4.3.3.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\com\google\code\gson\gson\2.10.1\gson-2.10.1.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\apache\commons\commons-lang3\3.14.0\commons-lang3-3.14.0.jar
[10:37:11] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\gs\mclo\java\2.2.1\java-2.2.1.jar
[10:37:12] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loading 2 libraries... please wait
[10:37:12] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\com\zaxxer\HikariCP\5.0.1\HikariCP-5.0.1.jar
[10:37:12] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\slf4j\slf4j-api\2.0.0-alpha1\slf4j-api-2.0.0-alpha1.jar
[10:37:12] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\it\unimi\dsi\fastutil-core\8.5.13\fastutil-core-8.5.13.jar
[10:37:13] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[10:37:13] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\mongodb\mongodb-driver-sync\4.8.1\mongodb-driver-sync-4.8.1.jar
[10:37:13] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\mongodb\bson\4.8.1\bson-4.8.1.jar
[10:37:13] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\mongodb\mongodb-driver-core\4.8.1\mongodb-driver-core-4.8.1.jar
[10:37:13] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\mongodb\bson-record-codec\4.8.1\bson-record-codec-4.8.1.jar
[10:37:13] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\redis\clients\jedis\4.3.1\jedis-4.3.1.jar
[10:37:13] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\slf4j\slf4j-api\1.7.36\slf4j-api-1.7.36.jar
[10:37:13] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\apache\commons\commons-pool2\2.11.1\commons-pool2-2.11.1.jar
[10:37:13] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\json\json\20220320\json-20220320.jar
[10:37:13] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\com\google\code\gson\gson\2.8.9\gson-2.8.9.jar
[10:37:13] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loading 3 libraries... please wait
[10:37:13] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\apache\commons\commons-lang3\3.12.0\commons-lang3-3.12.0.jar
[10:37:13] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\com\zaxxer\HikariCP\3.4.5\HikariCP-3.4.5.jar
[10:37:13] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\slf4j\slf4j-api\1.7.25\slf4j-api-1.7.25.jar
[10:37:15] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loading 11 libraries... please wait
[10:37:16] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\kyori\adventure-api\4.17.0\adventure-api-4.17.0.jar
[10:37:16] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\kyori\adventure-key\4.17.0\adventure-key-4.17.0.jar
[10:37:16] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[10:37:16] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[10:37:16] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\jetbrains\annotations\24.1.0\annotations-24.1.0.jar
[10:37:16] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\kyori\adventure-text-minimessage\4.17.0\adventure-text-minimessage-4.17.0.jar
[10:37:16] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\net\kyori\adventure-text-serializer-legacy\4.17.0\adventure-text-serializer-legacy-4.17.0.jar
[10:37:16] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\com\devskiller\friendly-id\friendly-id\1.1.0\friendly-id-1.1.0.jar
[10:37:16] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\flywaydb\flyway-core\9.19.4\flyway-core-9.19.4.jar
[10:37:16] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\com\google\code\gson\gson\2.10.1\gson-2.10.1.jar
[10:37:16] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\flywaydb\flyway-mysql\9.19.4\flyway-mysql-9.19.4.jar
[10:37:16] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\com\zaxxer\HikariCP\4.0.3\HikariCP-4.0.3.jar
[10:37:16] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\slf4j\slf4j-api\2.0.0-alpha1\slf4j-api-2.0.0-alpha1.jar
[10:37:16] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\com\github\ben-manes\caffeine\caffeine\2.9.3\caffeine-2.9.3.jar
[10:37:16] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\checkerframework\checker-qual\3.19.0\checker-qual-3.19.0.jar
[10:37:16] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\com\google\errorprone\error_prone_annotations\2.10.0\error_prone_annotations-2.10.0.jar
[10:37:16] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\apache\commons\commons-lang3\3.13.0\commons-lang3-3.13.0.jar
[10:37:16] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\commons-codec\commons-codec\1.16.0\commons-codec-1.16.0.jar
[10:37:16] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\com\googlecode\json-simple\json-simple\1.1.1\json-simple-1.1.1.jar
[10:37:16] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\junit\junit\4.10\junit-4.10.jar
[10:37:16] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library C:\Users\Administrator\Desktop\PAPER SERVER\libraries\org\hamcrest\hamcrest-core\1.1\hamcrest-core-1.1.jar
[10:37:16] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.134
[10:37:16] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[10:37:16] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.3.4-beta-01+0452ca2
[10:37:19] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@2528a305]
[10:37:19] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.11-beta1+a801a9d
[10:37:19] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[10:37:19] [Server thread/INFO]: [BlueMap] Loading server plugin BlueMap v5.2
[10:37:19] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0-SNAPSHOT-723
[10:37:19] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.0) has not yet been tested! Proceed with caution.
[10:37:20] [Server thread/INFO]: [Lands] Loading server plugin Lands v7.6.2
[10:37:21] [Server thread/INFO]: [Lands] Using default item currency for economy. You can edit the currency item for each locale in the corresponding GUI language files. Strict mode: false
[10:37:21] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[10:37:21] [Server thread/INFO]: [Lands] Using SQLite: C:\Users\Administrator\Desktop\PAPER SERVER\plugins\Lands\Data
[10:37:22] [Server thread/INFO]: [Lands] Successfully connected to SQL database.
[10:37:22] [Server thread/INFO]: [Lands] Setting up tables...
[10:37:22] [Server thread/INFO]: [Lands] Your SQL DBMS version: 3.46.0 (SQLite) Wiki: https://github.com/Angeschossen/Lands/wiki/Database
[10:37:22] [Server thread/INFO]: [Lands] Successfully connected to SQL database.
[10:37:22] [Server thread/INFO]: [Lands] Added flag 'lands-claim' to the plugin WorldGuard.
[10:37:22] [Server thread/WARN]: [Lands] [levels.yml] The option 'creation.level' in nations.yml is invalid. The level with the index '5' does not exist. Using latest instead.
[10:37:22] [Server thread/INFO]: [AdvancedChat] Loading server plugin AdvancedChat v1.2.8
[10:37:22] [Server thread/INFO]: [Oraxen] Loading server plugin Oraxen v1.177.0
[10:37:22] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+102-fcf6e64
[10:37:22] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.0.4
[10:37:22] [Server thread/INFO]: [Vulcan] Loading server plugin Vulcan v2.8.9
[10:37:23] [Server thread/WARN]: java.lang.NoSuchMethodException: net.minecraft.resources.ResourceLocation.<init>(java.lang.String)
[10:37:23] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor0(Class.java:3761)
[10:37:23] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor(Class.java:2442)
[10:37:23] [Server thread/WARN]:     at Vulcan-2.8.9.jar//io.github.repooper.packetevents.utils.nms.NMSUtils.Vulcan_O(NMSUtils.java:365)
[10:37:23] [Server thread/WARN]:     at Vulcan-2.8.9.jar//io.github.repooper.packetevents.PacketEvents.Vulcan_M(PacketEvents.java:120)
[10:37:23] [Server thread/WARN]:     at Vulcan-2.8.9.jar//me.frep.vulcan.spigot.VulcanPlugin.onLoad(VulcanPlugin.java:15)
[10:37:23] [Server thread/WARN]:     at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:59)
[10:37:23] [Server thread/WARN]:     at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:18)
[10:37:23] [Server thread/WARN]:     at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39)
[10:37:23] [Server thread/WARN]:     at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:40)
[10:37:23] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:535)
[10:37:23] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:290)
[10:37:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1219)
[10:37:23] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
[10:37:23] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[10:37:23] [Server thread/INFO]: [AuraSkills] Loading server plugin AuraSkills v2.1.5
[10:37:23] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v23.0-RC2
[10:37:23] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.6.2
[10:37:23] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.4.0
[10:37:23] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.35-SNAPSHOT (build 3445)
[10:37:23] [Server thread/INFO]: [AdvancedEnchantments] Loading server plugin AdvancedEnchantments v9.9.10
[10:37:23] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v5.2.3.1
[10:37:23] [Server thread/INFO]: [zMenu] Loading server plugin zMenu v1.0.3.2
[10:37:23] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.2-SNAPSHOT-b870
[10:37:23] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.3.1-SNAPSHOT
[10:37:27] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.3.1-SNAPSHOT (build 7050-DEV)
[10:37:27] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.6
[10:37:27] [Server thread/INFO]: [BattlePass] Loading server plugin BattlePass v4.5.6
[10:37:27] [Server thread/INFO]: [BetterFarming] Loading server plugin BetterFarming v5.9.1
[10:37:27] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: BetterFarming
[10:37:27] [Server thread/INFO]: [zAuctionHouseV3] Loading server plugin zAuctionHouseV3 v3.2.2.0
[10:37:27] [Server thread/INFO]: [UpgradeableSpawners] Loading server plugin UpgradeableSpawners v4.14.2
[10:37:27] [Server thread/WARN]: [UpgradeableSpawners] [Config] Invalid level name. Must be a number: enabled
[10:37:28] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: UpgradeableSpawners
[10:37:28] [Server thread/INFO]: [UltimateAutoRestart] Loading server plugin UltimateAutoRestart v2024.06-a
[10:37:28] [Server thread/INFO]: [ShopGUIPlus] Loading server plugin ShopGUIPlus v1.97.0
[10:37:28] [Server thread/INFO]: [QuickShop-Hikari] Loading server plugin QuickShop-Hikari v6.2.0.5
[10:37:28] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Execute the initialization sequence
[10:37:28] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Bootloader preparing for startup, please wait...
[10:37:28] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initializing libraries...
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari] Maven repository mirror test result:
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari] [US] CENTRAL: 200ms
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari] [US] APACHE: 200ms
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari] [CN] TENCENT: 717ms
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari] [CN] HUAWEI: 916ms
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari] [CN] ALIYUN: 3712ms
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading 13 libraries (0 skipped libraries)...
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.apache.commons:commons-lang3:3.14.0 [1/13]
[10:37:32] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
[10:37:32] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Defaulting to no-operation (NOP) logger implementation
[10:37:32] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.apache.commons:commons-compress:1.25.0 [2/13]
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.google.code.gson:gson:2.10.1 [3/13]
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.google.guava:guava:33.1.0-jre [4/13]
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.rollbar:rollbar-java:1.9.0 [5/13]
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library cc.carm.lib:easysql-hikaricp:0.4.7 [6/13]
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.h2database:h2:2.1.214 [7/13]
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.konghq:unirest-java:3.14.5 [8/13]
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library net.sourceforge.csvjdbc:csvjdbc:1.0.42 [9/13]
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.dom4j:dom4j:2.1.4 [10/13]
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.vdurmont:semver4j:3.1.0 [11/13]
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.ghostchu.crowdin:crowdinota:1.0.3 [12/13]
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.github.stefvanschie.inventoryframework:IF:0.10.13 [13/13]
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initialing Unirest...
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initializing platform...
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Platform detected: Paper
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari] Slf4jLogger initialized
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Platform initialized: com.ghostchu.quickshop.platform.paper.PaperPlatform
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Boot QuickShop instance...
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Creating QuickShop instance...
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Booting up
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari] Self testing...
[10:37:32] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[10:37:33] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[10:37:33] [Server thread/INFO]: [QuickShop-Hikari] Setting up privacy controller...
[10:37:33] [Server thread/INFO]: [QuickShop-Hikari] Setting up QuickShop registry....
[10:37:33] [Server thread/INFO]: [QuickShop-Hikari] Setting up metrics manager...
[10:37:33] [Server thread/INFO]: [QuickShop-Hikari] Loading player name and unique id mapping...
[10:37:33] [Server thread/INFO]: [QuickShop-Hikari] Loading translations (This may take a while)...
[10:37:33] [Server thread/INFO]: [QuickShop-Hikari] Please wait us fetch the translation updates from Crowdin OTA service...
[10:37:33] [Server thread/INFO]: [CrowdinOTA] Downloading Crowdin distribution manifest from remote server...
[10:37:33] [Server thread/INFO]: [OTAFileInstance-0] Downloading translations for 0 locales...
[10:37:33] [Server thread/INFO]: [OTAFileInstance-1] Downloading translations for 0 locales...
[10:37:33] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[10:37:34] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[10:37:34] [Server thread/INFO]: [QuickShop-Hikari] Register InventoryWrapper...
[10:37:34] [Server thread/INFO]: [QuickShop-Hikari] Initializing NexusManager...
[10:37:34] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Complete
[10:37:34] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Complete (6741ms). Waiting for enable...
[10:37:34] [Server thread/INFO]: [PlayerWarps] Loading server plugin PlayerWarps v7.5.0-pre40
[10:37:35] [Server thread/INFO]: [Pl-Hide-Pro] Loading server plugin Pl-Hide-Pro v2.10.2
[10:37:35] [Server thread/INFO]: [Pl-Hide-Pro] Loading library caffeine
[10:37:35] [Server thread/INFO]: [PhatLoots] Loading server plugin PhatLoots v5.6.0
[10:37:35] [Server thread/INFO]: [OpenSit] Loading server plugin OpenSit v1.0.4
[10:37:35] [Server thread/INFO]: [OnePlayerSleep] Loading server plugin OnePlayerSleep v1.3
[10:37:35] [Server thread/INFO]: [FasterFurnaces] Loading server plugin FasterFurnaces v1.2.0
[10:37:36] [Server thread/INFO]: [FasterFurnaces] Using SQLite: C:\Users\Administrator\Desktop\PAPER SERVER\plugins\FasterFurnaces\Data
[10:37:36] [Server thread/INFO]: [FasterFurnaces] Successfully connected to SQL database.
[10:37:36] [Server thread/INFO]: [EvenMoreFish] Loading server plugin EvenMoreFish v1.7.2
[10:37:36] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+93-3a6fdd9
[10:37:36] [Server thread/INFO]: [EntityClearer] Loading server plugin EntityClearer v3.5.0
[10:37:36] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.1-DEV-182
[10:37:36] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[10:37:36] [Server thread/INFO]: [DailyRewards] Loading server plugin DailyRewards v2.0.2
[10:37:36] [Server thread/INFO]: [CustomNameplates] Loading server plugin CustomNameplates v2.4.1
[10:37:36] [Server thread/INFO]: [CustomCrops] Loading server plugin CustomCrops v3.5.5
[10:37:36] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.10
[10:37:36] [Server thread/INFO]: [ChestProtect] Loading server plugin ChestProtect v5.18.0
[10:37:36] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: ChestProtect
[10:37:36] [Server thread/INFO]: [ChestProtect] Added flag 'chestprotect-lock' to the plugin WorldGuard.
[10:37:37] [Server thread/INFO]: [ChestProtect] Using SQLite: C:\Users\Administrator\Desktop\PAPER SERVER\plugins\ChestProtect\Data
[10:37:37] [Server thread/INFO]: [ChestProtect] Successfully connected to SQL database.
[10:37:37] [Server thread/INFO]: [ChestProtect] Setting up general tables...
[10:37:37] [Server thread/INFO]: [ChatInjector] Loading server plugin ChatInjector v1.0.3
[10:37:37] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.13
[10:37:37] [Server thread/INFO]: [BankPlus] Loading server plugin BankPlus v6.2
[10:37:37] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[10:37:37] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.134
[10:37:38] [Server thread/INFO]:         __    
[10:37:38] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.134
[10:37:38] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[10:37:38] [Server thread/INFO]: 
[10:37:38] [Server thread/INFO]: [LuckPerms] Loading configuration...
[10:37:38] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[10:37:39] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[10:37:39] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[10:37:40] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2896ms)
[10:37:40] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[10:37:40] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[10:37:40] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[10:37:40] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[10:37:40] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[10:37:40] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.3.4-beta-01+0452ca2
[10:37:40] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[10:37:40] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[10:37:41] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_21.PaperweightAdapter as the Bukkit adapter
[10:37:43] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0-SNAPSHOT-723
[10:37:43] [Server thread/INFO]: [nightcore] Enabling nightcore v2.6.2
[10:37:43] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[10:37:43] [Server thread/INFO]: [nightcore] Found economy provider: EssentialsX Economy
[10:37:43] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[10:37:43] [Server thread/INFO]: [nightcore] Server Version: 1.21 ✔
[10:37:43] [Server thread/INFO]: [nightcore] Entity Id Counter: OK ✔
[10:37:43] [Server thread/INFO]: [nightcore] Item NBT Compress: OK ✔
[10:37:43] [Server thread/INFO]: [nightcore] Plugin loaded in 408 ms!
[10:37:43] [Server thread/INFO]: [OpenSit] Enabling OpenSit v1.0.4
[10:37:43] [Server thread/INFO]: Preparing level "world"
[10:37:44] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[10:37:46] [Server thread/INFO]: Time elapsed: 1452 ms
[10:37:46] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[10:37:46] [Server thread/INFO]: Time elapsed: 154 ms
[10:37:46] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[10:37:46] [Server thread/INFO]: Time elapsed: 60 ms
[10:37:46] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.11-beta1+a801a9d
[10:37:46] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[10:37:46] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[10:37:46] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[10:37:46] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[10:37:46] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[10:37:46] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[10:37:46] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[10:37:46] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[10:37:46] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[10:37:46] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[10:37:46] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[10:37:46] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[10:37:46] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[10:37:46] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[10:37:46] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[10:37:46] [Server thread/INFO]: [WorldGuard] Loading region data...
[10:37:47] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[10:37:48] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[10:37:48] [Server thread/INFO]: [BlueMap] Enabling BlueMap v5.2
[10:37:48] [Server thread/INFO]: [BlueMap] Saving all worlds once, to make sure the level.dat is present...
[10:37:48] [Server thread/WARN]: A manual (plugin-induced) save has been detected while server is configured to auto-save. This may affect performance.
[10:37:48] [Server thread/INFO]: [Lands] Enabling Lands v7.6.2
[10:37:49] [Server thread/INFO]: [Lands]  _                        _      
[10:37:49] [Server thread/INFO]: [Lands] | |                      | |     
[10:37:49] [Server thread/INFO]: [Lands] | |      __ _  _ __    __| | ___ 
[10:37:49] [Server thread/INFO]: [Lands] | |     / _` || '_ \  / _` |/ __|
[10:37:49] [Server thread/INFO]: [Lands] | |____| (_| || | | || (_| |\__ \
[10:37:49] [Server thread/INFO]: [Lands] \_____/ \__,_||_| |_| \__,_||___/
[10:37:49] [Server thread/INFO]: [Lands] Version: 7.6.2 Previous: 7.6.2
[10:37:49] [Server thread/INFO]: [Lands] Server: 1.21.0 running Paper
[10:37:49] [Server thread/INFO]: [Lands] Licensed to: 34487
[10:37:49] [Server thread/INFO]: [Lands] Experiencing issues or having questions? Join our Discord!
[10:37:49] [Server thread/INFO]: [Lands] Discord: https://discord.gg/B4MAJVk
[10:37:49] [Server thread/INFO]: [Lands] Wiki: https://github.com/Angeschossen/Lands/wiki
[10:37:49] [Server thread/INFO]: [Lands]  
[10:37:49] [Server thread/INFO]: [Lands] Performing initial data load.
[10:37:49] [Server thread/INFO]: [Lands] There are currently 10 created land(s).
[10:37:49] [Server thread/INFO]: [Lands] Initial data load took 340 ms.
[10:37:49] [Server thread/INFO]: [AdvancedChat] Enabling AdvancedChat v1.2.8
[10:37:50] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: AdvancedChat
[10:37:51] [Server thread/INFO]: [AdvancedChat] Loaded 18 chat colors
[10:37:51] [Server thread/INFO]: [AdvancedChat] Loaded 33 tags
[10:37:51] [Server thread/INFO]: [AdvancedChat] Loading chat rules...
[10:37:51] [Server thread/INFO]: [AdvancedChat] Registered advertising chat rule
[10:37:51] [Server thread/INFO]: [AdvancedChat] Registered caps chat rule
[10:37:51] [Server thread/INFO]: [AdvancedChat] Registered emojis chat rule
[10:37:51] [Server thread/INFO]: [AdvancedChat] Registered similarity chat rule
[10:37:51] [Server thread/INFO]: [AdvancedChat] Registered spam chat rule
[10:37:51] [Server thread/INFO]: [AdvancedChat] Loaded 5 chat rules
[10:37:51] [Server thread/INFO]: [AdvancedChat] Loaded 5 chat games
[10:37:51] [Server thread/INFO]: [AdvancedChat] Loaded 2 join message formats
[10:37:51] [Server thread/INFO]: [AdvancedChat] Customizer has been enabled.
[10:37:51] [Server thread/INFO]: [AdvancedChat] Loaded 1 message customizations.
[10:37:51] [Server thread/INFO]: [AdvancedChat] Registered default chat format
[10:37:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedchat [1.0.0]
[10:37:52] [Server thread/INFO]: [Oraxen] Enabling Oraxen v1.177.0
[10:37:52] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: Oraxen
[10:37:52] [Server thread/INFO]: Oraxen | Version v1_21_R1 has been detected.
[10:37:52] [Server thread/INFO]: Oraxen | Oraxen will use the NMSHandler for this version.
[10:37:53] [Server thread/INFO]: Oraxen | The texture specified for orb_tool does not exist. This will break all your glyphs.
[10:37:53] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[10:37:53] [Server thread/INFO]: Oraxen | The texture specified for orb_weapon does not exist. This will break all your glyphs.
[10:37:53] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[10:37:53] [Server thread/INFO]: Oraxen | The texture specified for orb_armor does not exist. This will break all your glyphs.
[10:37:53] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[10:37:53] [Server thread/INFO]: Oraxen | The texture specified for white_scroll does not exist. This will break all your glyphs.
[10:37:53] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[10:37:53] [Server thread/INFO]: Oraxen | The texture specified for black_scroll does not exist. This will break all your glyphs.
[10:37:53] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[10:37:53] [Server thread/INFO]: Oraxen | The texture specified for heart does not exist. This will break all your glyphs.
[10:37:53] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder image. You should edit this in the glyph config.
[10:37:54] [Server thread/INFO]: Oraxen | beginner_rod is using deprecated Durability-Mechanic...
[10:37:54] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[10:37:54] [Server thread/INFO]: Oraxen | silver_rod is using deprecated Durability-Mechanic...
[10:37:54] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[10:37:54] [Server thread/INFO]: Oraxen | golden_rod is using deprecated Durability-Mechanic...
[10:37:54] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[10:37:54] [Server thread/INFO]: Oraxen | star_rod is using deprecated Durability-Mechanic...
[10:37:54] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[10:37:54] [Server thread/INFO]: Oraxen | bone_rod is using deprecated Durability-Mechanic...
[10:37:54] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[10:37:54] [Server thread/INFO]: Oraxen | magical_rod is using deprecated Durability-Mechanic...
[10:37:54] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[10:37:54] [Server thread/INFO]: Oraxen | master_rod is using deprecated Durability-Mechanic...
[10:37:54] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[10:37:54] [Server thread/INFO]: Oraxen | example_sword is using deprecated Durability-Mechanic...
[10:37:54] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[10:37:54] [Server thread/INFO]: Oraxen | legendary_hammer is using deprecated Durability-Mechanic...
[10:37:54] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[10:37:54] [Server thread/INFO]: Oraxen | glass_sword is using deprecated Durability-Mechanic...
[10:37:54] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[10:37:54] [Server thread/INFO]: Oraxen | obsidian_sword is using deprecated Durability-Mechanic...
[10:37:54] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[10:37:54] [Server thread/INFO]: Oraxen | blood_sword is using deprecated Durability-Mechanic...
[10:37:54] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[10:37:54] [Server thread/INFO]: Oraxen | octavia_sword is using deprecated Durability-Mechanic...
[10:37:54] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[10:37:54] [Server thread/INFO]: Oraxen | dagger is using deprecated Durability-Mechanic...
[10:37:54] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[10:37:54] [Server thread/INFO]: Oraxen | katana is using deprecated Durability-Mechanic...
[10:37:54] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[10:37:55] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[10:37:56] [Server thread/INFO]: Oraxen | Successfully sliced gui-textures for 1.20.2
[10:37:59] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[10:37:59] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[10:37:59] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/fishing_pack/models/rods/bone_fishing_rod.json: fishing_pack:rods/bone_fishing_rod
[10:37:59] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[10:37:59] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/tuna_golden_star.json: fishing_pack:fish/tuna_golden_star0
[10:37:59] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[10:37:59] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/medieval_rpg/feather_plant.json: orexan:medieval_rpg/feather_plant
[10:37:59] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[10:37:59] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[10:37:59] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[10:37:59] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/storepack/merchant_booth.json: store pack:merchant_stall
[10:37:59] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[10:37:59] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/more1.json: shopguiplus/more1
[10:37:59] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[10:37:59] [Server thread/INFO]: Oraxen | Pack contains malformed texture(s) and/or model(s)
[10:37:59] [Server thread/INFO]: Oraxen | These need to be fixed, otherwise the resourcepack will be broken

[10:37:59] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[10:37:59] [Server thread/INFO]: Oraxen | Attempting to exclude malformed textures from atlas-file
[10:38:00] [Server thread/INFO]: 
[10:38:00] [Server thread/INFO]: Oraxen | No duplicate font files found!
[10:38:00] [Server thread/INFO]: 
[10:38:00] [Server thread/INFO]: Oraxen | The recipe "bedrock_pickaxe" is invalid, please ensure all its ingredients exist in your config
[10:38:00] [Server thread/INFO]: Oraxen | The recipe "obsidian_helmet" is invalid, please ensure all its ingredients exist in your config
[10:38:00] [Server thread/INFO]: Oraxen | The recipe "obsidian_chestplate" is invalid, please ensure all its ingredients exist in your config
[10:38:00] [Server thread/INFO]: Oraxen | The recipe "obsidian_leggings" is invalid, please ensure all its ingredients exist in your config
[10:38:00] [Server thread/INFO]: Oraxen | The recipe "obsidian_boots" is invalid, please ensure all its ingredients exist in your config
[10:38:00] [Server thread/INFO]: Oraxen | Successfully loaded on Windows Server 2022
[10:38:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: oraxen [1.177.0]
[10:38:00] [Server thread/INFO]: Oraxen | Plugin "PlaceholderAPI" detected, enabling hooks
[10:38:00] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+102-fcf6e64
[10:38:01] [Server thread/WARN]: [Essentials] &r&fℹ Version mismatch! Please update EssentialsSpawn to the same version.
[10:38:01] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[10:38:01] [Server thread/INFO]: [Essentials] No kits found to migrate.
[10:38:02] [Server thread/INFO]: [Essentials] Loaded 42679 items from items.json.
[10:38:02] [Server thread/INFO]: [Essentials] Using locale en_US
[10:38:02] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[10:38:02] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[10:38:02] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[10:38:02] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[10:38:02] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.0.4
[10:38:04] [Server thread/INFO]: Server version: v1_21_R1 - 1.21.0 - paper  1.21-50-20889d0 (MC: 1.21)
[10:38:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.0.4]
[10:38:05] [Server thread/INFO]: PlaceholderAPI hooked.
[10:38:05] [Server thread/INFO]: Updated (EN) language file. Took 66ms
[10:38:05] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.8.9
[10:38:06] [Server thread/INFO]: [Vulcan] Server Version: 1.21 detected!
[10:38:06] [Server thread/INFO]: [Vulcan] BStats enabled!
[10:38:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: Vulcan [2.8.9]
[10:38:06] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[10:38:06] [Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.1.5
[10:38:07] [Server thread/INFO]: [AuraSkills] Loaded 21 message files
[10:38:08] [Server thread/INFO]: [AuraSkills] Successfully registered hook LuckPerms
[10:38:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auraskills [2.1.5]
[10:38:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [2.1.5]
[10:38:08] [Server thread/INFO]: [AuraSkills] Successfully registered hook PlaceholderAPI
[10:38:08] [Server thread/INFO]: [AuraSkills] Successfully registered hook ProtocolLib
[10:38:08] [Server thread/INFO]: [AuraSkills] Successfully registered hook Vault
[10:38:08] [Server thread/INFO]: [AuraSkills] Successfully registered hook WorldGuard
[10:38:08] [Server thread/INFO]: [AuraSkills] Successfully registered hook Oraxen
[10:38:08] [Server thread/INFO]: [AuraSkills] Loaded 126 config options in 147 ms
[10:38:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21! Trying to find NMS support
[10:38:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[10:38:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AuraSkills' to create a bStats instance!
[10:38:08] [Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
[10:38:09] [Server thread/INFO]: [AuraSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[10:38:09] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v23.0-RC2
[10:38:10] [Server thread/INFO]: [CoreProtect] CoreProtect Edge has been successfully enabled! 
[10:38:10] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[10:38:10] [Server thread/INFO]: --------------------
[10:38:10] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[10:38:10] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[10:38:10] [Server thread/INFO]: --------------------
[10:38:10] [Server thread/INFO]: [Jobs] Enabling Jobs v5.2.4.0
[10:38:10] [Server thread/INFO]: ------------- Jobs -------------
[10:38:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jobsr [5.2.4.0]
[10:38:10] [Server thread/INFO]: PlaceholderAPI hooked.
[10:38:10] [Server thread/INFO]: Connected to database (SqLite)
[10:38:10] [Server thread/INFO]: Loaded 8 titles
[10:38:10] [Server thread/INFO]: Loaded 69 protected blocks timers
[10:38:10] [Server thread/INFO]: Loaded 1481 custom item names
[10:38:10] [Server thread/INFO]: Loaded 84 custom entity names
[10:38:10] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[10:38:10] [Server thread/INFO]: Loaded 42 custom enchant names
[10:38:10] [Server thread/INFO]: Loaded 46 custom enchant names
[10:38:10] [Server thread/INFO]: Loaded 16 custom color names
[10:38:11] [Server thread/INFO]: Update shops items icon section and use 'ItemStack' instead
[10:38:11] [Server thread/INFO]: Loaded 4 shop items
[10:38:11] [Server thread/INFO]: Loaded 1 quests for Miner
[10:38:11] [Server thread/INFO]: Loaded 1 quests for Hunter
[10:38:11] [Server thread/INFO]: Loaded 1 quests for Explorer
[10:38:11] [Server thread/INFO]: Loaded 1 quests for Woodcutter
[10:38:11] [Server thread/INFO]: Loaded 1 quests for Builder
[10:38:11] [Server thread/INFO]: Loaded 1 quests for Fisherman
[10:38:11] [Server thread/INFO]: Loaded 1 quests for Farmer
[10:38:11] [Server thread/INFO]: Loaded 1 quests for Digger
[10:38:11] [Server thread/INFO]: Loaded 1 quests for Enchanter
[10:38:11] [Server thread/INFO]: Loaded 1 quests for Crafter
[10:38:11] [Server thread/INFO]: Loaded 1 quests for Brewer
[10:38:11] [Server thread/INFO]: Loaded 1 quests for Weaponsmith
[10:38:11] [Server thread/INFO]: Loaded 12 jobs
[10:38:11] [Server thread/INFO]: Loaded 0 boosted items
[10:38:11] [Server thread/INFO]: Loaded 17 furnace for reassigning.
[10:38:11] [Server thread/INFO]: Loaded 2 brewing for reassigning.
[10:38:11] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[10:38:11] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[10:38:11] [Server thread/INFO]: Preloaded 12 players data in 0.08
[10:38:11] [Server thread/INFO]: Registering listeners...
[10:38:11] [Server thread/INFO]: Listeners registered successfully
[10:38:11] [Server thread/INFO]: Plugin has been enabled successfully.
[10:38:11] [Server thread/INFO]: ------------------------------------
[10:38:11] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3445)
[10:38:11] [Server thread/INFO]: [Citizens] Loading external libraries
[10:38:12] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[10:38:12] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[10:38:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[10:38:12] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[10:38:13] [Server thread/INFO]: [AdvancedEnchantments] Enabling AdvancedEnchantments v9.9.10
[10:38:13] [Server thread/INFO]: [AdvancedEnchantments] Loading Minecraft Version MC1_21_R1
[10:38:13] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: AdvancedEnchantments
[10:38:13] [Server thread/INFO]: [AdvancedEnchantments] Loaded 7 armor sets.
[10:38:13] [Server thread/INFO]: [AdvancedEnchantments] Loaded 5 weapons.
[10:38:13] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[10:38:26] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into economy plugin (Vault)
[10:38:26] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v5.2.3.1
[10:38:26] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[10:38:26] [Server thread/INFO]: [ExcellentCrates] Read database configuration...
[10:38:26] [Server thread/INFO]: [ExcellentCrates] Using Internal hologram handler.
[10:38:27] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[10:38:27] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@19bf132b
[10:38:27] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[10:38:27] [Server thread/INFO]: [ExcellentCrates] Registered currency: xp
[10:38:27] [Server thread/INFO]: [ExcellentCrates] Registered currency: levels
[10:38:27] [Server thread/INFO]: [ExcellentCrates] Registered currency: money
[10:38:27] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crate openings.
[10:38:27] [Server thread/INFO]: [ExcellentCrates] Loaded 2 crate keys.
[10:38:27] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[10:38:27] [Server thread/WARN]: [ExcellentCrates] Invalid key 'epic' in 'epic' crate key requirements. Ignoring...
[10:38:27] [Server thread/WARN]: [ExcellentCrates] Invalid key 'party' in 'party' crate key requirements. Ignoring...
[10:38:27] [Server thread/INFO]: [ExcellentCrates] Loaded 7 crates.
[10:38:27] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[10:38:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [5.2.3.1]
[10:38:27] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 1217 ms!
[10:38:27] [Server thread/INFO]: [zMenu] Enabling zMenu v1.0.3.2
[10:38:27] [Server thread/INFO]: [zMenu v1.0.3.2] === ENABLE START ===
[10:38:27] [Server thread/INFO]: [zMenu v1.0.3.2] Plugin Version V1.0.3.2
[10:38:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: zmenu [1.0.3.2]
[10:38:28] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zMenu\patterns\pattern_example.yml loaded successfully !
[10:38:28] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zMenu\inventories\advanced_inventory.yml loaded successfully !
[10:38:28] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zMenu\inventories\basic_inventory.yml loaded successfully !
[10:38:28] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zMenu\inventories\example_punish.yml loaded successfully !
[10:38:28] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zMenu\inventories\pro_inventory.yml loaded successfully !
[10:38:28] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zMenu\website\inventories.yml loaded successfully !
[10:38:28] [Server thread/INFO]: [zMenu v1.0.3.2] Command /basic_command successfully register.
[10:38:28] [Server thread/INFO]: [zMenu v1.0.3.2] Command /advanced_command successfully register.
[10:38:28] [Server thread/INFO]: [zMenu v1.0.3.2] Command /pro_command successfully register.
[10:38:28] [Server thread/INFO]: [zMenu v1.0.3.2] Command /openbook successfully register.
[10:38:28] [Server thread/INFO]: [zMenu v1.0.3.2] Command /punish successfully register.
[10:38:28] [Server thread/INFO]: [zMenu v1.0.3.2] 
[10:38:28] [Server thread/INFO]: [zMenu v1.0.3.2] You can support zMenu by upgrading your account here: https://minecraft-inventory-builder.com/account-upgrade
[10:38:28] [Server thread/INFO]: [zMenu v1.0.3.2] zMenu’s site includes an inventory editor (under development), a marketplace (already available) is a forum (under development)
[10:38:28] [Server thread/INFO]: [zMenu v1.0.3.2] 
[10:38:28] [Server thread/INFO]: [zMenu v1.0.3.2] Use ComponentMeta
[10:38:28] [Server thread/INFO]: [zMenu v1.0.3.2] Loading 6 commands
[10:38:28] [Server thread/INFO]: [zMenu v1.0.3.2] === ENABLE DONE (825ms) ===
[10:38:28] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.2-SNAPSHOT-b870
[10:38:28] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.2-SNAPSHOT-b870" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[10:38:28] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[10:38:29] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[10:38:29] [Server thread/INFO]: Time elapsed: 282 ms
[10:38:29] [Server thread/INFO]: [WorldGuard] (Spawn) TNT ignition is PERMITTED.
[10:38:29] [Server thread/INFO]: [WorldGuard] (Spawn) Lighters are PERMITTED.
[10:38:29] [Server thread/INFO]: [WorldGuard] (Spawn) Lava fire is PERMITTED.
[10:38:29] [Server thread/INFO]: [WorldGuard] (Spawn) Fire spread is UNRESTRICTED.
[10:38:29] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn'
[10:38:29] [Server thread/INFO]: [Multiverse-Core] 4 - World(s) loaded.
[10:38:29] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[10:38:29] [Server thread/INFO]: [Multiverse-Core] Version 4.3.2-SNAPSHOT-b870 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[10:38:29] [Server thread/INFO]: [packetevents] Enabling packetevents v2.3.1-SNAPSHOT
[10:38:29] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[10:38:29] [Server thread/INFO]: [Denizen] Enabling Denizen v1.3.1-SNAPSHOT (build 7050-DEV)
[10:38:30] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1383), impl for Spigot v1.3.1-SNAPSHOT (build 7050-DEV) 
[10:38:30] [packetevents-update-check-thread/INFO]: [packetevents] There is an update available for PacketEvents! Your build: (2.3.1-SNAPSHOT) | Latest released build: (2.4.0)
[10:38:31] [Server thread/INFO]: +> [Denizen] Running on java version: 21.0.3 
[10:38:31] [Server thread/INFO]: +> [Denizen] Running on fully supported Java 21. 
[10:38:32] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[10:38:32] [Server thread/INFO]: +> [Denizen]  Denizen  scriptable minecraft 
[10:38:32] [Server thread/INFO]: +> [Denizen]  
[10:38:32] [Server thread/INFO]: +> [Denizen] by: The DenizenScript team 
[10:38:32] [Server thread/INFO]: +> [Denizen] Chat with us at: https://discord.gg/Q6pZGSR 
[10:38:32] [Server thread/INFO]: +> [Denizen] Or learn more at: https://denizenscript.com 
[10:38:32] [Server thread/INFO]: +> [Denizen] version: 1.3.1-SNAPSHOT (build 7050-DEV) 
[10:38:32] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[10:38:34] [Server thread/INFO]: +> [TriggerRegistry] Loaded 4 core triggers 
[10:38:37] [Server thread/INFO]: +> [PaperModule] Loading Paper support module... 
[10:38:37] [Server thread/INFO]: +> [Denizen] Loaded 153 core commands and 30 core object types, at 7723ms from start. 
[10:38:37] [Server thread/INFO]: +> [ScriptHelper] No scripts in /plugins/Denizen/scripts/ to load! 
[10:38:37] [Server thread/INFO]: +> [ScriptRegistry] Loading 0 script files... 
[10:38:37] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 2ms, processing 23ms. 
[10:38:37] [Server thread/INFO]: +> [Denizen] Final full init took 7825ms. 
[10:38:37] [Server thread/INFO]: [TAB] Enabling TAB v4.1.6
[10:38:38] [Server thread/INFO]: [TAB] Loaded NMS hook in 145ms
[10:38:39] [Server thread/INFO]: [TAB] Enabled in 868ms
[10:38:39] [Server thread/INFO]: [BattlePass] Enabling BattlePass v4.5.6
[10:38:39] [Server thread/INFO]: [BattlePass] Finished loading the daily quests. All quests loaded successfully.
[10:38:39] [Server thread/INFO]: [BattlePass] Finished loading the week-6 quests. All quests loaded successfully.
[10:38:39] [Server thread/INFO]: [BattlePass] Finished loading the week-1 quests. All quests loaded successfully.
[10:38:39] [Server thread/INFO]: [BattlePass] Finished loading the week-7 quests. All quests loaded successfully.
[10:38:39] [Server thread/INFO]: [BattlePass] Finished loading the week-2 quests. All quests loaded successfully.
[10:38:39] [Server thread/INFO]: [BattlePass] Finished loading the week-3 quests. All quests loaded successfully.
[10:38:39] [Server thread/INFO]: [BattlePass] Finished loading the week-5 quests. All quests loaded successfully.
[10:38:39] [Server thread/INFO]: [BattlePass] Finished loading the week-4 quests. All quests loaded successfully.
[10:38:40] [Server thread/INFO]: [AdvancedEnchantments] Hooked into AdvancedEnchantments
[10:38:40] [Server thread/INFO]: [Citizens] Hooked into Citizens
[10:38:40] [Server thread/INFO]: [ExcellentCrates] Hooked into ExcellentCrates
[10:38:40] [Server thread/INFO]: [Jobs] Hooked into Jobs
[10:38:40] [Server thread/INFO]: [Lands] Hooked into Lands
[10:38:40] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: free
[10:38:40] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: premium
[10:38:40] [Server thread/INFO]: [BattlePass] Register PlaceholderAPI placeholders
[10:38:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: battlepass [1.1]
[10:38:40] [Server thread/INFO]: [BetterFarming] Enabling BetterFarming v5.9.1
[10:38:40] [Server thread/INFO]: [BetterFarming] Version: 5.9.1 Previous: 5.9.1
[10:38:40] [Server thread/INFO]: [BetterFarming] Server: 1.21.0 running Paper
[10:38:40] [Server thread/INFO]: [BetterFarming] Licensed to: 34487
[10:38:40] [Server thread/INFO]: [BetterFarming] Experiencing issues or having questions? Join our Discord!
[10:38:40] [Server thread/INFO]: [BetterFarming] Discord: https://discord.gg/B4MAJVk
[10:38:40] [Server thread/INFO]: [BetterFarming] Wiki: https://github.com/Angeschossen/BetterFarming/wiki
[10:38:40] [Server thread/INFO]: [BetterFarming]  
[10:38:40] [Server thread/INFO]: [BetterFarming] Using SQLite as database driver.
[10:38:40] [Server thread/INFO]: [BetterFarming] Successful connected to SQL database.
[10:38:40] [Server thread/INFO]: [BetterFarming] There are 2 farms in the database for world 'world'.
[10:38:40] [Server thread/INFO]: [BetterFarming] Database is ready.
[10:38:41] [Server thread/INFO]: [zAuctionHouseV3] Enabling zAuctionHouseV3 v3.2.2.0
[10:38:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: zauctionhouse [3.2.2.0]
[10:38:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] === ENABLE START ===
[10:38:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Plugin Version V3.2.2.0
[10:38:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading of 4 price items
[10:38:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] C:\Users\Administrator\Desktop\PAPER SERVER\plugins\zAuctionHouseV3\blacklistplayers.json loaded successfully !
[10:38:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loaded config.yml
[10:38:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading of 3 tax items
[10:38:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loaded 4 blacklist items
[10:38:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loaded 0 whitelist items
[10:38:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading the Examples category with 4 materials
[10:38:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading the Blocks category with 1060 materials
[10:38:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading the Potions category with 17 materials
[10:38:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading the Tools category with 20 materials
[10:38:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading the Weapons category with 13 materials
[10:38:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading 3 inventories
[10:38:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading 0 commands
[10:38:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Start backup task, next backup at 00:00
[10:38:41] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] C:\Users\Administrator\Desktop\PAPER SERVER\plugins\zAuctionHouseV3\items.json loaded successfully !
[10:38:41] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zAuctionHouseV3\patterns\auction.yml loaded successfully !
[10:38:41] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zAuctionHouseV3\patterns\back.yml loaded successfully !
[10:38:41] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zAuctionHouseV3\patterns\decoration.yml loaded successfully !
[10:38:41] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zAuctionHouseV3\patterns\pagination.yml loaded successfully !
[10:38:41] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zAuctionHouseV3\inventories\adminremove.yml loaded successfully !
[10:38:41] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zAuctionHouseV3\inventories\auction.yml loaded successfully !
[10:38:41] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zAuctionHouseV3\inventories\buyconfirm.yml loaded successfully !
[10:38:41] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zAuctionHouseV3\inventories\buyconfirminventory.yml loaded successfully !
[10:38:41] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zAuctionHouseV3\inventories\buying.yml loaded successfully !
[10:38:41] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zAuctionHouseV3\inventories\categories.yml loaded successfully !
[10:38:41] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zAuctionHouseV3\inventories\category.yml loaded successfully !
[10:38:41] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zAuctionHouseV3\inventories\economy.yml loaded successfully !
[10:38:41] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zAuctionHouseV3\inventories\expire.yml loaded successfully !
[10:38:41] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zAuctionHouseV3\inventories\items.yml loaded successfully !
[10:38:41] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zAuctionHouseV3\inventories\removeconfirm.yml loaded successfully !
[10:38:41] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zAuctionHouseV3\inventories\search.yml loaded successfully !
[10:38:41] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zAuctionHouseV3\inventories\sell.yml loaded successfully !
[10:38:41] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zAuctionHouseV3\inventories\sellshow.yml loaded successfully !
[10:38:41] [Server thread/INFO]: [zMenu v1.0.3.2] plugins\zAuctionHouseV3\inventories\show.yml loaded successfully !
[10:38:42] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] === ENABLE DONE (848ms) ===
[10:38:42] [Server thread/INFO]: [UpgradeableSpawners] Enabling UpgradeableSpawners v4.14.2
[10:38:42] [Server thread/INFO]: [UpgradeableSpawners] Version: 4.14.2 Previous: 4.14.2
[10:38:42] [Server thread/INFO]: [UpgradeableSpawners] Server: 1.21.0 running Paper
[10:38:42] [Server thread/INFO]: [UpgradeableSpawners] Licensed to: 34487
[10:38:42] [Server thread/INFO]: [UpgradeableSpawners] Experiencing issues or having questions? Join our Discord!
[10:38:42] [Server thread/INFO]: [UpgradeableSpawners] Discord: https://discord.gg/B4MAJVk
[10:38:42] [Server thread/INFO]: [UpgradeableSpawners] Wiki: https://github.com/Angeschossen/UpgradeableSpawners/wiki
[10:38:42] [Server thread/INFO]: [UpgradeableSpawners]  
[10:38:42] [Server thread/INFO]: [UpgradeableSpawners] Using SQLite as database driver.
[10:38:42] [Server thread/INFO]: [UpgradeableSpawners] Successful connected to SQL database.
[10:38:42] [Server thread/INFO]: [UpgradeableSpawners] Database is ready.
[10:38:42] [Server thread/INFO]: [UpgradeableSpawners] Entity stacking capability enabled.
[10:38:42] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart v2024.06-a
[10:38:42] [Server thread/INFO]: [UltimateAutoRestart] 2024.06-a, a free resource by Norska - Thanks for downloading!
[10:38:42] [Server thread/INFO]: [UltimateAutoRestart] Join www.norska.dev/discord/ for support!
[10:38:42] [Server thread/INFO]: [UltimateAutoRestart] Attempting hooks...
[10:38:42] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.97.0
[10:38:43] [Server thread/WARN]: [ShopGUIPlus] Error occurred when loading specialElements > balance  (config.yml), item not loaded: No item specified
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] Enabling QuickShop-Hikari v6.2.0.5
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Execute the enable sequence
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] Starting plugin self-test, please wait...
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] [OK] Spigot Based Server Test
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] [OK] Old QuickShop Test
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Based Test
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Database Driver Test
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] [OK] CoreSupport Test
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] [OK] ProtocolLib Incorrect Locate Test
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] [OK] Virtual DisplayItem Support Test
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] [OK] GameVersion supporting Test
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] [OK] Permission Manager Test
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] [OK] PacketListenerAPI Conflict Test
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] [OK] Reremake Test
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] [OK] EcoEnchants V11 Check
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] [OK] End of life Test
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] Contributors: Ghost_chu, PotatoCraft Studio, Netherfoam, Timtower, KaiNoMood (KaiKikuchi), sandtechnology, jho5245, cakoyo, Andre601, Ectabro, Chris6ix, portlek, log4b0at, deadman96385, tiararinne, DoctaEnkoda, CarmJos, YuanYuanOwO, Mgazul, mart-r, Tim269, raphtaliapt, creatorfromhell, LoneDev6, Steven-OS, confuxeon, ibmibmibm, judgetread, mfnalex, Warriorrrr, PyvesB, yannicklamprecht, ORelio, RMSCA, Starmism, yiwenwang2090, PaulBGD, Nlkomaru, harry0198, Draesia, Localized community members on Crowdin
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] Original author: Netherfoam, Timtower, KaiNoMood, sandtechnology
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] Let's start loading the plugin
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] Setting up ItemExpressionRegistry...
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] Using Virtual Item display, loading ProtocolLib support...
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] Successfully loaded ProtocolLib support!
[10:38:43] [Server thread/WARN]: [QuickShop-Hikari] Failed to initialize the virtual display item, try update your ProtocolLib to latest dev build and make sure QuickShop-Hikari up-to-date.
java.lang.IllegalStateException: Unsupported Virtual Display Minecraft version: v1_21_R1
    at QuickShop-Hikari-6.2.0.5.jar/com.ghostchu.quickshop.shop.display.virtual.VirtualDisplayItemManager.load(VirtualDisplayItemManager.java:63) ~[QuickShop-Hikari-6.2.0.5.jar:?]
    at QuickShop-Hikari-6.2.0.5.jar/com.ghostchu.quickshop.shop.display.virtual.VirtualDisplayItemManager.<init>(VirtualDisplayItemManager.java:40) ~[QuickShop-Hikari-6.2.0.5.jar:?]
    at QuickShop-Hikari-6.2.0.5.jar/com.ghostchu.quickshop.QuickShop.loadVirtualDisplayItem(QuickShop.java:705) ~[QuickShop-Hikari-6.2.0.5.jar:?]
    at QuickShop-Hikari-6.2.0.5.jar/com.ghostchu.quickshop.QuickShop.onEnable(QuickShop.java:599) ~[QuickShop-Hikari-6.2.0.5.jar:?]
    at QuickShop-Hikari-6.2.0.5.jar/com.ghostchu.quickshop.QuickShopBukkit.onEnable(QuickShopBukkit.java:102) ~[QuickShop-Hikari-6.2.0.5.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.jar:1.21-50-20889d0]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.jar:1.21-50-20889d0]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:629) ~[paper-1.21.jar:1.21-50-20889d0]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:578) ~[paper-1.21.jar:1.21-50-20889d0]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752) ~[paper-1.21.jar:1.21-50-20889d0]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514) ~[paper-1.21.jar:1.21-50-20889d0]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:327) ~[paper-1.21.jar:1.21-50-20889d0]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1219) ~[paper-1.21.jar:1.21-50-20889d0]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.jar:1.21-50-20889d0]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[10:38:43] [Server thread/WARN]: [QuickShop-Hikari] Failed to process virtual display item system
java.lang.IllegalStateException: Unsupported Virtual Display Minecraft version: v1_21_R1
    at QuickShop-Hikari-6.2.0.5.jar/com.ghostchu.quickshop.shop.display.virtual.VirtualDisplayItemManager.load(VirtualDisplayItemManager.java:63) ~[QuickShop-Hikari-6.2.0.5.jar:?]
    at QuickShop-Hikari-6.2.0.5.jar/com.ghostchu.quickshop.shop.display.virtual.VirtualDisplayItemManager.<init>(VirtualDisplayItemManager.java:40) ~[QuickShop-Hikari-6.2.0.5.jar:?]
    at QuickShop-Hikari-6.2.0.5.jar/com.ghostchu.quickshop.QuickShop.loadVirtualDisplayItem(QuickShop.java:705) ~[QuickShop-Hikari-6.2.0.5.jar:?]
    at QuickShop-Hikari-6.2.0.5.jar/com.ghostchu.quickshop.QuickShop.onEnable(QuickShop.java:599) ~[QuickShop-Hikari-6.2.0.5.jar:?]
    at QuickShop-Hikari-6.2.0.5.jar/com.ghostchu.quickshop.QuickShopBukkit.onEnable(QuickShopBukkit.java:102) ~[QuickShop-Hikari-6.2.0.5.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.jar:1.21-50-20889d0]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.jar:1.21-50-20889d0]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:629) ~[paper-1.21.jar:1.21-50-20889d0]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:578) ~[paper-1.21.jar:1.21-50-20889d0]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752) ~[paper-1.21.jar:1.21-50-20889d0]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514) ~[paper-1.21.jar:1.21-50-20889d0]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:327) ~[paper-1.21.jar:1.21-50-20889d0]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1219) ~[paper-1.21.jar:1.21-50-20889d0]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.jar:1.21-50-20889d0]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] Setting up database...
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] Create database backup...
[10:38:43] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Starting...
[10:38:43] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Start completed.
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] Checking and updating database columns, it may take a while...
[10:38:43] [Server thread/INFO]: [QuickShop-Hikari] Finished!
[10:38:44] [Server thread/INFO]: [QuickShop-Hikari] Selected permission provider: Bukkit
[10:38:44] [Server thread/INFO]: [QuickShop-Hikari] Registering commands...
[10:38:44] [Server thread/INFO]: [QuickShop-Hikari] Loaded 1 rules for listener blacklist.
[10:38:44] [Server thread/INFO]: [QuickShop-Hikari] EventManager selected: QSEventManager
[10:38:44] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[10:38:44] [Server thread/INFO]: [QuickShop-Hikari] Used 17ms to fetch 1 shops from database.
[10:38:44] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[10:38:44] [Server thread/INFO]: [QuickShop-Hikari] Used 110ms to load 0 shops into memory (1 shops will be loaded after chunks/world loaded).
[10:38:44] [Server thread/INFO]: [QuickShop-Hikari] Registering listeners...
[10:38:44] [Server thread/INFO]: [QuickShop-Hikari] Cleaning MsgUtils...
[10:38:44] [Server thread/INFO]: [QuickShop-Hikari] Cleaning purchase messages from the database that are over a week old...
[10:38:44] [Server thread/INFO]: [QuickShop-Hikari] Log actions is enabled. Actions will be logged in the qs.log file!
[10:38:44] [Server thread/INFO]: [QuickShop-Hikari] [Shop Purger] Purge not enabled!
[10:38:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: qs [6.2.0.5]
[10:38:45] [Server thread/INFO]: [QuickShop-Hikari] Successfully loaded PlaceHolderAPI support!
[10:38:45] [Server thread/WARN]: [QuickShop-Hikari] [WARN] Virtual DisplayItem Support Test: VirtualDisplayItemManager is null, this shouldn't happen, contact with QuickShop-Hikari developer.
[10:38:45] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> All Complete. (1546ms)
[10:38:45] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v7.5.0-pre40
[10:38:45] [Server thread/INFO]: [PlayerWarps] This plugin is licensed to PreddieFTW (34487) from Spigot!
[10:38:45] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[10:38:47] [Server thread/INFO]: [PlayerWarps] Found 23 config files to load!
[10:38:50] [Server thread/INFO]: [PlayerWarps] There has been an issue while trying to get the latest version for patchesexpansion.jar: Server returned HTTP response code: 400 for URL: https://api.olziedev.com/resources/expansionVersion?resource_name=playerwarps&expansion_name=patchesexpansion&plugin_version=7.5.0-pre40. Turn on debug mode in the config.yml for the stack trace.
[10:38:51] [Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[10:38:51] [Server thread/INFO]: [PlayerWarps] Economy plugin found! (EssentialsX Economy)
[10:38:51] [Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[10:38:51] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[10:38:51] [Server thread/INFO]: [PlayerWarps] Found Item Currency integrating support...
[10:38:51] [Server thread/INFO]: [PlayerWarps] Found Lands Addon integrating support...
[10:38:51] [Server thread/INFO]: [PlayerWarps] Found Vault Currency integrating support...
[10:38:51] [Server thread/INFO]: [PlayerWarps] Found BlueMap Addon integrating support...
[10:38:51] [Server thread/INFO]: [PlayerWarps] Found XP Currency integrating support...
[10:38:51] [Server thread/INFO]: [PlayerWarps] Found Essentials Expansion integrating support...
[10:38:51] [Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[10:38:51] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[10:38:51] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[10:38:51] [Server thread/INFO]: [Pl-Hide-Pro] Enabling Pl-Hide-Pro v2.10.2
[10:38:51] [Server thread/INFO]: [PhatLoots] Enabling PhatLoots v5.6.0
[10:38:52] [Server thread/INFO]: [PhatLoots] Listening for Citizens NPC deaths
[10:38:52] [Server thread/INFO]: [PhatLoots] Listening for Dispensers
[10:38:52] [Server thread/INFO]: [PhatLoots] Listening for Mob deaths w/ MultiWorld support and WorldGuard Regions
[10:38:52] [Server thread/INFO]: [PhatLoots] Listening for Mob spawns w/ MultiWorld support and WorldGuard Regions
[10:38:52] [Server thread/INFO]: [PhatLoots] Listening for Players fishing
[10:38:52] [Server thread/INFO]: [OnePlayerSleep] Enabling OnePlayerSleep v1.3
[10:38:52] [Server thread/INFO]: [OnePlayerSleep] Thank you for using the OnePlayerSleep plugin! If you enjoy using this plugin, please consider making a donation to support the development. You can donate at: https://donate.ashkiano.com
[10:38:52] [Server thread/WARN]: [OnePlayerSleep] There is a newer version (1.5) available! Please update!
[10:38:52] [Server thread/INFO]: [FasterFurnaces] Enabling FasterFurnaces v1.2.0
[10:38:52] [Server thread/INFO]: [FasterFurnaces] Version: 1.2.0 Previous: 1.2.0
[10:38:52] [Server thread/INFO]: [FasterFurnaces] Server: 1.21.0 running Paper
[10:38:52] [Server thread/INFO]: [FasterFurnaces] Licensed to: 34487
[10:38:52] [Server thread/INFO]: [FasterFurnaces] Experiencing issues or having questions? Join our Discord!
[10:38:52] [Server thread/INFO]: [FasterFurnaces] Discord: https://discord.gg/B4MAJVk
[10:38:52] [Server thread/INFO]: [FasterFurnaces] Wiki: https://github.com/Angeschossen/FasterFurnaces/wiki
[10:38:52] [Server thread/INFO]: [FasterFurnaces]  
[10:38:52] [Server thread/INFO]: [EvenMoreFish] Enabling EvenMoreFish v1.7.2
[10:38:52] [Server thread/INFO]: [EvenMoreFish] Registered 1 internal addons
[10:38:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: emf [1.7.2]
[10:38:52] [Server thread/INFO]: [EvenMoreFish] Attempting to hook into Vault for Economy Handling.
[10:38:52] [Server thread/INFO]: [EvenMoreFish] Hooked into Vault for Economy Handling.
[10:38:53] [Server thread/INFO]: [EvenMoreFish] [ACF] Enabled Asynchronous Tab Completion Support!
[10:38:53] [Server thread/INFO]: [EvenMoreFish] [ACF] Enabled Brigadier Support!
[10:38:53] [Server thread/WARN]: [EvenMoreFish] "EvenMoreFish v1.7.2" has registered a listener for com.destroystokyo.paper.event.brigadier.CommandRegisteredEvent on method "public void com.oheers.fish.libs.acf.PaperBrigadierManager.onCommandRegister(com.destroystokyo.paper.event.brigadier.CommandRegisteredEvent<com.destroystokyo.paper.brigadier.BukkitBrigadierCommandSource>)", but the event is Deprecated. "This event has been superseded by the Commands API and will be removed in a future release. Listen to LifecycleEvents.COMMANDS instead."; please notify the authors [Oheers].
[10:38:53] [Server thread/INFO]: [EvenMoreFish] Loaded RewardManager
[10:38:53] [Server thread/INFO]: [EvenMoreFish] Registered COMMAND RewardType by Oheers from the plugin EvenMoreFish
[10:38:53] [Server thread/INFO]: [EvenMoreFish] Registered EFFECT RewardType by Oheers from the plugin EvenMoreFish
[10:38:53] [Server thread/INFO]: [EvenMoreFish] Registered HEALTH RewardType by Oheers from the plugin EvenMoreFish
[10:38:53] [Server thread/INFO]: [EvenMoreFish] Registered HUNGER RewardType by Oheers from the plugin EvenMoreFish
[10:38:53] [Server thread/INFO]: [EvenMoreFish] Registered ITEM RewardType by Oheers from the plugin EvenMoreFish
[10:38:53] [Server thread/INFO]: [EvenMoreFish] Registered MESSAGE RewardType by Oheers from the plugin EvenMoreFish
[10:38:53] [Server thread/INFO]: [EvenMoreFish] Registered EXP RewardType by FireML from the plugin EvenMoreFish
[10:38:53] [Server thread/INFO]: [EvenMoreFish] Registered AURASKILLS_XP RewardType by FireML from the plugin EvenMoreFish
[10:38:53] [Server thread/INFO]: [EvenMoreFish] Registered PERMISSION RewardType by FireML from the plugin EvenMoreFish
[10:38:53] [Server thread/INFO]: [EvenMoreFish] Registered MONEY RewardType by Oheers from the plugin EvenMoreFish
[10:38:53] [Server thread/INFO]: [EvenMoreFish] EvenMoreFish by Oheers : Enabled
[10:38:53] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+93-3a6fdd9
[10:38:53] [Server thread/WARN]: [EssentialsSpawn] &r&fℹ Version mismatch! Please update all Essentials jars to the same version.
[10:38:53] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[10:38:53] [Server thread/INFO]: [EntityClearer] Enabling EntityClearer v3.5.0
[10:38:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: entityclearer [1]
[10:38:54] [Server thread/INFO]: [EntityClearer] Enabled PlaceholderAPI hook!
[10:38:54] [Server thread/INFO]: [EntityClearer] TPS monitoring activated.
[10:38:54] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.1-DEV-182
[10:38:54] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[10:38:54] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[10:38:54] [Server thread/INFO]: [DeluxeMenus] 41 GUI menus loaded!
[10:38:54] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[10:38:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.1-DEV-182]
[10:38:55] [Server thread/INFO]: [DailyRewards] Enabling DailyRewards v2.0.2
[10:38:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: dailyrewards [2.0.2]
[10:38:55] [Server thread/INFO]: [DailyRewards] Using PAPI text modifier
[10:38:55] [Server thread/INFO]:  
[10:38:55] [Server thread/INFO]:  
[10:38:55] [Server thread/INFO]:  
[10:38:55] [Server thread/INFO]: [DailyRewards] Unleash the full potential of DailyRewards by upgrading to ULTIMATE!
[10:38:55] [Server thread/INFO]: [DailyRewards] Get it from https://bit.ly/ultimate-rewards
[10:38:55] [Server thread/INFO]:  
[10:38:55] [Server thread/INFO]:  
[10:38:55] [Server thread/INFO]:  
[10:38:55] [Server thread/INFO]: [CustomNameplates] Enabling CustomNameplates v2.4.1
[10:38:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: nameplates [2.3]
[10:38:58] [pool-104-thread-10/INFO]: [CustomNameplates] You are using the latest version.
[10:38:59] [Server thread/INFO]: [CustomCrops] Enabling CustomCrops v3.5.5
[10:39:00] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: CustomCrops
[10:39:00] [Server thread/INFO]: [CustomCrops] JobsReborn hooked!
[10:39:00] [Server thread/INFO]: [CustomCrops] AuraSkills hooked!
[10:39:00] [Server thread/INFO]: [CustomCrops] Hooked into customcrops
[10:39:00] [Server thread/INFO]: [CustomCrops] BattlePass hooked!
[10:39:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: customcrops [3.4]
[10:39:01] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.10
[10:39:01] [Server thread/INFO]: [ChestProtect] Enabling ChestProtect v5.18.0
[10:39:01] [Server thread/INFO]: [ChestProtect] Version: 5.18.0 Previous: 5.18.0
[10:39:01] [Server thread/INFO]: [ChestProtect] Server: 1.21.0 running Paper
[10:39:01] [Server thread/INFO]: [ChestProtect] Licensed to: 34487
[10:39:01] [Server thread/INFO]: [ChestProtect] Experiencing issues or having questions? Join our Discord!
[10:39:01] [Server thread/INFO]: [ChestProtect] Discord: https://discord.gg/B4MAJVk
[10:39:01] [Server thread/INFO]: [ChestProtect] Wiki: https://github.com/Angeschossen/ChestProtect/wiki
[10:39:01] [Server thread/INFO]: [ChestProtect]  
[10:39:01] [Server thread/INFO]: [ChatInjector] Enabling ChatInjector v1.0.3
[10:39:01] [pool-105-thread-1/INFO]: [CustomCrops] Update is available: https://polymart.org/resource/2625
[10:39:01] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.13
[10:39:02] [Server thread/INFO]: [BetterRTP] Cooldown = 600
[10:39:02] [Server thread/INFO]: [BetterRTP] Loading Overrides...
[10:39:02] [Server thread/INFO]: [BetterRTP] Loading World Types...
[10:39:02] [Server thread/INFO]: [BetterRTP] - World Type for 'world' set to 'NORMAL'
[10:39:02] [Server thread/INFO]: [BetterRTP] - World Type for 'world_nether' set to 'NETHER'
[10:39:02] [Server thread/INFO]: [BetterRTP] - World Type for 'world_the_end' set to 'NORMAL'
[10:39:02] [Server thread/INFO]: [BetterRTP] Loading Defaults...
[10:39:02] [Server thread/INFO]: [BetterRTP] Loading Custom Worlds...
[10:39:02] [Server thread/INFO]: [BetterRTP] Custom World 'world' registered:
[10:39:02] [Server thread/INFO]: [BetterRTP] - UseWorldBorder: true
[10:39:02] [Server thread/INFO]: [BetterRTP] - CenterX: 612
[10:39:02] [Server thread/INFO]: [BetterRTP] - CenterZ: -671
[10:39:02] [Server thread/INFO]: [BetterRTP] - MaxRadius: 4000
[10:39:02] [Server thread/INFO]: [BetterRTP] - MinRadius: 500
[10:39:02] [Server thread/INFO]: [BetterRTP] - Price: 100
[10:39:02] [Server thread/INFO]: [BetterRTP] - Shape: SQUARE
[10:39:02] [Server thread/INFO]: [BetterRTP] - Cooldown: 60
[10:39:02] [Server thread/INFO]: [BetterRTP] Custom World 'world_nether' registered:
[10:39:02] [Server thread/INFO]: [BetterRTP] - UseWorldBorder: true
[10:39:02] [Server thread/INFO]: [BetterRTP] - CenterX: 0
[10:39:02] [Server thread/INFO]: [BetterRTP] - CenterZ: 0
[10:39:02] [Server thread/INFO]: [BetterRTP] - MaxRadius: 4000
[10:39:02] [Server thread/INFO]: [BetterRTP] - MinRadius: 500
[10:39:02] [Server thread/INFO]: [BetterRTP] - Price: 500
[10:39:02] [Server thread/INFO]: [BetterRTP] - Shape: SQUARE
[10:39:02] [Server thread/INFO]: [BetterRTP] - Cooldown: 60
[10:39:02] [Server thread/INFO]: [BetterRTP] Custom World 'world_the_end' registered:
[10:39:02] [Server thread/INFO]: [BetterRTP] - UseWorldBorder: true
[10:39:02] [Server thread/INFO]: [BetterRTP] - CenterX: 0
[10:39:02] [Server thread/INFO]: [BetterRTP] - CenterZ: 0
[10:39:02] [Server thread/INFO]: [BetterRTP] - MaxRadius: 4000
[10:39:02] [Server thread/INFO]: [BetterRTP] - MinRadius: 500
[10:39:02] [Server thread/INFO]: [BetterRTP] - Price: 5000
[10:39:02] [Server thread/INFO]: [BetterRTP] - Shape: SQUARE
[10:39:02] [Server thread/INFO]: [BetterRTP] - Cooldown: 6000
[10:39:02] [Server thread/ERROR]: [BetterRTP] The particle 'EXPLOSION_NORMAL' created a fatal error when loading particles! Your MC version isn't supported!
[10:39:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.13]
[10:39:02] [Server thread/INFO]: [BankPlus] Enabling BankPlus v6.2
[10:39:02] [Server thread/INFO]: 
[10:39:02] [Server thread/INFO]:     BankPlus Enabling plugin...
[10:39:02] [Server thread/INFO]:     Running on version 6.2!
[10:39:02] [Server thread/INFO]:     Detected server version: 1.21-50-20889d0 (MC: 1.21)
[10:39:02] [Server thread/INFO]:     Setting up the plugin...
[10:39:02] [Server thread/INFO]:     Done! (258ms)
[10:39:02] [Server thread/INFO]: 
[10:39:02] [Server thread/INFO]: BankPlus [INFO] Hooked into PlaceholderAPI!
[10:39:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: bankplus [6.2]
[10:39:02] [Server thread/INFO]: BankPlus [INFO] Hooked into Essentials!
[10:39:02] [Server thread/WARN]: Could not register alias map because it contains commands that do not exist: dynmap url
[10:39:03] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[10:39:03] [Server thread/INFO]: Running delayed init tasks
[10:39:03] [Craft Scheduler Thread - 5 - BlueMap/INFO]: [BlueMap] Loading...
[10:39:03] [Craft Scheduler Thread - 8 - Essentials/INFO]: [Essentials] &r&fℹ Fetching version information...
[10:39:03] [Craft Scheduler Thread - 19 - QuickShop-Hikari/INFO]: [QuickShop-Hikari] Start to caching usernames (async)...
[10:39:03] [Craft Scheduler Thread - 20 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[10:39:03] [Craft Scheduler Thread - 26 - Vault/INFO]: [Vault] Checking for Updates ... 
[10:39:03] [Craft Scheduler Thread - 32 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:world configured and loaded!
[10:39:03] [Craft Scheduler Thread - 31 - BetterRTP/INFO]: [BetterRTP] Database QUEUE:Queue configured and loaded!
[10:39:03] [Craft Scheduler Thread - 29 - BetterRTP/INFO]: [BetterRTP] Database PLAYERS:Players configured and loaded!
[10:39:03] [Craft Scheduler Thread - 32 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:world_nether configured and loaded!
[10:39:03] [Craft Scheduler Thread - 32 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:world_the_end configured and loaded!
[10:39:03] [Craft Scheduler Thread - 32 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:Spawn configured and loaded!
[10:39:03] [Craft Scheduler Thread - 33 - BetterRTP/INFO]: [BetterRTP] Database CHUNK_DATA:ChunkData configured and loaded!
[10:39:03] [Craft Scheduler Thread - 9 - CMILib/INFO]: New version of CMILib was detected. Please update it
[10:39:03] [Craft Scheduler Thread - 13 - BankPlus/INFO]: BankPlus [INFO] The plugin is updated!
[10:39:03] [Craft Scheduler Thread - 24 - DailyRewards/INFO]: [DailyRewards] You are running the latest release (2.0.2).
[10:39:03] [Craft Scheduler Thread - 21 - PlayerWarps/INFO]: [PlayerWarps] ⩨ » PlayerWarps v7.5.1 is out! You are still running v7.5.0-pre40!
[10:39:03] [Craft Scheduler Thread - 7 - Pl-Hide-Pro/INFO]: [Pl-Hide-Pro] Pl-Hide-Pro Update available: 2.10.3! You are on 2.10.2!
[10:39:03] [Craft Scheduler Thread - 26 - Vault/INFO]: [Vault] No new version available
[10:39:04] [Craft Scheduler Thread - 16 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.2.2.0] No update available.
[10:39:04] [Craft Scheduler Thread - 10 - zMenu/INFO]: [zMenu v1.0.3.2] No update available.
[10:39:04] [Server thread/INFO]: Loaded 1290 recipes
[10:39:04] [Server thread/INFO]: Loaded 1399 advancements
[10:39:05] [Craft Scheduler Thread - 5 - BlueMap/INFO]: [BlueMap] Loading resources...
[10:39:06] [Craft Scheduler Thread - 5 - BlueMap/INFO]: [BlueMap] Loading textures...
[10:39:06] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[10:39:07] [Server thread/INFO]: [AuraSkills] Loaded 11 skills with 312 total sources
[10:39:07] [Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
[10:39:07] [Server thread/INFO]: [AuraSkills] Loaded 22 pattern rewards and 0 level rewards
[10:39:08] [Server thread/INFO]: [AuraSkills] Loaded 53 loot entries in 4 pools and 2 tables
[10:39:09] [Server thread/INFO]: [AuraSkills] Loaded 6 menus
[10:39:09] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[10:39:09] [Server thread/INFO]: WorldGuard detected.
[10:39:09] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (Essentials)
[10:39:09] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (LuckPerms)
[10:39:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pw [7.5.0-pre40]
[10:39:10] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: PlayerWarps
[10:39:10] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[10:39:10] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[10:39:10] [Server thread/INFO]: [Lands] Successfully added region provider: WorldGuard Type: SERVER
[10:39:10] [Craft Scheduler Thread - 5 - BlueMap/INFO]: [BlueMap] Baking resources...
[10:39:10] [Craft Scheduler Thread - 5 - BlueMap/INFO]: [BlueMap] Resources loaded.
[10:39:11] [Craft Scheduler Thread - 5 - BlueMap/INFO]: [BlueMap] Initializing Storage: 'file' (Type: 'bluemap:file')
[10:39:11] [Craft Scheduler Thread - 5 - BlueMap/INFO]: [BlueMap] Loading map 'world'...
[10:39:11] [Server thread/INFO]: [Citizens] Loaded 19 NPCs.
[10:39:11] [Server thread/INFO]: +> [ScriptEvent] Processed 0 script event paths. 
[10:39:11] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[10:39:11] [Server thread/INFO]: +> [Denizen] Denizen fully loaded at: 2024/07/13 10:38:30 
[10:39:11] [Server thread/INFO]: [BetterFarming] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[10:39:11] [Server thread/INFO]: [BetterFarming] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[10:39:11] [Server thread/INFO]: [BetterFarming] Successfully added region provider: Lands Type: CLAIMING
[10:39:11] [Server thread/INFO]: [BetterFarming] Successfully added region provider: WorldGuard Type: SERVER
[10:39:11] [Server thread/INFO]: [UpgradeableSpawners] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[10:39:11] [Server thread/INFO]: [UpgradeableSpawners] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[10:39:11] [Server thread/INFO]: [UpgradeableSpawners] Successfully added region provider: Lands Type: CLAIMING
[10:39:11] [Server thread/INFO]: [UpgradeableSpawners] Successfully added region provider: WorldGuard Type: SERVER
[10:39:11] [Server thread/INFO]: [UpgradeableSpawners] [Integrations] Successfully integrated Vault economy into economy system. Name: EssentialsX Economy
[10:39:11] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.97.0 ]================================
[10:39:11] [Server thread/INFO]: [ShopGUIPlus]  
[10:39:11] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[10:39:11] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[10:39:11] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[10:39:11] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[10:39:11] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for Oraxen.
[10:39:11] [Server thread/INFO]: [ShopGUIPlus] No external spawner plugins registered, using built-in spawners support.
[10:39:11] [Server thread/WARN]: [ShopGUIPlus] Error occurred when loading shopMenuFillItem (config.yml), item not loaded: Invalid or no material name specified
[10:39:11] [Server thread/INFO]: [ShopGUIPlus] Loaded 10 main menu items.
[10:39:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'coralblocks' with 15 items.
[10:39:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'corals' with 16 items.
[10:39:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'concretes' with 26 items.
[10:39:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'buttons' with 20 items.
[10:39:11] [Craft Scheduler Thread - 5 - BlueMap/INFO]: [BlueMap] Loading map 'world_the_end'...
[10:39:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'skulls' with 16 items.
[10:39:11] [Server thread/WARN]: [ShopGUIPlus] Error occurred when loading ores > P1-45, item not loaded: Invalid or no material name specified
[10:39:11] [Server thread/WARN]: [ShopGUIPlus] Error occurred when loading ores > P1-46, item not loaded: Invalid or no material name specified
[10:39:11] [Server thread/WARN]: [ShopGUIPlus] Error occurred when loading ores > P1-47, item not loaded: Invalid or no material name specified
[10:39:11] [Server thread/WARN]: [ShopGUIPlus] Error occurred when loading ores > P1-48, item not loaded: Invalid or no material name specified
[10:39:11] [Server thread/WARN]: [ShopGUIPlus] Error occurred when loading ores > P1-49, item not loaded: Invalid or no material name specified
[10:39:11] [Server thread/WARN]: [ShopGUIPlus] Error occurred when loading ores > P1-50, item not loaded: Invalid or no material name specified
[10:39:11] [Server thread/WARN]: [ShopGUIPlus] Error occurred when loading ores > P1-51, item not loaded: Invalid or no material name specified
[10:39:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'ores' with 29 items.
[10:39:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'woods' with 16 items.
[10:39:11] [Craft Scheduler Thread - 5 - BlueMap/INFO]: [BlueMap] Loading map 'world_nether'...
[10:39:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks' with 143 items.
[10:39:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'glass' with 27 items.
[10:39:12] [Craft Scheduler Thread - 5 - BlueMap/INFO]: [BlueMap] WebServer bound to all network interfaces on port 443
[10:39:12] [Thread-40/INFO]: [BlueMap] WebServer started.
[10:39:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'deadcoralfans' with 16 items.
[10:39:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'boats' with 17 items.
[10:39:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'banners' with 27 items.
[10:39:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'dyes' with 27 items.
[10:39:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'flowers' with 28 items.
[10:39:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'food' with 31 items.
[10:39:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'planks' with 16 items.
[10:39:12] [Craft Scheduler Thread - 5 - BlueMap/INFO]: [BlueMap] Loaded!
[10:39:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'trapdoors' with 19 items.
[10:39:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'fences' with 20 items.
[10:39:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'doors' with 19 items.
[10:39:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'glasspanes' with 28 items.
[10:39:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'armor' with 24 items.
[10:39:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'pressureplates' with 20 items.
[10:39:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'terracottas' with 27 items.
[10:39:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'glazedterracottas' with 26 items.
[10:39:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'shulkerboxes' with 28 items.
[10:39:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'coralfans' with 16 items.
[10:39:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'deadcorals' with 16 items.
[10:39:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'redstone' with 38 items.
[10:39:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'concretepowders' with 26 items.
[10:39:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'musicdiscs' with 24 items.
[10:39:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'beds' with 27 items.
[10:39:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'saplings' with 18 items.
[10:39:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'miscellaneous' with 69 items.
[10:39:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'deadcoralblocks' with 15 items.
[10:39:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'fencegates' with 19 items.
[10:39:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'decorations' with 66 items.
[10:39:14] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'tools' with 15 items.
[10:39:14] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'carpets' with 27 items.
[10:39:14] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'strippedwoods' with 16 items.
[10:39:14] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'farming' with 32 items.
[10:39:14] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'signs' with 19 items.
[10:39:14] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'walls' with 28 items.
[10:39:14] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'leaves' with 17 items.
[10:39:14] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'drops' with 53 items.
[10:39:14] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'strippedlogs' with 16 items.
[10:39:14] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'logs' with 16 items.
[10:39:14] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'wools' with 26 items.
[10:39:14] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'vip' with 25 items.
[10:39:14] [Server thread/INFO]: [ShopGUIPlus] Loaded 48 shops with total of 1305 items.
[10:39:14] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[10:39:14] [Server thread/INFO]: [ShopGUIPlus] Loaded 7 sounds.
[10:39:14] [Server thread/INFO]: [ShopGUIPlus]  
[10:39:14] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[10:39:14] [Server thread/INFO]: [QuickShop-Hikari] Using economy system: EssentialsX Economy
[10:39:14] [Server thread/INFO]: [QuickShop-Hikari] Selected economy bridge: BuiltIn-Vault
[10:39:14] [Server thread/INFO]: [FasterFurnaces] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[10:39:14] [Server thread/INFO]: [FasterFurnaces] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[10:39:14] [Server thread/INFO]: [FasterFurnaces] Successfully added region provider: WorldGuard Type: SERVER
[10:39:14] [Server thread/INFO]: [FasterFurnaces] [Integration] ChestProtect functionality added.
[10:39:14] [Server thread/INFO]: [FasterFurnaces] [Integrations] Successfully integrated Vault economy into economy system. Name: EssentialsX Economy
[10:39:14] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[10:39:14] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[10:39:14] [Server thread/INFO]: [ChestProtect] Successfully added region provider: Lands Type: CLAIMING
[10:39:14] [Server thread/INFO]: [ChestProtect] Successfully added region provider: WorldGuard Type: SERVER
[10:39:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[10:39:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: healthbar [1.3]
[10:39:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[10:39:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[10:39:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: progress [2.1]
[10:39:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[10:39:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[10:39:14] [Server thread/INFO]: 7 placeholder hook(s) registered!
[10:39:15] [Server thread/INFO]: Done (130.279s)! For help, type "help"
[10:39:15] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 11742ms or 234 ticks behind
[10:39:15] [Server thread/INFO]: Timings Reset
[10:39:15] [Craft Scheduler Thread - 14 - Oraxen/INFO]: Oraxen | Automatic upload of the resource pack is enabled, uploading...
[10:39:15] [Server thread/INFO]: [EvenMoreFish] 2 new addons registered! (3 total)
[10:39:16] [Craft Scheduler Thread - 30 - BetterRTP/INFO]: [BetterRTP] Attempting to queue up some more safe locations...
[10:39:16] [Server thread/INFO]: [AdvancedChat] Successfully hooked into ProtocolLib, WorldGuard, PlaceholderAPI, Lands, Vault, LuckPerms.
[10:39:16] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into ProtocolLib, AuraSkills, AdvancedEnchantments, WorldGuard, PlaceholderAPI, Lands, Oraxen, Essentials, Vault, LuckPerms.
[10:39:16] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated Vault economy into economy system. Name: EssentialsX Economy
[10:39:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lands [7.6.2]
[10:39:16] [Server thread/INFO]: [Lands] [Integrations] Successfully registered placeholders at PlaceholderAPI. More info: https://github.com/Angeschossen/Lands/wiki/PlaceholderAPI-Placeholders#placeholders
[10:39:16] [Server thread/INFO]: [Lands] BlueMap is ready now.
[10:39:16] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated BlueMap into web-map system.
[10:39:16] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated WorldEdit. Bypass: lands.bypass.worldedit Wilderness-Bypass: lands.bypass.wilderness.worldedit
[10:39:16] [Server thread/INFO]: [Lands] [Integrations] Successfully loaded LuckPerms contexts. More information: https://github.com/Angeschossen/Lands/wiki/Luckperms-Context
[10:39:16] [Craft Scheduler Thread - 14 - Oraxen/INFO]: Oraxen | Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=a3224c72b7022e4debf416e032ce16611f55d254 in 10082 ms
[10:39:17] [Server thread/INFO]: [BetterFarming] [Integrations] Successfully integrated Vault economy into economy system. Name: EssentialsX Economy
[10:39:17] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated Vault economy into economy system. Name: EssentialsX Economy
[10:39:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chestprotect [5.18.0]
[10:39:17] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated PlaceholderAPI into chat system.
[10:39:17] [Craft Scheduler Thread - 14 - BetterRTP/INFO]: [BetterRTP] Queueing paused, max queue limit reached!
[10:39:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimateautorestart [2024.06-a]
[10:39:17] [Server thread/INFO]: [UltimateAutoRestart] Hooked into PlaceholderAPI!
[10:39:17] [Server thread/INFO]: [UltimateAutoRestart] Successfully performed 1 hooks!
[10:39:19] [ForkJoinPool.commonPool-worker-8/INFO]: [Lands] There is a new version available: 7.8.5
[10:39:19] [ForkJoinPool.commonPool-worker-7/INFO]: [ChestProtect] There is a new version available: 5.18.3
[10:39:19] [ForkJoinPool.commonPool-worker-4/INFO]: [BetterFarming] You're using the latest version.
[10:39:20] [ForkJoinPool.commonPool-worker-1/INFO]: [UpgradeableSpawners] There is a new version available: 4.14.5
[10:39:20] [ForkJoinPool.commonPool-worker-6/INFO]: [FasterFurnaces] You're using the latest version.