Paste #127418: Quests

Date: 2024/10/22 10:20:15 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[18:16:51] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.4+7-Ubuntu-1ubuntu222.04; Ubuntu null) on Linux 6.5.0-45-generic (amd64)
[18:16:51] [ServerMain/INFO]: [bootstrap] Loading Purpur 1.21.1-2327-ver/1.21.1@4b57bed (2024-10-21T00:28:02Z) for Minecraft 1.21.1
[18:16:52] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[18:16:52] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/FastAsyncWorldEdit-Bukkit-2.11.3-SNAPSHOT-940.jar'...
[18:16:53] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/FastAsyncWorldEdit-Bukkit-2.11.3-SNAPSHOT-940.jar' in 1629ms.
[18:16:54] [ServerMain/INFO]: [PluginInitializerManager] Initialized 53 plugins
[18:16:54] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (2):
 - EconomyShopGUI-Premium (5.16.5), RoseStacker (1.5.30)
[18:16:54] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (51):
 - AuraSkills (2.2.4), Aurora (1.7.0), AuroraCollections (1.4.2), AuroraLevels (1.5.7), AxSellwands (1.6.8), AxVaults (2.2.1), BankPlus (6.3), BetterRTP (3.6.13), BetterTeams (4.10.0), BottledExp (3.2.3.0), CMILib (1.5.1.6), ChatGames-Premium (1.7.5), Citizens (2.0.35-SNAPSHOT (build 3585)), CommandAPI (9.5.3), DecentHolograms (2.8.11), DeluxeMenus (1.14.0-Release), Denizen (1.3.1-SNAPSHOT (build 7080-DEV)), Depenizen (2.1.1 (build 864)), EZColors (2.2.6), Essentials (2.21.0-dev+121-f7a8f86), EssentialsChat (2.21.0-dev+121-f7a8f86), EssentialsSpawn (2.21.0-dev+121-f7a8f86), ExcellentCrates (5.3.3), ExcellentShop (4.11.6), FastAsyncWorldEdit (2.11.3-SNAPSHOT-940;3806a82), Jobs (5.2.4.5), LagFixer (1.3.28 (build 92)), LuckPerms (5.4.141), MoneyPouchDeluxe (1.4.2), Multiverse-Core (4.3.12), PL-Hide (1.5.22), PlaceholderAPI (2.11.6), PlayerKits2 (1.12.6), ProtocolLib (5.3.0), PyroFishingPro (4.9.11), PyroLib (1.4.5), Quests (3.15.2-b216e2b), QuickShop-Hikari (6.2.0.7), Rankup (3.14.4), Skript (2.9.3), TAB (4.1.8), TempFly (3.1.7), ToSyGuardExtraFlags (1.0-SNAPSHOT), Triton (3.11.0), UltimateRewards (2.3.1), Vault (1.7.3-b131), VoidWorld (1.0), WorldGuard (7.0.12+829a4a4), WorldGuardExtraFlags (4.2.4-SNAPSHOT), nightcore (2.6.4), packetevents (2.5.0)
[18:16:55] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[18:16:56] [ServerMain/INFO]: Loaded 1290 recipes
[18:16:56] [ServerMain/INFO]: Loaded 1399 advancements
[18:16:56] [Server thread/INFO]: Starting minecraft server version 1.21.1
[18:16:56] [Server thread/INFO]: Loading properties
[18:16:56] [Server thread/INFO]: This server is running Purpur version 1.21.1-2327-ver/1.21.1@4b57bed (2024-10-21T00:28:02Z) (Implementing API version 1.21.1-R0.1-SNAPSHOT)
[18:16:57] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[18:16:57] [Server thread/INFO]: Server Ping Player Sample Count: 12
[18:16:57] [Server thread/INFO]: Using 4 threads for Netty based IO
[18:16:57] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 8 worker threads, and population gen parallelism of 8 threads
[18:16:57] [Server thread/WARN]: [Pufferfish] SIMD operations are available for your server, but are not configured!
[18:16:57] [Server thread/WARN]: [Pufferfish] To enable additional optimizations, add "--add-modules=jdk.incubator.vector" to your startup flags, BEFORE the "-jar".
[18:16:57] [Server thread/WARN]: [Pufferfish] If you have already added this flag, then SIMD operations are not supported on your JVM or CPU.
[18:16:57] [Server thread/WARN]: [Pufferfish] Debug: Java: 21.0.4, test run: true
[18:16:57] [Server thread/INFO]: Default game type: SURVIVAL
[18:16:57] [Server thread/INFO]: Generating keypair
[18:16:57] [Server thread/INFO]: Starting Minecraft server on *:25321
[18:16:57] [Server thread/INFO]: Using epoll channel type
[18:16:57] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[18:16:57] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[18:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loading 2 libraries... please wait
[18:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/minecraft/new_season_09.09.2024/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[18:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/minecraft/new_season_09.09.2024/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[18:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/minecraft/new_season_09.09.2024/libraries/it/unimi/dsi/fastutil-core/8.5.13/fastutil-core-8.5.13.jar
[18:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[18:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/minecraft/new_season_09.09.2024/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
[18:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/minecraft/new_season_09.09.2024/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[18:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/minecraft/new_season_09.09.2024/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
[18:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/minecraft/new_season_09.09.2024/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
[18:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/minecraft/new_season_09.09.2024/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[18:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/minecraft/new_season_09.09.2024/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[18:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/minecraft/new_season_09.09.2024/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[18:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/minecraft/new_season_09.09.2024/libraries/org/json/json/20220320/json-20220320.jar
[18:16:57] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/minecraft/new_season_09.09.2024/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[18:16:58] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loading 3 libraries... please wait
[18:16:58] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/minecraft/new_season_09.09.2024/libraries/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.jar
[18:16:58] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/minecraft/new_season_09.09.2024/libraries/mysql/mysql-connector-java/8.0.28/mysql-connector-java-8.0.28.jar
[18:16:58] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/minecraft/new_season_09.09.2024/libraries/com/google/protobuf/protobuf-java/3.11.4/protobuf-java-3.11.4.jar
[18:16:58] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/minecraft/new_season_09.09.2024/libraries/org/mariadb/jdbc/mariadb-java-client/3.1.1/mariadb-java-client-3.1.1.jar
[18:16:58] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/minecraft/new_season_09.09.2024/libraries/com/github/waffle/waffle-jna/3.2.0/waffle-jna-3.2.0.jar
[18:16:58] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/minecraft/new_season_09.09.2024/libraries/net/java/dev/jna/jna/5.12.1/jna-5.12.1.jar
[18:16:58] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/minecraft/new_season_09.09.2024/libraries/net/java/dev/jna/jna-platform/5.12.1/jna-platform-5.12.1.jar
[18:16:58] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/minecraft/new_season_09.09.2024/libraries/org/slf4j/jcl-over-slf4j/1.7.36/jcl-over-slf4j-1.7.36.jar
[18:16:58] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/minecraft/new_season_09.09.2024/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[18:16:58] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/minecraft/new_season_09.09.2024/libraries/com/github/ben-manes/caffeine/caffeine/2.9.3/caffeine-2.9.3.jar
[18:16:58] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/minecraft/new_season_09.09.2024/libraries/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar
[18:16:58] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateRewards] Loaded library /home/minecraft/new_season_09.09.2024/libraries/org/checkerframework/checker-qual/3.23.0/checker-qual-3.23.0.jar
[18:16:58] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[18:17:02] [Server thread/WARN]: Legacy plugin VoidWorld v1.0 does not specify an api-version.
[18:17:02] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.141
[18:17:02] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[18:17:02] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.11.3-SNAPSHOT-940;3806a82
[18:17:03] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@aab92fd]
[18:17:03] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[18:17:03] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0
[18:17:03] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.12+829a4a4
[18:17:03] [Server thread/INFO]: [PyroLib] Loading server plugin PyroLib v1.4.5
[18:17:03] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.5.0
[18:17:04] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.6.4
[18:17:04] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.11
[18:17:04] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.12
[18:17:04] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+121-f7a8f86
[18:17:04] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.35-SNAPSHOT (build 3585)
[18:17:04] [Server thread/INFO]: [PyroFishingPro] Loading server plugin PyroFishingPro v4.9.11
[18:17:04] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.1.6
[18:17:04] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v5.3.3
[18:17:04] [Server thread/INFO]: [AuraSkills] Loading server plugin AuraSkills v2.2.4
[18:17:04] [Server thread/INFO]: [Aurora] Loading server plugin Aurora v1.7.0
[18:17:04] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.3.1-SNAPSHOT (build 7080-DEV)
[18:17:04] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.4.5
[18:17:04] [Server thread/INFO]: [Quests] Loading server plugin Quests v3.15.2-b216e2b
[18:17:04] [Server thread/INFO]: [ExcellentShop] Loading server plugin ExcellentShop v4.11.6
[18:17:04] [Server thread/INFO]: [EconomyShopGUI-Premium] Loading server plugin EconomyShopGUI-Premium v5.16.5
[18:17:04] [Server thread/INFO]: [RoseStacker] Loading server plugin RoseStacker v1.5.30
[18:17:04] [Server thread/INFO]: [AuroraLevels] Loading server plugin AuroraLevels v1.5.7
[18:17:04] [Server thread/INFO]: AuroraLevels | Registered WorldGuard flag aurora-levels-min-level-entry
[18:17:04] [Server thread/INFO]: AuroraLevels | Registered WorldGuard flag aurora-levels-max-level-entry
[18:17:04] [Server thread/INFO]: [BetterTeams] Loading server plugin BetterTeams v4.10.0
[18:17:04] [Server thread/INFO]: [BetterTeams] Checking if the file config.yml is up to date
[18:17:04] [Server thread/INFO]: [BetterTeams] File is up to date
[18:17:04] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.4-SNAPSHOT
[18:17:04] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+121-f7a8f86
[18:17:04] [Server thread/INFO]: [BottledExp] Loading server plugin BottledExp v3.2.3.0
[18:17:04] [Server thread/INFO]: [Triton] Loading server plugin Triton v3.11.0
[18:17:04] [Server thread/INFO]: [MoneyPouchDeluxe] Loading server plugin MoneyPouchDeluxe v1.4.2
[18:17:04] [Server thread/INFO]: [MoneyPouchDeluxe] Initializing using ColdDev v1.4
[18:17:04] [Server thread/INFO]: [PlayerKits2] Loading server plugin PlayerKits2 v1.12.6
[18:17:04] [Server thread/INFO]: [CommandAPI] Loading server plugin CommandAPI v9.5.3
[18:17:04] [Server thread/INFO]: [CommandAPI] Loaded platform NMS_1_21_R1 > NMS_Common > CommandAPIBukkit
[18:17:04] [Server thread/INFO]: [CommandAPI] Hooked into Spigot successfully for Chat/ChatComponents
[18:17:04] [Server thread/INFO]: [CommandAPI] Hooked into Adventure for AdventureChat/AdventureChatComponents
[18:17:04] [Server thread/INFO]: [CommandAPI] Hooked into Paper for paper-specific API implementations
[18:17:04] [Server thread/INFO]: [Depenizen] Loading server plugin Depenizen v2.1.1 (build 864)
[18:17:04] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.8
[18:17:04] [Server thread/INFO]: [PL-Hide] Loading server plugin PL-Hide v1.5.22
[18:17:04] [Server thread/INFO]: [AxSellwands] Loading server plugin AxSellwands v1.6.8
[18:17:04] [Server thread/INFO]: [AxSellwands] Loading library commons-math3
[18:17:04] [Server thread/INFO]: [AxSellwands] Loading library caffeine
[18:17:04] [Server thread/INFO]: [UltimateRewards] Loading server plugin UltimateRewards v2.3.1
[18:17:04] [Server thread/INFO]: [⚑] Loading server plugin LagFixer v1.3.28 (build 92)
[18:17:04] [Server thread/INFO]: [AxVaults] Loading server plugin AxVaults v2.2.1
[18:17:04] [Server thread/INFO]: [AxVaults] Loading library commons-math3
[18:17:04] [Server thread/INFO]: [AxVaults] Loading library caffeine
[18:17:04] [Server thread/INFO]: [AxVaults] Loading library sqlite-jdbc
[18:17:04] [Server thread/INFO]: [AxVaults] Loading library h2
[18:17:04] [Server thread/INFO]: [AxVaults] Loading library mysql-connector-j
[18:17:04] [Server thread/INFO]: [VoidWorld] Loading server plugin VoidWorld v1.0
[18:17:04] [Server thread/INFO]: [QuickShop-Hikari] Loading server plugin QuickShop-Hikari v6.2.0.7
[18:17:04] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Execute the initialization sequence
[18:17:04] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Bootloader preparing for startup, please wait...
[18:17:04] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initializing libraries...
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari] Maven repository mirror test result:
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari] [US] APACHE: 35ms
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari] [US] CENTRAL: 36ms
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari] [CN] TENCENT: 38ms
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari] [CN] HUAWEI: 531ms
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari] [CN] ALIYUN: 2461ms
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading 12 libraries (0 skipped libraries)...
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.apache.commons:commons-lang3:3.14.0 [1/12]
[18:17:06] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
[18:17:06] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Defaulting to no-operation (NOP) logger implementation
[18:17:06] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.apache.commons:commons-compress:1.25.0 [2/12]
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.google.code.gson:gson:2.10.1 [3/12]
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.google.guava:guava:33.1.0-jre [4/12]
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.rollbar:rollbar-java:1.9.0 [5/12]
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library cc.carm.lib:easysql-hikaricp:0.4.7 [6/12]
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.h2database:h2:2.1.214 [7/12]
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.konghq:unirest-java:3.14.5 [8/12]
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library net.sourceforge.csvjdbc:csvjdbc:1.0.42 [9/12]
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.dom4j:dom4j:2.1.4 [10/12]
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.vdurmont:semver4j:3.1.0 [11/12]
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.ghostchu.crowdin:crowdinota:1.0.3 [12/12]
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initialing Unirest...
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initializing platform...
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Platform detected: Paper
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari] Slf4jLogger initialized
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Platform initialized: com.ghostchu.quickshop.platform.paper.PaperPlatform
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Boot QuickShop instance...
[18:17:06] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Creating QuickShop instance...
[18:17:07] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[18:17:07] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Booting up
[18:17:07] [Server thread/INFO]: [QuickShop-Hikari] Self testing...
[18:17:07] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[18:17:07] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[18:17:07] [Server thread/INFO]: [QuickShop-Hikari] Setting up privacy controller...
[18:17:07] [Server thread/INFO]: [QuickShop-Hikari] Setting up QuickShop registry....
[18:17:07] [Server thread/INFO]: [QuickShop-Hikari] Setting up metrics manager...
[18:17:07] [Server thread/INFO]: [QuickShop-Hikari] Loading player name and unique id mapping...
[18:17:07] [Server thread/INFO]: [QuickShop-Hikari] Loading translations (This may take a while)...
[18:17:07] [Server thread/INFO]: [QuickShop-Hikari] Please wait us fetch the translation updates from Crowdin OTA service...
[18:17:07] [Server thread/INFO]: [CrowdinOTA] Downloading Crowdin distribution manifest from remote server...
[18:17:07] [Server thread/INFO]: [OTAFileInstance-0] Downloading translations for 0 locales...
[18:17:07] [Server thread/INFO]: [OTAFileInstance-1] Downloading translations for 0 locales...
[18:17:07] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[18:17:07] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[18:17:07] [Server thread/INFO]: [QuickShop-Hikari] Register InventoryWrapper...
[18:17:07] [Server thread/INFO]: [QuickShop-Hikari] Initializing NexusManager...
[18:17:07] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Complete
[18:17:07] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Complete (3471ms). Waiting for enable...
[18:17:07] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.9.3
[18:17:07] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.21.0-dev+121-f7a8f86
[18:17:07] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.13
[18:17:07] [Server thread/INFO]: [AuroraCollections] Loading server plugin AuroraCollections v1.4.2
[18:17:07] [Server thread/INFO]: AuroraCollections | Registered WorldGuard flag aurora-collections-xp-gain
[18:17:07] [Server thread/INFO]: [Rankup] Loading server plugin Rankup v3.14.4
[18:17:07] [Server thread/INFO]: [ToSyGuardExtraFlags] Loading server plugin ToSyGuardExtraFlags v1.0-SNAPSHOT
[18:17:07] [Server thread/INFO]: [ToSyGuardExtraFlags] Successfully registered all flags!
[18:17:07] [Server thread/INFO]: [ChatGames-Premium] Loading server plugin ChatGames-Premium v1.7.5
[18:17:07] [Server thread/INFO]: [BankPlus] Loading server plugin BankPlus v6.3
[18:17:07] [Server thread/INFO]: [TempFly] Loading server plugin TempFly v3.1.7
[18:17:07] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
[18:17:07] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[18:17:07] [Server thread/INFO]: [EZColors] Loading server plugin EZColors v2.2.6
[18:17:07] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[18:17:07] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.141
[18:17:08] [Server thread/INFO]:         __    
[18:17:08] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.141
[18:17:08] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[18:17:08] [Server thread/INFO]: 
[18:17:08] [Server thread/INFO]: [LuckPerms] Loading configuration...
[18:17:08] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[18:17:08] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[18:17:08] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[18:17:09] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1238ms)
[18:17:09] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[18:17:09] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[18:17:09] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[18:17:09] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[18:17:09] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[18:17:09] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.11.3-SNAPSHOT-940;3806a82
[18:17:09] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[18:17:09] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[18:17:09] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[18:17:09] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[18:17:09] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_R1.PaperweightFaweAdapter as the Bukkit adapter
[18:17:09] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0
[18:17:09] [Server thread/INFO]: [nightcore] Enabling nightcore v2.6.4
[18:17:09] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[18:17:09] [Server thread/INFO]: [nightcore] Found economy provider: EssentialsX Economy
[18:17:09] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[18:17:09] [Server thread/INFO]: [nightcore] Server Version: 1.21.1 βœ”
[18:17:09] [Server thread/INFO]: [nightcore] Entity Id Counter: OK βœ”
[18:17:09] [Server thread/INFO]: [nightcore] Item NBT Compress: OK βœ”
[18:17:09] [Server thread/WARN]: [nightcore] ========== WARNING ==========
[18:17:09] [Server thread/WARN]: [nightcore] Enabled Mojang's DataFixer for ItemStacks to update/fix NBT structure from <= 1.20.4 to 1.20.6+
[18:17:09] [Server thread/WARN]: [nightcore] This may significally affect server's performance.
[18:17:09] [Server thread/WARN]: [nightcore] Please, re-save all configuration(s) using in-game GUI editor(s) (if there is any).
[18:17:09] [Server thread/WARN]: [nightcore] Then disable this 'feature' in the config.yml of nightcore.
[18:17:09] [Server thread/INFO]: [nightcore] Plugin loaded in 77 ms!
[18:17:09] [Server thread/INFO]: [VoidWorld] Enabling VoidWorld v1.0*
[18:17:09] [Server thread/INFO]: [ToSyGuardExtraFlags] Enabling ToSyGuardExtraFlags v1.0-SNAPSHOT
[18:17:09] [Server thread/INFO]: [ToSyGuardExtraFlags] ToSyGuardExtraFlags enabled!
[18:17:09] [Server thread/INFO]: Preparing level "world"
[18:17:10] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[18:17:10] [Server thread/INFO]: Time elapsed: 464 ms
[18:17:10] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[18:17:10] [Server thread/INFO]: Time elapsed: 55 ms
[18:17:10] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[18:17:10] [Server thread/INFO]: Time elapsed: 38 ms
[18:17:10] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[18:17:10] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[18:17:10] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.12+829a4a4
[18:17:10] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[18:17:10] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[18:17:10] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[18:17:10] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[18:17:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[18:17:10] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[18:17:10] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[18:17:10] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[18:17:10] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[18:17:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[18:17:10] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[18:17:10] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[18:17:10] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[18:17:10] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[18:17:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[18:17:10] [Server thread/INFO]: [WorldGuard] Loading region data...
[18:17:10] [Server thread/INFO]: [PyroLib] Enabling PyroLib v1.4.5
[18:17:10] [Server thread/INFO]: [packetevents] Enabling packetevents v2.5.0
[18:17:10] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[18:17:10] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.11
[18:17:10] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[18:17:10] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[18:17:10] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[18:17:10] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.12
[18:17:10] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.12" 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--].
[18:17:10] [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.
[18:17:11] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.5.0)
[18:17:11] [Server thread/INFO]: Preparing start region for dimension minecraft:world_fishing
[18:17:11] [Server thread/INFO]: Time elapsed: 81 ms
[18:17:11] [Server thread/INFO]: [WorldGuard] (world_fishing) TNT ignition is PERMITTED.
[18:17:11] [Server thread/INFO]: [WorldGuard] (world_fishing) Lighters are PERMITTED.
[18:17:11] [Server thread/INFO]: [WorldGuard] (world_fishing) Lava fire is PERMITTED.
[18:17:11] [Server thread/INFO]: [WorldGuard] (world_fishing) Fire spread is UNRESTRICTED.
[18:17:11] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_fishing'
[18:17:11] [Server thread/INFO]: Preparing start region for dimension minecraft:world_pvp_new
[18:17:11] [Server thread/INFO]: Time elapsed: 20 ms
[18:17:11] [Server thread/INFO]: [WorldGuard] (world_pvp_new) TNT ignition is PERMITTED.
[18:17:11] [Server thread/INFO]: [WorldGuard] (world_pvp_new) Lighters are PERMITTED.
[18:17:11] [Server thread/INFO]: [WorldGuard] (world_pvp_new) Lava fire is PERMITTED.
[18:17:11] [Server thread/INFO]: [WorldGuard] (world_pvp_new) Fire spread is UNRESTRICTED.
[18:17:11] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_pvp_new'
[18:17:11] [Server thread/INFO]: Could not set generator for world 'world_events': Plugin 'VoidWolld' does not exist
[18:17:11] [Server thread/INFO]: Preparing start region for dimension minecraft:world_events
[18:17:11] [Server thread/INFO]: Time elapsed: 50 ms
[18:17:11] [Server thread/INFO]: [WorldGuard] (world_events) TNT ignition is PERMITTED.
[18:17:11] [Server thread/INFO]: [WorldGuard] (world_events) Lighters are PERMITTED.
[18:17:11] [Server thread/INFO]: [WorldGuard] (world_events) Lava fire is PERMITTED.
[18:17:11] [Server thread/INFO]: [WorldGuard] (world_events) Fire spread is UNRESTRICTED.
[18:17:11] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_events'
[18:17:11] [Server thread/INFO]: Could not set generator for world 'world_events': Plugin 'VoidWolld' does not exist
[18:17:11] [Server thread/INFO]: Preparing start region for dimension minecraft:world_duels
[18:17:11] [Server thread/INFO]: Time elapsed: 23 ms
[18:17:11] [Server thread/INFO]: [WorldGuard] (world_duels) TNT ignition is PERMITTED.
[18:17:11] [Server thread/INFO]: [WorldGuard] (world_duels) Lighters are PERMITTED.
[18:17:11] [Server thread/INFO]: [WorldGuard] (world_duels) Lava fire is PERMITTED.
[18:17:11] [Server thread/INFO]: [WorldGuard] (world_duels) Fire spread is UNRESTRICTED.
[18:17:11] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_duels'
[18:17:11] [Server thread/INFO]: Preparing start region for dimension minecraft:world_spawn
[18:17:11] [Server thread/INFO]: Time elapsed: 30 ms
[18:17:11] [Server thread/INFO]: [WorldGuard] (world_spawn) TNT ignition is PERMITTED.
[18:17:11] [Server thread/INFO]: [WorldGuard] (world_spawn) Lighters are PERMITTED.
[18:17:11] [Server thread/INFO]: [WorldGuard] (world_spawn) Lava fire is PERMITTED.
[18:17:11] [Server thread/INFO]: [WorldGuard] (world_spawn) Fire spread is UNRESTRICTED.
[18:17:11] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_spawn'
[18:17:11] [Server thread/INFO]: [Multiverse-Core] 8 - World(s) loaded.
[18:17:11] [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.
[18:17:11] [Server thread/INFO]: [Multiverse-Core] Version 4.3.12 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[18:17:11] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+121-f7a8f86
[18:17:11] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[18:17:11] [Server thread/INFO]: [Essentials] No kits found to migrate.
[18:17:11] [Server thread/INFO]: [Essentials] Loaded 42679 items from items.json.
[18:17:11] [Server thread/INFO]: [Essentials] Using locale en_US
[18:17:11] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[18:17:12] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[18:17:12] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[18:17:12] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[18:17:12] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3585)
[18:17:12] [Server thread/INFO]: [Citizens] Loading external libraries
[18:17:12] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[18:17:12] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[18:17:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[18:17:12] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[18:17:12] [Server thread/INFO]: [PyroFishingPro] Enabling PyroFishingPro v4.9.11
[18:17:12] [Server thread/INFO]: ==================================================================================
[18:17:12] [Server thread/INFO]: 
[18:17:12] [Server thread/INFO]: __________                     ___________.__       .__    .__                
[18:17:12] [Server thread/INFO]: \______   \___.__._______  ____\_   _____/|__| _____|  |__ |__| ____    ____  
[18:17:12] [Server thread/INFO]:  |     ___<   |  |\_  __ \/  _ \|    __)  |  |/  ___/  |  \|  |/    \  / ___\ 
[18:17:12] [Server thread/INFO]:  |    |    \___  | |  | \(  <_> )     \   |  |\___ \|   Y  \  |   |  \/ /_/  >
[18:17:12] [Server thread/INFO]:  |____|    / ____| |__|   \____/\___  /   |__/____  >___|  /__|___|  /\___  / 
[18:17:12] [Server thread/INFO]:            \/                       \/            \/     \/        \//_____/  
[18:17:12] [Server thread/INFO]: 
[18:17:12] [Server thread/INFO]: - Loading v4.9.11...
[18:17:12] [Server thread/INFO]: 
[18:17:12] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[18:17:12] [Server thread/INFO]: - Registered to: 865312
[18:17:12] [Server thread/INFO]: - Successfully hooked into WorldGuard.
[18:17:12] [Server thread/INFO]: - Loaded (125) Custom Fish successfully.
[18:17:12] [Server thread/INFO]: - Loaded (11) fishing baits.
[18:17:12] [Server thread/INFO]: - Successfully hooked into PlaceholderAPI.
[18:17:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: PyroFishingPro [4.9.11]
[18:17:12] [Server thread/INFO]: 
[18:17:12] [Server thread/INFO]: ==================================================================================
[18:17:12] [Server thread/INFO]: 
[18:17:12] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.1.6
[18:17:13] [Server thread/INFO]: Server version: v1_21_R1 - 1.21.1 - purpur  1.21.1-2327-4b57bed (MC: 1.21.1)
[18:17:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.1.6]
[18:17:13] [Server thread/INFO]: PlaceholderAPI hooked.
[18:17:13] [Server thread/INFO]: Updated (EN) language file. Took 13ms
[18:17:13] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v5.3.3
[18:17:13] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[18:17:13] [Server thread/INFO]: [ExcellentCrates] Read database configuration...
[18:17:13] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[18:17:13] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@57ed5e5
[18:17:13] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[18:17:13] [Server thread/INFO]: [ExcellentCrates] Registered currency: xp
[18:17:13] [Server thread/INFO]: [ExcellentCrates] Registered currency: money
[18:17:13] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crate openings.
[18:17:13] [Server thread/INFO]: [ExcellentCrates] Loaded 11 crate keys.
[18:17:13] [Server thread/INFO]: [ExcellentCrates] Loaded 8 rarities!
[18:17:13] [Server thread/INFO]: [ExcellentCrates] Loaded 16 crates.
[18:17:13] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[18:17:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [5.3.3]
[18:17:13] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 395 ms!
[18:17:13] [Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.2.4
[18:17:14] [Server thread/INFO]: [AuraSkills] Loaded 21 message files
[18:17:14] [Server thread/INFO]: [AuraSkills] Registered 2 items
[18:17:14] [Server thread/INFO]: [AuraSkills] Successfully registered hook DecentHolograms
[18:17:14] [Server thread/INFO]: [AuraSkills] Successfully registered hook LuckPerms
[18:17:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auraskills [2.2.4]
[18:17:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [2.2.4]
[18:17:14] [Server thread/INFO]: [AuraSkills] Successfully registered hook PlaceholderAPI
[18:17:14] [Server thread/INFO]: [AuraSkills] Successfully registered hook ProtocolLib
[18:17:14] [Server thread/INFO]: [AuraSkills] Successfully registered hook Vault
[18:17:14] [Server thread/INFO]: [AuraSkills] Successfully registered hook WorldGuard
[18:17:14] [Server thread/INFO]: [AuraSkills] Loaded 150 config options in 22 ms
[18:17:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[18:17:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[18:17:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AuraSkills' to create a bStats instance!
[18:17:14] [Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
[18:17:14] [Server thread/INFO]: [AuraSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[18:17:14] [Server thread/INFO]: [Aurora] Enabling Aurora v1.7.0
[18:17:14] [Server thread/INFO]: [Aurora] [ACF] Enabled Asynchronous Tab Completion Support!
[18:17:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aurora [1.0]
[18:17:14] [Server thread/INFO]: Aurora | Loaded 2 economy providers. Vault, Essentials
[18:17:14] [Server thread/INFO]: Aurora | Using Essentials as the default economy provider.
[18:17:14] [Server thread/INFO]: [gg.auroramc.aurora.libs.hikari.HikariDataSource] aurora-leaderboard-pool - Starting...
[18:17:14] [Server thread/INFO]: [gg.auroramc.aurora.libs.hikari.pool.HikariPool] aurora-leaderboard-pool - Added connection org.sqlite.jdbc4.JDBC4Connection@447ef919
[18:17:14] [Server thread/INFO]: [gg.auroramc.aurora.libs.hikari.HikariDataSource] aurora-leaderboard-pool - Start completed.
[18:17:14] [Server thread/INFO]: [WorldGuard] Registering session handler gg.auroramc.aurora.expansions.worldguard.WorldGuardEntryAndLeaveHandler
[18:17:14] [Server thread/INFO]: [gg.auroramc.aurora.libs.hikari.HikariDataSource] aurora-region-tracker-pool - Starting...
[18:17:14] [Server thread/INFO]: [gg.auroramc.aurora.libs.hikari.pool.HikariPool] aurora-region-tracker-pool - Added connection org.sqlite.jdbc4.JDBC4Connection@6aa2cd19
[18:17:14] [Server thread/INFO]: [gg.auroramc.aurora.libs.hikari.HikariDataSource] aurora-region-tracker-pool - Start completed.
[18:17:14] [Server thread/INFO]: [Denizen] Enabling Denizen v1.3.1-SNAPSHOT (build 7080-DEV)
[18:17:14] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1390), impl for Spigot v1.3.1-SNAPSHOT (build 7080-DEV) 
[18:17:14] [Server thread/INFO]: +> [Denizen] Running on java version: 21.0.4 
[18:17:14] [Server thread/INFO]: +> [Denizen] Running on fully supported Java 21. 
[18:17:14] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[18:17:14] [Server thread/INFO]: +> [Denizen]  Denizen  scriptable minecraft 
[18:17:14] [Server thread/INFO]: +> [Denizen]  
[18:17:14] [Server thread/INFO]: +> [Denizen] by: The DenizenScript team 
[18:17:14] [Server thread/INFO]: +> [Denizen] Chat with us at: https://discord.gg/Q6pZGSR 
[18:17:14] [Server thread/INFO]: +> [Denizen] Or learn more at: https://denizenscript.com 
[18:17:14] [Server thread/INFO]: +> [Denizen] version: 1.3.1-SNAPSHOT (build 7080-DEV) 
[18:17:14] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[18:17:15] [Server thread/INFO]: +> [TriggerRegistry] Loaded 4 core triggers 
[18:17:15] [Server thread/INFO]: +> [PaperModule] Loading Paper support module... 
[18:17:15] [Server thread/INFO]: +> [Denizen] Loaded 153 core commands and 30 core object types, at 831ms from start. 
[18:17:15] [Server thread/INFO]: +> [ScriptRegistry] Loading 1 script files... 
[18:17:15] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 4ms, processing 12ms. 
[18:17:15] [Server thread/INFO]: +> [Denizen] Final full init took 865ms. 
[18:17:15] [Server thread/INFO]: [Jobs] Enabling Jobs v5.2.4.5
[18:17:15] [Server thread/INFO]: ------------- Jobs -------------
[18:17:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jobsr [5.2.4.5]
[18:17:15] [Server thread/INFO]: PlaceholderAPI hooked.
[18:17:15] [Server thread/INFO]: Connected to database (SqLite)
[18:17:15] [Server thread/INFO]: Loaded 8 titles
[18:17:15] [Server thread/INFO]: Loaded 2 restricted areas!
[18:17:15] [Server thread/INFO]: Loaded 53 protected blocks timers
[18:17:15] [Server thread/INFO]: Loaded 1481 custom item names
[18:17:15] [Server thread/INFO]: Loaded 84 custom entity names
[18:17:15] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[18:17:15] [Server thread/INFO]: Loaded 42 custom enchant names
[18:17:15] [Server thread/INFO]: Loaded 46 custom enchant names
[18:17:15] [Server thread/INFO]: Loaded 16 custom color names
[18:17:15] [Server thread/INFO]: Update shops items icon section and use 'ItemStack' instead
[18:17:15] [Server thread/INFO]: Loaded 4 shop items
[18:17:15] [Server thread/INFO]: Job Spellbinder has an invalid Enchant type property: netherite_spade!
[18:17:15] [Server thread/INFO]: Loaded 8 jobs
[18:17:15] [Server thread/INFO]: Loaded 0 boosted items
[18:17:15] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[18:17:15] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[18:17:15] [Server thread/INFO]: Loaded 22 schedulers!
[18:17:15] [Server thread/INFO]: Preloaded 1 players data in 0.0
[18:17:15] [Server thread/INFO]: Registering listeners...
[18:17:15] [Server thread/INFO]: Listeners registered successfully
[18:17:15] [Server thread/INFO]: Plugin has been enabled successfully.
[18:17:15] [Server thread/INFO]: ------------------------------------
[18:17:15] [Server thread/INFO]: [Quests] Enabling Quests v3.15.2-b216e2b
[18:17:15] [Server thread/INFO]: [Quests] Running server scheduler: FoliaServerScheduler
[18:17:15] [Server thread/INFO]: [Quests] Initialising storage provider 'yaml'
[18:17:15] [Server thread/INFO]: [Quests] Your server is running version 1.21
[18:17:15] [Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[18:17:15] [Server thread/INFO]: [ExcellentShop] Enabling ExcellentShop v4.11.6
[18:17:15] [Server thread/INFO]: [ExcellentShop] Powered by nightcore
[18:17:15] [Server thread/INFO]: [ExcellentShop] Read database configuration...
[18:17:15] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[18:17:15] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-2 - Added connection org.sqlite.jdbc4.JDBC4Connection@6813e1a0
[18:17:15] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[18:17:15] [Server thread/INFO]: [ExcellentShop] Registered currency: vault
[18:17:15] [Server thread/INFO]: [ExcellentShop] Registered 'dummy' product handler.
[18:17:15] [Server thread/INFO]: [ExcellentShop] Registered 'bukkit_item' product handler.
[18:17:15] [Server thread/INFO]: [ExcellentShop] Registered 'bukkit_command' product handler.
[18:17:15] [Server thread/INFO]: [ExcellentShop] Registered 'excellentcrates' product handler.
[18:17:15] [Server thread/INFO]: [ExcellentShop] Loaded 1 product cart UIs!
[18:17:15] [Server thread/INFO]: [ExcellentShop] [Auction] Allowed currencies: [vault]
[18:17:15] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Starting...
[18:17:15] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-3 - Added connection org.sqlite.jdbc4.JDBC4Connection@66f92549
[18:17:15] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Start completed.
[18:17:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentshop [4.11.6]
[18:17:15] [Server thread/INFO]: [ExcellentShop] Plugin loaded in 106 ms!
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] Enabling EconomyShopGUI-Premium v5.16.5
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using lang-en.yml as language file.
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 19 section configs from /sections/
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 19 shop configs from /shops/
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Updating Shop settings...
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using minecraft version 1.21.1...
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Successfully hooked into Vault and using EssentialsX Economy as economy provider
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 1 economy provider(s) for all 19 shop sections.
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Spawner provider set to DISABLED in config
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Spawner provider disabled in config, disabling...
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Enabled PlaceholderAPI hook...
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [ERROR]: Failed to load cached schedule from schedulecache.json: Rotating shop with name RotatingShop does not exist
[18:17:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: esgui [1.1.0]
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Debug mode is enabled.
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loading item stock provider...
[18:17:15] [Server thread/INFO]: [org.quartz.impl.StdSchedulerFactory] Using default implementation for ThreadExecutor
[18:17:15] [Server thread/INFO]: [org.quartz.simpl.SimpleThreadPool] Job execution threads will use class loader of thread: Server thread
[18:17:15] [Server thread/INFO]: [org.quartz.core.SchedulerSignalerImpl] Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
[18:17:15] [Server thread/INFO]: [org.quartz.core.QuartzScheduler] Quartz Scheduler v.2.3.0 created.
[18:17:15] [Server thread/INFO]: [org.quartz.simpl.RAMJobStore] RAMJobStore initialized.
[18:17:15] [Server thread/INFO]: [org.quartz.core.QuartzScheduler] Scheduler meta-data: Quartz Scheduler (v2.3.0) 'DefaultQuartzScheduler' with instanceId 'NON_CLUSTERED'
  Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  NOT STARTED.
  Currently in standby mode.
  Number of jobs executed: 0
  Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.

[18:17:15] [Server thread/INFO]: [org.quartz.impl.StdSchedulerFactory] Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'
[18:17:15] [Server thread/INFO]: [org.quartz.impl.StdSchedulerFactory] Quartz scheduler version: 2.3.0
[18:17:15] [Server thread/INFO]: [org.quartz.core.QuartzScheduler] Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [DEBUG]: Successfully loaded cron restock schedule for item 'Middlecraft_TimeLimitedEnchants.pages1.items.4' for player stock with next schedule date at Tue Oct 22 19:00:00 CEST 2024
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [DEBUG]: Successfully loaded cron restock schedule for item 'Middlecraft_TimeLimitedEnchants.pages1.items.5' for player stock with next schedule date at Tue Oct 22 19:00:00 CEST 2024
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [DEBUG]: Successfully loaded cron restock schedule for item 'Middlecraft_TimeLimitedEnchants.pages1.items.6' for player stock with next schedule date at Tue Oct 22 19:00:00 CEST 2024
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [DEBUG]: Successfully loaded cron restock schedule for item 'Middlecraft_TimeLimitedEnchants.pages1.items.7' for player stock with next schedule date at Tue Oct 22 19:00:00 CEST 2024
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [DEBUG]: Successfully loaded cron restock schedule for item 'Middlecraft_TimeLimitedEnchants.pages1.items.8' for player stock with next schedule date at Tue Oct 22 19:00:00 CEST 2024
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [DEBUG]: Successfully loaded cron restock schedule for item 'Middlecraft_TimeLimitedEnchants.pages1.items.9' for player stock with next schedule date at Tue Oct 22 19:00:00 CEST 2024
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [DEBUG]: Successfully loaded cron restock schedule for item 'Middlecraft_TimeLimitedEnchants.pages1.items.10' for player stock with next schedule date at Tue Oct 22 19:00:00 CEST 2024
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [DEBUG]: Successfully loaded cron restock schedule for item 'Middlecraft_TimeLimitedEnchants.pages1.items.1' for player stock with next schedule date at Tue Oct 22 19:00:00 CEST 2024
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [DEBUG]: Successfully loaded cron restock schedule for item 'Middlecraft_TimeLimitedEnchants.pages1.items.2' for player stock with next schedule date at Tue Oct 22 19:00:00 CEST 2024
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [DEBUG]: Successfully loaded cron restock schedule for item 'Middlecraft_TimeLimitedEnchants.pages1.items.12' for player stock with next schedule date at Tue Oct 22 19:00:00 CEST 2024
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [DEBUG]: Successfully loaded cron restock schedule for item 'Middlecraft_TimeLimitedEnchants.pages1.items.3' for player stock with next schedule date at Tue Oct 22 19:00:00 CEST 2024
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [DEBUG]: Successfully loaded cron restock schedule for item 'Middlecraft_TimeLimitedEnchants.pages1.items.11' for player stock with next schedule date at Tue Oct 22 19:00:00 CEST 2024
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 12 item restock cron schedulers
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loading limited selling provider...
[18:17:15] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loading all items...
[18:17:16] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Initialized - Took 199ms to complete
[18:17:16] [Server thread/INFO]: [RoseStacker] Enabling RoseStacker v1.5.30
[18:17:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rosestacker [1.5.30]
[18:17:16] [Server thread/INFO]: [AuroraLevels] Enabling AuroraLevels v1.5.7
[18:17:16] [Server thread/INFO]: [AuroraLevels] [ACF] Enabled Asynchronous Tab Completion Support!
[18:17:16] [Server thread/INFO]: [WorldGuard] Registering session handler gg.auroramc.levels.hooks.worldguard.EntryHandler
[18:17:16] [Server thread/INFO]: AuroraLevels | Hooked into WorldGuard for region entry tracking.
[18:17:16] [Server thread/INFO]: AuroraLevels | Hooked into AuraSkills for stat rewards with reward type: 'auraskills_stat' and 'auraskills_xp'. Auto reward corrector for stats is registered.
[18:17:16] [Server thread/INFO]: AuroraLevels | Hooked into LuckPerms for permission rewards with reward type: 'permission'. Auto reward corrector for permissions is registered.
[18:17:16] [Server thread/INFO]: [BetterTeams] Enabling BetterTeams v4.10.0
[18:17:16] [Server thread/INFO]: [BetterTeams] Checking if the file messages.yml is up to date
[18:17:16] [Server thread/INFO]: [BetterTeams] File is up to date
[18:17:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterTeams [4.10.0]
[18:17:16] [Server thread/INFO]: Display team name config value: prefix
[18:17:16] [Server thread/INFO]: Loading below name. Type: PREFIX
[18:17:16] [Server thread/INFO]: teamManagement declared: com.booksaw.betterTeams.events.MCTeamManagement@49d902f4
[18:17:16] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.4-SNAPSHOT
[18:17:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[18:17:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[18:17:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[18:17:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[18:17:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[18:17:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[18:17:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[18:17:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[18:17:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[18:17:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[18:17:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[18:17:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[18:17:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[18:17:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[18:17:16] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+121-f7a8f86
[18:17:16] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[18:17:16] [Server thread/INFO]: [BottledExp] Enabling BottledExp v3.2.3.0
[18:17:16] [Server thread/INFO]: [BottledExp] Version 3.2.3.0 has been enabled
[18:17:16] [Server thread/INFO]: [BottledExp] Using LuckPerms via Vault.
[18:17:16] [Server thread/INFO]: [Triton] Enabling Triton v3.11.0
[18:17:16] [Server thread/INFO]: [Triton] Loaded local storage manager
[18:17:16] [Server thread/INFO]: [Triton] Successfully setup the language manager! 2 languages and 1 language items loaded!
[18:17:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: triton [3.11.0]
[18:17:16] [Server thread/INFO]: [MoneyPouchDeluxe] Enabling MoneyPouchDeluxe v1.4.2
[18:17:16] [Server thread/INFO]: [MoneyPouchDeluxe] Vault hook successfully!
[18:17:16] [Server thread/WARN]: [MoneyPouchDeluxe] Points support will be disabled.
[18:17:16] [Server thread/INFO]: [MoneyPouchDeluxe] 
[18:17:16] [Server thread/INFO]: [MoneyPouchDeluxe]   ____ ___  _     ____  
[18:17:16] [Server thread/INFO]: [MoneyPouchDeluxe]  / ___/ _ \| |   |  _ \ 
[18:17:16] [Server thread/INFO]: [MoneyPouchDeluxe] | |  | | | | |   | | | |
[18:17:16] [Server thread/INFO]: [MoneyPouchDeluxe] | |__| |_| | |___| |_| |
[18:17:16] [Server thread/INFO]: [MoneyPouchDeluxe]  \____\___/|_____|____/
[18:17:16] [Server thread/INFO]: [MoneyPouchDeluxe]     MoneyPouchDeluxe v1.4.2
[18:17:16] [Server thread/INFO]: [MoneyPouchDeluxe]     Author(s): padrewin
[18:17:16] [Server thread/INFO]: [MoneyPouchDeluxe]     (c) Cold Development. All rights reserved.
[18:17:16] [Server thread/INFO]: [MoneyPouchDeluxe] 
[18:17:16] [Server thread/INFO]: [MoneyPouchDeluxe] Stacker plugin detected. Holograms will not be created to avoid double holo
[18:17:16] [Server thread/INFO]: [PlayerKits2] Enabling PlayerKits2 v1.12.6
[18:17:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerkits [1.12.6]
[18:17:16] [Server thread/INFO]: [PlayerKitsΒ²] Has been enabled! Version: 1.12.6
[18:17:16] [Server thread/INFO]: [PlayerKitsΒ²] Thanks for using my plugin!   ~Ajneb97
[18:17:16] [Server thread/INFO]: [CommandAPI] Enabling CommandAPI v9.5.3
[18:17:16] [Server thread/INFO]: [CommandAPI] Hooked into Paper ServerResourcesReloadedEvent
[18:17:16] [Server thread/INFO]: [Depenizen] Enabling Depenizen v2.1.1 (build 864)
[18:17:16] [Server thread/INFO]: +> [Depenizen] Depenizen loading... 
[18:17:16] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'LuckPerms'! 
[18:17:16] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'WorldEdit'! 
[18:17:16] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'Essentials'! 
[18:17:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: denizen [2.0.0]
[18:17:16] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'PlaceholderAPI'! 
[18:17:16] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'Jobs'! 
[18:17:16] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'WorldGuard'! 
[18:17:16] [Server thread/INFO]:  ERROR!
                 Error Message: Unable to register property 'QuestsPlayerProperties'! 
[18:17:16] [Server thread/INFO]: Additional Error Info: Internal exception was thrown!
[Error Continued] java.lang.NoClassDefFoundError: me/pikamug/quests/player/Quester
[Error Continued]   java.base/java.lang.Class.getDeclaredMethods0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredMethods(Class.java:3578)
[Error Continued]   java.base/java.lang.Class.privateGetPublicMethods(Class.java:3603)
[Error Continued]   java.base/java.lang.Class.getMethods(Class.java:2185)
[Error Continued]   Denizen-1.3.1-b7080-DEV.jar//com.denizenscript.denizencore.objects.properties.PropertyParser.registerProperty(PropertyParser.java:249)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:29)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:757)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:519)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:366)
[Error Continued]   net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1230)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:333)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)
[Error Continued] Caused by: java.lang.ClassNotFoundException: me.pikamug.quests.player.Quester
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:199)
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:166)
[Error Continued]   java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[Error Continued]   java.base/java.lang.Class.getDeclaredMethods0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredMethods(Class.java:3578)
[Error Continued]   java.base/java.lang.Class.privateGetPublicMethods(Class.java:3603)
[Error Continued]   java.base/java.lang.Class.getMethods(Class.java:2185)
[Error Continued]   Denizen-1.3.1-b7080-DEV.jar//com.denizenscript.denizencore.objects.properties.PropertyParser.registerProperty(PropertyParser.java:249)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:29)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:757)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:519)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:366)
[Error Continued]   net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1230)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:333)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)

[18:17:16] [Server thread/INFO]: Additional Error Info: Could not register command com.denizenscript.depenizen.bukkit.commands.quests.QuestsCommand, exception follows... 
[18:17:16] [Server thread/INFO]: Additional Error Info: Internal exception was thrown!
[Error Continued] java.lang.NoClassDefFoundError: me/pikamug/quests/player/Quester
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3549)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3754)
[Error Continued]   java.base/java.lang.Class.newInstance(Class.java:706)
[Error Continued]   Denizen-1.3.1-b7080-DEV.jar//com.denizenscript.denizencore.scripts.commands.CommandRegistry.registerCommand(CommandRegistry.java:159)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:30)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:757)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:519)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:366)
[Error Continued]   net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1230)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:333)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)
[Error Continued] Caused by: java.lang.ClassNotFoundException: me.pikamug.quests.player.Quester
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:199)
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:166)
[Error Continued]   java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3549)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3754)
[Error Continued]   java.base/java.lang.Class.newInstance(Class.java:706)
[Error Continued]   Denizen-1.3.1-b7080-DEV.jar//com.denizenscript.denizencore.scripts.commands.CommandRegistry.registerCommand(CommandRegistry.java:159)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:30)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:757)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:519)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:366)
[Error Continued]   net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1230)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:333)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)

[18:17:16] [Server thread/INFO]: Additional Error Info: Failed to register script event 'com.denizenscript.depenizen.bukkit.events.quests.PlayerCompletesQuestScriptEvent': 
[18:17:16] [Server thread/INFO]: Additional Error Info: Internal exception was thrown!
[Error Continued] java.lang.NoClassDefFoundError: me/pikamug/quests/events/quester/BukkitQuesterPreCompleteQuestEvent
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3549)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3754)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2442)
[Error Continued]   Denizen-1.3.1-b7080-DEV.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:31)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:757)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:519)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:366)
[Error Continued]   net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1230)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:333)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)
[Error Continued] Caused by: java.lang.ClassNotFoundException: me.pikamug.quests.events.quester.BukkitQuesterPreCompleteQuestEvent
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:199)
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:166)
[Error Continued]   java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3549)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3754)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2442)
[Error Continued]   Denizen-1.3.1-b7080-DEV.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:31)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:757)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:519)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:366)
[Error Continued]   net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1230)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:333)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)

[18:17:16] [Server thread/INFO]: Additional Error Info: Failed to register script event 'com.denizenscript.depenizen.bukkit.events.quests.PlayerFailsQuestScriptEvent': 
[18:17:16] [Server thread/INFO]: Additional Error Info: Internal exception was thrown!
[Error Continued] java.lang.NoClassDefFoundError: me/pikamug/quests/events/quester/BukkitQuesterPreFailQuestEvent
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3549)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3754)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2442)
[Error Continued]   Denizen-1.3.1-b7080-DEV.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:32)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:757)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:519)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:366)
[Error Continued]   net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1230)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:333)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)
[Error Continued] Caused by: java.lang.ClassNotFoundException: me.pikamug.quests.events.quester.BukkitQuesterPreFailQuestEvent
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:199)
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:166)
[Error Continued]   java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3549)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3754)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2442)
[Error Continued]   Denizen-1.3.1-b7080-DEV.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:32)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:757)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:519)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:366)
[Error Continued]   net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1230)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:333)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)

[18:17:16] [Server thread/INFO]: Additional Error Info: Failed to register script event 'com.denizenscript.depenizen.bukkit.events.quests.PlayerStartsQuestScriptEvent': 
[18:17:16] [Server thread/INFO]: Additional Error Info: Internal exception was thrown!
[Error Continued] java.lang.NoClassDefFoundError: me/pikamug/quests/events/quester/BukkitQuesterPreStartQuestEvent
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3549)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3754)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2442)
[Error Continued]   Denizen-1.3.1-b7080-DEV.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:33)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:757)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:519)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:366)
[Error Continued]   net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1230)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:333)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)
[Error Continued] Caused by: java.lang.ClassNotFoundException: me.pikamug.quests.events.quester.BukkitQuesterPreStartQuestEvent
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:199)
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:166)
[Error Continued]   java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3549)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3754)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2442)
[Error Continued]   Denizen-1.3.1-b7080-DEV.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:33)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:757)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:519)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:366)
[Error Continued]   net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1230)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:333)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)

[18:17:16] [Server thread/INFO]: Additional Error Info: Failed to register script event 'com.denizenscript.depenizen.bukkit.events.quests.PlayerQuestStageChangeScriptEvent': 
[18:17:16] [Server thread/INFO]: Additional Error Info: Internal exception was thrown!
[Error Continued] java.lang.NoClassDefFoundError: me/pikamug/quests/events/quester/BukkitQuesterPostChangeStageEvent
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3549)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3754)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2442)
[Error Continued]   Denizen-1.3.1-b7080-DEV.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:34)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:757)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:519)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:366)
[Error Continued]   net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1230)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:333)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)
[Error Continued] Caused by: java.lang.ClassNotFoundException: me.pikamug.quests.events.quester.BukkitQuesterPostChangeStageEvent
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:199)
[Error Continued]   org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:166)
[Error Continued]   java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[Error Continued]   java.base/java.lang.Class.getDeclaredConstructors0(Native Method)
[Error Continued]   java.base/java.lang.Class.privateGetDeclaredConstructors(Class.java:3549)
[Error Continued]   java.base/java.lang.Class.getConstructor0(Class.java:3754)
[Error Continued]   java.base/java.lang.Class.getConstructor(Class.java:2442)
[Error Continued]   Denizen-1.3.1-b7080-DEV.jar//com.denizenscript.denizencore.events.ScriptEvent.registerScriptEvent(ScriptEvent.java:87)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.bridges.QuestsBridge.init(QuestsBridge.java:34)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.loadBridge(Depenizen.java:90)
[Error Continued]   Depenizen-2.1.1-b864.jar//com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:35)
[Error Continued]   org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[Error Continued]   io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[Error Continued]   org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[Error Continued]   org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[Error Continued]   net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:757)
[Error Continued]   net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:519)
[Error Continued]   net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:366)
[Error Continued]   net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1230)
[Error Continued]   net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:333)
[Error Continued]   java.base/java.lang.Thread.run(Thread.java:1583)

[18:17:16] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'Quests'! 
[18:17:16] [Server thread/INFO]: +> [Depenizen] Depenizen loaded! 7 plugin bridge(s) loaded (of 42 available) 
[18:17:16] [Server thread/INFO]: [TAB] Enabling TAB v4.1.8
[18:17:16] [Server thread/INFO]: [TAB] Loaded NMS hook in 20ms
[18:17:17] [Server thread/INFO]: [TAB] Enabled in 88ms
[18:17:17] [Server thread/INFO]: [PL-Hide] Enabling PL-Hide v1.5.22
[18:17:17] [Server thread/INFO]: [AxSellwands] Enabling AxSellwands v1.6.8
[18:17:17] [Server thread/INFO]: [AxSellwands] Hooked into Vault!
[18:17:17] [Server thread/INFO]: [AxSellwands] Hooked into EconomyShopGUI!
[18:17:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: axsellwands [1.0.0]
[18:17:17] [Server thread/INFO]: [AxSellwands] Hooked into WorldGuard!
[18:17:17] [Server thread/INFO]: [AxSellwands] Loaded plugin!
[18:17:17] [Server thread/INFO]: [UltimateRewards] Enabling UltimateRewards v2.3.1
[18:17:17] [Server thread/INFO]: [UltimateRewards] EssentialsHook has been registered.
[18:17:17] [Server thread/INFO]: [UltimateRewards] VaultHook has been registered.
[18:17:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimaterewards [2.3.1]
[18:17:17] [Server thread/INFO]: [UltimateRewards] PlaceholderApiPreRegister has been registered.
[18:17:17] [Server thread/INFO]: [UltimateRewards] 9 rewards have been loaded from rewards folder!
[18:17:17] [Server thread/INFO]: [⚑] Enabling LagFixer v1.3.28 (build 92)
[18:17:17] [Server thread/INFO]: [⚑] Remember to leave a rating! β˜… β˜… β˜… β˜… β˜…





LagFixer - Best Performance Solution!
β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘
β–‘β–ˆβ–ˆβ•—β–‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–‘β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–‘β–‘β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•—β–ˆβ–ˆβ•—β–‘β–‘β–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–‘β–‘
β–‘β–ˆβ–ˆβ•‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β•β•β•β–‘β–‘β–‘β–ˆβ–ˆβ•”β•β•β•β•β•β–ˆβ–ˆβ•‘β•šβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β–ˆβ–ˆβ•”β•β•β•β•β•β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–‘
β–‘β–ˆβ–ˆβ•‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘β–‘β–‘β–ˆβ–ˆβ•—β–‘β–‘β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–‘β–‘β–ˆβ–ˆβ•‘β–‘β•šβ–ˆβ–ˆβ–ˆβ•”β•β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–‘β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–‘
β–‘β–ˆβ–ˆβ•‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘β–‘β–‘β•šβ–ˆβ–ˆβ•—β–‘β–‘β–ˆβ–ˆβ•”β•β•β•β–‘β–‘β–ˆβ–ˆβ•‘β–‘β–ˆβ–ˆβ•”β–ˆβ–ˆβ•—β–‘β–ˆβ–ˆβ•”β•β•β•β–‘β–‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–‘
β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘β–‘β–‘β–ˆβ–ˆβ•‘β•šβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–‘β–‘β–ˆβ–ˆβ•‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•šβ–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘β–‘β–‘β–ˆβ–ˆβ•‘β–‘
β–‘β•šβ•β•β•β•β•β•β•β•šβ•β•β–‘β–‘β•šβ•β•β–‘β•šβ•β•β•β•β•β•β–‘β–‘β–‘β•šβ•β•β–‘β–‘β–‘β–‘β–‘β•šβ•β•β•šβ•β•β–‘β–‘β•šβ•β•β•šβ•β•β•β•β•β•β•β•šβ•β•β–‘β–‘β•šβ•β•β–‘
β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘





[18:17:17] [Server thread/INFO]: [⚑] (ErrorsManager) -> Enabling manager...
[18:17:17] [Server thread/INFO]: [⚑]  β€’ Started listening for console LagFixer errors!
[18:17:17] [Server thread/INFO]: [⚑] (ErrorsManager) -> Enabled manager in 1ms!
[18:17:17] [Server thread/INFO]: [⚑] (SupportManager) -> Enabling manager...
[18:17:17] [Server thread/INFO]: [⚑]  β€’ Loaded creatures 68 to creature container!
[18:17:17] [Server thread/INFO]: [⚑]  β€’ Loaded items 0 to item container!
[18:17:17] [Server thread/INFO]: [⚑]  β€’ Loaded fork support ~ xyz.lychee.lagfixer.support.Folia
[18:17:17] [Server thread/INFO]: [⚑]  β€’ Loaded nms support ~ xyz.lychee.lagfixer.nms.v1_21_R1.SupportNms
[18:17:17] [Server thread/INFO]: [⚑] (SupportManager) -> Enabled manager in 7ms!
[18:17:17] [Server thread/INFO]: [⚑] (ConfigManager) -> Enabling manager...
[18:17:17] [Server thread/INFO]: [⚑] (ConfigManager) -> Enabled manager in 23ms!
[18:17:17] [Server thread/INFO]: [⚑] (HookManager) -> Enabling manager...
[18:17:17] [Server thread/INFO]: [⚑]  β€’ Sucessfully loaded hook RoseStacker in 0ms!
[18:17:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lagfixer [1.3.28 (build 92)]
[18:17:17] [Server thread/INFO]: [⚑]  β€’ Sucessfully loaded hook PlaceholderAPI in 1ms!
[18:17:17] [Server thread/INFO]: [⚑] (HookManager) -> Enabled manager in 1ms!
[18:17:17] [Server thread/INFO]: [⚑] (MetricsManager) -> Enabling manager...
[18:17:17] [Server thread/INFO]: [⚑] (MetricsManager) -> Enabled manager in 1ms!
[18:17:17] [Server thread/INFO]: [⚑] (UpdaterManager) -> Enabling manager...
[18:17:17] [Server thread/INFO]: [⚑] (UpdaterManager) -> Enabled manager in 1ms!
[18:17:17] [Server thread/INFO]: [⚑] (ModuleManager) -> Enabling manager...
[18:17:17] [Server thread/INFO]: [⚑]  β€’ Sucessfully loaded module RedstoneLimiter in 2ms.
[18:17:17] [Server thread/INFO]: [⚑]  β€’ Sucessfully loaded module LagMonitor in 2ms.
[18:17:17] [Server thread/INFO]: [⚑]  β€’ Sucessfully loaded module EntityLimiter in 1ms.
[18:17:17] [Server thread/INFO]: [⚑]  β€’ Sucessfully loaded module WorldCleaner in 3ms.
[18:17:17] [Server thread/INFO]: [⚑]  β€’ Sucessfully loaded module CustomAi in 7ms.
[18:17:17] [Server thread/INFO]: [⚑]  β€’ Sucessfully loaded module CustomVehicles in 3ms.
[18:17:17] [Server thread/INFO]: [⚑] (ModuleManager) -> Enabled manager in 18ms!
[18:17:17] [Server thread/INFO]: [⚑] (CommandManager) -> Enabling manager...
[18:17:17] [Server thread/INFO]: [⚑] (CommandManager) -> Enabled manager in 2ms!
[18:17:17] [Server thread/INFO]: [⚑] Remember to leave a rating! β˜… β˜… β˜… β˜… β˜…
[18:17:17] [Server thread/INFO]: [AxVaults] Enabling AxVaults v2.2.1
[18:17:18] [Server thread/INFO]: [AxVaults] Loaded plugin!
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Enabling QuickShop-Hikari v6.2.0.7
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Execute the enable sequence
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Starting plugin self-test, please wait...
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] Spigot Based Server Test
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] Old QuickShop Test
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Based Test
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Database Driver Test
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] CoreSupport Test
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] Virtual DisplayItem Support Test
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] ProtocolLib Incorrect Locate Test
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] GameVersion supporting Test
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] Permission Manager Test
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] PacketListenerAPI Conflict Test
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] Reremake Test
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] EcoEnchants V11 Check
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] End of life Test
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[18:17:18] [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
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Original author: Netherfoam, Timtower, KaiNoMood, sandtechnology
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Let's start loading the plugin
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Setting up ItemExpressionRegistry...
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Using Virtual Item display, loading ProtocolLib support...
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Successfully loaded ProtocolLib support!
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Setting up database...
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Create database backup...
[18:17:18] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Starting...
[18:17:18] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Start completed.
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Checking and updating database columns, it may take a while...
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Finished!
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Selected permission provider: Bukkit
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Registering commands...
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Loaded 1 rules for listener blacklist.
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] EventManager selected: QSEventManager
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Used 2ms to fetch 0 shops from database.
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to load 0 shops into memory (0 shops will be loaded after chunks/world loaded).
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Registering listeners...
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Cleaning MsgUtils...
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Cleaning purchase messages from the database that are over a week old...
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Log actions is enabled. Actions will be logged in the qs.log file!
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] [Shop Purger] Purge not enabled!
[18:17:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: qs [6.2.0.7]
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] Successfully loaded PlaceHolderAPI support!
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] Virtual DisplayItem Support Test
[18:17:18] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> All Complete. (293ms)
[18:17:18] [Server thread/INFO]: [Skript] Enabling Skript v2.9.3
[18:17:19] [ForkJoinPool.commonPool-worker-3/INFO]: [Skript] You're currently running the latest stable version of Skript.
[18:17:24] [Server thread/INFO]: [Skript] Loaded 233074 aliases in 5610ms
[18:17:24] [Server thread/INFO]: [Skript]  ~ created by & Β© Peter GΓΌttinger aka Njol ~
[18:17:24] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.0-dev+121-f7a8f86
[18:17:24] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[18:17:24] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.13
[18:17:24] [Server thread/INFO]: [BetterRTP] Cooldown = 600
[18:17:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.13]
[18:17:24] [Server thread/INFO]: [AuroraCollections] Enabling AuroraCollections v1.4.2
[18:17:24] [Server thread/INFO]: [AuroraCollections] [ACF] Enabled Asynchronous Tab Completion Support!
[18:17:24] [Server thread/INFO]: AuroraCollections | Hooked into AuroraLevels for xp rewards with reward type: 'levels_xp'
[18:17:24] [Server thread/INFO]: AuroraCollections | Hooked into WorldGuard for flags
[18:17:24] [Server thread/INFO]: AuroraCollections | Hooked into AuraSkills for handling extra loot drops
[18:17:24] [Server thread/INFO]: AuroraCollections | Hooked into AuraSkills for stat rewards with reward type: 'auraskills_stat' and 'auraskills_xp'. Auto reward corrector for stats is registered.
[18:17:24] [Server thread/INFO]: AuroraCollections | Hooked into LuckPerms for permission rewards with reward type: 'permission'. Auto reward corrector for permissions is registered.
[18:17:24] [Server thread/INFO]: [Rankup] Enabling Rankup v3.14.4
[18:17:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rankup [3.14.4]
[18:17:24] [Server thread/INFO]: [ChatGames-Premium] Enabling ChatGames-Premium v1.7.5
[18:17:25] [Server thread/INFO]: [ChatGames-Premium] Language file en_us.json downloaded successfully!
[18:17:25] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ChatGamesHikariPool - Starting...
[18:17:25] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ChatGamesHikariPool - Start completed.
[18:17:25] [Server thread/INFO]: [ChatGames-Premium] Connected to the database successfully.
[18:17:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatgames [1.0.0]
[18:17:25] [Server thread/INFO]: [ChatGames-Premium] PlaceholderAPI Hooked!
[18:17:25] [Server thread/INFO]: [BankPlus] Enabling BankPlus v6.3
[18:17:25] [Server thread/INFO]: 
[18:17:25] [Server thread/INFO]:     BankPlus Enabling plugin...
[18:17:25] [Server thread/INFO]:     Running on version 6.3!
[18:17:25] [Server thread/INFO]:     Detected server version: 1.21.1-2327-4b57bed (MC: 1.21.1)
[18:17:25] [Server thread/INFO]:     Setting up the plugin...
[18:17:25] [Server thread/INFO]:     Done! (31ms)
[18:17:25] [Server thread/INFO]: 
[18:17:25] [Server thread/INFO]: BankPlus [INFO] Hooked into PlaceholderAPI!
[18:17:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: bankplus [6.3]
[18:17:25] [Server thread/INFO]: BankPlus [INFO] Hooked into Essentials!
[18:17:25] [Server thread/INFO]: [TempFly] Enabling TempFly v3.1.7
[18:17:25] [Server thread/INFO]: [TempFly] Database setup complete.
[18:17:25] [Server thread/INFO]: [TempFly] Initializing ClipAPI
[18:17:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tempfly [3.1.7]
[18:17:25] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[18:17:25] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[18:17:25] [Server thread/WARN]: [DeluxeMenus] Material for item: grass in menu: menu_masterySharpness is not valid!
Skipping item: grass
[18:17:25] [Server thread/INFO]: [DeluxeMenus] 9 GUI menus loaded!
[18:17:25] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[18:17:25] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[18:17:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[18:17:25] [Server thread/INFO]: [EZColors] Enabling EZColors v2.2.6
[18:17:28] [Server thread/INFO]: EZColors Β»  Successfully downloaded 12 languages from the cloud!
[18:17:28] [Server thread/INFO]: EZColors Β»  Loading EZColors v2.2.6!
[18:17:28] [Server thread/INFO]: EZColors Β»  Found a compatible version. Hooking into V1_21_R1!
[18:17:28] [Server thread/INFO]: EZColors Β»  Using HIGHEST as the Chat Listener.
[18:17:28] [Server thread/INFO]: EZColors Β»  Found PlaceholderAPI. Loading hook!
[18:17:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ezcolors [1.0.0]
[18:17:28] [Server thread/INFO]: EZColors Β»  Successfully Loaded EZColors v2.2.6 in 2324ms!
[18:17:28] [Server thread/INFO]: [spark] Starting background profiler...
[18:17:28] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[18:17:28] [Server thread/INFO]: Done preparing level "world" (18.805s)
[18:17:28] [Server thread/INFO]: Running delayed init tasks
[18:17:28] [Craft Scheduler Thread - 6 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[18:17:28] [Craft Scheduler Thread - 12 - ExcellentShop/INFO]: [ExcellentShop] Initialized product data clean up...
[18:17:28] [Craft Scheduler Thread - 24 - QuickShop-Hikari/INFO]: [QuickShop-Hikari] Start to caching usernames (async)...
[18:17:28] [Craft Scheduler Thread - 11 - Vault/INFO]: [Vault] Checking for Updates ... 
[18:17:28] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[18:17:28] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[18:17:28] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[18:17:28] [Craft Scheduler Thread - 14 - Essentials/INFO]: [Essentials] Fetching version information...
[18:17:28] [Craft Scheduler Thread - 22 - UltimateRewards/INFO]: [UltimateRewards] You are running the latest release (2.3.1).
[18:17:28] [Craft Scheduler Thread - 6 - DecentHolograms/INFO]: [DecentHolograms] Loaded 31 holograms!
[18:17:28] [Craft Scheduler Thread - 11 - Vault/INFO]: [Vault] No new version available
[18:17:28] [Craft Scheduler Thread - 23 - BankPlus/INFO]: BankPlus [INFO] New version of the plugin available! (v6.3).
[18:17:28] [Craft Scheduler Thread - 23 - BankPlus/INFO]: BankPlus [INFO] Please download the latest version here: https://www.spigotmc.org/resources/%E2%9C%A8-bankplus-%E2%9C%A8.93130/.
[18:17:28] [Craft Scheduler Thread - 27 - BankPlus/INFO]: Κ™α΄€Ι΄α΄‹ Β» The BankTop has been updated!
[18:17:28] [Server thread/INFO]: [AuraSkills] Loaded 11 skills with 312 total sources
[18:17:28] [Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
[18:17:28] [Craft Scheduler Thread - 10 - RoseStacker/INFO]: [RoseStacker] Fetched 131 translation locales.
[18:17:28] [Server thread/INFO]: [AuraSkills] Loaded 22 pattern rewards and 14 level rewards
[18:17:28] [Server thread/INFO]: [AuraSkills] Loaded 53 loot entries in 4 pools and 2 tables
[18:17:28] [Server thread/INFO]: [AuraSkills] Loaded 6 menus
[18:17:28] [Server thread/INFO]: WorldGuard detected.
[18:17:28] [Server thread/INFO]: PyroFishingPro detected.
[18:17:28] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (Essentials)
[18:17:28] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (LuckPerms)
[18:17:28] [Server thread/INFO]: [CommandAPI] Reloading datapacks...
[18:17:28] [Server thread/INFO]: Loaded 1290 recipes
[18:17:28] [Server thread/INFO]: Loaded 1399 advancements
[18:17:29] [Server thread/INFO]: [CommandAPI] Finished reloading datapacks
[18:17:29] [Server thread/INFO]: [Skript] Loading variables...
[18:17:29] [Server thread/INFO]: [Skript] Loaded 11 variables in 0.0 seconds
[18:17:29] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[18:17:29] [Server thread/INFO]: [Skript] Loaded 14 scripts with a total of 18 structures in 0.43 seconds
[18:17:29] [Server thread/INFO]: [Skript] Finished loading.
[18:17:29] [Server thread/INFO]: [Citizens] Loaded 12 NPCs.
[18:17:29] [Server thread/INFO]: +> [ScriptEvent] Processed 0 script event paths. 
[18:17:29] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[18:17:29] [Server thread/INFO]: +> [Denizen] Denizen fully loaded at: 2024/10/22 18:17:14 
[18:17:29] [Server thread/INFO]: [Triton] Registered ProtocolLib listeners
[18:17:29] [Server thread/INFO]: [QuickShop-Hikari] Using economy system: EssentialsX Economy
[18:17:29] [Server thread/INFO]: [QuickShop-Hikari] Selected economy bridge: BuiltIn-Vault
[18:17:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: rainbowcolor [1.2]
[18:17:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[18:17:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: localtime [1.2]
[18:17:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[18:17:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: progress [2.1]
[18:17:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[18:17:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[18:17:29] [Server thread/INFO]: 7 placeholder hook(s) registered!
[18:17:29] [Server thread/INFO]: Done (38.188s)! For help, type "help"
[18:17:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: quests [3.15.2-b216e2b]
[18:17:29] [Server thread/INFO]: [Quests] Successfully hooked into Essentials economy.
[18:17:29] [Server thread/INFO]: [Quests] 47 task types have been registered.
[18:17:29] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[18:17:29] [Server thread/INFO]: [Quests] 441 quests have been registered.
[18:17:29] [Server thread/WARN]: [Quests] You have configuration issues preventing some quests from loading.
[18:17:29] [Server thread/WARN]: [Quests] You can view these issues with the command: /q a config.