Paste #134907: ..

Date: 2025/07/18 06:14:20 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[15:06:04] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.7+6-Ubuntu-0ubuntu124.04; Ubuntu null) on Linux 6.8.0-63-generic (amd64)
[15:06:04] [ServerMain/INFO]: [bootstrap] Loading Pufferfish 1.21.1-21-HEAD@cfa3c61 (2024-10-22T23:08:19Z) for Minecraft 1.21.1
[15:06:04] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[15:06:07] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/MythicMobs-5.9.5.jar'...
[15:06:08] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/MythicCrucible-2.2.0-SNAPSHOT.jar'...
[15:06:14] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/MythicCrucible-2.2.0-SNAPSHOT.jar' in 6052ms.
[15:06:16] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/MythicMobs-5.9.5.jar' in 8671ms.
[15:06:16] [ServerMain/INFO]: [FileProviderSource] The spark plugin will not be loaded as this server bundles the spark profiler.
[15:06:17] [ServerMain/INFO]: [PluginInitializerManager] Initialized 66 plugins
[15:06:17] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (3):
 - CrazyCrates (4.0.6), FancyHolograms (2.6.0), Minepacks (2.4.32.3-T20250704134847)
[15:06:17] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (63):
 - BetterRTP (3.6.13), Blackjack (1.7.6), BlockLocker (1.13), CMI (9.7.9.1), CMILib (1.5.2.7), ChatManager (3.11), ChunkSpawnerLimiter (4.3.5), Citizens (2.0.35-SNAPSHOT (build 3598)), CoreProtect (22.4), CrazyEnchantments (2.5.2), CrazyEnvoys (1.12.2), DecentHolograms (2.8.12), DeluxeMenus (1.14.0-Release), DiscordSRV (1.29.0), Fadah (2.8.3), FastAsyncWorldEdit (2.12.4-SNAPSHOT-1022;aecc50d), HeadDatabase (4.20.4), Images (2.5.3), Infiniteannouncements (2.5.0), InteractionVisualizer (1.18.13.0), InteractiveChat (4.2.16.0), InvSeePlusPlus (0.29.11), InvSeePlusPlus_Clear (0.29.11), InvSeePlusPlus_Give (0.29.11), InventoryRollbackPlus (1.6.21), LuckPerms (5.4.145), Multiverse-Core (4.3.12), MyPetDownloader (1.2), MythicCrucible (2.2.0-SNAPSHOT), MythicMobs (5.9.5-f13ab4a1), OreAnnouncer (2.8.5), Orebfuscator (5.5.0), ParadiseNicks (1.0.1), Pl-Hide-Pro (2.12.2), PlaceholderAPI (2.11.6), PlugManX (2.4.1), PremiumVanish (2.9.19), ProtocolLib (5.3.0), PvPManager (3.19.3), Quests (3.15.2-b216e2b), Roulette (3.2.1), ServerSigns (4.10.1), ShopGUIPlus (1.103.1), ShopGUIPlusSilkSpawnersBridge (1.8.0), Shopkeepers (2.23.3), SilkSpawners (8.3.0), SkinsRestorer (15.7.7), Skript (2.10.0), SlotMachine (6.8.4), TAB (5.0.0), Tebex (2.0.3), TheRewards (1.5.0-STABLE), ToastedAFK (2.0.2.2), UltimateAutoRestart (2025.02), UltimateClaims (2.6.0), UltraCustomizer (2.6.1), Vault (1.7.3-CMI), Vulcan (2.9.2.4), WorldGuard (7.0.12+829a4a4), WorldGuardExtraFlags (4.2.4-SNAPSHOT), ajLeaderboards (2.9.0), ikLogs (0.8.5), packetevents (2.7.0)
[15:06:22] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[15:06:24] [ServerMain/INFO]: Loaded 1290 recipes
[15:06:24] [ServerMain/INFO]: Loaded 1399 advancements
[15:06:24] [Server thread/INFO]: Starting minecraft server version 1.21.1
[15:06:24] [Server thread/WARN]: ****************************
[15:06:24] [Server thread/WARN]: YOU ARE RUNNING THIS SERVER AS AN ADMINISTRATIVE OR ROOT USER. THIS IS NOT ADVISED.
[15:06:24] [Server thread/WARN]: YOU ARE OPENING YOURSELF UP TO POTENTIAL RISKS WHEN DOING THIS.
[15:06:24] [Server thread/WARN]: FOR MORE INFORMATION, SEE https://madelinemiller.dev/blog/root-minecraft-server/
[15:06:24] [Server thread/WARN]: ****************************
[15:06:24] [Server thread/INFO]: Loading properties
[15:06:24] [Server thread/INFO]: This server is running Pufferfish version 1.21.1-21-HEAD@cfa3c61 (2024-10-22T23:08:19Z) (Implementing API version 1.21.1-R0.1-SNAPSHOT)
[15:06:25] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[15:06:25] [Server thread/INFO]: Server Ping Player Sample Count: 12
[15:06:25] [Server thread/INFO]: Using 4 threads for Netty based IO
[15:06:25] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and population gen parallelism of 1 threads
[15:06:26] [Server thread/WARN]: [Pufferfish] SIMD operations are available for your server, but are not configured!
[15:06:26] [Server thread/WARN]: [Pufferfish] To enable additional optimizations, add "--add-modules=jdk.incubator.vector" to your startup flags, BEFORE the "-jar".
[15:06:26] [Server thread/WARN]: [Pufferfish] If you have already added this flag, then SIMD operations are not supported on your JVM or CPU.
[15:06:26] [Server thread/WARN]: [Pufferfish] Debug: Java: 21.0.7, test run: true
[15:06:26] [Server thread/INFO]: Default game type: SURVIVAL
[15:06:26] [Server thread/INFO]: Generating keypair
[15:06:26] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:31005
[15:06:26] [Server thread/INFO]: Using epoll channel type
[15:06:26] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[15:06:26] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[15:06:26] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loading 4 libraries... please wait
[15:06:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/Survival/libraries/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[15:06:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/Survival/libraries/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[15:06:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/Survival/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[15:06:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/Survival/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[15:06:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/Survival/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[15:06:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/Survival/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[15:06:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/Survival/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[15:06:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/Survival/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[15:06:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/Survival/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[15:06:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/Survival/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[15:06:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/Survival/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[15:06:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/Survival/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[15:06:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/Survival/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[15:06:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/Survival/libraries/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.jar
[15:06:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/Survival/libraries/net/kyori/adventure-text-serializer-gson/4.16.0/adventure-text-serializer-gson-4.16.0.jar
[15:06:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/Survival/libraries/net/kyori/adventure-text-serializer-json/4.16.0/adventure-text-serializer-json-4.16.0.jar
[15:06:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/Survival/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[15:06:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/Survival/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[15:06:27] [Server thread/INFO]: [Minepacks] PCGF-PluginLib not installed. Switching to standalone mode!
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loading 13 libraries... please wait
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/redis/clients/jedis/5.2.0/jedis-5.2.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/org/json/json/20240303/json-20240303.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/com/google/code/gson/gson/2.11.0/gson-2.11.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/com/google/errorprone/error_prone_annotations/2.27.0/error_prone_annotations-2.27.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/org/apache/commons/commons-pool2/2.12.0/commons-pool2-2.12.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/org/mongodb/mongodb-driver-sync/5.0.0/mongodb-driver-sync-5.0.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/org/mongodb/bson/5.0.0/bson-5.0.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/org/mongodb/mongodb-driver-core/5.0.0/mongodb-driver-core-5.0.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/org/mongodb/bson-record-codec/5.0.0/bson-record-codec-5.0.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/org/xerial/sqlite-jdbc/3.47.2.0/sqlite-jdbc-3.47.2.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/com/mysql/mysql-connector-j/9.1.0/mysql-connector-j-9.1.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/com/google/protobuf/protobuf-java/4.26.1/protobuf-java-4.26.1.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/org/mariadb/jdbc/mariadb-java-client/3.5.1/mariadb-java-client-3.5.1.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/com/github/waffle/waffle-jna/3.3.0/waffle-jna-3.3.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/net/java/dev/jna/jna/5.13.0/jna-5.13.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/org/slf4j/jcl-over-slf4j/2.0.7/jcl-over-slf4j-2.0.7.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/com/github/ben-manes/caffeine/caffeine/2.9.3/caffeine-2.9.3.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/org/checkerframework/checker-qual/3.32.0/checker-qual-3.32.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/net/kyori/adventure-text-minimessage/4.18.0/adventure-text-minimessage-4.18.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/net/kyori/adventure-api/4.18.0/adventure-api-4.18.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/net/kyori/adventure-key/4.18.0/adventure-key-4.18.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/org/jetbrains/annotations/26.0.1/annotations-26.0.1.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/net/kyori/adventure-platform-bukkit/4.3.4/adventure-platform-bukkit-4.3.4.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/net/kyori/adventure-platform-api/4.3.4/adventure-platform-api-4.3.4.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.4/adventure-text-serializer-bungeecord-4.3.4.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/net/kyori/adventure-platform-facet/4.3.4/adventure-platform-facet-4.3.4.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/net/kyori/adventure-platform-viaversion/4.3.4/adventure-platform-viaversion-4.3.4.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/com/influxdb/influxdb-client-java/7.2.0/influxdb-client-java-7.2.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/com/influxdb/influxdb-client-core/7.2.0/influxdb-client-core-7.2.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/com/influxdb/influxdb-client-utils/7.2.0/influxdb-client-utils-7.2.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/com/squareup/okio/okio/3.9.0/okio-3.9.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/com/squareup/okio/okio-jvm/3.9.0/okio-jvm-3.9.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.9.21/kotlin-stdlib-1.9.21.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/com/squareup/okhttp3/okhttp/4.12.0/okhttp-4.12.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.8.21/kotlin-stdlib-jdk8-1.8.21.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.8.21/kotlin-stdlib-jdk7-1.8.21.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/com/squareup/retrofit2/retrofit/2.11.0/retrofit-2.11.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/com/squareup/okhttp3/logging-interceptor/4.12.0/logging-interceptor-4.12.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/org/apache/commons/commons-csv/1.11.0/commons-csv-1.11.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/commons-io/commons-io/2.16.1/commons-io-2.16.1.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/io/reactivex/rxjava3/rxjava/3.1.8/rxjava-3.1.8.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/com/squareup/retrofit2/adapter-rxjava3/2.11.0/adapter-rxjava3-2.11.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/com/squareup/retrofit2/converter-scalars/2.11.0/converter-scalars-2.11.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/com/squareup/retrofit2/converter-gson/2.11.0/converter-gson-2.11.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/com/zaxxer/HikariCP/6.2.1/HikariCP-6.2.1.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/org/mozilla/rhino/1.8.0/rhino-1.8.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/de/exlll/configlib-yaml/4.5.0/configlib-yaml-4.5.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/de/exlll/configlib-core/4.5.0/configlib-core-4.5.0.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [Fadah] Loaded library /home/Survival/libraries/org/snakeyaml/snakeyaml-engine/2.7/snakeyaml-engine-2.7.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loading 2 libraries... please wait
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library /home/Survival/libraries/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.jar
[15:06:28] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library /home/Survival/libraries/org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.jar
[15:06:29] [Server thread/INFO]: [SpigotLibraryLoader] [Roulette] Loading 3 libraries... please wait
[15:06:29] [Server thread/INFO]: [SpigotLibraryLoader] [Roulette] Loaded library /home/Survival/libraries/org/xerial/sqlite-jdbc/3.46.1.0/sqlite-jdbc-3.46.1.0.jar
[15:06:29] [Server thread/INFO]: [SpigotLibraryLoader] [Roulette] Loaded library /home/Survival/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[15:06:29] [Server thread/INFO]: [SpigotLibraryLoader] [Roulette] Loaded library /home/Survival/libraries/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.jar
[15:06:29] [Server thread/INFO]: [SpigotLibraryLoader] [Roulette] Loaded library /home/Survival/libraries/commons-io/commons-io/2.14.0/commons-io-2.14.0.jar
[15:06:29] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCustomizer] Loading 1 libraries... please wait
[15:06:29] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCustomizer] Loaded library /home/Survival/libraries/net/kyori/adventure-platform-bukkit/4.3.4/adventure-platform-bukkit-4.3.4.jar
[15:06:29] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCustomizer] Loaded library /home/Survival/libraries/net/kyori/adventure-platform-api/4.3.4/adventure-platform-api-4.3.4.jar
[15:06:29] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCustomizer] Loaded library /home/Survival/libraries/net/kyori/adventure-api/4.13.1/adventure-api-4.13.1.jar
[15:06:29] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCustomizer] Loaded library /home/Survival/libraries/net/kyori/adventure-key/4.13.1/adventure-key-4.13.1.jar
[15:06:29] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCustomizer] Loaded library /home/Survival/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.4/adventure-text-serializer-bungeecord-4.3.4.jar
[15:06:29] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCustomizer] Loaded library /home/Survival/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[15:06:29] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCustomizer] Loaded library /home/Survival/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[15:06:29] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCustomizer] Loaded library /home/Survival/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[15:06:29] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCustomizer] Loaded library /home/Survival/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[15:06:29] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCustomizer] Loaded library /home/Survival/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[15:06:29] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCustomizer] Loaded library /home/Survival/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[15:06:29] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCustomizer] Loaded library /home/Survival/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[15:06:29] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCustomizer] Loaded library /home/Survival/libraries/net/kyori/adventure-platform-facet/4.3.4/adventure-platform-facet-4.3.4.jar
[15:06:29] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCustomizer] Loaded library /home/Survival/libraries/net/kyori/adventure-platform-viaversion/4.3.4/adventure-platform-viaversion-4.3.4.jar
[15:06:29] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.145
[15:06:30] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[15:06:30] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-CMI
[15:06:30] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.2.7
[15:06:30] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.20.4
[15:06:30] [Server thread/INFO]: [CMI] Loading server plugin CMI v9.7.9.1
[15:06:30] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.12
[15:06:30] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.12.4-SNAPSHOT-1022;aecc50d
[15:06:32] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@2c267a29]
[15:06:32] [Server thread/INFO]: [UltimateClaims] Loading server plugin UltimateClaims v2.6.0
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] Loading dependency com.zaxxer:HikariCP:4.0.3 from https://repo1.maven.org/maven2
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] Loaded dependency 'HikariCP-4.0.3' successfully.
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] ----------------------------
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] Loading dependency com.h2database:h2:1.4.200 from https://repo1.maven.org/maven2
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] Loaded dependency 'h2-1.4.200' successfully.
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] ----------------------------
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] Loading dependency org.apache.commons:commons-text:1.12.0 from https://repo1.maven.org/maven2
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] Loaded dependency 'commons-text-1.12.0' successfully.
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] ----------------------------
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] Loading dependency org.apache.commons:commons-lang3:3.14.0 from https://repo1.maven.org/maven2
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] Loaded dependency 'commons-lang3-3.14.0' successfully.
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] ----------------------------
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] Loading dependency org.jooq:jooq:3.14.16 from https://repo1.maven.org/maven2
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] Loaded dependency 'jooq-3.14.16' successfully.
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] ----------------------------
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] Loading dependency org.mariadb.jdbc:mariadb-java-client:3.2.0 from https://repo1.maven.org/maven2
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] Loaded dependency 'mariadb-java-client-3.2.0' successfully.
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] ----------------------------
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] Loading dependency org.slf4j:slf4j-api:2.0.11 from https://repo1.maven.org/maven2
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] Loaded dependency 'slf4j-api-2.0.11' successfully.
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] ----------------------------
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] Loading dependency com.github.cryptomorin:XSeries:12.0.0 from https://repo1.maven.org/maven2
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] Loaded dependency 'XSeries-12.0.0' successfully.
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] ----------------------------
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] Loading dependency org.reactivestreams:reactive-streams:1.0.2 from https://repo1.maven.org/maven2
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] Loaded dependency 'reactive-streams-1.0.2' successfully.
[15:06:32] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] ----------------------------
[15:06:32] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.12+829a4a4
[15:06:32] [Server thread/INFO]: [SilkSpawners] Loading server plugin SilkSpawners v8.3.0
[15:06:32] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0
[15:06:32] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.12
[15:06:32] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.10.0
[15:06:32] [Server thread/INFO]: [ShopGUIPlus] Loading server plugin ShopGUIPlus v1.103.1
[15:06:32] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.7.7
[15:06:32] [Server thread/INFO]: [InvSee++] Loading server plugin InvSeePlusPlus v0.29.11
[15:06:32] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.9.5-f13ab4a1
[15:06:32] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[15:06:32] [Server thread/INFO]: [MythicMobs] ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ!
[15:06:32] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.7.0
[15:06:36] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.29.0
[15:06:36] [Server thread/INFO]: [PremiumVanish] Loading server plugin PremiumVanish v2.9.19
[15:06:36] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.0.0
[15:06:36] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.35-SNAPSHOT (build 3598)
[15:06:36] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.4
[15:06:36] [Server thread/INFO]: [FancyHolograms] Loading server plugin FancyHolograms v2.6.0
[15:06:36] [Server thread/INFO]: [ShopGUIPlusSilkSpawnersBridge] Loading server plugin ShopGUIPlusSilkSpawnersBridge v1.8.0
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.9.0
[15:06:36] [FancyLogger/INFO]: [FancyHolograms] (Server thread) INFO: Successfully loaded FancyHolograms version 2.6.0
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okhttp
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okhttp
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio-jvm
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio-jvm
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk8
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk8
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-common
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-common
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for annotations
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Checksum matched for annotations
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk7
[15:06:36] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk7
[15:06:36] [Server thread/INFO]: [InvSee++_Clear] Loading server plugin InvSeePlusPlus_Clear v0.29.11
[15:06:36] [Server thread/INFO]: [Blackjack] Loading server plugin Blackjack v1.7.6
[15:06:36] [Server thread/INFO]: [CrazyEnvoys] Loading server plugin CrazyEnvoys v1.12.2
[15:06:36] [Server thread/INFO]: [MythicCrucible] Loading server plugin MythicCrucible v2.2.0-SNAPSHOT
[15:06:36] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.4-SNAPSHOT
[15:06:36] [Server thread/INFO]: [Infiniteannouncements] Loading server plugin Infiniteannouncements v2.5.0
[15:06:36] [Server thread/INFO]: [MyPetDownloader] Loading server plugin MyPetDownloader v1.2
[15:06:37] [Server thread/INFO]: Start MyPet download: 3.12-SNAPSHOT-B1782
[15:06:40] [Server thread/INFO]: [MyPet] Loading server plugin MyPet v3.12
[15:06:40] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Error-Reporter ENABLED
[15:06:40] [Server thread/INFO]: Trying to read
[15:06:40] [Server thread/INFO]: 1.20.5,v1_20_R4
[15:06:40] [Server thread/INFO]: 1.20.6,v1_20_R4
[15:06:40] [Server thread/INFO]: 1.21,v1_21_R1
[15:06:40] [Server thread/INFO]: 1.21.1,v1_21_R1
[15:06:40] [Server thread/INFO]: 1.21.2,v1_21_R2
[15:06:40] [Server thread/INFO]: 1.21.3,v1_21_R2
[15:06:40] [Server thread/INFO]: 1.21.4,v1_21_R3
[15:06:41] [Server thread/INFO]: [Minepacks] Loading server plugin Minepacks v2.4.32.3-T20250704134847
[15:06:41] [Server thread/INFO]: [Vulcan] Loading server plugin Vulcan v2.9.2.4
[15:06:41] [Server thread/INFO]: [Images] Loading server plugin Images v2.5.3
[15:06:41] [Server thread/INFO]: [InventoryRollbackPlus] Loading server plugin InventoryRollbackPlus v1.6.21
[15:06:41] [Server thread/INFO]: [TheRewards] Loading server plugin TheRewards v1.5.0-STABLE
[15:06:41] [Server thread/INFO]: [InvSee++_Give] Loading server plugin InvSeePlusPlus_Give v0.29.11
[15:06:41] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.13
[15:06:41] [Server thread/INFO]: [BlockLocker] Loading server plugin BlockLocker v1.13
[15:06:41] [Server thread/INFO]: [OreAnnouncer] Loading server plugin OreAnnouncer v2.8.5
[15:06:41] [Server thread/INFO]: [OreAnnouncer] Loading libraries of OreAnnouncer v2.8.5, this may take a while
[15:06:41] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jar-relocator
[15:06:41] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for asm
[15:06:41] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for asm-commons
[15:06:41] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for gson
[15:06:41] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jdbi3-core
[15:06:41] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for geantyref
[15:06:41] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for caffeine
[15:06:41] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jdbi3-stringtemplate4
[15:06:41] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for ST4
[15:06:41] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for antlr-runtime
[15:06:41] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jdbi3-sqlobject
[15:06:41] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for slf4j-api
[15:06:41] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for slf4j-simple
[15:06:41] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for HikariCP
[15:06:41] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for mariadb-java-client
[15:06:41] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for mysql-connector-j
[15:06:41] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for postgresql
[15:06:41] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for h2
[15:06:41] [Server thread/INFO]: [Orebfuscator] Loading server plugin Orebfuscator v5.5.0
[15:06:41] [Server thread/INFO]: [ToastedAFK] Loading server plugin ToastedAFK v2.0.2.2
[15:06:41] [Server thread/INFO]: [Fadah] Loading server plugin Fadah v2.8.3
[15:06:41] [Server thread/INFO]: [InteractionVisualizer] Loading server plugin InteractionVisualizer v1.18.13.0
[15:06:41] [Server thread/INFO]: [Pl-Hide-Pro] Loading server plugin Pl-Hide-Pro v2.12.2
[15:06:41] [Server thread/INFO]: [Pl-Hide-Pro] Loading library caffeine
[15:06:41] [Server thread/INFO]: [PvPManager] Loading server plugin PvPManager v3.19.3
[15:06:41] [Server thread/INFO]: [ikLogs] Loading server plugin ikLogs v0.8.5
[15:06:41] [Server thread/INFO]: [Quests] Loading server plugin Quests v3.15.2-b216e2b
[15:06:41] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.23.3
[15:06:42] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (718 ms).
[15:06:42] [Server thread/INFO]: [Shopkeepers] Loading config.
[15:06:42] [Server thread/WARN]: [Shopkeepers] Config: Invalid living entity type name in 'enabled-living-shops': CREAKING
[15:06:42] [Server thread/WARN]: [Shopkeepers] Config: All existing entity type names can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
[15:06:42] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[15:06:42] [Server thread/WARN]: [Shopkeepers] Config: Invalid living entity type name in 'enabled-living-shops': CREAKING
[15:06:42] [Server thread/WARN]: [Shopkeepers] Config: All existing entity type names can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
[15:06:42] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[15:06:42] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[15:06:42] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.16.0
[15:06:42] [Server thread/INFO]: [UltimateAutoRestart] Loading server plugin UltimateAutoRestart v2025.02
[15:06:42] [Server thread/INFO]: [Roulette] Loading server plugin Roulette v3.2.1
[15:06:42] [Server thread/INFO]: [ServerSigns] Loading server plugin ServerSigns v4.10.1
[15:06:42] [Server thread/INFO]: [ChatManager] Loading server plugin ChatManager v3.11
[15:06:42] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.4.1
[15:06:42] [Server thread/INFO]: [SlotMachine] Loading server plugin SlotMachine v6.8.4
[15:06:42] [Server thread/INFO]: [CrazyCrates] Loading server plugin CrazyCrates v4.0.6
[15:06:42] [Server thread/INFO]: [CrazyEnchantments] Loading server plugin CrazyEnchantments v2.5.2
[15:06:42] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
[15:06:42] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[15:06:42] [Server thread/INFO]: [Tebex] Loading server plugin Tebex v2.0.3
[15:06:42] [Server thread/INFO]: [ParadiseNicks] Loading server plugin ParadiseNicks v1.0.1
[15:06:42] [Server thread/INFO]: [CSL] Loading server plugin ChunkSpawnerLimiter v4.3.5
[15:06:42] [Server thread/INFO]: [UltraCustomizer] Loading server plugin UltraCustomizer v2.6.1
[15:06:42] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[15:06:42] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.145
[15:06:43] [Server thread/INFO]:         __    
[15:06:43] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.145
[15:06:43] [Server thread/INFO]:   |___ |      Running on Bukkit - Pufferfish
[15:06:43] [Server thread/INFO]: 
[15:06:43] [Server thread/INFO]: [LuckPerms] Loading configuration...
[15:06:44] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MARIADB]
[15:06:44] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[15:06:44] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[15:06:44] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[15:06:45] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[15:06:45] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[15:06:46] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3584ms)
[15:06:46] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-CMI
[15:06:46] [Server thread/INFO]: [Vault] [Economy] CMI Economy found: Waiting
[15:06:46] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[15:06:46] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-CMI
[15:06:46] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[15:06:46] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.12.4-SNAPSHOT-1022;aecc50d
[15:06:46] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[15:06:46] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[15:06:46] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[15:06:46] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[15:06:46] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_R1.PaperweightFaweAdapter as the Bukkit adapter
[15:06:47] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0
[15:06:47] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.7.7
[15:06:48] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 107 build(s) out of date.
You are running build 1022, the latest version is build 1129.
Update at https://www.spigotmc.org/resources/13932/
[15:06:48] [Server thread/INFO]: [SkinsRestorer] -------------------------/Warning\-------------------------
[15:06:48] [Server thread/INFO]: [SkinsRestorer] This plugin is running in PROXY mode!
[15:06:48] [Server thread/INFO]: [SkinsRestorer] You have to put the same config.yml on all servers and on the proxy.
[15:06:48] [Server thread/INFO]: [SkinsRestorer] (<proxy>/plugins/SkinsRestorer/)
[15:06:48] [Server thread/INFO]: [SkinsRestorer] -------------------------\Warning/-------------------------
[15:06:49] [Server thread/INFO]: [SkinsRestorer] Running on Minecraft 1.21.1.
[15:06:49] [Server thread/WARN]: [SkinsRestorer] Proxy mode API is enabled (server.proxyMode.api), but MySQL is not set up, this is not supported. You must configure MySQL on all servers and on the proxy and use the same database.
[15:06:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: skinsrestorer [15.7.7]
[15:06:49] [Server thread/INFO]: [SkinsRestorer] PlaceholderAPI expansion registered!
[15:06:49] [Server thread/INFO]: [BlockLocker] Enabling BlockLocker v1.13
[15:06:49] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.4.1
[15:06:49] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[15:06:49] [Server thread/WARN]: [PlugManX] It seems like you're running on paper.
[15:06:49] [Server thread/WARN]: [PlugManX] PlugManX cannot interact with paper-plugins, yet.
[15:06:49] [Server thread/WARN]: [PlugManX] Also, if you encounter any issues, please join my discord: https://discord.gg/GxEFhVY6ff
[15:06:49] [Server thread/WARN]: [PlugManX] Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
[15:06:49] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[15:06:49] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] ----------------------------------------------
[15:06:49] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     +==================+
[15:06:49] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[15:06:49] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     |------------------|
[15:06:49] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     |    Proxy Mode    |
[15:06:49] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     +==================+
[15:06:49] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] ----------------------------------------------
[15:06:49] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     Version: 15.7.7
[15:06:49] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     Commit: 7eff058
[15:06:49] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer]     This is the latest version!
[15:06:49] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] ----------------------------------------------
[15:06:49] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] Do you have issues? Read our troubleshooting guide: https://skinsrestorer.net/docs/troubleshooting
[15:06:49] [Folia Async Scheduler Thread #0/INFO]: [SkinsRestorer] Want to support SkinsRestorer? Consider donating: https://skinsrestorer.net/donate
[15:06:49] [Server thread/INFO]: [UltraCustomizer] Enabling UltraCustomizer v2.6.1
[15:06:50] [Server thread/INFO]: [UltraCustomizer] Loading Plugin...
[15:06:51] [Server thread/INFO]: [UltraCustomizer] Hooked into PlaceholderAPI version: 2.11.6
[15:06:51] [Server thread/INFO]: [UltraCustomizer] PlaceholderAPI is found!
[15:06:51] [Server thread/INFO]: [UltraCustomizer] Registered 78 Elements
[15:06:51] [Server thread/INFO]: [UltraCustomizer] Using GsonComponentSerializer for chat messages
[15:06:51] [Server thread/INFO]: [UltraCustomizer] Using Packet1_20_6 for chat packet handling
[15:06:51] [Server thread/INFO]: [UltraCustomizer] Registered 0 Crafting Recipes of folder: Local
[15:06:51] [Server thread/INFO]: [UltraCustomizer] Registered 0 Furnace Recipes of folder: Local
[15:06:51] [Server thread/INFO]: [UltraCustomizer] Successfully loaded in 1212 ms
[15:06:51] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[15:06:51] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[15:06:51] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[15:06:51] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[15:06:51] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[15:06:51] [Server thread/INFO]: Preparing level "world"
[15:06:52] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[15:06:54] [Server thread/INFO]: Time elapsed: 2086 ms
[15:06:54] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[15:06:54] [Server thread/INFO]: Time elapsed: 399 ms
[15:06:54] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[15:06:54] [Server thread/INFO]: Time elapsed: 91 ms
[15:06:54] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[15:06:55] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[15:06:55] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.2.7
[15:06:56] [Server thread/INFO]: Server version: v1_21_R1 - 1.21.1 - pufferfish  1.21.1-21-cfa3c61 (MC: 1.21.1)
[15:06:56] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[15:06:56] [Server thread/INFO]: CMI hooked.
[15:06:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.2.7]
[15:06:56] [Server thread/INFO]: PlaceholderAPI hooked.
[15:06:56] [Server thread/INFO]: Updated (EN) language file. Took 50ms
[15:06:56] [Server thread/INFO]: Updated (IT) language file. Took 21ms
[15:06:56] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.20.4
[15:06:57] [Server thread/INFO]: [HeadDatabase] ÂUsing default Â"en_US.lang" Âcreated by ÂArcaniax
[15:06:57] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[15:06:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hdb [4.20.4]
[15:06:57] [Server thread/INFO]: [CMI] Enabling CMI v9.7.9.1
[15:06:57] [Server thread/INFO]: _______________________________________________________
[15:06:57] [Server thread/INFO]:  
[15:06:57] [Server thread/INFO]:  ██████╗███╗   ███╗██╗
[15:06:57] [Server thread/INFO]: ██╔════╝████╗ ████║██║
[15:06:57] [Server thread/INFO]: ██║     ██╔████╔██║██║
[15:06:57] [Server thread/INFO]: ██║     ██║╚██╔╝██║██║
[15:06:57] [Server thread/INFO]: ╚██████╗██║ ╚═╝ ██║██║
[15:06:57] [Server thread/INFO]:  ╚═════╝╚═╝     ╚═╝╚═╝
[15:06:57] [Server thread/INFO]: _______________________________________________________
[15:06:57] [Server thread/INFO]: Integrating PaperSpigot async methods
[15:06:57] [Server thread/INFO]: Vault found. (Loaded: true)
[15:06:57] [Server thread/INFO]: Citizens found. (Loaded: false)
[15:06:58] [Server thread/INFO]: Loaded (67) 61 Enabled and 6 Disabled modules into memory. Took 99ms
[15:06:58] [Server thread/INFO]: ProtocolLib found. (Loaded: true)
[15:06:58] [Server thread/INFO]: Initialized Cipher256 AES
[15:06:58] [Server thread/INFO]: Loaded (61) regular alias into memory. Took 86ms
[15:06:58] [Server thread/INFO]: Loaded (1) custom text's into memory. Took 4ms
[15:06:58] [Server thread/INFO]: (RandomTeleportation) Can't find world with (Boss) name
[15:06:58] [Server thread/INFO]: (RandomTeleportation) Can't find world with (PvP) name
[15:06:58] [Server thread/INFO]: (RandomTeleportation) Can't find world with (Spawn) name
[15:06:58] [Server thread/INFO]: (RandomTeleportation) Can't find world with (overworldPG) name
[15:06:58] [Server thread/INFO]: (RandomTeleportation) Can't find world with (overworldPG_nether) name
[15:06:58] [Server thread/INFO]: (RandomTeleportation) Can't find world with (overworldPG_the_end) name
[15:06:58] [Server thread/INFO]: (RandomTeleportation) Can't find world with (PG) name
[15:06:58] [Server thread/INFO]: (RandomTeleportation) Can't find world with (PG_nether) name
[15:06:58] [Server thread/INFO]: (RandomTeleportation) Can't find world with (PG_the_end) name
[15:06:58] [Server thread/INFO]: 3.46.0 data base type detected
[15:06:59] [Server thread/INFO]: Loaded (-) SqLite into memory. Took 312ms
[15:06:59] [Server thread/INFO]: Vault was found - Enabling capabilities. Economy: CMIEconomy
[15:06:59] [Server thread/INFO]: Loaded (5) warning categories into memory. Took 0ms
[15:06:59] [Server thread/INFO]: Loaded (3) warning commands into memory. Took 0ms
[15:06:59] [Server thread/INFO]: Loaded (1) cooldowns into memory. Took 1ms
[15:06:59] [Server thread/INFO]: Loaded (147) custom mob heads into memory. Took 17ms
[15:06:59] [Server thread/INFO]: Enabling BungeeCord Support
[15:06:59] [Server thread/INFO]: Loaded (10) kits into memory. Took 52ms
[15:06:59] [Server thread/INFO]: Loaded (0) ranks into memory. Took 6ms
[15:06:59] [Server thread/INFO]: Loaded (8) playtime rewards into memory. Took 2ms
[15:06:59] [Server thread/INFO]: Loaded (1) jails into memory. Took 5ms
[15:06:59] [Server thread/INFO]: Loaded (15) player data into memory. Took 28ms
[15:06:59] [Server thread/INFO]: Loaded (0) playtime records into memory. Took 1ms
[15:06:59] [Server thread/INFO]: Loaded (0) playtime reward records into memory. Took 0ms
[15:06:59] [Server thread/INFO]: Loaded (3) custom alias into memory. Took 4ms
[15:06:59] [Server thread/INFO]: Loaded (-) Registered events into memory. Took 150ms
[15:06:59] [Server thread/INFO]: Loaded (0) event action commands into memory. Took 4ms
[15:06:59] [Server thread/INFO]: Loaded (EN) language file into memory. Took 162ms
[15:07:00] [Server thread/INFO]: Loaded (IT) language file into memory. Took 127ms
[15:07:00] [Server thread/INFO]: Loaded (245) worth values into memory. Took 66ms
[15:07:00] [Server thread/INFO]: Loaded (11) warps into memory. Took 8ms
[15:07:00] [Server thread/INFO]: VaultPermissions found. (Loaded: true)
[15:07:00] [Server thread/INFO]: PlaceholderAPI found. (Loaded: true)
[15:07:00] [Server thread/INFO]: Loaded (4) schedules into memory. Took 8ms
[15:07:00] [Server thread/INFO]: Loaded (0) skin cache entries into memory. Took 0ms
[15:07:00] [Server thread/INFO]: Loaded (1) custom recipes into memory. Took 14ms
[15:07:00] [Server thread/INFO]: Loaded (0) ArmorStand templates into memory. Took 0ms
[15:07:00] [Server thread/INFO]: Version 9.7.9.1 has been enabled
[15:07:00] [Server thread/INFO]: _______________________________________________________
[15:07:00] [Server thread/INFO]: [Vault][Economy] CMI Economy hooked.
[15:07:00] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.12
[15:07:00] [Server thread/INFO]: [UltimateClaims] Enabling UltimateClaims v2.6.0
[15:07:00] [Server thread/INFO]:  
[15:07:00] [Server thread/INFO]: =============================
[15:07:00] [Server thread/INFO]: UltimateClaims 2.6.0 by Songoda <3!
[15:07:00] [Server thread/INFO]: Action: Enabling...
[15:07:00] [Server thread/INFO]: [UltimateClaims] Loaded locale "en_US"
[15:07:00] [Server thread/INFO]: [com.craftaro.ultimateclaims.core.CoreLogger] [UltimateClaims] [CraftaroCore] [CraftaroCore] Hooked UltimateClaims.
[15:07:00] [Server thread/INFO]: [UltimateClaims] Loaded locale "it_IT"
[15:07:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimateclaims [2.6.0]
[15:07:00] [Server thread/INFO]: =============================
[15:07:00] [Server thread/INFO]:  
[15:07:00] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.12+829a4a4
[15:07:01] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[15:07:01] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[15:07:01] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[15:07:01] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[15:07:01] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[15:07:01] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[15:07:01] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[15:07:01] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[15:07:01] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[15:07:01] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[15:07:01] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[15:07:01] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[15:07:01] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[15:07:01] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[15:07:01] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[15:07:01] [Server thread/INFO]: [WorldGuard] Loading region data...
[15:07:01] [Server thread/INFO]: [SilkSpawners] Enabling SilkSpawners v8.3.0
[15:07:01] [Server thread/INFO]: [SilkSpawners] WorldGuard was found and support is enabled
[15:07:01] [Server thread/INFO]: [SilkSpawners] Mimic was not found and support is disabled
[15:07:01] [Server thread/INFO]: [SilkSpawners] Loading support for v1_21_R1
[15:07:01] [Server thread/INFO]: [SilkSpawners] AutoUpdater is enabled and now running.
[15:07:01] [Server thread/INFO]: [SilkSpawners] BarAPI is disabled due to config setting.
[15:07:01] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.12
[15:07:01] [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--].
[15:07:01] [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.
[15:07:01] [Server thread/INFO]: Preparing start region for dimension minecraft:pvp
[15:07:01] [Server thread/INFO]: Time elapsed: 99 ms
[15:07:01] [Server thread/INFO]: [WorldGuard] (PvP) TNT ignition is PERMITTED.
[15:07:01] [Server thread/INFO]: [WorldGuard] (PvP) Lighters are PERMITTED.
[15:07:01] [Server thread/INFO]: [WorldGuard] (PvP) Lava fire is PERMITTED.
[15:07:01] [Server thread/INFO]: [WorldGuard] (PvP) Fire spread is UNRESTRICTED.
[15:07:01] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'PvP'
[15:07:01] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[15:07:02] [Server thread/INFO]: Time elapsed: 213 ms
[15:07:02] [Server thread/INFO]: [WorldGuard] (Spawn) TNT ignition is PERMITTED.
[15:07:02] [Server thread/INFO]: [WorldGuard] (Spawn) Lighters are PERMITTED.
[15:07:02] [Server thread/INFO]: [WorldGuard] (Spawn) Lava fire is PERMITTED.
[15:07:02] [Server thread/INFO]: [WorldGuard] (Spawn) Fire spread is UNRESTRICTED.
[15:07:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn'
[15:07:02] [Server thread/INFO]: [Multiverse-Core] 5 - World(s) loaded.
[15:07:02] [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.
[15:07:02] [Server thread/INFO]: [Multiverse-Core] Version 4.3.12 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[15:07:02] [Server thread/INFO]: [Skript] Enabling Skript v2.10.0
[15:07:03] [Folia Async Scheduler Thread #1/INFO]: [HeadDatabase] Successfully loaded 69343 heads!
[15:07:03] [Folia Async Scheduler Thread #1/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[15:07:03] [ForkJoinPool.commonPool-worker-2/INFO]: [Skript] A new version of Skript is available: 2.12.0 (you're currently running 2.10.0)
[15:07:03] [Folia Async Scheduler Thread Timer/WARN]: [HeadDatabase] ÂYou are using an outdated version!
[15:07:03] [Folia Async Scheduler Thread Timer/WARN]: [HeadDatabase] Latest version: Â4.21.2Â. You are on version: Â4.20.4Â.
[15:07:03] [Folia Async Scheduler Thread Timer/WARN]: [HeadDatabase] Update here: Âhttps://www.spigotmc.org/resources/head-database.14280/
[15:07:03] [ForkJoinPool.commonPool-worker-2/INFO]: Download it at: https://github.com/SkriptLang/Skript/releases/download/2.12.0/Skript-2.12.0.jar
[15:07:03] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[15:07:03] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.103.1
[15:07:04] [Server thread/INFO]: [InvSee++] Enabling InvSeePlusPlus v0.29.11
[15:07:04] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.9.5-f13ab4a1
[15:07:04] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.21.1)...
[15:07:04] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[15:07:05] [ForkJoinPool.commonPool-worker-2/INFO]: [Skript] Loaded 5328 aliases in 1159ms
[15:07:06] [Server thread/INFO]: [MythicMobs] Mythic Citizens Support has been enabled!
[15:07:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[15:07:06] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[15:07:06] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[15:07:06] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[15:07:08] [Server thread/INFO]: [MythicMobs] Loading Packs...
[15:07:09] [Server thread/INFO]: [MythicMobs] Loading Items...
[15:07:09] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item Zappadelmietitore
[15:07:09] [Server thread/WARN]: [MythicMobs] --| File: /home/Survival/plugins/MythicMobs/items/MietitorediossaItems.yml
[15:07:09] [Server thread/WARN]: [MythicMobs] --| Error Message: A potion effect is configured incorrectly. Format is 'EFFECT DURATION LEVEL'. Line=STRENGTH 1 infinite 1
[15:07:09] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[15:07:09] [Server thread/INFO]: [MythicMobs] Loading Skills...
[15:07:09] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[15:07:09] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[15:07:09] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[15:07:09] [Server thread/INFO]: [MythicMobs] ✓ Loaded 11 mobs.
[15:07:09] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[15:07:09] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[15:07:09] [Server thread/INFO]: [MythicMobs] ✓ Loaded 27 skills.
[15:07:09] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[15:07:09] [Server thread/INFO]: [MythicMobs] ✓ Loaded 44 mythic items.
[15:07:09] [Server thread/INFO]: [MythicMobs] ✓ Loaded 5 drop tables.
[15:07:09] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[15:07:09] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[15:07:09] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[15:07:09] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.9.5 ( build f13ab4a1 ) has been successfully loaded!
[15:07:09] [Server thread/INFO]: [packetevents] Enabling packetevents v2.7.0
[15:07:09] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[15:07:09] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.29.0
[15:07:09] [Server thread/INFO]: [PremiumVanish] Enabling PremiumVanish v2.9.19
[15:07:10] [packetevents-update-check-thread/INFO]: [packetevents] There is an update available for PacketEvents! Your build: (2.7.0) | Latest release: (2.9.3)
[15:07:10] [Server thread/INFO]: [de.myzelyam.libraries.com.zaxxer.hikari.HikariDataSource] PremiumVanish Database - Starting...
[15:07:10] [Server thread/INFO]: [de.myzelyam.libraries.com.zaxxer.hikari.HikariDataSource] PremiumVanish Database - Start completed.
[15:07:10] [Server thread/INFO]: [PremiumVanish] Hooked into PaperSpigot for server list ping support
[15:07:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: premiumvanish [2.9.19]
[15:07:10] [Server thread/INFO]: [PremiumVanish] Hooked into PlaceholderAPI
[15:07:10] [Server thread/INFO]: [PremiumVanish] Hooked into CMI
[15:07:10] [Server thread/INFO]: [PremiumVanish] Hooked into PaperSpigot for advancement interception
[15:07:10] [Server thread/INFO]: [TAB] Enabling TAB v5.0.0
[15:07:10] [Server thread/INFO]: [TAB] Loaded NMS hook in 25ms
[15:07:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[15:07:11] [Server thread/INFO]: [TAB] Enabled in 365ms
[15:07:11] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3598)
[15:07:11] [Server thread/INFO]: [Citizens] Loading external libraries
[15:07:11] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[15:07:11] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[15:07:11] [pool-69-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (9d4734818ab27069d76f264a4cda74a699806770)
[15:07:11] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[15:07:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[15:07:12] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[15:07:12] [Server thread/INFO]: [PremiumVanish] Hooked into Citizens
[15:07:12] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.4
[15:07:12] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[15:07:12] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:💻┆𝐂onsole-𝐒urvival(1155440286630154360)
[15:07:12] [Server thread/INFO]: [CoreProtect] CoreProtect ora è abilitato! 
[15:07:12] [Server thread/INFO]: [CoreProtect] Utilizzando SQLite per l'archiviazione dei dati.
[15:07:12] [Server thread/INFO]: --------------------
[15:07:12] [Server thread/INFO]: [CoreProtect] Godere CoreProtect? Unisciti al nostro Discord!
[15:07:12] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[15:07:12] [Server thread/INFO]: --------------------
[15:07:12] [Server thread/INFO]: [FancyHolograms] Enabling FancyHolograms v2.6.0
[15:07:12] [Server thread/INFO]: [ShopGUIPlusSilkSpawnersBridge] Enabling ShopGUIPlusSilkSpawnersBridge v1.8.0
[15:07:12] [FancyLogger/INFO]: [FancyHolograms] (Server thread) INFO: Successfully enabled FancyHolograms version 2.6.0
[15:07:12] [Server thread/INFO]: [SilkSpawners] WorldGuard was found and support is enabled
[15:07:12] [Server thread/INFO]: [SilkSpawners] Mimic was not found and support is disabled
[15:07:12] [Server thread/INFO]: [SilkSpawners] Loading support for v1_21_R1
[15:07:12] [Server thread/INFO]: [ShopGUIPlus] Registered spawners support for SilkSpawners.
[15:07:12] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.9.0
[15:07:12] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[15:07:12] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[15:07:12] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 1 alert registered
[15:07:12] [FancyLogger/INFO]: [FancyHolograms] (ForkJoinPool.commonPool-worker-2) WARN: 
[15:07:12] [FancyLogger/INFO]: -------------------------------------------------------
[15:07:12] [FancyLogger/INFO]: You are not using the latest version of the FancyHolograms plugin.
[15:07:12] [FancyLogger/INFO]: Please update to the newest version (2.7.0).
[15:07:12] [FancyLogger/INFO]: https://modrinth.com/plugin/FancyHolograms
[15:07:12] [FancyLogger/INFO]: -------------------------------------------------------
[15:07:12] [FancyLogger/INFO]: 
[15:07:13] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[15:07:13] [Server thread/INFO]: [ajLeaderboards] Loaded 4 boards
[15:07:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.9.0]
[15:07:13] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[15:07:13] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.9.0 by ajgeiss0702 enabled!
[15:07:13] [Server thread/INFO]: [InvSee++_Clear] Enabling InvSeePlusPlus_Clear v0.29.11
[15:07:13] [Server thread/INFO]: [Blackjack] Enabling Blackjack v1.7.6
[15:07:13] [Server thread/INFO]: [CrazyEnvoys] Enabling CrazyEnvoys v1.12.2
[15:07:13] [Server thread/INFO]: [CrazyEnvoys] Loading the file users.yml...
[15:07:13] [Server thread/INFO]: [CrazyEnvoys] Loading Basic.yml...
[15:07:13] [Server thread/INFO]: [CrazyEnvoys] Loading Titan.yml...
[15:07:13] [Server thread/INFO]: [CrazyEnvoys] Loading Lucky.yml...
[15:07:13] [Server thread/INFO]: [CrazyEnvoys] DecentHolograms support has been enabled.
[15:07:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: crazyenvoys [1.12.2]
[15:07:13] [Server thread/INFO]: [CrazyEnvoys] Done (45.689s)!
[15:07:13] [Server thread/INFO]: [MythicCrucible] Enabling MythicCrucible v2.2.0-SNAPSHOT
[15:07:13] [Server thread/INFO]: [MythicMobs] Â------------------------------------------------
[15:07:13] [Server thread/INFO]: [MythicMobs] Â+ Loading MythicCrucible for Bukkit
[15:07:13] [Server thread/INFO]: [MythicMobs] Â------------------------------------------------
[15:07:13] [Server thread/INFO]: [MythicMobs] Registering Durability Listener
[15:07:15] [pool-83-thread-1/INFO]: [ajLeaderboards] An update is available! (2.10.1) Run /ajLeaderboards update to download it!
[15:07:23] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[15:07:23] [Server thread/INFO]: [MythicMobs] MythicCrucible Support has been enabled!
[15:07:23] [Server thread/INFO]: [MythicMobs] MythicCrucible WorldEdit support enabled!
[15:07:23] [Server thread/INFO]: [MythicMobs] Attached traits to items.
[15:07:23] [Server thread/INFO]: [MythicMobs] Loaded 44 items.
[15:07:23] [Server thread/INFO]: [MythicMobs] Loaded 5 drop tables.
[15:07:23] [Server thread/INFO]: [MythicMobs] ✓ MythicCrucible  v2.2.0 has been successfully loaded!
[15:07:23] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.4-SNAPSHOT
[15:07:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[15:07:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[15:07:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[15:07:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[15:07:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[15:07:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[15:07:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[15:07:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[15:07:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[15:07:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[15:07:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[15:07:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[15:07:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[15:07:23] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[15:07:23] [Server thread/INFO]: [Infiniteannouncements] Enabling Infiniteannouncements v2.5.0
[15:07:23] [Server thread/INFO]: [Infiniteannouncements] [DEBUG] Registered command: InfiniteAnnouncements
[15:07:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: infiniteannouncements [1.0.0]
[15:07:23] [Server thread/INFO]: [MyPetDownloader] Enabling MyPetDownloader v1.2
[15:07:23] [Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.32.3-T20250704134847
[15:07:23] [Server thread/INFO]: [Minepacks] Starting Minepacks in standalone mode!
[15:07:24] [Server thread/INFO]: [Minepacks] Config file successfully loaded.
[15:07:24] [Server thread/WARN]: [Minepacks] Paper support is experimental! Use at your own risk!
[15:07:24] [Server thread/WARN]: [Minepacks] No guarantee for data integrity! Backup constantly!
[15:07:24] [Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: english  Author: GeorgH93
[15:07:24] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting...
[15:07:24] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed.
[15:07:24] [Server thread/INFO]: [Minepacks] Item name language file successfully loaded. Language: english  Author: GeorgH93
[15:07:24] [Server thread/INFO]: [Minepacks] Loading item translations ...
[15:07:24] [Server thread/INFO]: [Minepacks] Finished loading item translations for 826 items.
[15:07:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: minepacks [2.4.32.3-T20250704134847]
[15:07:24] [Server thread/INFO]: [Minepacks] PlaceholderAPI hook was successfully registered!
[15:07:24] [Server thread/INFO]: [Minepacks]  Minepacks has been enabled!  :) 
[15:07:24] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.9.2.4
[15:07:25] [Server thread/INFO]: [Vulcan] Server Version: .1.21.1 detected!
[15:07:25] [Server thread/INFO]: [Vulcan] MythicMobs found. Enabling hook!
[15:07:25] [Server thread/INFO]: [Vulcan] BStats enabled!
[15:07:25] [Server thread/INFO]: [Vulcan] Registered MythicMobs listener!
[15:07:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: Vulcan [2.9.2.4]
[15:07:25] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[15:07:25] [Server thread/INFO]: [Images] Enabling Images v2.5.3
[15:07:25] [Server thread/INFO]: [Images] ProtocolLib detected. Enabling generic packet handling...
[15:07:25] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.21
[15:07:25] [Server thread/INFO]: [InventoryRollbackPlus] Attempting support for version: 1.21.1-21-cfa3c61 (MC: 1.21.1)
[15:07:25] [Server thread/INFO]: [InventoryRollbackPlus] Using CraftBukkit version: v1_21_R1
[15:07:25] [Server thread/INFO]: (!) IRP - Inventory backup data is set to save to: YAML
[15:07:25] [Server thread/INFO]: (!) IRP - bStats are enabled
[15:07:25] [Server thread/INFO]: [TheRewards] Enabling TheRewards v1.5.0-STABLE
[15:07:26] [Server thread/INFO]: [TheRewards] Registering files...
[15:07:26] [Server thread/INFO]: [TheRewards] Registering listeners...
[15:07:26] [Server thread/INFO]: [TheRewards] Registering commands...
[15:07:26] [Server thread/INFO]: [TheRewards] Registering command: reward, aliases: [rewards]
[15:07:26] [Server thread/INFO]: [TheRewards] Registering Actions...
[15:07:26] [Server thread/INFO]: [TheRewards] Registering Hooks...
[15:07:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: therewards [1.5.0-STABLE]
[15:07:26] [Server thread/INFO]: [TheRewards] Hooked onto PlaceholderAPI
[15:07:26] [Server thread/INFO]: [xshyo.us.therewards.libs.hikaricp.HikariDataSource] HikariPool-1 - Starting...
[15:07:26] [Server thread/INFO]: [xshyo.us.therewards.libs.hikaricp.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@39e864c
[15:07:26] [Server thread/INFO]: [xshyo.us.therewards.libs.hikaricp.HikariDataSource] HikariPool-1 - Start completed.
[15:07:26] [Server thread/INFO]: [TheRewards] Connected to SQLite database correctly.
[15:07:26] [Server thread/INFO]: [TheRewards] Total reward loaded: 1
[15:07:26] [Server thread/INFO]: [TheRewards] Total playtime loaded: 2
[15:07:26] [Server thread/INFO]: [TheRewards] Total streak loaded: 30
[15:07:26] [Server thread/INFO]: [TheRewards] Done and reloaded 15.37ms
[15:07:26] [Server thread/INFO]: [TheRewards] Thanks for enabling Metrics! The anonymous stats are appreciated
[15:07:26] [Server thread/INFO]: [TheRewards] Checking for existing files...
[15:07:26] [Server thread/INFO]: [TheRewards] There are existing files, no need to create reward-example.yml.
[15:07:26] [Server thread/INFO]: [TheRewards] Server version: 1.21.1-21-cfa3c61 (MC: 1.21.1) 1.21.1-R0.1-SNAPSHOT
[15:07:26] [Server thread/INFO]: [TheRewards] Done and enabled in 53.92ms
[15:07:26] [Server thread/INFO]: [InvSee++_Give] Enabling InvSeePlusPlus_Give v0.29.11
[15:07:26] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.13
[15:07:26] [Server thread/INFO]: [BetterRTP] Cooldown = 60
[15:07:26] [Server thread/INFO]: [BetterRTP] Loading Overrides...
[15:07:26] [Server thread/INFO]: [BetterRTP] Loading World Types...
[15:07:26] [Server thread/INFO]: [BetterRTP] - World Type for 'world' set to 'NORMAL'
[15:07:26] [Server thread/INFO]: [BetterRTP] - World Type for 'world_nether' set to 'NETHER'
[15:07:26] [Server thread/INFO]: [BetterRTP] - World Type for 'world_the_end' set to 'NORMAL'
[15:07:26] [Server thread/INFO]: [BetterRTP] Loading Defaults...
[15:07:26] [Server thread/INFO]: [BetterRTP] Loading Custom Worlds...
[15:07:26] [Server thread/INFO]: [BetterRTP] [WARN] - Custom World 'custom_world_1' was not registered because world does NOT exist
[15:07:26] [Server thread/INFO]: [BetterRTP] [WARN] - Custom World 'other_custom_world' was not registered because world does NOT exist
[15:07:26] [Server thread/ERROR]: [BetterRTP] The particle 'EXPLOSION_NORMAL' created a fatal error when loading particles! Your MC version isn't supported!
[15:07:26] [Folia Async Scheduler Thread #2/INFO]: [TheRewards] An update for TheRewards (1.6.4-STABLE) is available at:
[15:07:26] [Folia Async Scheduler Thread #2/INFO]: [TheRewards] https://discord.com/invite/s3Qu3Taz2y
[15:07:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.13]
[15:07:26] [Server thread/INFO]: [OreAnnouncer] Enabling OreAnnouncer v2.8.5
[15:07:26] [Server thread/INFO]: [OreAnnouncer] Initializing OreAnnouncer v2.8.5
[15:07:27] [Server thread/INFO]: [OreAnnouncer] Hooked into DiscordSRV
[15:07:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: oreannouncer [2.8.5]
[15:07:27] [Server thread/INFO]: [OreAnnouncer] Hooked into PlaceholderAPI
[15:07:27] [Server thread/INFO]: [OreAnnouncer] OreAnnouncer v2.8.5 enabled
[15:07:27] [Server thread/INFO]: [Orebfuscator] Enabling Orebfuscator v5.5.0
[15:07:28] [Server thread/INFO]: [ToastedAFK] Enabling ToastedAFK v2.0.2.2
[15:07:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: afktimer [1.0.0]
[15:07:28] [Server thread/INFO]: [Fadah] Enabling Fadah v2.8.3
[15:07:28] [Server thread/INFO]: [Fadah] Enabling the API...
[15:07:28] [Server thread/INFO]: [Fadah] API Enabled!
[15:07:28] [Server thread/INFO]: [Fadah] Loading currencies...
[15:07:28] [Server thread/INFO]: [Fadah] Currency Loaded: vault
[15:07:28] [Server thread/WARN]: [Fadah] Tried enabling currency redis_economy but the required plugin RedisEconomy is not found/enabled!
[15:07:28] [Server thread/WARN]: [Fadah] Tried enabling currency coins_engine but the required plugin CoinsEngine is not found/enabled!
[15:07:28] [Server thread/INFO]: [Fadah] Currencies Loaded!
[15:07:28] [Server thread/INFO]: [Fadah] Loading Configuration Files...
[15:07:28] [Server thread/INFO]: [Fadah] Configuration Files Loaded!
[15:07:28] [Server thread/INFO]: [Fadah] Connecting to Database and populating caches...
[15:07:28] [Server thread/INFO]: [Fadah] DB Type: SQLite
[15:07:28] [Server thread/INFO]: [Fadah] Connected to Database and populated caches!
[15:07:28] [Server thread/WARN]: [com.zaxxer.hikari.HikariConfig] FadahHikariPool - keepaliveTime is greater than or equal to maxLifetime, disabling it.
[15:07:28] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] FadahHikariPool - Starting...
[15:07:28] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] FadahHikariPool - Added connection org.sqlite.jdbc4.JDBC4Connection@5aee1508
[15:07:28] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] FadahHikariPool - Start completed.
[15:07:28] [Server thread/INFO]: [Fadah] Loading commands...
[15:07:28] [Server thread/INFO]: [Fadah] Commands Loaded!
[15:07:28] [Server thread/INFO]: [Fadah] Not connecting to broker. (Not Enabled)
[15:07:28] [Server thread/INFO]: [Fadah] Configuring Hooks...
[15:07:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: fadah [1.0.0]
[15:07:28] [Server thread/INFO]: [Fadah] Hooked into 1 plugins!
[15:07:28] [Server thread/INFO]: [Fadah] Loading migrators...
[15:07:28] [Server thread/INFO]: [Fadah] 0 Migrators Loaded!
[15:07:28] [Server thread/INFO]: [Fadah] Initialising transaction logger...
[15:07:28] [Server thread/INFO]: [Fadah] Logger Started!
[15:07:28] [Server thread/INFO]: [Fadah] Starting Metrics...
[15:07:28] [Server thread/INFO]: [Fadah] Metrics Logging Started!
[15:07:28] [Server thread/INFO]: ------------------------------
[15:07:28] [Server thread/INFO]:  Finally a Decent Auction House
[15:07:28] [Server thread/INFO]:    has successfully started!
[15:07:28] [Server thread/INFO]: ------------------------------
[15:07:28] [Server thread/INFO]: [InteractionVisualizer] Enabling InteractionVisualizer v1.18.13.0
[15:07:32] [Server thread/INFO]: [InteractionVisualizer] Opened Sqlite database successfully
[15:07:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactionvisualizer [2.0.0]
[15:07:33] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has been enabled!
[15:07:33] [Server thread/INFO]: [Pl-Hide-Pro] Enabling Pl-Hide-Pro v2.12.2
[15:07:34] [Server thread/INFO]: [PvPManager] Enabling PvPManager v3.19.3
[15:07:34] [Server thread/INFO]: [PvPManager] Using player nametags: false
[15:07:34] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] PvPManager - Starting...
[15:07:34] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] PvPManager - Start completed.
[15:07:34] [Server thread/INFO]: [PvPManager] Connected to SQLITE database successfully
[15:07:34] [Server thread/INFO]: [PvPManager] Players stored: 15
[15:07:34] [Server thread/INFO]: [PvPManager] WorldGuard Found! Enabling Support For WorldGuard Regions
[15:07:34] [Server thread/INFO]: [PvPManager] Vault Found! Using it for currency related features
[15:07:34] [Server thread/INFO]: [PvPManager] PlaceholderAPI Found! Hooked successfully
[15:07:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pvpmanager [3.19.3]
[15:07:34] [Server thread/INFO]: [PvPManager] PvPManager v3.19.3 enabled (140 ms)
[15:07:34] [Server thread/INFO]: [ikLogs] Enabling ikLogs v0.8.5
[15:07:36] [Server thread/INFO]: [net.dv8tion.jda.api.JDA] Login Successful!
[15:07:36] [Server thread/INFO]: [ikLogs] *_*_*_*_*_*_*_* ikLogs - discord synchronization *_*_*_*_*_*_*_*
[15:07:36] [Server thread/INFO]: [ikLogs] ### Information about the server ###
[15:07:36] [Server thread/INFO]: [ikLogs] » Server version: 1.21.1-21-cfa3c61 (MC: 1.21.1)
[15:07:36] [Server thread/INFO]: [ikLogs]  
[15:07:36] [Server thread/INFO]: [ikLogs] ### Information about the plugin ###
[15:07:36] [Server thread/INFO]: [ikLogs] » Plugin author: Iknemko
[15:07:36] [Server thread/INFO]: [ikLogs] » Plugin version: 0.8.5
[15:07:36] [Server thread/INFO]: [ikLogs] Plugin successfully loaded!
[15:07:36] [Server thread/INFO]: [ikLogs] *_*_*_*_*_*_*_* ikLogs - discord synchronization *_*_*_*_*_*_*_*
[15:07:36] [Server thread/INFO]: [Quests] Enabling Quests v3.15.2-b216e2b
[15:07:36] [Server thread/INFO]: [Quests] Running server scheduler: FoliaServerScheduler
[15:07:36] [Server thread/INFO]: [Quests] Initialising storage provider 'yaml'
[15:07:36] [Server thread/INFO]: [Quests] Your server is running version 1.21
[15:07:36] [Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[15:07:36] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.23.3
[15:07:36] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
[15:07:36] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.16.0
[15:07:36] [JDA MainWS-WriteThread/INFO]: [net.dv8tion.jda.internal.requests.WebSocketClient] Connected to WebSocket
[15:07:37] [JDA MainWS-ReadThread/INFO]: [net.dv8tion.jda.api.JDA] Finished Loading!
[15:07:37] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[15:07:37] [PvPManager Worker Thread - 0/INFO]: [PvPManager] Checking for updates...
[15:07:37] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into CMI!
[15:07:37] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into DiscordSRV!
[15:07:37] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechat.hooks.discordsrv.DiscordSRVEvents subscribed (2 methods)
[15:07:37] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[15:07:37] [PvPManager Worker Thread - 0/INFO]: [PvPManager] No update found
[15:07:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactivechat [4.2.16.0]
[15:07:37] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[15:07:37] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart v2025.02
[15:07:37] [Server thread/INFO]: [UltimateAutoRestart] 2025.02, a free resource by Norska - Thanks for downloading!
[15:07:37] [Server thread/INFO]: [UltimateAutoRestart] Join www.norska.dev/discord/ for support!
[15:07:37] [Server thread/INFO]: [UltimateAutoRestart] Attempting hooks...
[15:07:37] [Server thread/INFO]: [Roulette] Enabling Roulette v3.2.1
[15:07:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: roulette [3.2.1]
[15:07:37] [Server thread/INFO]: [Roulette] Using {Vault v1.7.3-CMI} as the economy provider.
[15:07:37] [Server thread/INFO]: [Roulette] All chips have been loaded from chips.yml!
[15:07:38] [Server thread/INFO]: [Roulette] All games have been loaded from games.yml!
[15:07:38] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Found server version 1.21.1
[15:07:38] [Server thread/WARN]: [GlowingEntities] [GlowingEntities] Loaded not matching version of the mappings for your server version
[15:07:38] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Loaded mappings V1_20_5_REMAPPED
[15:07:38] [Server thread/INFO]: [ServerSigns] Enabling ServerSigns v4.10.1
[15:07:38] [Server thread/INFO]: [ServerSigns] You have decided to opt-out of Metrics statistic gathering. Enable this by setting 'metrics_opt_out' to false in the config.yml
[15:07:38] [Server thread/INFO]: [ServerSigns] Version 4.10.1 is now enabled.
[15:07:38] [Server thread/INFO]: [ChatManager] Enabling ChatManager v3.11
[15:07:38] [Server thread/INFO]: [ChatManager] Loading the config.yml
[15:07:38] [Server thread/INFO]: [ChatManager] Successfully loaded config.yml
[15:07:38] [Server thread/INFO]: [ChatManager] Loading the Messages.yml
[15:07:38] [Server thread/INFO]: [ChatManager] Successfully loaded Messages.yml
[15:07:38] [Server thread/INFO]: [ChatManager] Loading the bannedwords.yml
[15:07:38] [Server thread/INFO]: [ChatManager] Successfully loaded bannedwords.yml
[15:07:38] [Server thread/INFO]: [ChatManager] Loading the bannedcommands.yml
[15:07:38] [Server thread/INFO]: [ChatManager] Successfully loaded bannedcommands.yml
[15:07:38] [Server thread/INFO]: [ChatManager] Loading the AutoBroadcast.yml
[15:07:38] [Server thread/INFO]: [ChatManager] Successfully loaded AutoBroadcast.yml
[15:07:38] [Server thread/INFO]: [ChatManager] Loading custom files.
[15:07:38] [Server thread/INFO]: [ChatManager] Loaded new custom file: Logs/Commands.txt.
[15:07:38] [Server thread/INFO]: [ChatManager] Loaded new custom file: Logs/Signs.txt.
[15:07:38] [Server thread/INFO]: [ChatManager] Loaded new custom file: Logs/Chat.txt.
[15:07:38] [Server thread/INFO]: [ChatManager] Loaded new custom file: Logs/Advertisements.txt.
[15:07:38] [Server thread/INFO]: [ChatManager] Loaded new custom file: Logs/Swears.txt.
[15:07:38] [Server thread/INFO]: [ChatManager] Finished loading custom files.
[15:07:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatmanager [3.11]
[15:07:38] [Server thread/INFO]: [Chat] ESSENTIALS NOT FOUND
[15:07:38] [Server thread/INFO]: [Chat] VAULT FOUND
[15:07:38] [Server thread/INFO]: [Chat] SUPER_VANISH NOT FOUND
[15:07:38] [Server thread/INFO]: [Chat] PLACEHOLDERAPI FOUND
[15:07:38] [Server thread/INFO]: [Chat] LUCKPERMS FOUND
[15:07:38] [Server thread/INFO]: [Chat] PREMIUM_VANISH FOUND
[15:07:38] [Server thread/INFO]: [SlotMachine] Enabling SlotMachine v6.8.4
[15:07:38] [Server thread/INFO]: [SlotMachine] Detected Minecraft version 1.21.1
[15:07:38] [Server thread/INFO]: [SlotMachine] Slot Machine version 6.8.4 (86) for Spigot 1.18/1.19/1.20/1.21
[15:07:38] [Server thread/INFO]: [SlotMachine] Using 1.20/1.21 Sound Mappings
[15:07:38] [Server thread/INFO]: [SlotMachine] Enabled Citizens 2 support
[15:07:38] [Server thread/INFO]: [SlotMachine] Adding official language : de
[15:07:38] [Server thread/INFO]: [SlotMachine] Adding official language : ru
[15:07:38] [Server thread/INFO]: [SlotMachine] Adding official language : ko
[15:07:38] [Server thread/INFO]: [SlotMachine] Adding official language : zh-TW
[15:07:38] [Server thread/INFO]: [SlotMachine] Adding official language : pt-BR
[15:07:38] [Server thread/INFO]: [SlotMachine] Adding official language : en
[15:07:38] [Server thread/INFO]: [SlotMachine] Adding official language : es-ES
[15:07:38] [Server thread/INFO]: [SlotMachine] Adding official language : it
[15:07:38] [Server thread/INFO]: [SlotMachine] Adding official language : fr
[15:07:38] [Server thread/INFO]: [SlotMachine] Adding official language : zh-CN
[15:07:38] [Server thread/INFO]: [SlotMachine] Adding official language : hu
[15:07:38] [Server thread/INFO]: [SlotMachine] Adding official language : cs
[15:07:38] [Server thread/INFO]: [SlotMachine] Adding official language : vi
[15:07:38] [Server thread/INFO]: [SlotMachine] Adding official language : ja
[15:07:38] [Server thread/INFO]: [SlotMachine] Adding official language : ro
[15:07:38] [Server thread/INFO]: [SlotMachine] Adding official language : tr
[15:07:39] [Server thread/INFO]: [SlotMachine] Adding custom language : ITA
[15:07:39] [Server thread/INFO]: [SlotMachine] Loading Tokens
[15:07:39] [Server thread/INFO]: [SlotMachine] 10 tokens found
[15:07:39] [Server thread/INFO]: [SlotMachine] Loading token 'fiches5000$'
[15:07:39] [Server thread/INFO]: [SlotMachine] Loading token 'default'
[15:07:39] [Server thread/INFO]: [SlotMachine] Loading token 'fiches1000$'
[15:07:39] [Server thread/INFO]: [SlotMachine] Loading token 'fiches1$'
[15:07:39] [Server thread/INFO]: [SlotMachine] Loading token 'fiches50$'
[15:07:39] [Server thread/INFO]: [SlotMachine] Loading token 'fiches5$'
[15:07:39] [Server thread/INFO]: [SlotMachine] Loading token 'fiches10$'
[15:07:39] [Server thread/INFO]: [SlotMachine] Loading token 'fiches10000$'
[15:07:39] [Server thread/INFO]: [SlotMachine] Loading token 'fiches25000$'
[15:07:39] [Server thread/INFO]: [SlotMachine] Loading token 'fiches100$'
[15:07:39] [Server thread/INFO]: [SlotMachine] 10 tokens loaded
[15:07:39] [Server thread/INFO]: [SlotMachine] Finished loading Tokens
[15:07:39] [Server thread/INFO]: [SlotMachine] Versione della configurazione 6
[15:07:39] [Server thread/INFO]: [SlotMachine] Rilevati 10 file in /machines
[15:07:39] [Server thread/INFO]: [SlotMachine] Caricamento del file 0bfc1063-e58a-469f-afde-dcea8ead987f.yml
[15:07:39] [Server thread/INFO]: [SlotMachine] Caricamento del file 21fccfa2-e044-4853-a6f7-8bf0d9c7d29e.yml
[15:07:39] [Server thread/INFO]: [SlotMachine] Caricamento del file f5b13d11-d861-4121-bf46-f1d1073a0ccb.yml
[15:07:39] [Server thread/INFO]: [SlotMachine] Caricamento del file da469bc4-060b-4d12-9051-19c6b0acbc20.yml
[15:07:39] [Server thread/INFO]: [SlotMachine] Caricamento del file d98af75f-61fa-47bc-82e9-248a283901fe.yml
[15:07:39] [Server thread/INFO]: [SlotMachine] Caricamento del file c936af62-78fe-4d73-ad3a-3914d927e468.yml
[15:07:39] [Server thread/INFO]: [SlotMachine] Caricamento del file a2148249-39a9-4382-a0ca-1e69e80c242b.yml
[15:07:39] [Server thread/INFO]: [SlotMachine] Caricamento del file 917ed216-712a-4162-a321-e89ac28561df.yml
[15:07:39] [Server thread/INFO]: [SlotMachine] Caricamento del file d053bb66-7185-4019-a508-630b4e95268b.yml
[15:07:39] [Server thread/INFO]: [SlotMachine] Caricamento del file a485f841-5a6f-4a2e-8205-03281b9107c5.yml
[15:07:39] [Server thread/INFO]: [SlotMachine] Caricamento completato
[15:07:39] [Server thread/INFO]: [SlotMachine] Loading player files...
[15:07:39] [Server thread/INFO]: [SlotMachine] No player file found
[15:07:39] [Server thread/INFO]: [SlotMachine] VotingPlugin support disabled
[15:07:39] [Server thread/INFO]: [CrazyCrates] Enabling CrazyCrates v4.0.6
[15:07:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: crazycrates [4.0.6]
[15:07:39] [Server thread/INFO]: [CrazyEnchantments] Enabling CrazyEnchantments v2.5.2
[15:07:39] [Server thread/INFO]: [CrazyEnchantments] Loading the config.yml
[15:07:39] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded config.yml
[15:07:39] [Server thread/INFO]: [CrazyEnchantments] Loading the BlockList.yml
[15:07:39] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded BlockList.yml
[15:07:39] [Server thread/INFO]: [CrazyEnchantments] Loading the HeadMap.yml
[15:07:39] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded HeadMap.yml
[15:07:39] [Server thread/INFO]: [CrazyEnchantments] Loading the Data.yml
[15:07:39] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Data.yml
[15:07:39] [Server thread/INFO]: [CrazyEnchantments] Loading the Enchantments.yml
[15:07:39] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Enchantments.yml
[15:07:39] [Server thread/INFO]: [CrazyEnchantments] Loading the GKitz.yml
[15:07:39] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded GKitz.yml
[15:07:39] [Server thread/INFO]: [CrazyEnchantments] Loading the Messages.yml
[15:07:39] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Messages.yml
[15:07:39] [Server thread/INFO]: [CrazyEnchantments] Loading the Enchantment-Types.yml
[15:07:39] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Enchantment-Types.yml
[15:07:39] [Server thread/INFO]: [CrazyEnchantments] Loading the Tinker.yml
[15:07:39] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Tinker.yml
[15:07:39] [Server thread/INFO]: [CrazyEnchantments]: === CrazyEnchantment Hook Status ===
[15:07:39] [Server thread/INFO]: [CrazyEnchantments]: SUPERIORSKYBLOCK NOT FOUND
[15:07:39] [Server thread/INFO]: [CrazyEnchantments]: FACTIONS_UUID NOT FOUND
[15:07:39] [Server thread/INFO]: [CrazyEnchantments]: VAULT FOUND
[15:07:39] [Server thread/INFO]: [CrazyEnchantments]: WORLDGUARD FOUND
[15:07:39] [Server thread/INFO]: [CrazyEnchantments]: LANDS NOT FOUND
[15:07:39] [Server thread/INFO]: [CrazyEnchantments]: PLOT_SQUARED NOT FOUND
[15:07:39] [Server thread/INFO]: [CrazyEnchantments]: GRIEF_PREVENTION NOT FOUND
[15:07:39] [Server thread/INFO]: [CrazyEnchantments]: WORLDEDIT FOUND
[15:07:39] [Server thread/INFO]: [CrazyEnchantments]: ORAXEN NOT FOUND
[15:07:39] [Server thread/INFO]: [CrazyEnchantments]: TOWNYADVANCED NOT FOUND
[15:07:39] [Server thread/INFO]: [CrazyEnchantments]: MCMMO NOT FOUND
[15:07:39] [Server thread/INFO]: [CrazyEnchantments] G-Kitz support is now enabled.
[15:07:39] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[15:07:39] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[15:07:40] [Server thread/INFO]: [DeluxeMenus] 13 GUI menus loaded!
[15:07:40] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[15:07:40] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[15:07:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[15:07:40] [Server thread/INFO]: [Tebex] Enabling Tebex v2.0.3
[15:07:40] [Server thread/INFO]: [ParadiseNicks] Enabling ParadiseNicks v1.0.1
[15:07:41] [OkHttp https://plugin.tebex.io/.../INFO]: [Tebex] Connected to Paradise Gaming [SURVIVAL] - Minecraft: Java Edition server.
[15:07:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ParadiseNicks [1.0.1]
[15:07:43] [Server thread/INFO]: ParadiseNicks has been Enabled!
[15:07:43] [Server thread/INFO]: 
[15:07:43] [Server thread/INFO]: Plugin by Clouds Studios (Private Product)
[15:07:43] [Server thread/INFO]: Plugin Version: 1.0.1
[15:07:43] [Server thread/INFO]: 
[15:07:43] [Server thread/INFO]: Thanks for the support <3
[15:07:43] [Server thread/INFO]: [CSL] Enabling ChunkSpawnerLimiter v4.3.5
[15:07:43] [Server thread/INFO]: [CSL] [ACF] Enabled Asynchronous Tab Completion Support!
[15:07:43] [Server thread/INFO]: [CSL] [ACF] Enabled Brigadier Support!
[15:07:43] [Server thread/WARN]: [CSL] "ChunkSpawnerLimiter v4.3.5" has registered a listener for com.destroystokyo.paper.event.brigadier.CommandRegisteredEvent on method "public void com.cyprias.chunkspawnerlimiter.acf.PaperBrigadierManager.onCommandRegister(com.destroystokyo.paper.event.brigadier.CommandRegisteredEvent<com.destroystokyo.paper.brigadier.BukkitBrigadierCommandSource>)", but the event is Deprecated. "This event has been superseded by the Commands API and will be removed in a future release. Listen to LifecycleEvents.COMMANDS instead."; please notify the authors [Cyprias, sarhatabaot].
[15:07:43] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Enabling MyPet v3.12
[15:07:43] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] No Update available.
[15:07:43] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Custom entity registry found: net.citizensnpcs.nms.v1_21_R1.util.CustomEntityRegistry
[15:07:44] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Compat mode for v1_21_R1 loaded.
[15:07:44] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Exp calculation mode: MyPet
[15:07:44] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Loading WorldGroups...
[15:07:44] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    added 'world' to 'default'
[15:07:44] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    added 'world_nether' to 'default'
[15:07:44] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    added 'world_the_end' to 'default'
[15:07:44] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    added 'PvP' to 'default'
[15:07:44] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    added 'Spawn' to 'default'
[15:07:44] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Connect to SQLite database...
[15:07:44] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] SQLite connection successful.
[15:07:44] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Citizens (2.0.35-SNAPSHOT (build 3598)) hook activated.
[15:07:44] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] MythicMobs (5.9.5-f13ab4a1) hook activated.
[15:07:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mypet [1.0.4]
[15:07:44] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] PlaceholderAPI (2.11.6) hook activated.
[15:07:44] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] PremiumVanish (2.9.19) hook activated.
[15:07:44] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] ProtocolLib (5.3.0) hook activated.
[15:07:44] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] PvPManager (3.19.3) hook activated.
[15:07:44] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Vault (1.7.3-CMI) (Economy: CMIEconomy) (Permissions: LuckPerms) hook activated.
[15:07:44] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] WorldGuard (7.0.12+829a4a4) hook activated.
[15:07:44] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Version 3.12-SNAPSHOT-b1782 ENABLED
[15:07:44] [Server thread/WARN]: Could not register alias sell because it contains commands that do not exist: economyshopgui:sellall $1-
[15:07:45] [Server thread/INFO]: [spark] Starting background profiler...
[15:07:45] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[15:07:45] [Server thread/INFO]: Done preparing level "world" (54.023s)
[15:07:45] [Server thread/INFO]: Running delayed init tasks
[15:07:45] [Craft Scheduler Thread - 4 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[15:07:45] [Craft Scheduler Thread - 23 - InventoryRollbackPlus/INFO]: (!) IRP - Checking for updates...
[15:07:45] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[15:07:45] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[15:07:45] [Craft Scheduler Thread - 25 - InteractionVisualizer/INFO]: [InteractionVisualizer] Downloading and extracting latest Language files...
[15:07:45] [Craft Scheduler Thread - 21 - Vault/INFO]: [Vault] Checking for Updates ... 
[15:07:45] [Craft Scheduler Thread - 26 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[15:07:45] [Craft Scheduler Thread - 24 - BetterRTP/INFO]: [BetterRTP] Database PLAYERS:Players configured and loaded!
[15:07:45] [Craft Scheduler Thread - 28 - BetterRTP/INFO]: [BetterRTP] Database QUEUE:Queue configured and loaded!
[15:07:45] [Craft Scheduler Thread - 27 - BetterRTP/INFO]: [BetterRTP] Database CHUNK_DATA:ChunkData configured and loaded!
[15:07:45] [Craft Scheduler Thread - 33 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:world configured and loaded!
[15:07:45] [Craft Scheduler Thread - 33 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:world_nether configured and loaded!
[15:07:45] [Craft Scheduler Thread - 33 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:world_the_end configured and loaded!
[15:07:45] [Craft Scheduler Thread - 33 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:Spawn configured and loaded!
[15:07:45] [Craft Scheduler Thread - 8 - CMILib/INFO]: New version of CMILib was detected. Please update it
[15:07:45] [Craft Scheduler Thread - 20 - Blackjack/INFO]: A new update for Blackjack is available at: https://www.spigotmc.org/resources/63913/updates
[15:07:45] [Craft Scheduler Thread - 4 - DecentHolograms/INFO]: [DecentHolograms] Loaded 19 holograms!
[15:07:45] [Craft Scheduler Thread - 9 - DecentHolograms/INFO]: 
A newer version of DecentHolograms is available. Download it from: 
- https://www.spigotmc.org/resources/96927/
- https://modrinth.com/plugin/decentholograms
[15:07:45] [Craft Scheduler Thread - 21 - Vault/INFO]: [Vault] No new version available
[15:07:45] [Craft Scheduler Thread - 23 - InventoryRollbackPlus/INFO]: 
===============================================================================
A feature update to InventoryRollbackPlus is available!
Download at https://www.spigotmc.org/resources/inventoryrollbackplus-1-8-1-16-x.85811/
(current: 1.6.21, latest: 1.7.6)
===============================================================================

[15:07:45] [Server thread/INFO]: [CMI] Permission plugin: LuckPerms5.4.145
[15:07:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmi [9.7.9.1]
[15:07:45] [Server thread/INFO]: [CMI] PlaceholderAPI hooked.
[15:07:45] [Server thread/INFO]: [SilkSpawners] Result from AutoUpdater is: NO_UPDATE
[15:07:46] [Server thread/INFO]: [Skript] Loading variables...
[15:07:46] [Server thread/INFO]: [Skript] Loaded 0 variables in 0.0 seconds
[15:07:46] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[15:07:46] [Server thread/INFO]: [Skript]     No scripts were found, maybe you should write some ;)
[15:07:46] [Server thread/INFO]: [Skript] Finished loading.
[15:07:46] [Craft Scheduler Thread - 13 - Pl-Hide-Pro/INFO]: [Pl-Hide-Pro] ÂPlÂHideÂPro Ââ–Ž ÂÂUpdate available: ÂÂ2.12.3ÂÂ! You are on ÂÂ2.12.2ÂÂ!
[15:07:46] [Server thread/INFO]: [CoreProtect] FastAsyncWorldEdit registrazione con successo inizializzato.
[15:07:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.29.0]
[15:07:46] [Server thread/INFO]: INFO » Values loaded!
[15:07:46] [Server thread/INFO]: INFO » Permissions registered!
[15:07:46] [Server thread/INFO]: INFO » Scheduler started!
[15:07:46] [Craft Scheduler Thread - 25 - InteractionVisualizer/INFO]: [InteractionVisualizer] Sucessfully downloaded the latest Language files!
[15:07:47] [Server thread/INFO]: [Citizens] Loaded 21 NPCs.
[15:07:47] [Server thread/INFO]: [PremiumVanish] Your current version of PremiumVanish is outdated - New version: '2.9.24'; Currently: '2.9.19'
[15:07:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[15:07:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[15:07:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[15:07:47] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion votingplugin due to a missing plugin: VotingPlugin
[15:07:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: servertime [3.2]
[15:07:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[15:07:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: pinger [1.0.1]
[15:07:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[15:07:47] [Server thread/INFO]: 7 placeholder hook(s) registered! 1 placeholder hook(s) have an update available.
[15:07:47] [Server thread/INFO]: Done (104.289s)! For help, type "help"
[15:07:47] [Server thread/INFO]: Timings Reset
[15:07:47] [Server thread/INFO]: [CMI] DiscordSRV found. (Loaded: true)
[15:07:47] [Server thread/INFO]: [DiscordSRV] API listener com.Zrips.CMI.Modules.DiscordSRV.DiscordSRVListener subscribed (2 methods)
[15:07:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: quests [3.15.2-b216e2b]
[15:07:48] [Server thread/INFO]: [Quests] Successfully hooked into Vault economy.
[15:07:48] [Craft Scheduler Thread - 26 - ToastedAFK/INFO]: SUCCESS » ToastedAFK is up to date!
[15:07:48] [Server thread/INFO]: [Quests] 47 task types have been registered.
[15:07:48] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[15:07:48] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[15:07:48] [Server thread/INFO]: [Quests] 436 quests have been registered.
[15:07:49] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 3289ms or 65 ticks behind
[15:07:49] [Craft Scheduler Thread - 8 - BetterRTP/INFO]: [BetterRTP] Attempting to queue up some more safe locations...
[15:07:50] [Server thread/INFO]: [com.craftaro.third_party.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[15:07:50] [Server thread/INFO]: [com.craftaro.third_party.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[15:07:50] [Server thread/INFO]: [UltimateClaims] Data handler connected using H2.
[15:07:50] [Server thread/INFO]: [MythicMobs] Loading ProtocolLib listeners...
[15:07:51] [Craft Scheduler Thread - 26 - SlotMachine/INFO]: [SlotMachine] Update 6.8.6 is available for your version of Spigot at https://minecraft.klemms.fr/?id=13cf5ce5-7453-4c31-8d76-ea88f0606d7b
[15:07:52] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.103.1 ]================================
[15:07:52] [Server thread/INFO]: [ShopGUIPlus]  
[15:07:52] [Server thread/INFO]: [ShopGUIPlus] Need help using ShopGUI+? Join our Discord Support server!
[15:07:52] [Server thread/INFO]: [ShopGUIPlus] https://discord.brcdev.net/
[15:07:52] [Server thread/INFO]: [ShopGUIPlus]  
[15:07:52] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[15:07:52] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[15:07:52] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[15:07:52] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[15:07:52] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for HeadDatabase.
[15:07:52] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for MythicMobs.
[15:07:52] [Server thread/INFO]: [ShopGUIPlus] Using SilkSpawners for spawners support.
[15:07:52] [Server thread/INFO]: [ShopGUIPlus] Loaded 30 main menu items.
[15:07:52] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'minerals' with 88 items.
[15:07:52] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blockssand' with 41 items.
[15:07:52] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'mob-eggs' with 126 items.
[15:07:52] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks' with 6 items.
[15:07:52] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'weapons-tools' with 191 items.
[15:07:52] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'test' with 19 items.
[15:07:52] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'potions' with 225 items.
[15:07:52] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'decorations' with 170 items.
[15:07:52] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'casinò' with 27 items.
[15:07:53] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'color-blocks' with 245 items.
[15:07:53] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'spawners' with 119 items.
[15:07:53] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'dyes' with 33 items.
[15:07:53] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'food' with 73 items.
[15:07:53] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'farming' with 70 items.
[15:07:53] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocksstone' with 46 items.
[15:07:53] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'misc' with 204 items.
[15:07:53] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'redstone' with 85 items.
[15:07:53] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocksprismarine' with 136 items.
[15:07:53] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'enchanted' with 76 items.
[15:07:53] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocksoak' with 284 items.
[15:07:53] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocksblock' with 98 items.
[15:07:53] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'mob-drops' with 45 items.
[15:07:54] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocksbricks' with 93 items.
[15:07:54] [Server thread/INFO]: [ShopGUIPlus] Loaded 23 shops with total of 2500 items.
[15:07:54] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[15:07:54] [Server thread/INFO]: [ShopGUIPlus] Loaded 7 sounds.
[15:07:54] [Server thread/INFO]: [ShopGUIPlus]  
[15:07:54] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[15:07:54] [User Authenticator #0/INFO]: UUID of player TheDarkMurd3r is 7b57a2e7-e2dd-4e95-957c-f4ce908dfbe5
[15:07:55] [Craft Scheduler Thread - 12 - BetterRTP/INFO]: [BetterRTP] Queueing paused, max queue limit reached!
[15:07:55] [Craft Scheduler Thread - 20 - Images/INFO]: [Images] Loaded 3 images...
[15:07:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimateautorestart [2025.02]
[15:07:55] [Server thread/INFO]: [UltimateAutoRestart] Hooked into PlaceholderAPI!
[15:07:55] [Server thread/INFO]: [UltimateAutoRestart] Successfully performed 1 hooks!
[15:07:55] [Server thread/INFO]:  
[15:07:55] [Server thread/INFO]:  [UltimateAutoRestart] New update available!
[15:07:55] [Server thread/INFO]:  Current version: 2025.02 with latest being 2025.07!
[15:07:55] [Server thread/INFO]:  
[15:07:55] [Server thread/INFO]:  SpigotMC -> https://norska.dev/r/spigot/uar/
[15:07:55] [Server thread/INFO]:  Polymart -> https://norska.dev/r/polymart/uar/
[15:07:55] [Server thread/INFO]:  BuiltByBit -> https://norska.dev/r/bbb/uar/
[15:07:55] [Server thread/INFO]:  
[15:07:55] [Craft Scheduler Thread - 4 - MythicMobs/INFO]: [Generation] Starting Pack Generator...
[15:07:55] [Craft Scheduler Thread - 4 - MythicMobs/INFO]: [Generation] Downloading vanilla assets pack...
[15:07:56] [ForkJoinPool.commonPool-worker-1/INFO]: [Fadah] Fadah is OUTDATED! Current: 2.8.3 Latest: 3.2.0
[15:07:56] [InteractionVisualizer Async Processing Thread #0/INFO]: [InteractionVisualizer] A new version is available on SpigotMC: 1.18.16
[15:07:56] [InteractionVisualizer Async Processing Thread #0/INFO]: Download: https://www.spigotmc.org/resources/77050
[15:07:58] [Server thread/INFO]: [+] TheDarkMurd3r
[15:07:58] [Server thread/INFO]: TheDarkMurd3r[/        ip         ] logged in with entity id 10065 at ([Spawn]-78.89492837231208, 51.0, -12.699999988079071)
[15:08:05] [Craft Scheduler Thread - 5 - UltraCustomizer/INFO]: [UltraCustomizer] Translations successfully loaded & applied (35 Translation files found)
[15:08:06] [Craft Scheduler Thread - 30 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[15:08:11] [Server thread/INFO]: TheDarkMurd3r issued server command: /gmc
[15:08:14] [Server thread/INFO]: TheDarkMurd3r issued server command: /warp SpawnVecchio
[15:08:17] [Server thread/INFO]: TheDarkMurd3r issued server command: /mm r
[15:08:17] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[15:08:17] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[15:08:17] [Server thread/INFO]: [MythicMobs] Loading Packs...
[15:08:17] [Server thread/INFO]: [MythicMobs] Loading Items...
[15:08:17] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item Zappadelmietitore
[15:08:17] [Server thread/WARN]: [MythicMobs] --| File: /home/Survival/plugins/MythicMobs/items/MietitorediossaItems.yml
[15:08:17] [Server thread/WARN]: [MythicMobs] --| Error Message: A potion effect is configured incorrectly. Format is 'EFFECT DURATION LEVEL'. Line=STRENGTH 1 infinite 1
[15:08:17] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[15:08:17] [Server thread/INFO]: [MythicMobs] Loading Skills...
[15:08:17] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[15:08:17] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[15:08:17] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[15:08:17] [Server thread/INFO]: [MythicMobs] ✓ Loaded 11 mobs.
[15:08:17] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[15:08:17] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[15:08:17] [Server thread/INFO]: [MythicMobs] ✓ Loaded 27 skills.
[15:08:17] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[15:08:17] [Server thread/INFO]: [MythicMobs] ✓ Loaded 44 mythic items.
[15:08:17] [Server thread/INFO]: [MythicMobs] ✓ Loaded 5 drop tables.
[15:08:17] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[15:08:18] [Server thread/INFO]: [MythicMobs] Attached traits to items.
[15:08:18] [Server thread/INFO]: [MythicMobs] Loaded 5 drop tables.
[15:08:18] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[15:08:23] [Craft Scheduler Thread - 4 - MythicMobs/INFO]: [Generation] Generating Custom Blocks...
[15:08:23] [Craft Scheduler Thread - 4 - MythicMobs/INFO]: [Generation] Generating Items...
[15:08:23] [Craft Scheduler Thread - 4 - MythicMobs/INFO]: [Generation] Assigning Legacy CMD Materials...
[15:08:23] [Craft Scheduler Thread - 4 - MythicMobs/INFO]: [Generation] Generating Legacy Definitions...
[15:08:23] [Craft Scheduler Thread - 4 - MythicMobs/INFO]: [Generation] Generating Sounds...
[15:08:23] [Craft Scheduler Thread - 4 - MythicMobs/INFO]: [Generation] Linking Custom Blocks...
[15:08:23] [Craft Scheduler Thread - 4 - MythicMobs/INFO]: [Generation] Generating Atlas...
[15:08:23] [Craft Scheduler Thread - 4 - MythicMobs/INFO]: [Generation] Zipping Pack...
[15:08:23] [Craft Scheduler Thread - 4 - MythicMobs/INFO]: [Generation] Generation Completed in 27416ms
[15:08:30] [Server thread/INFO]: TheDarkMurd3r issued server command: /mm i get
[15:08:32] [Server thread/INFO]: TheDarkMurd3r issued server command: /mm i get Kebab
[15:08:35] [Server thread/INFO]: TheDarkMurd3r issued server command: /mm i get Kebab
[15:08:50] [Server thread/INFO]: TheDarkMurd3r issued server command: /gms
[15:09:58] [Server thread/INFO]: TheDarkMurd3r issued server command: /mm i get Kebab2
[15:10:11] [Server thread/INFO]: TheDarkMurd3r issued server command: /give TheDarkMurd3r LapisLazuli 100
[15:11:13] [Server thread/INFO]: [CrazyEnvoys]: [ALERT] There is an envoy event happening in 1m, 0s.
[15:11:43] [Server thread/INFO]: [CrazyEnvoys]: [ALERT] There is an envoy event happening in 30s.
[15:11:53] [Server thread/INFO]: [CrazyEnvoys]: [ALERT] There is an envoy event happening in 20s.
[15:12:03] [Server thread/INFO]: [CrazyEnvoys]: [ALERT] There is an envoy event happening in 10s.
[15:12:08] [Server thread/INFO]: [CrazyEnvoys]: [ALERT] There is an envoy event happening in 5s.
[15:12:10] [Server thread/INFO]: [CrazyEnvoys]: [ALERT] There is an envoy event happening in 3s.
[15:12:12] [Server thread/INFO]: [CrazyEnvoys]: [ALERT] There is an envoy event happening in 1s.
[15:12:15] [Server thread/INFO]: [CrazyEnvoys]: An envoy event has just started. 19 crates have spawned around spawn for 5m.