Paste #131193: Holograms are not visible in 1.21.4

Date: 2025/02/22 16:02:34 UTC-08: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


[00:00:01] [Server thread/INFO]: [Skript] Loaded 233186 aliases in 12663ms
[00:00:02] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[00:00:02] [Server thread/INFO]: [SCore] Enabling SCore v5.25.2.9
[00:00:02] [Server thread/INFO]: ================ SCore ================
[00:00:02] [Server thread/INFO]: SCore is running on Folia
[00:00:02] [Server thread/INFO]: SCore is running on Paper or fork
[00:00:02] [Server thread/INFO]: SCore Version of the server 1.21.4-144-edacfdf (MC: 1.21.4) !
[00:00:02] [Server thread/INFO]: SCore ExecutableItems hooked !  (7.25.2.9) Load After
[00:00:02] [Server thread/INFO]: SCore ExecutableBlocks hooked !  (5.25.2.9) Load After
[00:00:02] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.6)  Load Before
[00:00:02] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.13-beta-2+5c4848b)  Load Before
[00:00:02] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-b131)  Load Before
[00:00:02] [Server thread/INFO]: SCore Multiverse-Core hooked !  (4.3.15-SNAPSHOT)  Load Before
[00:00:02] [Server thread/INFO]: SCore CoreProtect hooked !  (23)  Load Before
[00:00:02] [Server thread/INFO]: SCore Factions hooked !  (1.6.9.5-U0.7.4) Load After
[00:00:02] [Server thread/INFO]: SCore ProtocolLib hooked !
[00:00:02] [Server thread/INFO]: SCore Locale setup: EN
[00:00:02] [Server thread/INFO]: SCore NBTAPI hooked !  (2.14.1)  Load Before
[00:00:02] [Server thread/INFO]: SCore MythicMobs hooked !  (5.8.0-2df54aca) Load After
[00:00:02] [Server thread/INFO]: SCore DecentHolograms hooked !  (2.8.14)  Load Before
[00:00:02] [Server thread/INFO]: SCore RoseStacker hooked !  (1.5.31) Load After
[00:00:02] [Server thread/INFO]: SCore ProtectionStones hooked !  (2.10.5) Load After
[00:00:02] [Server thread/INFO]: SCore TAB hooked !  (5.0.7) Load After
[00:00:02] [Server thread/INFO]: SCore WorldEdit hooked !  (2.12.4-SNAPSHOT-1040;6a8ea4c)  Load Before
[00:00:02] [Server thread/INFO]: SCore Language of the editor setup on EN
[00:00:02] [Server thread/INFO]: SCore Language for in-game messages setup on EN
[00:00:02] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[00:00:02] [Server thread/INFO]: SCore Connection to the db...
[00:00:02] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[00:00:02] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[00:00:02] [Server thread/INFO]: SCore Creating table Commands if not exists...
[00:00:02] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[00:00:02] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[00:00:02] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[00:00:02] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[00:00:02] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[00:00:02] [Server thread/INFO]: SCore SCore loaded 1 variables from local files !
[00:00:02] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[00:00:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: SCore [1.0.0]
[00:00:02] [Server thread/INFO]: ================ SCore ================
[00:00:02] [Server thread/INFO]: [Factions] Enabling Factions v1.6.9.5-U0.7.4
[00:00:03] [Server thread/INFO]: [Factions] === Starting up! ===
[00:00:03] [Server thread/INFO]: [Factions] 
[00:00:03] [Server thread/INFO]: [Factions] Factions UUID!
[00:00:03] [Server thread/INFO]: [Factions] Version 1.6.9.5-U0.7.4
[00:00:03] [Server thread/INFO]: [Factions] 
[00:00:03] [Server thread/INFO]: [Factions] Need support? https://factions.support/help/
[00:00:03] [Server thread/INFO]: [Factions] 
[00:00:03] [Server thread/INFO]: [Factions] Detected Minecraft 1.21.4
[00:00:03] [Server thread/INFO]: [Factions] 
[00:00:03] [Server thread/INFO]: [Factions] Server UUID 95f0862d-4120-4fac-afac-00c80015d32d
[00:00:03] [Server thread/INFO]: [Factions] Loaded 1686 material mappings.
[00:00:03] [Server thread/INFO]: [Factions] Loaded 37 players in 9 factions with 0 claims
[00:00:03] [Server thread/INFO]: [Factions] Using POWER for land/raid control. Enabling power commands.
[00:00:03] [Server thread/INFO]: [Factions] Enabling /f fly command
[00:00:03] [Server thread/INFO]: [Factions] Using DUST as the ParticleEffect for /f sc
[00:00:03] [Server thread/INFO]: [Factions] Found and connected to Essentials
[00:00:03] [Server thread/INFO]: [Factions] Based on main.conf will delete Essentials player homes in their old faction when they leave
[00:00:03] [Server thread/INFO]: [Factions] Using Essentials for teleportation
[00:00:03] [Server thread/INFO]: [Factions] Successfully hooked into LuckPerms for permission contexts!
[00:00:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: factionsuuid [1.6.9.5-U0.7.4]
[00:00:03] [Server thread/INFO]: [Factions] Successfully registered placeholders with PlaceholderAPI.
[00:00:03] [Server thread/INFO]: [Factions] Found support for WorldGuard version 7.0.13-beta-2+5c4848b
[00:00:03] [Server thread/INFO]: [Factions] === Initial start took 337ms! ===
[00:00:03] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[00:00:03] [Server thread/INFO]: [Votifier] Loaded token for website: default
[00:00:03] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[00:00:03] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[00:00:03] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0%0]:30001.
[00:00:03] [Server thread/INFO]: [AuthMe] Enabling AuthMe v5.6.0-beta2-b2453
[00:00:03] [Server thread/INFO]: [AuthMe] Connection arguments loaded, Hikari ConnectionPool ready!
[00:00:03] [Server thread/ERROR]: [AuthMe] [STDERR] [Server thread] INFO fr.xephi.authme.libs.com.zaxxer.hikari.HikariDataSource - AuthMeMYSQLPool - Starting...
[00:00:03] [Server thread/WARN]: Nag author(s): '[Xephi, sgdc3, DNx5, timvisee, games647, ljacqu, Gnat008]' of 'AuthMe v5.6.0-beta2-b2453' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[00:00:04] [Server thread/ERROR]: [AuthMe] [STDERR] [Server thread] INFO fr.xephi.authme.libs.com.zaxxer.hikari.HikariDataSource - AuthMeMYSQLPool - Start completed.
[00:00:07] [Server thread/INFO]: [AuthMe] MySQL setup finished
[00:00:07] [Server thread/INFO]: [AuthMe] Hooked into LuckPerms!
[00:00:07] [Server thread/INFO]: [AuthMe] Hooked successfully into Essentials
[00:00:07] [Server thread/INFO]: [AuthMe] Hooked successfully into Multiverse-Core
[00:00:07] [Server thread/WARN]: [AuthMe] Note: Hooks.bungeecord is set to false but your server appears to be running in bungeecord mode (see your spigot.yml). In order to allow the datasource caching and the AuthMeBungee add-on to work properly you have to enable this option!
[00:00:07] [Server thread/INFO]: [AuthMe] AuthMe 5.6.0-beta2 build n.2453 successfully enabled!
[00:00:07] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.8.0-2df54aca
[00:00:07] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.21.4)...
[00:00:07] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[00:00:08] [Server thread/INFO]: [MythicMobs] Mythic Citizens Support has been enabled!
[00:00:08] [Server thread/INFO]: [MythicMobs] Mythic LibsDisguises Support has been enabled!
[00:00:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[00:00:08] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[00:00:08] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[00:00:08] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[00:00:08] [Server thread/INFO]: [MythicMobs] Base directory /home/container/plugins/MythicMobs/data
[00:00:08] [Server thread/INFO]: [MythicMobs] Module directory /home/container/plugins/MythicMobs/data/worlds
[00:00:09] [Server thread/INFO]: [MythicMobs] Loading Packs...
[00:00:10] [Server thread/INFO]: [MythicMobs] Loading Items...
[00:00:10] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[00:00:10] [Server thread/INFO]: [MythicMobs] Loading Skills...
[00:00:10] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[00:00:10] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[00:00:10] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[00:00:10] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[00:00:10] [Server thread/WARN]: [MythicMobs] --| Mob: SkeletonKing | File: /home/container/plugins/MythicMobs/mobs/ExampleMobs.yml
[00:00:10] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill SummonSkeletons
[00:00:10] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=SummonSkeletons}
[00:00:10] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[00:00:10] [Server thread/WARN]: [MythicMobs] --| Mob: SkeletonKing | File: /home/container/plugins/MythicMobs/mobs/ExampleMobs.yml
[00:00:10] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill SmashAttack
[00:00:10] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=SmashAttack}
[00:00:10] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[00:00:10] [Server thread/WARN]: [MythicMobs] --| Mob: AngrySludge | File: /home/container/plugins/MythicMobs/mobs/ExampleMobs.yml
[00:00:10] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill AngrySludgePoison
[00:00:10] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=AngrySludgePoison}
[00:00:10] [Server thread/INFO]: [MythicMobs] ✓ Loaded 25 mobs.
[00:00:10] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 vanilla mob overrides.
[00:00:10] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[00:00:10] [Server thread/INFO]: [MythicMobs] ✓ Loaded 43 skills.
[00:00:10] [Server thread/INFO]: [MythicMobs] ✓ Loaded 10 random spawns.
[00:00:10] [Server thread/INFO]: [MythicMobs] ✓ Loaded 17 mythic items.
[00:00:10] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[00:00:10] [Server thread/INFO]: [MythicMobs] ✓ Loaded 5 mob spawners.
[00:00:10] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[00:00:10] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[00:00:10] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.8.0 ( build 2df54aca ) has been successfully loaded!
[00:00:10] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.23.3
[00:00:10] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
[00:00:10] [Server thread/INFO]: [Shopkeepers] Loading the data of 3 shopkeepers ...
[00:00:10] [Server thread/INFO]: [TAB] Enabling TAB v5.0.7
[00:00:10] [Server thread/INFO]: [TAB] Loaded NMS hook in 18ms
[00:00:10] [Server thread/INFO]: [TAB] Enabled in 126ms
[00:00:10] [Server thread/INFO]: [zSchedulers] Enabling zSchedulers v1.0.8
[00:00:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: zschedulers [1.0.8]
[00:00:10] [Server thread/INFO]: [zSchedulers v1.0.8] === ENABLE START ===
[00:00:10] [Server thread/INFO]: [zSchedulers v1.0.8] Plugin Version V1.0.8
[00:00:10] [Server thread/INFO]: [zSchedulers v1.0.8] /home/container/plugins/zSchedulers/config.json loaded successfully !
[00:00:10] [Server thread/INFO]: [zSchedulers v1.0.8] Scheduler with name AvanzadaDelBosque will fun at java.util.GregorianCalendar[time=1740873600000,areFieldsSet=true,areAllFieldsSet=true,lenient=true,zone=sun.util.calendar.ZoneInfo[id="UTC",offset=0,dstSavings=0,useDaylight=false,transitions=0,lastRule=null],firstDayOfWeek=1,minimalDaysInFirstWeek=1,ERA=1,YEAR=2025,MONTH=2,WEEK_OF_YEAR=10,WEEK_OF_MONTH=2,DAY_OF_MONTH=2,DAY_OF_YEAR=61,DAY_OF_WEEK=1,DAY_OF_WEEK_IN_MONTH=1,AM_PM=0,HOUR=0,HOUR_OF_DAY=0,MINUTE=0,SECOND=0,MILLISECOND=0,ZONE_OFFSET=0,DST_OFFSET=0] (1740873600000ms)
[00:00:10] [Server thread/INFO]: [zSchedulers v1.0.8] Scheduler with name AvanzadaFlotante will fun at java.util.GregorianCalendar[time=1740873600000,areFieldsSet=true,areAllFieldsSet=true,lenient=true,zone=sun.util.calendar.ZoneInfo[id="UTC",offset=0,dstSavings=0,useDaylight=false,transitions=0,lastRule=null],firstDayOfWeek=1,minimalDaysInFirstWeek=1,ERA=1,YEAR=2025,MONTH=2,WEEK_OF_YEAR=10,WEEK_OF_MONTH=2,DAY_OF_MONTH=2,DAY_OF_YEAR=61,DAY_OF_WEEK=1,DAY_OF_WEEK_IN_MONTH=1,AM_PM=0,HOUR=0,HOUR_OF_DAY=0,MINUTE=0,SECOND=0,MILLISECOND=0,ZONE_OFFSET=0,DST_OFFSET=0] (1740873600000ms)
[00:00:10] [Server thread/INFO]: [zSchedulers v1.0.8] Scheduler with name PuertaDelEste will fun at java.util.GregorianCalendar[time=1740873600000,areFieldsSet=true,areAllFieldsSet=true,lenient=true,zone=sun.util.calendar.ZoneInfo[id="UTC",offset=0,dstSavings=0,useDaylight=false,transitions=0,lastRule=null],firstDayOfWeek=1,minimalDaysInFirstWeek=1,ERA=1,YEAR=2025,MONTH=2,WEEK_OF_YEAR=10,WEEK_OF_MONTH=2,DAY_OF_MONTH=2,DAY_OF_YEAR=61,DAY_OF_WEEK=1,DAY_OF_WEEK_IN_MONTH=1,AM_PM=0,HOUR=0,HOUR_OF_DAY=0,MINUTE=0,SECOND=0,MILLISECOND=0,ZONE_OFFSET=0,DST_OFFSET=0] (1740873600000ms)
[00:00:10] [Server thread/INFO]: [zSchedulers v1.0.8] Scheduler with name TorreCentral will fun at java.util.GregorianCalendar[time=1740873600000,areFieldsSet=true,areAllFieldsSet=true,lenient=true,zone=sun.util.calendar.ZoneInfo[id="UTC",offset=0,dstSavings=0,useDaylight=false,transitions=0,lastRule=null],firstDayOfWeek=1,minimalDaysInFirstWeek=1,ERA=1,YEAR=2025,MONTH=2,WEEK_OF_YEAR=10,WEEK_OF_MONTH=2,DAY_OF_MONTH=2,DAY_OF_YEAR=61,DAY_OF_WEEK=1,DAY_OF_WEEK_IN_MONTH=1,AM_PM=0,HOUR=0,HOUR_OF_DAY=0,MINUTE=0,SECOND=0,MILLISECOND=0,ZONE_OFFSET=0,DST_OFFSET=0] (1740873600000ms)
[00:00:10] [Server thread/INFO]: [zSchedulers v1.0.8] Scheduler with name AvanzadaDelBosquemiercoles will fun at java.util.GregorianCalendar[time=1740614400000,areFieldsSet=true,areAllFieldsSet=true,lenient=true,zone=sun.util.calendar.ZoneInfo[id="UTC",offset=0,dstSavings=0,useDaylight=false,transitions=0,lastRule=null],firstDayOfWeek=1,minimalDaysInFirstWeek=1,ERA=1,YEAR=2025,MONTH=1,WEEK_OF_YEAR=9,WEEK_OF_MONTH=5,DAY_OF_MONTH=27,DAY_OF_YEAR=58,DAY_OF_WEEK=5,DAY_OF_WEEK_IN_MONTH=4,AM_PM=0,HOUR=0,HOUR_OF_DAY=0,MINUTE=0,SECOND=0,MILLISECOND=0,ZONE_OFFSET=0,DST_OFFSET=0] (1740614400000ms)
[00:00:10] [Server thread/INFO]: [zSchedulers v1.0.8] Scheduler with name AvanzadaFlotantemiercoles will fun at java.util.GregorianCalendar[time=1740614400000,areFieldsSet=true,areAllFieldsSet=true,lenient=true,zone=sun.util.calendar.ZoneInfo[id="UTC",offset=0,dstSavings=0,useDaylight=false,transitions=0,lastRule=null],firstDayOfWeek=1,minimalDaysInFirstWeek=1,ERA=1,YEAR=2025,MONTH=1,WEEK_OF_YEAR=9,WEEK_OF_MONTH=5,DAY_OF_MONTH=27,DAY_OF_YEAR=58,DAY_OF_WEEK=5,DAY_OF_WEEK_IN_MONTH=4,AM_PM=0,HOUR=0,HOUR_OF_DAY=0,MINUTE=0,SECOND=0,MILLISECOND=0,ZONE_OFFSET=0,DST_OFFSET=0] (1740614400000ms)
[00:00:10] [Server thread/INFO]: [zSchedulers v1.0.8] Scheduler with name PuertaDelEstemiercoles will fun at java.util.GregorianCalendar[time=1740614400000,areFieldsSet=true,areAllFieldsSet=true,lenient=true,zone=sun.util.calendar.ZoneInfo[id="UTC",offset=0,dstSavings=0,useDaylight=false,transitions=0,lastRule=null],firstDayOfWeek=1,minimalDaysInFirstWeek=1,ERA=1,YEAR=2025,MONTH=1,WEEK_OF_YEAR=9,WEEK_OF_MONTH=5,DAY_OF_MONTH=27,DAY_OF_YEAR=58,DAY_OF_WEEK=5,DAY_OF_WEEK_IN_MONTH=4,AM_PM=0,HOUR=0,HOUR_OF_DAY=0,MINUTE=0,SECOND=0,MILLISECOND=0,ZONE_OFFSET=0,DST_OFFSET=0] (1740614400000ms)
[00:00:10] [Server thread/INFO]: [zSchedulers v1.0.8] Scheduler with name TorreCentralmiercoles will fun at java.util.GregorianCalendar[time=1740614400000,areFieldsSet=true,areAllFieldsSet=true,lenient=true,zone=sun.util.calendar.ZoneInfo[id="UTC",offset=0,dstSavings=0,useDaylight=false,transitions=0,lastRule=null],firstDayOfWeek=1,minimalDaysInFirstWeek=1,ERA=1,YEAR=2025,MONTH=1,WEEK_OF_YEAR=9,WEEK_OF_MONTH=5,DAY_OF_MONTH=27,DAY_OF_YEAR=58,DAY_OF_WEEK=5,DAY_OF_WEEK_IN_MONTH=4,AM_PM=0,HOUR=0,HOUR_OF_DAY=0,MINUTE=0,SECOND=0,MILLISECOND=0,ZONE_OFFSET=0,DST_OFFSET=0] (1740614400000ms)
[00:00:10] [Server thread/INFO]: [zSchedulers v1.0.8] Scheduler with name beef will fun at java.util.GregorianCalendar[time=?,areFieldsSet=false,areAllFieldsSet=false,lenient=true,zone=sun.util.calendar.ZoneInfo[id="UTC",offset=0,dstSavings=0,useDaylight=false,transitions=0,lastRule=null],firstDayOfWeek=1,minimalDaysInFirstWeek=1,ERA=?,YEAR=2025,MONTH=1,WEEK_OF_YEAR=?,WEEK_OF_MONTH=?,DAY_OF_MONTH=23,DAY_OF_YEAR=?,DAY_OF_WEEK=?,DAY_OF_WEEK_IN_MONTH=?,AM_PM=0,HOUR=24,HOUR_OF_DAY=24,MINUTE=0,SECOND=0,MILLISECOND=?,ZONE_OFFSET=?,DST_OFFSET=?] (1740355200000ms)
[00:00:10] [Server thread/INFO]: [zSchedulers v1.0.8] Scheduler with name beef2 will fun at java.util.GregorianCalendar[time=?,areFieldsSet=false,areAllFieldsSet=false,lenient=true,zone=sun.util.calendar.ZoneInfo[id="UTC",offset=0,dstSavings=0,useDaylight=false,transitions=0,lastRule=null],firstDayOfWeek=1,minimalDaysInFirstWeek=1,ERA=?,YEAR=2025,MONTH=1,WEEK_OF_YEAR=?,WEEK_OF_MONTH=?,DAY_OF_MONTH=23,DAY_OF_YEAR=?,DAY_OF_WEEK=?,DAY_OF_WEEK_IN_MONTH=?,AM_PM=0,HOUR=24,HOUR_OF_DAY=24,MINUTE=30,SECOND=0,MILLISECOND=?,ZONE_OFFSET=?,DST_OFFSET=?] (1740357000000ms)
[00:00:10] [Server thread/INFO]: [zSchedulers v1.0.8] Scheduler with name beef3 will fun at java.util.GregorianCalendar[time=?,areFieldsSet=false,areAllFieldsSet=false,lenient=true,zone=sun.util.calendar.ZoneInfo[id="UTC",offset=0,dstSavings=0,useDaylight=false,transitions=0,lastRule=null],firstDayOfWeek=1,minimalDaysInFirstWeek=1,ERA=?,YEAR=2025,MONTH=1,WEEK_OF_YEAR=?,WEEK_OF_MONTH=?,DAY_OF_MONTH=23,DAY_OF_YEAR=?,DAY_OF_WEEK=?,DAY_OF_WEEK_IN_MONTH=?,AM_PM=0,HOUR=25,HOUR_OF_DAY=25,MINUTE=0,SECOND=0,MILLISECOND=?,ZONE_OFFSET=?,DST_OFFSET=?] (1740358800000ms)
[00:00:10] [Server thread/INFO]: [zSchedulers v1.0.8] Scheduler with name koth_en30 will fun at java.util.GregorianCalendar[time=1740871800000,areFieldsSet=true,areAllFieldsSet=true,lenient=true,zone=sun.util.calendar.ZoneInfo[id="UTC",offset=0,dstSavings=0,useDaylight=false,transitions=0,lastRule=null],firstDayOfWeek=1,minimalDaysInFirstWeek=1,ERA=1,YEAR=2025,MONTH=2,WEEK_OF_YEAR=9,WEEK_OF_MONTH=1,DAY_OF_MONTH=1,DAY_OF_YEAR=60,DAY_OF_WEEK=7,DAY_OF_WEEK_IN_MONTH=1,AM_PM=1,HOUR=11,HOUR_OF_DAY=23,MINUTE=30,SECOND=0,MILLISECOND=0,ZONE_OFFSET=0,DST_OFFSET=0] (1740871800000ms)
[00:00:10] [Server thread/INFO]: [zSchedulers v1.0.8] Scheduler with name koth_en30miercoles will fun at java.util.GregorianCalendar[time=1740612600000,areFieldsSet=true,areAllFieldsSet=true,lenient=true,zone=sun.util.calendar.ZoneInfo[id="UTC",offset=0,dstSavings=0,useDaylight=false,transitions=0,lastRule=null],firstDayOfWeek=1,minimalDaysInFirstWeek=1,ERA=1,YEAR=2025,MONTH=1,WEEK_OF_YEAR=9,WEEK_OF_MONTH=5,DAY_OF_MONTH=26,DAY_OF_YEAR=57,DAY_OF_WEEK=4,DAY_OF_WEEK_IN_MONTH=4,AM_PM=1,HOUR=11,HOUR_OF_DAY=23,MINUTE=30,SECOND=0,MILLISECOND=0,ZONE_OFFSET=0,DST_OFFSET=0] (1740612600000ms)
[00:00:10] [Server thread/INFO]: [zSchedulers v1.0.8] Scheduler with name discord_koth_announcer will fun at java.util.GregorianCalendar[time=1740439020000,areFieldsSet=true,areAllFieldsSet=true,lenient=true,zone=sun.util.calendar.ZoneInfo[id="UTC",offset=0,dstSavings=0,useDaylight=false,transitions=0,lastRule=null],firstDayOfWeek=1,minimalDaysInFirstWeek=1,ERA=1,YEAR=2025,MONTH=1,WEEK_OF_YEAR=9,WEEK_OF_MONTH=5,DAY_OF_MONTH=24,DAY_OF_YEAR=55,DAY_OF_WEEK=2,DAY_OF_WEEK_IN_MONTH=4,AM_PM=1,HOUR=11,HOUR_OF_DAY=23,MINUTE=17,SECOND=0,MILLISECOND=0,ZONE_OFFSET=0,DST_OFFSET=0] (1740439020000ms)
[00:00:10] [Server thread/INFO]: [zSchedulers v1.0.8] Loading 0 inventories
[00:00:10] [Server thread/INFO]: [zSchedulers v1.0.8] Loading 1 commands
[00:00:10] [Server thread/INFO]: [zSchedulers v1.0.8] === ENABLE DONE (30ms) ===
[00:00:10] [Server thread/INFO]: [RoseStacker] Enabling RoseStacker v1.5.31
[00:00:11] [Server thread/WARN]: [RoseStacker] Locale file 'es_ES.yml' not found, using default locale
[00:00:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rosestacker [1.5.31]
[00:00:11] [Server thread/INFO]: [ProtectionStones] Enabling ProtectionStones v2.10.5
[00:00:11] [Server thread/INFO]: [WorldGuard] Registering session handler dev.espi.protectionstones.flags.GreetingFlagHandler
[00:00:11] [Server thread/INFO]: [WorldGuard] Registering session handler dev.espi.protectionstones.flags.FarewellFlagHandler
[00:00:11] [Server thread/INFO]: [ProtectionStones] PlaceholderAPI support enabled!
[00:00:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: protectionstones [2.10.5]
[00:00:11] [Server thread/INFO]: [ProtectionStones] LuckPerms support enabled!
[00:00:11] [Server thread/INFO]: [ProtectionStones] Protection Stone Blocks:
[00:00:11] [Server thread/INFO]: [ProtectionStones] - BEDROCK (UNIDAD)
[00:00:11] [Server thread/INFO]: [ProtectionStones] - COPPER_ORE (COBRE)
[00:00:11] [Server thread/INFO]: [ProtectionStones] - GOLD_BLOCK (GOLDBLOCK)
[00:00:11] [Server thread/INFO]: [ProtectionStones] - EMERALD_ORE (ESMERALDA)
[00:00:11] [Server thread/INFO]: [ProtectionStones] - NETHERITE_BLOCK (NETHERITA)
[00:00:11] [Server thread/INFO]: [ProtectionStones] - COAL_ORE (INICIAL_NUEVA)
[00:00:11] [Server thread/INFO]: [ProtectionStones] - OBSIDIAN (koth)
[00:00:11] [Server thread/INFO]: [ProtectionStones] - ANCIENT_DEBRIS (NETHERITE)
[00:00:11] [Server thread/INFO]: [ProtectionStones] - IRON_ORE (HIERRO)
[00:00:11] [Server thread/INFO]: [ProtectionStones] - RED_BANNER (64)
[00:00:11] [Server thread/INFO]: [ProtectionStones] - GOLD_ORE (ORO)
[00:00:11] [Server thread/INFO]: [ProtectionStones] - COAL_BLOCK (INICIAL)
[00:00:11] [Server thread/INFO]: [ProtectionStones] - DIAMOND_ORE (DIAMANTE)
[00:00:12] [Server thread/INFO]: [ProtectionStones] Building region cache...
[00:00:12] [Server thread/INFO]: [ProtectionStones] Building UUID cache... (if slow change async-load-uuid-cache in the config to true)
[00:00:12] [Server thread/INFO]: [ProtectionStones] Checking if PS regions have been updated to UUIDs...
[00:00:12] [Server thread/INFO]: [ProtectionStones] ProtectionStones has successfully started!
[00:00:12] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.4-SNAPSHOT
[00:00:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[00:00:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[00:00:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[00:00:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[00:00:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[00:00:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[00:00:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[00:00:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[00:00:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[00:00:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[00:00:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[00:00:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[00:00:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[00:00:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[00:00:12] [Server thread/INFO]: [WorldGuardExtraFlags] Loading chunks for region dungeon located in eventos due to chunk-unload flag being deny
[00:00:12] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.29.0
[00:00:12] [Server thread/INFO]: [ExecutableItems] Enabling ExecutableItems v7.25.2.9
[00:00:12] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[00:00:12] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld in the option disableItemsPerWorld
[00:00:12] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld2 in the option disableItemsPerWorld
[00:00:13] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[00:00:13] [Server thread/INFO]: ExecutableItems ERROR, Invalid command (Command: DAMAGE 10 %entity_uuid%)  (ID: (Item: Guardian_Cabeza)) >> A SCommand contains an invalid boolean: %entity_uuid% for command: DAMAGE {number} [amplified If Strength Effect, true or false] [amplified with attack attribute, true or false] [damageType]
[00:00:13] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[00:00:13] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the World value of ifInWorld from config, value: world (Item: Prem_World_Teleporter)
[00:00:13] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the World value of ifInWorld from config, value: world_nether (Item: Prem_World_Teleporter)
[00:00:13] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the World value of ifInWorld from config, value: world_the_end (Item: Prem_World_Teleporter)
[00:00:13] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Material + GROUPS value of blocks from config, value: GRASS (Item: Prem_Grass_Cutter).(detailedBlocks) >> Check the wiki if you want the list of materials and groups
[00:00:13] [Server thread/INFO]: ExecutableItems Amount of Executable Items configurations loaded: 215
[00:00:13] [Server thread/INFO]: ExecutableItems Items with display conditions :  
[00:00:13] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[00:00:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ExecutableItems [1.0.0]
[00:00:13] [Server thread/INFO]: [MarriageMaster] Enabling MarriageMaster v2.7.8
[00:00:13] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[00:00:13] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console channel ID was invalid, not forwarding console output
[00:00:13] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Saved linked accounts in 4ms
[00:00:13] [Server thread/INFO]: [MarriageMaster] Starting Marriage Master in standalone mode!
[00:00:13] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[00:00:13] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling SuperVanish hook
[00:00:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[00:00:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[00:00:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling voice module
[00:00:14] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 7 alerts registered
[00:00:14] [Server thread/INFO]: [MarriageMaster] Config file successfully loaded.
[00:00:14] [Server thread/INFO]: [MarriageMaster] No compatible backpack plugin found.
[00:00:14] [Server thread/INFO]: [MarriageMaster] Language file successfully loaded. Language: English  Author: GeorgH93
[00:00:14] [Server thread/INFO]: [at.pcgamingfreaks.MarriageMasterStandalone.libs.com.zaxxer.hikari.HikariDataSource] MarriageMaster-Connection-Pool - Starting...
[00:00:14] [Server thread/INFO]: [at.pcgamingfreaks.MarriageMasterStandalone.libs.com.zaxxer.hikari.HikariDataSource] MarriageMaster-Connection-Pool - Start completed.
[00:00:14] [Thread-46/INFO]: [MarriageMaster] Loading marriages ...
[00:00:14] [Thread-46/INFO]: [MarriageMaster] Marriages loaded
[00:00:14] [Thread-46/INFO]: [MarriageMaster] Loading priests ...
[00:00:14] [Thread-46/INFO]: [MarriageMaster] Priests loaded
[00:00:14] [Thread-46/INFO]: [MarriageMaster] Loading players ...
[00:00:14] [Thread-46/INFO]: [MarriageMaster] Players loaded
[00:00:14] [Thread-46/INFO]: [MarriageMaster] Loading marriages into cache ...
[00:00:14] [Thread-46/INFO]: [MarriageMaster] Marriages loaded into cache
[00:00:14] [Thread-46/INFO]: [MarriageMaster] Loading homes ...
[00:00:14] [Thread-46/INFO]: [MarriageMaster] Homes loaded
[00:00:14] [Server thread/INFO]: [MarriageMaster] Item name language file successfully loaded. Language: english  Author: GeorgH93
[00:00:14] [Server thread/INFO]: [MarriageMaster] Loading item translations ...
[00:00:14] [Server thread/INFO]: [MarriageMaster] Finished loading item translations for 826 items.
[00:00:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: marriagemaster [2.7.8]
[00:00:14] [Server thread/INFO]: [MarriageMaster] PlaceholderAPI hook was successfully registered!
[00:00:14] [Server thread/INFO]: [MarriageMaster]  Marriage Master has been enabled!  :) 
[00:00:14] [Server thread/INFO]: [AdvancedBan] Enabling AdvancedBan v2.3.0
[00:00:14] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[00:00:14] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[00:00:14] [Server thread/INFO]: 
 
[]=====[Enabling AdvancedBan]=====[]
| Information:
|   Name: AdvancedBan
|   Developer: Leoko
|   Version: 2.3.0
|   Storage: MySQL (external)
| Support:
|   Github: https://github.com/DevLeoko/AdvancedBan/issues
|   Discord: https://discord.gg/ycDG6rS
| Twitter: @LeokoGar
| Update:
|   You have the newest version
[]================================[]
 
[00:00:14] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.18.2
[00:00:14] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[00:00:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[00:00:15] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[00:00:15] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[00:00:15] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.18.2
[00:00:15] [Server thread/WARN]: [VotingPlugin] No vote has been recieved from https://topminecraft.io, may be an invalid service site. Please read: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[00:00:15] [Server thread/INFO]: [SilkSpawners_v2] Enabling SilkSpawners_v2 v2.3.2
[00:00:15] [Server thread/INFO]: [SilkSpawners] Loading configuration...
[00:00:15] [Server thread/INFO]: [SilkSpawners] Configuration is up to date
[00:00:15] [Server thread/INFO]: [SilkSpawners] [INFO]: Starting SilkSpawners v2.3.2
[00:00:15] [Thread-48/INFO]: [SilkSpawners] [INFO]: Checking for updates
[00:00:15] [Server thread/INFO]: [SilkSpawners] [INFO]: Loading server platform
[00:00:15] [Server thread/INFO]: [SilkSpawners] [INFO]: Initialized plugin for bukkit server
[00:00:15] [Server thread/INFO]: [SilkSpawners] [INFO]: Loading Cross-Version support
[00:00:15] [Server thread/INFO]: [SilkSpawners] [INFO]: Loaded support for version 1.21.4
[00:00:15] [Server thread/INFO]: [SilkSpawners] [INFO]: Loading locale file
[00:00:15] [Server thread/INFO]: [SilkSpawners] [INFO]: Starting bStats integration
[00:00:15] [Server thread/INFO]: [SilkSpawners] [INFO]: Registering listeners
[00:00:15] [Server thread/INFO]: [SilkSpawners] [INFO]: Registering commands
[00:00:15] [Server thread/INFO]: [SilkSpawners] [INFO]: Started SilkSpawners v2.3.2
[00:00:15] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v2.137.0
[00:00:15] [Server thread/INFO]:  
[00:00:15] [Server thread/INFO]: =============================
[00:00:15] [Server thread/INFO]: AuctionHouse 2.137.0 by Kiran Hart
[00:00:15] [Server thread/INFO]: Action: Enabling...
[00:00:15] [Server thread/INFO]: [AuctionHouse] [STDOUT] [Spigotunlocked.com] - COSMO
[00:00:15] [Server thread/WARN]: Nag author(s): '[Kiran Hart]' of 'AuctionHouse v2.137.0' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[00:00:15] [Server thread/INFO]: [TweetyCore] Hooked into AuctionHouse.
[00:00:15] [Thread-48/INFO]: [SilkSpawners] [INFO]: The plugin is up to date (Current release v2.3.2)
[00:00:16] [pool-176-thread-1/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[00:00:16] [pool-176-thread-1/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[00:00:16] [pool-176-thread-1/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AuctionHouse' to create a bStats instance!
[00:00:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auctionhouse [1.0.0]
[00:00:16] [Server thread/INFO]: =============================
[00:00:16] [Server thread/INFO]:  
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.2.3
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.follow_range missed input: {"minecraft:attribute_modifiers":{modifiers:[{amount:0.1d,id:"minecraft:90787d5e-1940-4722-a91e-f0ba37f7c29d",operation:"add_value",type:"minecraft:generic.follow_range"}],show_in_tooltip:0b}}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.follow_range missed input: {"minecraft:attribute_modifiers":{modifiers:[{amount:0.1d,id:"minecraft:90787d5e-1940-4722-a91e-f0ba37f7c29d",operation:"add_value",type:"minecraft:generic.follow_range"}],show_in_tooltip:0b}}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.max_health; Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.max_health missed input: {"minecraft:attribute_modifiers":{modifiers:[{amount:4.0d,id:"minecraft:c638a924-7d73-4ead-8f33-a6c8c59b6a54",operation:"add_value",slot:"offhand",type:"minecraft:generic.max_health"},{amount:4.0d,id:"minecraft:dd0e1e8a-a512-443e-ae76-1a9cd191facc",operation:"add_value",slot:"mainhand",type:"minecraft:generic.max_health"}]}}; Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.max_health; Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.max_health missed input: {"minecraft:attribute_modifiers":{modifiers:[{amount:4.0d,id:"minecraft:c638a924-7d73-4ead-8f33-a6c8c59b6a54",operation:"add_value",slot:"offhand",type:"minecraft:generic.max_health"},{amount:4.0d,id:"minecraft:dd0e1e8a-a512-443e-ae76-1a9cd191facc",operation:"add_value",slot:"mainhand",type:"minecraft:generic.max_health"}]}} missed input: {"minecraft:container":[{item:{components:{"minecraft:custom_data":{PublicBukkitValues:{"executableitems:ei-id":"lv60","score:usage":1}},"minecraft:custom_name":'{"extra":[{"bold":false,"color":"dark_aqua","italic":false,"obfuscated":false,"strikethrough":false,"text":"☄ ","underlined":false},{"bold":true,"color":"green","italic":true,"text":"Botella ","underlined":true},{"bold":true,"color":"gold","italic":true,"text":"LVL-UP ","underlined":true},{"bold":false,"color":"dark_aqua","italic":false,"text":"☄","underlined":false}],"text":""}',"minecraft:enchantment_glint_override":1b,"minecraft:hide_additional_tooltip":{},"minecraft:lore":['{"extra":[{"bold":false,"color":"dark_gray","italic":false,"obfuscated":false,"strikethrough":true,"text":"------------------------","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"gray","italic":false,"obfuscated":false,"strikethrough":false,"text":"","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"dark_aqua","italic":false,"obfuscated":false,"strikethrough":false,"text":"➤ ","underlined":false},{"color":"aqua","italic":true,"text":"Utilizalo para obtener al momento:"}],"text":""}','{"extra":[{"bold":true,"color":"gold","italic":false,"obfuscated":false,"strikethrough":false,"text":"60 niveles","underlined":false},{"bold":false,"color":"aqua","italic":true,"text":" de XP!"}],"text":""}','{"extra":[{"bold":false,"color":"gray","italic":true,"obfuscated":false,"strikethrough":false,"text":"Info:","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"dark_aqua","italic":false,"obfuscated":false,"strikethrough":false,"text":"» ","underlined":false},{"color":"green","italic":false,"text":"Solo contiene 1 uso!"}],"text":""}','{"extra":[{"bold":false,"color":"dark_gray","italic":false,"obfuscated":false,"strikethrough":true,"text":"------------------------","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"gray","italic":true,"obfuscated":false,"strikethrough":false,"text":"Remaining uses: 1","underlined":false}],"text":""}'],"minecraft:potion_contents":{potion:"minecraft:water"}},count:1,id:"minecraft:potion"},slot:0},{item:{components:{"minecraft:custom_data":{PublicBukkitValues:{"executableitems:ei-id":"lv60","score:usage":1}},"minecraft:custom_name":'{"extra":[{"bold":false,"color":"dark_aqua","italic":false,"obfuscated":false,"strikethrough":false,"text":"☄ ","underlined":false},{"bold":true,"color":"green","italic":true,"text":"Botella ","underlined":true},{"bold":true,"color":"gold","italic":true,"text":"LVL-UP ","underlined":true},{"bold":false,"color":"dark_aqua","italic":false,"text":"☄","underlined":false}],"text":""}',"minecraft:enchantment_glint_override":1b,"minecraft:hide_additional_tooltip":{},"minecraft:lore":['{"extra":[{"bold":false,"color":"dark_gray","italic":false,"obfuscated":false,"strikethrough":true,"text":"------------------------","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"gray","italic":false,"obfuscated":false,"strikethrough":false,"text":"","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"dark_aqua","italic":false,"obfuscated":false,"strikethrough":false,"text":"➤ ","underlined":false},{"color":"aqua","italic":true,"text":"Utilizalo para obtener al momento:"}],"text":""}','{"extra":[{"bold":true,"color":"gold","italic":false,"obfuscated":false,"strikethrough":false,"text":"60 niveles","underlined":false},{"bold":false,"color":"aqua","italic":true,"text":" de XP!"}],"text":""}','{"extra":[{"bold":false,"color":"gray","italic":true,"obfuscated":false,"strikethrough":false,"text":"Info:","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"dark_aqua","italic":false,"obfuscated":false,"strikethrough":false,"text":"» ","underlined":false},{"color":"green","italic":false,"text":"Solo contiene 1 uso!"}],"text":""}','{"extra":[{"bold":false,"color":"dark_gray","italic":false,"obfuscated":false,"strikethrough":true,"text":"------------------------","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"gray","italic":true,"obfuscated":false,"strikethrough":false,"text":"Remaining uses: 1","underlined":false}],"text":""}'],"minecraft:potion_contents":{potion:"minecraft:water"}},count:1,id:"minecraft:potion"},slot:1},{item:{components:{"minecraft:custom_data":{PublicBukkitValues:{"executableitems:ei-id":"lv60","score:usage":1}},"minecraft:custom_name":'{"extra":[{"bold":false,"color":"dark_aqua","italic":false,"obfuscated":false,"strikethrough":false,"text":"☄ ","underlined":false},{"bold":true,"color":"green","italic":true,"text":"Botella ","underlined":true},{"bold":true,"color":"gold","italic":true,"text":"LVL-UP ","underlined":true},{"bold":false,"color":"dark_aqua","italic":false,"text":"☄","underlined":false}],"text":""}',"minecraft:enchantment_glint_override":1b,"minecraft:hide_additional_tooltip":{},"minecraft:lore":['{"extra":[{"bold":false,"color":"dark_gray","italic":false,"obfuscated":false,"strikethrough":true,"text":"------------------------","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"gray","italic":false,"obfuscated":false,"strikethrough":false,"text":"","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"dark_aqua","italic":false,"obfuscated":false,"strikethrough":false,"text":"➤ ","underlined":false},{"color":"aqua","italic":true,"text":"Utilizalo para obtener al momento:"}],"text":""}','{"extra":[{"bold":true,"color":"gold","italic":false,"obfuscated":false,"strikethrough":false,"text":"60 niveles","underlined":false},{"bold":false,"color":"aqua","italic":true,"text":" de XP!"}],"text":""}','{"extra":[{"bold":false,"color":"gray","italic":true,"obfuscated":false,"strikethrough":false,"text":"Info:","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"dark_aqua","italic":false,"obfuscated":false,"strikethrough":false,"text":"» ","underlined":false},{"color":"green","italic":false,"text":"Solo contiene 1 uso!"}],"text":""}','{"extra":[{"bold":false,"color":"dark_gray","italic":false,"obfuscated":false,"strikethrough":true,"text":"------------------------","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"gray","italic":true,"obfuscated":false,"strikethrough":false,"text":"Remaining uses: 1","underlined":false}],"text":""}'],"minecraft:potion_contents":{potion:"minecraft:water"}},count:1,id:"minecraft:potion"},slot:2},{item:{components:{"minecraft:custom_data":{PublicBukkitValues:{"executableitems:ei-id":"lv60","score:usage":1}},"minecraft:custom_name":'{"extra":[{"bold":false,"color":"dark_aqua","italic":false,"obfuscated":false,"strikethrough":false,"text":"☄ ","underlined":false},{"bold":true,"color":"green","italic":true,"text":"Botella ","underlined":true},{"bold":true,"color":"gold","italic":true,"text":"LVL-UP ","underlined":true},{"bold":false,"color":"dark_aqua","italic":false,"text":"☄","underlined":false}],"text":""}',"minecraft:enchantment_glint_override":1b,"minecraft:hide_additional_tooltip":{},"minecraft:lore":['{"extra":[{"bold":false,"color":"dark_gray","italic":false,"obfuscated":false,"strikethrough":true,"text":"------------------------","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"gray","italic":false,"obfuscated":false,"strikethrough":false,"text":"","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"dark_aqua","italic":false,"obfuscated":false,"strikethrough":false,"text":"➤ ","underlined":false},{"color":"aqua","italic":true,"text":"Utilizalo para obtener al momento:"}],"text":""}','{"extra":[{"bold":true,"color":"gold","italic":false,"obfuscated":false,"strikethrough":false,"text":"60 niveles","underlined":false},{"bold":false,"color":"aqua","italic":true,"text":" de XP!"}],"text":""}','{"extra":[{"bold":false,"color":"gray","italic":true,"obfuscated":false,"strikethrough":false,"text":"Info:","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"dark_aqua","italic":false,"obfuscated":false,"strikethrough":false,"text":"» ","underlined":false},{"color":"green","italic":false,"text":"Solo contiene 1 uso!"}],"text":""}','{"extra":[{"bold":false,"color":"dark_gray","italic":false,"obfuscated":false,"strikethrough":true,"text":"------------------------","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"gray","italic":true,"obfuscated":false,"strikethrough":false,"text":"Remaining uses: 1","underlined":false}],"text":""}'],"minecraft:potion_contents":{potion:"minecraft:water"}},count:1,id:"minecraft:potion"},slot:3},{item:{components:{"minecraft:custom_data":{PublicBukkitValues:{"executableitems:ei-id":"lv60","score:usage":1}},"minecraft:custom_name":'{"extra":[{"bold":false,"color":"dark_aqua","italic":false,"obfuscated":false,"strikethrough":false,"text":"☄ ","underlined":false},{"bold":true,"color":"green","italic":true,"text":"Botella ","underlined":true},{"bold":true,"color":"gold","italic":true,"text":"LVL-UP ","underlined":true},{"bold":false,"color":"dark_aqua","italic":false,"text":"☄","underlined":false}],"text":""}',"minecraft:enchantment_glint_override":1b,"minecraft:hide_additional_tooltip":{},"minecraft:lore":['{"extra":[{"bold":false,"color":"dark_gray","italic":false,"obfuscated":false,"strikethrough":true,"text":"------------------------","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"gray","italic":false,"obfuscated":false,"strikethrough":false,"text":"","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"dark_aqua","italic":false,"obfuscated":false,"strikethrough":false,"text":"➤ ","underlined":false},{"color":"aqua","italic":true,"text":"Utilizalo para obtener al momento:"}],"text":""}','{"extra":[{"bold":true,"color":"gold","italic":false,"obfuscated":false,"strikethrough":false,"text":"60 niveles","underlined":false},{"bold":false,"color":"aqua","italic":true,"text":" de XP!"}],"text":""}','{"extra":[{"bold":false,"color":"gray","italic":true,"obfuscated":false,"strikethrough":false,"text":"Info:","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"dark_aqua","italic":false,"obfuscated":false,"strikethrough":false,"text":"» ","underlined":false},{"color":"green","italic":false,"text":"Solo contiene 1 uso!"}],"text":""}','{"extra":[{"bold":false,"color":"dark_gray","italic":false,"obfuscated":false,"strikethrough":true,"text":"------------------------","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"gray","italic":true,"obfuscated":false,"strikethrough":false,"text":"Remaining uses: 1","underlined":false}],"text":""}'],"minecraft:potion_contents":{potion:"minecraft:water"}},count:1,id:"minecraft:potion"},slot:4},{item:{components:{"minecraft:attribute_modifiers":{modifiers:[{amount:4.0d,id:"minecraft:c638a924-7d73-4ead-8f33-a6c8c59b6a54",operation:"add_value",slot:"offhand",type:"minecraft:generic.max_health"},{amount:4.0d,id:"minecraft:dd0e1e8a-a512-443e-ae76-1a9cd191facc",operation:"add_value",slot:"mainhand",type:"minecraft:generic.max_health"}]},"minecraft:custom_data":{PublicBukkitValues:{"executableitems:ei-disablestack":"4a653305-41be-47a9-8ed5-227d21139ac7","executableitems:ei-id":"AmuletoDeEnki","score:usage":-1}},"minecraft:custom_name":'{"extra":[{"bold":true,"color":"dark_purple","italic":false,"obfuscated":false,"strikethrough":false,"text":"AMULETO DE ENKI","underlined":false}],"text":""}',"minecraft:enchantment_glint_override":1b,"minecraft:lore":['{"extra":[{"bold":false,"color":"dark_gray","italic":false,"obfuscated":false,"strikethrough":false,"text":"---------------------------------------","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"green","italic":false,"obfuscated":false,"strikethrough":false,"text":"- Permite al jugador recuperarse 1.5 corazones","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"green","italic":false,"obfuscated":false,"strikethrough":false,"text":"con cada golpe realizado con el arma principal.","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"dark_gray","italic":false,"obfuscated":false,"strikethrough":false,"text":"---------------------------------------","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"dark_purple","italic":true,"obfuscated":false,"strikethrough":false,"text":"“En el pasado, el futuro se halla oculto”","underlined":false}],"text":""}','{"extra":[{"bold":true,"color":"dark_purple","italic":false,"obfuscated":false,"strikethrough":false,"text":"MÍTICO","underlined":false}],"text":""}']},count:1,id:"minecraft:totem_of_undying"},slot:5},{item:{components:{"minecraft:attribute_modifiers":{modifiers:[{amount:4.0d,id:"minecraft:c638a924-7d73-4ead-8f33-a6c8c59b6a54",operation:"add_value",slot:"offhand",type:"minecraft:generic.max_health"},{amount:4.0d,id:"minecraft:dd0e1e8a-a512-443e-ae76-1a9cd191facc",operation:"add_value",slot:"mainhand",type:"minecraft:generic.max_health"}]},"minecraft:custom_data":{PublicBukkitValues:{"executableitems:ei-disablestack":"4c86dd7f-cd87-4d0e-8fdc-211e73048b6c","executableitems:ei-id":"AmuletoDeEnki","score:usage":-1}},"minecraft:custom_name":'{"extra":[{"bold":true,"color":"dark_purple","italic":false,"obfuscated":false,"strikethrough":false,"text":"AMULETO DE ENKI","underlined":false}],"text":""}',"minecraft:enchantment_glint_override":1b,"minecraft:lore":['{"extra":[{"bold":false,"color":"dark_gray","italic":false,"obfuscated":false,"strikethrough":false,"text":"---------------------------------------","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"green","italic":false,"obfuscated":false,"strikethrough":false,"text":"- Permite al jugador recuperarse 1.5 corazones","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"green","italic":false,"obfuscated":false,"strikethrough":false,"text":"con cada golpe realizado con el arma principal.","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"dark_gray","italic":false,"obfuscated":false,"strikethrough":false,"text":"---------------------------------------","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"dark_purple","italic":true,"obfuscated":false,"strikethrough":false,"text":"“En el pasado, el futuro se halla oculto”","underlined":false}],"text":""}','{"extra":[{"bold":true,"color":"dark_purple","italic":false,"obfuscated":false,"strikethrough":false,"text":"MÍTICO","underlined":false}],"text":""}']},count:1,id:"minecraft:totem_of_undying"},slot:6},{item:{components:{"minecraft:custom_data":{PublicBukkitValues:{"excellentcrates:crate_key.id":"degg"}},"minecraft:custom_name":'{"extra":[{"bold":true,"color":"light_purple","italic":false,"text":"Degg"}],"text":""}',"minecraft:enchantments":{levels:{"minecraft:unbreaking":1},show_in_tooltip:0b},"minecraft:lore":['{"extra":[{"color":"gold","italic":false,"text":"Objeto de sumo valor."}],"text":""}']},count:10,id:"minecraft:dragon_egg"},slot:7},{item:{components:{"minecraft:custom_data":{PublicBukkitValues:{"executableitems:ei-disablestack":"4d202530-4258-4d9b-820a-07b855cedbf4","executableitems:ei-id":"Reparacion_divina","score:usage":1}},"minecraft:custom_name":'{"extra":[{"bold":false,"color":"dark_aqua","italic":false,"obfuscated":false,"strikethrough":false,"text":"☄ ","underlined":false},{"bold":true,"color":"light_purple","italic":true,"text":"Reparacion ","underlined":true},{"bold":true,"color":"gold","italic":true,"text":"Divina ","underlined":true},{"bold":false,"color":"dark_aqua","italic":false,"text":"☄","underlined":false}],"text":""}',"minecraft:enchantment_glint_override":1b,"minecraft:lore":['{"extra":[{"bold":false,"color":"dark_gray","italic":false,"obfuscated":false,"strikethrough":true,"text":"------------------------","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"gray","italic":false,"obfuscated":false,"strikethrough":false,"text":"","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"dark_aqua","italic":false,"obfuscated":false,"strikethrough":false,"text":"➤ ","underlined":false},{"color":"aqua","italic":true,"text":"Utilizalo para reparar tus items "},{"bold":true,"color":"gold","italic":false,"text":"legendarios "},{"bold":false,"color":"aqua","italic":true,"text":"y "},{"bold":true,"color":"dark_purple","italic":false,"text":"miticos "},{"bold":false,"color":"aqua","italic":true,"text":"!"}],"text":""}','{"extra":[{"bold":false,"color":"gray","italic":false,"obfuscated":false,"strikethrough":false,"text":"","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"gray","italic":true,"obfuscated":false,"strikethrough":false,"text":"Info:","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"dark_aqua","italic":false,"obfuscated":false,"strikethrough":false,"text":"» ","underlined":false},{"color":"green","italic":false,"text":"Solo puedes reparar 1 item, usalo sabiamente"}],"text":""}','{"extra":[{"bold":false,"color":"dark_aqua","italic":false,"obfuscated":false,"strikethrough":false,"text":"» ","underlined":false},{"color":"green","italic":false,"text":"Coloca el item en el centro y dale al boton verde!"}],"text":""}','{"extra":[{"bold":false,"color":"dark_gray","italic":false,"obfuscated":false,"strikethrough":true,"text":"------------------------","underlined":false}],"text":""}','{"extra":[{"bold":false,"color":"gray","italic":true,"obfuscated":false,"strikethrough":false,"text":"Remaining uses: 1","underlined":false}],"text":""}'],"minecraft:profile":{id:[I;-1288600659,-373273272,-1897203511,898446696],properties:[{name:"textures",value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGU0NWM2NWFkZmI3OTY2YjI5ZjExMjQ3ZGFjM2M2ZTBkZGJlYTNkYTBlMGM0Y2IyYjZkZjE1ZDYzZmIyYWMifX19"}]},"minecraft:unbreakable":{}},count:5,id:"minecraft:player_head"},slot:8},{item:{components:{"minecraft:custom_data":{PublicBukkitValues:{"excellentcrates:crate_key.id":"nimrod"}},"minecraft:custom_name":'{"extra":[{"bold":true,"color":"light_purple","italic":false,"text":"Llave de Nimrod"}],"text":""}',"minecraft:enchantments":{levels:{"minecraft:unbreaking":255},show_in_tooltip:0b},"minecraft:lore":['{"extra":[{"color":"gray","italic":true,"text":"\\"Esta misteriosa llave está adornada con muchos"}],"text":""}','{"extra":[{"color":"gray","italic":true,"text":"destellos resplandecientes\\""}],"text":""}','{"extra":[{"color":"aqua","italic":false,"text":"La Llave de Nimrod tiene el poder de desbloquear el"}],"text":""}','{"extra":[{"color":"aqua","italic":false,"text":"famoso "},{"bold":true,"color":"gold","italic":false,"text":"Cofre de Nimrod"},{"bold":false,"color":"aqua","italic":false,"text":" que se encuentra sellado"}],"text":""}','{"extra":[{"color":"aqua","italic":false,"text":"en el "},{"color":"green","italic":false,"text":"/spawn"},{"color":"aqua","italic":false,"text":" de este mundo."}],"text":""}']},count:5,id:"minecraft:tripwire_hook"},slot:9}]}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:attribute]: minecraft:generic.follow_range; Not a map: 0 missed input: {"minecraft:attribute_modifiers":{modifiers:[{amount:0.1d,id:"minecraft:90787d5e-1940-4722-a91e-f0ba37f7c29d",operation:"add_value",type:"minecraft:generic.follow_range"}],show_in_tooltip:0b},"minecraft:custom_model_data":0}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [pool-176-thread-1/ERROR]: Tried to load invalid item: 'Not a map: 0 missed input: {"minecraft:custom_model_data":0}'
[00:00:16] [Server thread/INFO]: [Multiverse-Portals] 1 - Portals(s) loaded
[00:00:16] [Server thread/INFO]: [Multiverse-Portals] Found FastAsyncWorldEdit. Using it for selections.
[00:00:16] [Server thread/INFO]: [Multiverse-Portals 4.2.3]  Enabled - By Rigby and fernferret
[00:00:16] [Server thread/INFO]: [ChatManager] Enabling ChatManager v1.21-9
[00:00:16] [Server thread/INFO]: [ChatManager] Loading the file config.yml...
[00:00:16] [Server thread/INFO]: [ChatManager] Loading the file Messages.yml...
[00:00:16] [Server thread/INFO]: [ChatManager] Loading the file bannedwords.yml...
[00:00:16] [Server thread/INFO]: [ChatManager] Loading the file AutoBroadcast.yml...
[00:00:16] [Server thread/INFO]: [ChatManager] Loading the file bannedcommands.yml...
[00:00:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatmanager [1.21-9]
[00:00:16] [Server thread/INFO]: [ChatManager] GenericVanish: FOUND
[00:00:16] [Server thread/INFO]: [ChatManager] Vault: FOUND
[00:00:16] [Server thread/INFO]: [ChatManager] PlaceholderAPI: FOUND
[00:00:16] [Server thread/INFO]: [CataMines] Enabling CataMines v2.5.11
[00:00:16] [Server thread/INFO]: [CataMines] Loading config file
[00:00:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: catamines [2.5.11]
[00:00:16] [Server thread/INFO]: [bloodmoon-advanced] Enabling bloodmoon-advanced v4.5.7
[00:00:16] [Server thread/INFO]: [bloodmoon-advanced] plugin registered for user 1430317 with nonce -977213934
[00:00:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: bloodmoon-advanced [4.5.7]
[00:00:17] [Server thread/INFO]: [FallbackServerAddon] Enabling FallbackServerAddon v3.2.0-Beta3
[00:00:17] [Server thread/INFO]: 
  ______ _____            _     _             
 |  ____/ ____|  /\      | |   | |            
 | |__ | (___   /  \   __| | __| | ___  _ __  
 |  __| \___ \ / /\ \ / _` |/ _` |/ _ \| '_ \ 
 | |    ____) / ____ \ (_| | (_| | (_) | | | |
 |_|   |_____/_/    \_\__,_|\__,_|\___/|_| |_|

[00:00:17] [Server thread/INFO]: [FallbackServerAddon] [!] Warming up...
[00:00:17] [Server thread/INFO]: [FallbackServerAddon] Loading library FastBoard
[00:00:17] [Server thread/INFO]: [FallbackServerAddon] Loading library UniversalScheduler
[00:00:17] [Server thread/INFO]: [FallbackServerAddon] Loading library ConfigUpdater
[00:00:17] [Server thread/INFO]: [FallbackServerAddon] Downloaded library https://objects.githubusercontent.com/github-production-release-asset-2e65be/704416798/f262a2d0-ccd2-4c02-b864-023eff33ef32?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=releaseassetproduction%2F20250223%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250223T000017Z&X-Amz-Expires=300&X-Amz-Signature=e270452d03600909245626a560d9b816e7eaa03c58fd5b9f683e2cf61c31978a&X-Amz-SignedHeaders=host&response-content-disposition=attachment%3B%20filename%3DConfigUpdater-2.1-SNAPSHOT.jar&response-content-type=application%2Foctet-stream
[00:00:17] [Server thread/INFO]: [FallbackServerAddon] [!] PlaceholderAPI support enabled.
[00:00:17] [Server thread/INFO]: [FallbackServerAddon] [!] Loaded successfully.
[00:00:17] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.3.4
[00:00:18] [pool-161-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (9d4734818ab27069d76f264a4cda74a699806770)
[00:00:18] [Server thread/INFO]: Server version: v1_21_R3 - 1.21.4 - paper  1.21.4-144-edacfdf (MC: 1.21.4)
[00:00:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.3.4]
[00:00:18] [Server thread/INFO]: PlaceholderAPI hooked.
[00:00:18] [Server thread/INFO]: Updated (EN) language file. Took 19ms
[00:00:18] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.13
[00:00:18] [Server thread/INFO]: [BetterRTP] Cooldown = 60
[00:00:18] [Server thread/INFO]: [BetterRTP] Loading Overrides...
[00:00:18] [Server thread/INFO]: [BetterRTP] - Override 'master_world' -> 'ProyectoBabel' added
[00:00:18] [Server thread/INFO]: [BetterRTP] Loading World Types...
[00:00:18] [Server thread/INFO]: [BetterRTP] - World Type for 'ProyectoBabel' set to 'NORMAL'
[00:00:18] [Server thread/INFO]: [BetterRTP] - World Type for 'ProyectoBabel_nether' set to 'NETHER'
[00:00:18] [Server thread/INFO]: [BetterRTP] - World Type for 'ProyectoBabel_the_end' set to 'NORMAL'
[00:00:18] [Server thread/INFO]: [BetterRTP] - World Type for 'camellos' set to 'NETHER'
[00:00:18] [Server thread/INFO]: [BetterRTP] - World Type for 'builders' set to 'NORMAL'
[00:00:18] [Server thread/INFO]: [BetterRTP] - World Type for 'koth_world' set to 'NETHER'
[00:00:18] [Server thread/INFO]: [BetterRTP] - World Type for 'babilonia' set to 'NORMAL'
[00:00:18] [Server thread/INFO]: [BetterRTP] - World Type for 'dungeon1' set to 'NORMAL'
[00:00:18] [Server thread/INFO]: [BetterRTP] - World Type for 'mundonuevo3' set to 'NORMAL'
[00:00:18] [Server thread/INFO]: [BetterRTP] Loading Defaults...
[00:00:18] [Server thread/INFO]: [BetterRTP] - UseWorldBorder: false
[00:00:18] [Server thread/INFO]: [BetterRTP] - CenterX: 0
[00:00:18] [Server thread/INFO]: [BetterRTP] - CenterZ: 0
[00:00:18] [Server thread/INFO]: [BetterRTP] - MaxRadius: 10000
[00:00:18] [Server thread/INFO]: [BetterRTP] - MinRadius: 500
[00:00:18] [Server thread/INFO]: [BetterRTP] - Price: 0
[00:00:18] [Server thread/INFO]: [BetterRTP] - MinY: 0
[00:00:18] [Server thread/INFO]: [BetterRTP] - MaxY: 320
[00:00:18] [Server thread/INFO]: [BetterRTP] - Cooldown (default): 60
[00:00:18] [Server thread/INFO]: [BetterRTP] Loading Custom Worlds...
[00:00:18] [Server thread/INFO]: [BetterRTP] Custom World 'ProyectoBabel' registered:
[00:00:18] [Server thread/INFO]: [BetterRTP] - UseWorldBorder: false
[00:00:18] [Server thread/INFO]: [BetterRTP] - CenterX: -2727
[00:00:18] [Server thread/INFO]: [BetterRTP] - CenterZ: -3063
[00:00:18] [Server thread/INFO]: [BetterRTP] - MaxRadius: 10000
[00:00:18] [Server thread/INFO]: [BetterRTP] - MinRadius: 1000
[00:00:18] [Server thread/INFO]: [BetterRTP] - Shape: SQUARE
[00:00:18] [Server thread/INFO]: [BetterRTP] - MinY: 0
[00:00:18] [Server thread/INFO]: [BetterRTP] - MaxY: 320
[00:00:18] [Server thread/INFO]: [BetterRTP] - Cooldown: 900
[00:00:18] [Server thread/INFO]: [BetterRTP] [WARN] - Custom World 'other_custom_world' was not registered because world does NOT exist
[00:00:18] [Server thread/INFO]: [BetterRTP] Custom World 'koth_world' registered:
[00:00:18] [Server thread/INFO]: [BetterRTP] - UseWorldBorder: false
[00:00:18] [Server thread/INFO]: [BetterRTP] - CenterX: -250
[00:00:18] [Server thread/INFO]: [BetterRTP] - CenterZ: 80
[00:00:18] [Server thread/INFO]: [BetterRTP] - MaxRadius: 150
[00:00:18] [Server thread/INFO]: [BetterRTP] - MinRadius: 0
[00:00:18] [Server thread/INFO]: [BetterRTP] - Shape: SQUARE
[00:00:18] [Server thread/INFO]: [BetterRTP] - MinY: -60
[00:00:18] [Server thread/INFO]: [BetterRTP] - MaxY: 42
[00:00:18] [Server thread/INFO]: [BetterRTP] - Cooldown: 0
[00:00:18] [Server thread/INFO]: [BetterRTP] Custom World 'babilonia' registered:
[00:00:18] [Server thread/INFO]: [BetterRTP] - UseWorldBorder: false
[00:00:18] [Server thread/INFO]: [BetterRTP] - CenterX: 0
[00:00:18] [Server thread/INFO]: [BetterRTP] - CenterZ: 0
[00:00:18] [Server thread/INFO]: [BetterRTP] - MaxRadius: 0
[00:00:18] [Server thread/INFO]: [BetterRTP] - MinRadius: 600
[00:00:18] [Server thread/INFO]: [BetterRTP] - Shape: SQUARE
[00:00:18] [Server thread/INFO]: [BetterRTP] - MinY: 28
[00:00:18] [Server thread/INFO]: [BetterRTP] - MaxY: 200
[00:00:18] [Server thread/INFO]: [BetterRTP] - Cooldown: 900
[00:00:18] [Server thread/ERROR]: [BetterRTP] The particle 'EXPLOSION_NORMAL' created a fatal error when loading particles! Your MC version isn't supported!
[00:00:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.13]
[00:00:18] [Server thread/INFO]: [BreweryX] Enabling BreweryX v3.2.9
[00:00:18] [Server thread/INFO]: [BreweryX] New wood types detected. Assigning recipe numbers:
[00:00:18] [Server thread/INFO]: [BreweryX]   PALE_OAK: 13
[00:00:18] [Server thread/INFO]: [Brewery] Minecraft version: 1.21
[00:00:18] [Server thread/INFO]: [Brewery] DataManager created: FlatFile
[00:00:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: breweryx [3.2.9]
[00:00:18] [Server thread/INFO]: [Brewery] Using scheduler: PaperScheduler
[00:00:18] [Server thread/INFO]: [Brewery] BreweryX enabled!
[00:00:18] [Server thread/INFO]: [RepairGui] Enabling RepairGui v6.7.4
[00:00:18] [Server thread/INFO]: [RepairGui] Info - Starting plugin...
[00:00:18] [Folia Async Scheduler Thread #3/INFO]: [Brewery] Update available: v3.2.9 -> v3.4.9 https://www.spigotmc.org/resources/breweryx.114777/
[00:00:18] [Server thread/INFO]: [RepairGui] Info - RepairGui is fully updated.
[00:00:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: repairgui [6.7.4]
[00:00:18] [Server thread/INFO]: [RepairGui] Info - Loading single repair gui file...
[00:00:18] [Server thread/INFO]: [RepairGui] Info - Loading multi-repair gui file...
[00:00:18] [Server thread/INFO]: [ItemEditor] Enabling ItemEditor v2.0.3
[00:00:18] [Server thread/INFO]: [ItemEditor] Detected minecraft 1.21.4
[00:00:18] [Server thread/INFO]: [ItemEditor] Reloading items.
[00:00:18] [Server thread/INFO]: [ItemEditor] Loaded 0 items from storage.
[00:00:18] [Server thread/INFO]: [ItemEditor] Enabled PlaceholderAPI support.
[00:00:19] [Server thread/INFO]: [BeautyQuests] Enabling BeautyQuests v1.0.5_BUILD447
[00:00:19] [Server thread/INFO]: [BeautyQuests] ------------ BeautyQuests ------------
[00:00:19] [Server thread/INFO]: [BeautyQuests] Loaded valid Minecraft version 1_21_R3.
[00:00:19] [Server thread/WARN]: [BeautyQuests] The file is not fully translated! 1 missing translations.
[00:00:19] [Server thread/INFO]: [BeautyQuests] Loaded language en_ES (0.011s)!
[00:00:19] [Server thread/INFO]: [BeautyQuests] Loaded start particles: DUST in shape POINT with color R255 G255 B0
[00:00:19] [Server thread/INFO]: [BeautyQuests] Loaded talk particles: HAPPY_VILLAGER in shape BAR
[00:00:19] [Server thread/INFO]: [BeautyQuests] Loaded next particles: SMOKE in shape SPOT
[00:00:19] [Server thread/INFO]: [BeautyQuests] Adding citizens as an npc factory
[00:00:19] [Server thread/INFO]: [BeautyQuests] Adding mythicmobs as an npc factory
[00:00:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: beautyquests [1.0.5_BUILD447]
[00:00:19] [Server thread/INFO]: [BeautyQuests] Placeholders registered !
[00:00:19] [Server thread/INFO]: [WorldGuard] Registering session handler fr.skytasul.quests.integrations.worldguard.WorldGuardEntryHandler
[00:00:19] [Server thread/INFO]: [ImageFrame] Enabling ImageFrame v1.7.14.0
[00:00:19] [Server thread/INFO]: [ImageFrame] ImageFrame has hooked into ViaVersion!
[00:00:19] [Server thread/INFO]: [ImageFrame] ImageFrame has been Enabled!
[00:00:19] [Server thread/INFO]: [GSit] Enabling GSit v2.1.0
[00:00:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [2.1.0]
[00:00:19] [Server thread/INFO]: [WorldGuard] Registering session handler dev.geco.gsit.link.worldguard.RegionFlagHandler
[00:00:19] [Server thread/INFO]: [GSit] The Plugin was successfully enabled.
[00:00:19] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[00:00:19] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[00:00:19] [Server thread/INFO]: [zKoth] Enabling zKoth v3.1.0
[00:00:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: zkoth [3.1.0]
[00:00:19] [Server thread/INFO]: [zKoth v3.1.0] === ENABLE START ===
[00:00:19] [Server thread/INFO]: [zKoth v3.1.0] Plugin Version V3.1.0
[00:00:19] [Server thread/INFO]: [zKoth v3.1.0] Register Factions team implementation.
[00:00:20] [Server thread/INFO]: [zKoth v3.1.0] Load 7 koths
[00:00:20] [Server thread/INFO]: [zKoth v3.1.0] Register TAB scoreboard implementation.
[00:00:20] [Server thread/INFO]: [zKoth v3.1.0] Register zScheduler implementation
[00:00:20] [Server thread/INFO]: [zKoth v3.1.0] Register DecentHologram implementation
[00:00:20] [Server thread/INFO]: [zKoth v3.1.0] Loading 0 inventories
[00:00:20] [Server thread/INFO]: [zKoth v3.1.0] Loading 1 commands
[00:00:20] [Server thread/INFO]: [zKoth v3.1.0] === ENABLE DONE (64ms) ===
[00:00:20] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.21
[00:00:20] [Server thread/INFO]: [InventoryRollbackPlus] Attempting support for version: 1.21.4-144-edacfdf (MC: 1.21.4)
[00:00:20] [Server thread/INFO]: [InventoryRollbackPlus] Using CraftBukkit version: v1_21_R3
[00:00:20] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
[00:00:20] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[00:00:20] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart v2025.01
[00:00:20] [Server thread/INFO]: [UltimateAutoRestart] 2025.01, a free resource by Norska - Thanks for downloading!
[00:00:20] [Server thread/INFO]: [UltimateAutoRestart] Join www.norska.dev/discord/ for support!
[00:00:20] [Server thread/INFO]: [UltimateAutoRestart] Attempting hooks...
[00:00:20] [Server thread/INFO]: [PlayerKits2] Enabling PlayerKits2 v1.15.3
[00:00:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerkits [1.15.3]
[00:00:20] [Server thread/INFO]: [PlayerKits²] Has been enabled! Version: 1.15.3
[00:00:20] [Server thread/INFO]: [PlayerKits²] Thanks for using my plugin!   ~Ajneb97
[00:00:20] [Server thread/INFO]: There is a new version available. (1.16.1)
[00:00:20] [Server thread/INFO]: You can download it at: https://modrinth.com/plugin/playerkits-2
[00:00:20] [Server thread/INFO]: [MythicLib] Enabling MythicLib v1.7.1-SNAPSHOT
[00:00:20] [Server thread/INFO]: [MythicLib] Hooked onto TextDisplays (holograms)
[00:00:20] [Server thread/INFO]: [MythicMobs] MMO Plugin Support has been enabled!
[00:00:20] [Server thread/INFO]: [MythicLib] Hooked onto MythicMobs
[00:00:20] [Server thread/INFO]: [MythicLib] Hooked onto ProtocolLib
[00:00:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythiclib [1.7.1-SNAPSHOT]
[00:00:20] [Server thread/INFO]: [MythicLib] Hooked onto PlaceholderAPI
[00:00:20] [Server thread/INFO]: [AdvancedPortals] Enabling AdvancedPortals v0.9.3
[00:00:20] [Server thread/INFO]: [AdvancedPortals] BLOCK_PORTAL_TRAVEL found
[00:00:20] [Server thread/INFO]: [AdvancedPortals] Bungee detected. Enabling proxy features.
[00:00:20] [Server thread/INFO]: Advanced portals have been successfully enabled!
[00:00:20] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v6.0.1
[00:00:20] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[00:00:21] [Server thread/WARN]: [ExcellentCrates] *************************
[00:00:21] [Server thread/WARN]: [ExcellentCrates] You don't have EconomyBridge installed.
[00:00:21] [Server thread/WARN]: [ExcellentCrates] The following features will be unavailable:
[00:00:21] [Server thread/WARN]: [ExcellentCrates] - Crate open cost.
[00:00:21] [Server thread/WARN]: [ExcellentCrates] - Custom item plugin support.
[00:00:21] [Server thread/WARN]: [ExcellentCrates] *************************
[00:00:21] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[00:00:21] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@70c7c134
[00:00:21] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[00:00:21] [Server thread/INFO]: [ExcellentCrates] Loaded 7 crate openings.
[00:00:21] [Server thread/INFO]: [ExcellentCrates] Loaded 11 crate keys.
[00:00:21] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[00:00:21] [Server thread/ERROR]: [ExcellentCrates] Invalid rarity '1-simple', fallback to default rarity. Caused by 'deggs.yml' -> 'Rewards.List.1'.
[00:00:21] [Server thread/INFO]: [ExcellentCrates] Loaded 13 crates.
[00:00:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [6.0.1]
[00:00:21] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 546 ms!
[00:00:21] [Server thread/INFO]: [AdvancedEnchantments] Enabling AdvancedEnchantments v9.16.0
[00:00:21] [Server thread/INFO]: [AdvancedEnchantments] Loading Minecraft Version MC1_21_R3
[00:00:21] [Server thread/INFO]: [AdvancedEnchantments] Loaded 7 armor sets.
[00:00:21] [Server thread/INFO]: [AdvancedEnchantments] Loaded 5 weapons.
[00:00:21] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into economy plugin (Vault)
[00:00:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedenchantments [1.0.0]
[00:00:22] [Server thread/INFO]: [ConditionalEvents] Enabling ConditionalEvents v4.60.2
[00:00:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: conditionalevents [4.60.2]
[00:00:22] [Server thread/INFO]: [ConditionalEvents] Has been enabled! Version: 4.60.2
[00:00:22] [Server thread/INFO]: [ConditionalEvents] Thanks for using my plugin!   ~Ajneb97
[00:00:22] [Server thread/INFO]: [ExecutableBlocks] Enabling ExecutableBlocks v5.25.2.9
[00:00:22] [Server thread/INFO]: ========*======== ExecutableBlocks ========*========
[00:00:22] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the Option value of option from config, value: NULL (Block: Free_Hut) >> Options available: https://docs.ssomar.com/
[00:00:22] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the Option value of option from config, value: NULL (Block: Free_Test) >> Options available: https://docs.ssomar.com/
[00:00:22] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the Option value of option from config, value: NULL (Block: Free_Test2) >> Options available: https://docs.ssomar.com/
[00:00:22] [Server thread/INFO]: ExecutableBlocks Amount of Executable Blocks configurations loaded: 4
[00:00:22] [Server thread/INFO]: ExecutableBlocks There are: 0 ExecutableBlock placed configs to load.
[00:00:22] [Server thread/INFO]: ExecutableBlocks 0 ExecutableBlock(s)Placed loaded !
[00:00:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ExecutableBlocks [1.0.0]
[00:00:22] [Server thread/INFO]: ========*======== ExecutableBlocks ========*========
[00:00:22] [Server thread/INFO]: [CombatPets] Enabling CombatPets v2.3.2
[00:00:22] [Server thread/INFO]: [CombatPets] Powered by nightcore
[00:00:22] [Server thread/INFO]: [CombatPets] Read database configuration...
[00:00:22] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[00:00:22] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-2 - Added connection org.sqlite.jdbc4.JDBC4Connection@68d165c3
[00:00:22] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'armor' pet attribute.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'attack_damage' pet attribute.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'attack_knockback' pet attribute.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'attack_speed' pet attribute.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'flying_speed' pet attribute.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'health_regeneration_force' pet attribute.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'health_regeneration_speed' pet attribute.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'horse_jump_strength' pet attribute.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'knockback_resistance' pet attribute.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'max_health' pet attribute.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'max_saturation' pet attribute.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'movement_speed' pet attribute.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'burning_time' pet attribute.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'explosion_knockback_resistance' pet attribute.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'fall_damage_multiplier' pet attribute.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'gravity' pet attribute.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'movement_efficiency' pet attribute.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'safe_fall_distance' pet attribute.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'scale' pet attribute.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'step_height' pet attribute.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'water_movement_efficiency' pet attribute.
[00:00:22] [Server thread/INFO]: [CombatPets] Loaded 4 aspects.
[00:00:22] [Server thread/INFO]: [CombatPets] Loaded 20 food categories.
[00:00:22] [Server thread/INFO]: [CombatPets] Loaded 4 pet tiers!
[00:00:22] [Server thread/INFO]: [CombatPets] Loaded 64 pet configs!
[00:00:22] [Server thread/INFO]: [CombatPets] Loaded 4 XP sources.
[00:00:22] [Server thread/INFO]: [CombatPets] Loaded Leveling module.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'age' pet accessories.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'size' pet accessories.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'creeper_state' pet accessories.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'fox_type' pet accessories.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'llama_color' pet accessories.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'sheep_color' pet accessories.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'horse_style' pet accessories.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'horse_color' pet accessories.
[00:00:22] [Server thread/INFO]: [CombatPets] Registered 'shear_style' pet accessories.
[00:00:22] [Server thread/ERROR]: [CombatPets] You must install EconomyBridge to use shop features!
[00:00:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: combatpets [2.3.2]
[00:00:22] [Server thread/INFO]: [CombatPets] Plugin loaded in 391 ms!
[00:00:22] [Server thread/INFO]: [BetterDragonFight] Enabling BetterDragonFight v1.0-SNAPSHOT
[00:00:22] [Server thread/INFO]: [ - - - ENDER DRAGON REIMAGINED - - - ]
[00:00:22] [Server thread/INFO]:  
[00:00:22] [Server thread/INFO]:            Created by Wiggle
[00:00:22] [Server thread/INFO]:            /dragonplugininfo
[00:00:22] [Server thread/INFO]:                  V.0.99
[00:00:22] [Server thread/INFO]:  
[00:00:22] [Server thread/INFO]: [ - - - = - = - =--=--= - = - = - - - ]
[00:00:22] [Server thread/INFO]: [ShopkeepersAddon] Enabling ShopkeepersAddon v2.23.3.2
[00:00:22] [Server thread/INFO]: Checking for config updates... 2.23.3.2 2.23.3.2
[00:00:22] [Server thread/INFO]: [CombatLogX] Enabling CombatLogX v11.5.0.0.1242
[00:00:22] [Server thread/INFO]: [CombatLogX] Successfully loaded 29 language(s).
[00:00:22] [Server thread/INFO]: [CombatLogX] Detected server as regular SpigotMC/PaperMC (not Folia)
[00:00:23] [Server thread/INFO]: CombatLogX was loaded successfully.
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansions...
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Action Bar v17.3'...
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Boss Bar v17.1'...
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Cheat Prevention v17.8'...
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Citizens Compatibility v17.15'...
[00:00:23] [Server thread/INFO]: [CombatLogX] [Citizens Compatibility] Successfully found a dependency: Citizens v2.0.37-SNAPSHOT (build 3718)
[00:00:23] [Server thread/INFO]: [CombatLogX] [Citizens Compatibility] Dependency 'Citizens' is not the correct version.
[00:00:23] [Server thread/INFO]: [CombatLogX] Disabling expansion 'Citizens Compatibility v17.15'...
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'EssentialsX Compatibility v17.2'...
[00:00:23] [Server thread/INFO]: [CombatLogX] [EssentialsX Compatibility] Successfully found a dependency: Essentials v2.21.0-dev+167-4e64782
[00:00:23] [Server thread/INFO]: [CombatLogX] [EssentialsX Compatibility] Detected EssentialsX successfully.
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Factions Compatibility v17.0'...
[00:00:23] [Server thread/WARN]: [CombatLogX] Failed to find any of the following plugins:
[00:00:23] [Server thread/WARN]: [CombatLogX] [Factions, FactionsX, LegacyFactions]
[00:00:23] [Server thread/WARN]: [CombatLogX] Please contact SirBlobman if you believe this is mistake.
[00:00:23] [Server thread/WARN]: [CombatLogX] https://github.com/SirBlobman/BlueSlimeCore/issues/new/choose
[00:00:23] [Server thread/INFO]: [CombatLogX] [Factions Compatibility] Some dependencies for this expansion are missing!
[00:00:23] [Server thread/INFO]: [CombatLogX] Disabling expansion 'Factions Compatibility v17.0'...
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'LibsDisguises Compatibility v17.1'...
[00:00:23] [Server thread/INFO]: [CombatLogX] [LibsDisguises Compatibility] Successfully found a dependency: LibsDisguises v10.0.44-SNAPSHOT
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'LuckPerms Compatibility v17.1'...
[00:00:23] [Server thread/INFO]: [CombatLogX] [LuckPerms Compatibility] Successfully found a dependency: LuckPerms v5.4.145
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'MarriageMaster Compatibility v17.3'...
[00:00:23] [Server thread/INFO]: [CombatLogX] [MarriageMaster Compatibility] Successfully found a dependency: MarriageMaster v2.7.8
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'MythicMobs Compatibility v17.5'...
[00:00:23] [Server thread/INFO]: [CombatLogX] [MythicMobs Compatibility] Successfully found a dependency: MythicMobs v5.8.0-2df54aca
[00:00:23] [Server thread/INFO]: [CombatLogX] [MythicMobs Compatibility] Dependency 'MythicMobs' is not the correct version!
[00:00:23] [Server thread/INFO]: [CombatLogX] Disabling expansion 'MythicMobs Compatibility v17.5'...
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'PlaceholderAPI Compatibility v17.2'...
[00:00:23] [Server thread/INFO]: [CombatLogX] [PlaceholderAPI Compatibility] Successfully found a dependency: PlaceholderAPI v2.11.6
[00:00:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: combatlogx [17.2]
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'ProtectionStones Compatibility v17.2'...
[00:00:23] [Server thread/INFO]: [CombatLogX] [ProtectionStones Compatibility] Successfully found a dependency: ProtectionStones v2.10.5
[00:00:23] [Server thread/INFO]: [CombatLogX] [ProtectionStones Compatibility] Successfully found a dependency: WorldGuard v7.0.13-beta-2+5c4848b
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'SuperVanish Compatibility v17.1'...
[00:00:23] [Server thread/WARN]: [CombatLogX] [SuperVanish Compatibility] A dependency is not installed on the server: PremiumVanish
[00:00:23] [Server thread/INFO]: [CombatLogX] [SuperVanish Compatibility] Missing PremiumVanish, checking for regular SuperVanish...
[00:00:23] [Server thread/INFO]: [CombatLogX] [SuperVanish Compatibility] Successfully found a dependency: SuperVanish v6.2.20
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'WorldGuard Compatibility v17.3'...
[00:00:23] [Server thread/INFO]: [CombatLogX] [WorldGuard Compatibility] Successfully found a dependency: WorldGuard v7.0.13-beta-2+5c4848b
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Damage Effects v17.2'...
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Damage Tagger v17.1'...
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Death Effects v17.0'...
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'End Crystal Helper v17.2'...
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Force Field v17.5'...
[00:00:23] [Server thread/INFO]: [CombatLogX] [Force Field] Successfully found a dependency: ProtocolLib v5.4.0-SNAPSHOT-741
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Glowing v17.0'...
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Logger v17.3'...
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Loot Protection v17.1-debug2'...
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Mob Tagger v17.1'...
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Newbie Helper v17.3'...
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Rewards v17.5'...
[00:00:23] [Server thread/INFO]: [CombatLogX] [Rewards] Successfully found a dependency: Vault v1.7.3-b131
[00:00:23] [Server thread/INFO]: [CombatLogX] [Rewards] Successfully hooked into economy handler 'EssentialsX Economy' from plugin 'Essentials v2.21.0-dev+167-4e64782'.
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Scoreboard v17.1'...
[00:00:23] [Server thread/INFO]: [CombatLogX]  
[00:00:23] [Server thread/INFO]: [CombatLogX] Successfully enabled 23 expansions.
[00:00:23] [Server thread/INFO]: CombatLogX was enabled successfully.
[00:00:23] [Server thread/INFO]: [AutoUpdatePlugins] Enabling AutoUpdatePlugins v9.5*
[00:00:23] [Server thread/INFO]: [DiscordSRVUtils] Enabling DiscordSRVUtils v1.2.14-BETA-1
[00:00:24] [Server thread/INFO]: 
[]=====[Enabling DiscordSRVUtils]=====[]
| Information:
|   Name: DiscordSRVUtils
|   Developers: BlueTree242
|   Version: 1.2.14-BETA-1
|   Storage: HsqlDB
| Support:
|   Github: https://github.com/BlueTree242/BlueDevelopersInc/issues
|   Wiki: https://wiki.discordsrvutils.xyz
|   Discord: https://discordsrvutils.xyz/support
[]====================================[]
[00:00:24] [Server thread/INFO]: [DiscordSRVUtils] MySQL is disabled, using hsqldb
[00:00:24] [Server thread/INFO]: [DiscordSRVUtils] HikariPool-1 - Starting...
[00:00:24] [Server thread/INFO]: [DiscordSRVUtils] HikariPool-1 - Driver does not support get/set network timeout for connections. (feature not supported)
[00:00:24] [Server thread/INFO]: [DiscordSRVUtils] HikariPool-1 - Start completed.
[00:00:25] [Server thread/INFO]: [DiscordSRVUtils] [Flyway] Schema "PUBLIC" is up to date. No migration necessary.
[00:00:25] [Server thread/INFO]: [DiscordSRVUtils] MySQL/HsqlDB Connected & Setup
[00:00:25] [Server thread/INFO]: [DiscordSRV] API listener dev.bluetree242.discordsrvutils.listeners.discordsrv.DiscordSRVListener subscribed (3 methods)
[00:00:25] [Server thread/INFO]: [CommandWhitelist] Enabling CommandWhitelist v2.10.0
[00:00:25] [DSU-THREAD/INFO]: [DiscordSRVUtils] Successfully hooked into AdvancedBan
[00:00:25] [DSU-THREAD/INFO]: [DiscordSRVUtils] Successfully hooked into Essentials
[00:00:25] [DSU-THREAD/INFO]: [DiscordSRVUtils] Successfully hooked into PlaceholderAPI
[00:00:25] [Server thread/INFO]: [Trivia] Enabling Trivia v1.17
[00:00:25] [Server thread/INFO]: [Trivia] bStats has been loaded.
[00:00:25] [Server thread/INFO]: [Trivia] Optional dependency 'vault' has been loaded
[00:00:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: Trivia [1.14]
[00:00:25] [Server thread/INFO]: [Trivia] Optional dependency 'PlaceholderAPI' has been loaded
[00:00:25] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.4
[00:00:25] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[00:00:25] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[00:00:25] [Server thread/INFO]: | Command file(s) found : 2
[00:00:25] [Server thread/INFO]: | Config : Ready.
[00:00:25] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[00:00:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mycommand [1.0.0]
[00:00:25] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[00:00:25] [DSU-THREAD/ERROR]: [DiscordSRVUtils] Ticket panel with ID 8ijn56sym8 (Generar Nuevo Ticket) channel was deleted. To fix this issue, change the channel or delete this ticket using /editpanel command.
[00:00:25] [DSU-THREAD/INFO]: [DiscordSRVUtils] Plugin is ready to function.
[00:00:25] [Server thread/INFO]: | Custom commands loaded : 27
[00:00:25] [Server thread/INFO]: | New update available : MyCommand v5.7.5
[00:00:25] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[00:00:25] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[00:00:25] [Server thread/INFO]: [BountyHunters] Enabling BountyHunters v2.5.2
[00:00:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: bountyhunters [2.5.2]
[00:00:25] [Server thread/INFO]: [BountyHunters] Hooked onto PlaceholderAPI
[00:00:25] [Server thread/INFO]: [Multiverse-Inventories] Enabling Multiverse-Inventories v4.2.6
[00:00:25] [Server thread/INFO]: [Multiverse-Inventories 4.2.6] enabled.
[00:00:25] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[00:00:25] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[00:00:26] [Server thread/INFO]: [DeluxeMenus] 15 GUI menus loaded!
[00:00:26] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[00:00:26] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[00:00:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[00:00:26] [Server thread/INFO]: [CommandPanels] Enabling CommandPanels v3.21.5
[00:00:26] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.21.5 Plugin Loading...
[00:00:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: commandpanels [1.0.0]
[00:00:26] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.21.5 Plugin Loaded!
[00:00:26] [Server thread/INFO]: [Tebex] Enabling Tebex v2.1.0
[00:00:26] [Server thread/INFO]: [FreedomChat] Enabling FreedomChat v1.7.2
[00:00:26] [Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v6.10.2
[00:00:26] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Usando lang-es.yml como archivo de idioma...
[00:00:26] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Carga completada 16 configuraciones de la sección de /secciones/
[00:00:26] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completada la carga de la configuración de 16 tiendas desde /shops/
[00:00:26] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Actualizando la configuración de la tienda...
[00:00:26] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault and using EssentialsX Economy as economy provider
[00:00:26] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Se completó la carga de 1 proveedor(es) de economía para todas las 9 secciones de tiendas.
[00:00:26] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Usando minecraft versión 1.21.4...
[00:00:26] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Proveedor spawner establecido en AUTO en la configuración
[00:00:26] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Automatically searching for compatible spawner provider....
[00:00:26] [Server thread/INFO]: [EconomyShopGUI] [INFO]: RoseStacker encontrado, integrando...
[00:00:26] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Usando RoseStacker como proveedor de generación.
[00:00:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: esgui [1.0.0]
[00:00:26] [Server thread/INFO]: [EconomyShopGUI] [INFO]: El modo de depuración está habilitado.
[00:00:26] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Cargando todos los elementos...
[00:00:26] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Iniciado - Tomó 176ms para completar
[00:00:26] [ESGUI_UTIL_THREAD #0/INFO]: [EconomyShopGUI] [INFO]: Hay una actualización disponible para EconomyShopGUI, estás corriendo la versión 6.10.2 pero se encontró la versión 6.10.3.
[00:00:26] [ESGUI_UTIL_THREAD #0/INFO]: [EconomyShopGUI] [INFO]: Download at: https://www.spigotmc.org/resources/economyshopgui.69927/
[00:00:26] [OkHttp https://plugin.tebex.io/.../INFO]: [Tebex] Connected to BabelMC Survival - Minecraft (Offline/Geyser) server.
[00:00:26] [Server thread/INFO]: [ProCosmetics] Enabling ProCosmetics v14.1.4
[00:00:27] [Server thread/INFO]: [ProCosmetics] Hooking into Essentials...
[00:00:27] [Server thread/INFO]: [ProCosmetics] Hooking into SuperVanish...
[00:00:27] [Server thread/INFO]: [WorldGuard] Registering session handler se.file14.procosmetics.worldguard.WorldGuardManager
[00:00:27] [Server thread/INFO]: [ProCosmetics] Initialized!
[00:00:27] [Server thread/INFO]: [InteractionVisualizer] Enabling InteractionVisualizer v1.18.13.0
[00:00:29] [Server thread/INFO]: [InteractionVisualizer] Opened Sqlite database successfully
[00:00:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactionvisualizer [2.0.0]
[00:00:30] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has been enabled!
[00:00:30] [Server thread/INFO]: [spark] Starting background profiler...
[00:00:31] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[00:00:31] [Server thread/INFO]: Done preparing level "ProyectoBabel" (51.346s)
[00:00:31] [Server thread/INFO]: Running delayed init tasks
[00:00:31] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[00:00:31] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[00:00:31] [Craft Scheduler Thread - 8 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[00:00:31] [Craft Scheduler Thread - 10 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[00:00:31] [Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[00:00:31] [Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'CombatLogX'.
[00:00:31] [Craft Scheduler Thread - 5 - AuthMe/INFO]: [AuthMe] Downloading GEO IP database, because the old database is older than 30 days or doesn't exist
[00:00:31] [Craft Scheduler Thread - 5 - AuthMe/WARN]: [AuthMe] No MaxMind credentials found in the configuration file! GeoIp protections will be disabled.
[00:00:31] [Craft Scheduler Thread - 5 - AuthMe/INFO]: [AuthMe] There is no newer GEO IP database uploaded to MaxMind. Using the old one for now.
[00:00:31] [Craft Scheduler Thread - 5 - AuthMe/WARN]: [AuthMe] Could not download GeoLiteAPI database [FileNotFoundException]: plugins/AuthMe/GeoLite2-Country.mmdb (No such file or directory)
[00:00:31] [Craft Scheduler Thread - 8 - Essentials/INFO]: [Essentials] Obteniendo información de versión...
[00:00:31] [Craft Scheduler Thread - 8 - Essentials/INFO]: [Essentials] Comprobación de actualización desactivada en config.
[00:00:31] [Craft Scheduler Thread - 20 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[00:00:31] [Craft Scheduler Thread - 20 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] You are running the latest version.
[00:00:31] [Craft Scheduler Thread - 24 - InteractionVisualizer/INFO]: [InteractionVisualizer] Downloading and extracting latest Language files...
[00:00:31] [Craft Scheduler Thread - 22 - ProCosmetics/INFO]: [ProCosmetics] There is a newer version available for ProCosmetics! You're at 14.1.4 and the latest release is 14.1.5.
[00:00:31] [Craft Scheduler Thread - 10 - DecentHolograms/INFO]: [DecentHolograms] Loaded 20 holograms!
[00:00:31] [Craft Scheduler Thread - 18 - ShopkeepersAddon/INFO]: ShopkeepersAddon » Shops loaded successfully!
[00:00:31] [Craft Scheduler Thread - 9 - Vault/INFO]: [Vault] Checking for Updates ... 
[00:00:31] [Craft Scheduler Thread - 19 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:ProyectoBabel configured and loaded!
[00:00:31] [Craft Scheduler Thread - 23 - BetterRTP/INFO]: [BetterRTP] Database CHUNK_DATA:ChunkData configured and loaded!
[00:00:31] [Craft Scheduler Thread - 19 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:ProyectoBabel_nether configured and loaded!
[00:00:31] [Craft Scheduler Thread - 11 - BetterRTP/INFO]: [BetterRTP] Database QUEUE:Queue configured and loaded!
[00:00:31] [Craft Scheduler Thread - 19 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:ProyectoBabel_the_end configured and loaded!
[00:00:31] [Craft Scheduler Thread - 19 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:dg_end configured and loaded!
[00:00:31] [Craft Scheduler Thread - 10 - BetterRTP/INFO]: [BetterRTP] Database PLAYERS:Players configured and loaded!
[00:00:31] [Craft Scheduler Thread - 19 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:MUNDOCARDS configured and loaded!
[00:00:31] [Craft Scheduler Thread - 19 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:Tower2 configured and loaded!
[00:00:31] [Craft Scheduler Thread - 19 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:dg_arena configured and loaded!
[00:00:31] [Craft Scheduler Thread - 19 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:japanese configured and loaded!
[00:00:31] [Craft Scheduler Thread - 9 - Vault/INFO]: [Vault] No new version available
[00:00:31] [Craft Scheduler Thread - 28 - AuctionHouse/INFO]: [CasaDeSubastas] A new update is available for Auction House
[00:00:31] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[00:00:31] [Craft Scheduler Thread - 13 - RoseStacker/INFO]: [RoseStacker] Fetched 134 translation locales.
[00:00:31] [Server thread/INFO]: [CoreProtect] FastAsyncWorldEdit logging successfully initialized.
[00:00:31] [Craft Scheduler Thread - 24 - InteractionVisualizer/INFO]: [InteractionVisualizer] Sucessfully downloaded the latest Language files!
[00:00:31] [Server thread/INFO]: [Skript] Loading variables...
[00:00:31] [Server thread/INFO]: [Skript] Loaded 0 variables in 0.0 seconds
[00:00:31] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[00:00:31] [Server thread/INFO]: [Skript]     No scripts were found, maybe you should write some ;)
[00:00:31] [Server thread/INFO]: [Skript] Finished loading.
[00:00:31] [Server thread/INFO]: [Factions] Found economy plugin through Vault: EssentialsX Economy
[00:00:31] [Server thread/INFO]: [Factions] NOTE: Economy is disabled. You can enable it in config/main.conf
[00:00:31] [Server thread/INFO]: [Factions] Using Vault with permissions plugin LuckPerms
[00:00:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.29.0]
[00:00:31] [Server thread/INFO]: [Babel Info] WARNING! Custom world 'CraftWorld{name=babilonia}' Maximum radius of '0' is not allowed! Set to default value!
[00:00:31] [Server thread/WARN]: [ExcellentCrates] Problems in 'virtual' crate (plugins/ExcellentCrates/crates/virtual.yml):
[00:00:31] [Server thread/ERROR]: [ExcellentCrates] -> Animation is invalid!
[00:00:31] [Server thread/WARN]: [ExcellentCrates] Problems in 'items' crate (plugins/ExcellentCrates/crates/items.yml):
[00:00:31] [Server thread/ERROR]: [ExcellentCrates] -> No rewards defined!
[00:00:31] [Server thread/WARN]: [ExcellentCrates] Problems in 'emerald' crate (plugins/ExcellentCrates/crates/emerald.yml):
[00:00:31] [Server thread/ERROR]: [ExcellentCrates] -> Animation is invalid!
[00:00:31] [Server thread/WARN]: [ExcellentCrates] Problems in 'excellentcrates_editor' crate (plugins/ExcellentCrates/crates/excellentcrates_editor.yml):
[00:00:31] [Server thread/ERROR]: [ExcellentCrates] -> No rewards defined!
[00:00:31] [Server thread/ERROR]: [ExcellentCrates] -> No key(s) defined!
[00:00:31] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[00:00:31] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Found a possible update for plugin 'BlueSlimeCore'.
[00:00:31] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Local Version: 2.9.6.431
[00:00:31] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Remote Version: 2.9.6.454
[00:00:31] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Download Link: https://hangar.papermc.io/SirBlobman/BlueSlimeCore
[00:00:31] [Craft Scheduler Thread - 4 - DiscordSRVUtils/INFO]: [DiscordSRVUtils] You are up to date.
[00:00:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrvutils [1.2.14-BETA-1]
[00:00:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrvutils [1.2.14-BETA-1]
[00:00:33] [Server thread/INFO]: [Citizens] Loaded 97 NPCs.
[00:00:33] [Server thread/WARN]: [MythicMobs] Error initializing default entity magic values. Please report this.
[00:00:33] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.entity.EntityType.getEntityClass()" because "type" is null
[00:00:33] [Server thread/WARN]:     at org.bukkit.RegionAccessor.spawnEntity(RegionAccessor.java:407)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.adapters.BukkitEntityType.spawnEntity(BukkitEntityType.java:69)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.entities.BukkitCustom.spawn(BukkitCustom.java:37)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.api.mobs.entities.MythicEntityType.initializeDefaultValues(MythicEntityType.java:161)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.BukkitBootstrap.initializeMagicEntityValues(BukkitBootstrap.java:472)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[00:00:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[00:00:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[00:00:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175)
[00:00:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[00:00:33] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[00:00:33] [Server thread/WARN]: [MythicMobs] Error initializing default entity magic values. Please report this.
[00:00:33] [Server thread/WARN]: java.lang.IllegalArgumentException: Villager.Profession cannot be null
[00:00:33] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143)
[00:00:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.entity.CraftVillagerZombie.setVillagerProfession(CraftVillagerZombie.java:34)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.entities.BukkitBabyZombieVillager.spawn(BukkitBabyZombieVillager.java:53)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.api.mobs.entities.MythicEntityType.initializeDefaultValues(MythicEntityType.java:161)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.BukkitBootstrap.initializeMagicEntityValues(BukkitBootstrap.java:472)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[00:00:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[00:00:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[00:00:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175)
[00:00:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[00:00:33] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[00:00:33] [Server thread/WARN]: [MythicMobs] Error initializing default entity magic values. Please report this.
[00:00:33] [Server thread/WARN]: java.lang.NoSuchFieldError: Class org.bukkit.entity.EntityType does not have member field 'org.bukkit.entity.EntityType CREAKING_TRANSIENT'
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.entities.BukkitCreakingTransient.spawn(BukkitCreakingTransient.java:24)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.api.mobs.entities.MythicEntityType.initializeDefaultValues(MythicEntityType.java:161)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.BukkitBootstrap.initializeMagicEntityValues(BukkitBootstrap.java:472)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[00:00:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[00:00:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[00:00:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175)
[00:00:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[00:00:33] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[00:00:33] [Server thread/WARN]: [MythicMobs] Error initializing default entity magic values. Please report this.
[00:00:33] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.entity.EntityType.getEntityClass()" because "type" is null
[00:00:33] [Server thread/WARN]:     at org.bukkit.RegionAccessor.spawnEntity(RegionAccessor.java:407)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.adapters.BukkitEntityType.spawnEntity(BukkitEntityType.java:69)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.entities.BukkitCustom.spawn(BukkitCustom.java:37)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.api.mobs.entities.MythicEntityType.initializeDefaultValues(MythicEntityType.java:161)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.BukkitBootstrap.initializeMagicEntityValues(BukkitBootstrap.java:472)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[00:00:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[00:00:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[00:00:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175)
[00:00:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[00:00:33] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[00:00:33] [Server thread/WARN]: [MythicMobs] Error initializing default entity magic values. Please report this.
[00:00:33] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.entity.EntityType.getEntityClass()" because "type" is null
[00:00:33] [Server thread/WARN]:     at org.bukkit.RegionAccessor.spawnEntity(RegionAccessor.java:407)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.adapters.BukkitEntityType.spawnEntity(BukkitEntityType.java:69)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.entities.BukkitCustom.spawn(BukkitCustom.java:37)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.api.mobs.entities.MythicEntityType.initializeDefaultValues(MythicEntityType.java:161)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.BukkitBootstrap.initializeMagicEntityValues(BukkitBootstrap.java:472)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[00:00:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[00:00:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[00:00:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175)
[00:00:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[00:00:33] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[00:00:33] [Server thread/WARN]: [MythicMobs] Error initializing default entity magic values. Please report this.
[00:00:33] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.entity.EntityType.getEntityClass()" because "type" is null
[00:00:33] [Server thread/WARN]:     at org.bukkit.RegionAccessor.spawnEntity(RegionAccessor.java:407)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.adapters.BukkitEntityType.spawnEntity(BukkitEntityType.java:69)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.entities.BukkitCustom.spawn(BukkitCustom.java:37)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.api.mobs.entities.MythicEntityType.initializeDefaultValues(MythicEntityType.java:161)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.BukkitBootstrap.initializeMagicEntityValues(BukkitBootstrap.java:472)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[00:00:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[00:00:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[00:00:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175)
[00:00:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[00:00:33] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[00:00:33] [Server thread/WARN]: [MythicMobs] Error initializing default entity magic values. Please report this.
[00:00:33] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.entity.EntityType.getEntityClass()" because "type" is null
[00:00:33] [Server thread/WARN]:     at org.bukkit.RegionAccessor.spawnEntity(RegionAccessor.java:407)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.adapters.BukkitEntityType.spawnEntity(BukkitEntityType.java:69)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.entities.BukkitCustom.spawn(BukkitCustom.java:37)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.api.mobs.entities.MythicEntityType.initializeDefaultValues(MythicEntityType.java:161)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.BukkitBootstrap.initializeMagicEntityValues(BukkitBootstrap.java:472)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[00:00:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[00:00:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[00:00:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175)
[00:00:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[00:00:33] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[00:00:33] [Server thread/WARN]: [MythicMobs] Error initializing default entity magic values. Please report this.
[00:00:33] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.entity.EntityType.getEntityClass()" because "type" is null
[00:00:33] [Server thread/WARN]:     at org.bukkit.RegionAccessor.spawnEntity(RegionAccessor.java:407)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.adapters.BukkitEntityType.spawnEntity(BukkitEntityType.java:69)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.entities.BukkitCustom.spawn(BukkitCustom.java:37)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.api.mobs.entities.MythicEntityType.initializeDefaultValues(MythicEntityType.java:161)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.BukkitBootstrap.initializeMagicEntityValues(BukkitBootstrap.java:472)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[00:00:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[00:00:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[00:00:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175)
[00:00:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[00:00:33] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[00:00:33] [Server thread/WARN]: [MythicMobs] Error initializing default entity magic values. Please report this.
[00:00:33] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.entity.EntityType.getEntityClass()" because "type" is null
[00:00:33] [Server thread/WARN]:     at org.bukkit.RegionAccessor.spawnEntity(RegionAccessor.java:407)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.adapters.BukkitEntityType.spawnEntity(BukkitEntityType.java:69)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.entities.BukkitCustom.spawn(BukkitCustom.java:37)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.api.mobs.entities.MythicEntityType.initializeDefaultValues(MythicEntityType.java:161)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.BukkitBootstrap.initializeMagicEntityValues(BukkitBootstrap.java:472)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.Delegates$RunnableToSupplier.get(Delegates.java:121)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.promise.LuminePromise$SupplyRunnable.run(LuminePromise.java:654)
[00:00:33] [Server thread/WARN]:     at MythicMobs-5.8.0 (1).jar//io.lumine.mythic.bukkit.utils.tasks.LumineExecutors$SchedulerWrappedRunnable.run(LumineExecutors.java:70)
[00:00:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[00:00:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[00:00:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175)
[00:00:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[00:00:33] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[00:00:33] [Server thread/INFO]: --------------------------------------------------------
[00:00:33] [Server thread/INFO]: 
[00:00:33] [Server thread/INFO]: Thank you for purchasing Auction House, it means a lot
[00:00:33] [Server thread/INFO]:  - Kiran Hart
[00:00:33] [Server thread/INFO]: 
[00:00:33] [Server thread/INFO]: --------------------------------------------------------
[00:00:33] [Server thread/INFO]: [CataMines] Loading mines from files...
[00:00:33] [Server thread/INFO]: [CataMines] Starting mines and registering commands. Running version 2.5.11
[00:00:33] [Server thread/INFO]: [CataMines] Registering listeners
[00:00:33] [Server thread/INFO]: [RepairGui] Info - Economy plugin: EssentialsX Economy
[00:00:33] [Server thread/INFO]: [CombatLogX] Successfully enabled 0 late-load expansions.
[00:00:33] [Server thread/INFO]: [Multiverse-Inventories] First run!
[00:00:33] [Server thread/WARN]: [ViaVersion] There is a newer plugin version available: 5.2.1, you're on: 5.2.0
[00:00:33] [Server thread/INFO]: Done (93.378s)! For help, type "help"
[00:00:33] [Server thread/INFO]: [BeautyQuests] 4 quests loaded (0.08s)!
[00:00:33] [Server thread/INFO]: [BeautyQuests] Periodic saves task started (18000 ticks). Task ID: 1172
[00:00:33] [Server thread/INFO]: Unknown or incomplete command, see below for error
babelbot2<--[HERE]
[00:00:33] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 27 slash commands (0 conflicted) for 1 plugins in 1/1 guilds (0 cancelled)
[00:00:34] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2809ms or 56 ticks behind
[00:00:34] [Craft Scheduler Thread - 33 - BetterRTP/INFO]: [BetterRTP] Attempting to queue up some more safe locations...
[00:00:34] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into ProtocolLib, AdvancedEnchantments, WorldGuard, PlaceholderAPI, MythicMobs, ProtectionStones, Essentials, Vault, LuckPerms, SuperVanish, ViaVersion, Factions, DiscordSRV.
[00:00:34] [Server thread/INFO]: [FallbackServerAddon] [!] Detected an invalid mode...
[00:00:34] [Server thread/INFO]: [FallbackServerAddon]
[00:00:34] [Server thread/INFO]: [FallbackServerAddon] [!] FIRST SETUP GUIDE
[00:00:34] [Server thread/INFO]: [FallbackServerAddon] [!] Select the mode of your server!
[00:00:34] [Server thread/INFO]: [FallbackServerAddon] [!] You can choose between STANDALONE or ADDON.
[00:00:34] [Server thread/INFO]: [FallbackServerAddon] [!] You can change the mode in the config.yml file.
[00:00:34] [Server thread/INFO]: [FallbackServerAddon] [!] After you have selected the mode, restart the server.
[00:00:34] [Server thread/INFO]: [FallbackServerAddon] [!] Check the config.yml for more information about this.
[00:00:34] [Server thread/INFO]: [FallbackServerAddon]
[00:00:34] [Server thread/INFO]: [FallbackServerAddon] [!] The plugin is now in passive mode:
[00:00:34] [Server thread/INFO]: [FallbackServerAddon] [!] Use /fsa reload when you finished the setup.
[00:00:34] [Server thread/INFO]: [FallbackServerAddon]
[00:00:35] [Craft Scheduler Thread - 31 - Citizens/ERROR]: Got an error with a html body connecting to https://api.minecraftservices.com/minecraft/profile/lookup/bulk/byname: <html>
<head><title>403 Forbidden</title></head>
<body>
<center><h1>403 Forbidden</h1></center>
<hr><center>Microsoft-Azure-Application-Gateway/v2</center>
</body>
</html>

[00:00:35] [Server thread/INFO]: [PAPI] [Javascript-Expansion] 2 scripts loaded!
[00:00:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: javascript [2.1.2]
[00:00:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: localtime [1.2]
[00:00:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: playerlist [3.0.8]
[00:00:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: changeoutput [1.2.2]
[00:00:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[00:00:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [2.0.2]
[00:00:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: servertime [3.2]
[00:00:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[00:00:35] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion votingplugin. Identifier is already in use.
[00:00:35] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion votingplugin due to an unknown issue.
[00:00:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: checkitem [2.7.8]
[00:00:35] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion luckperms. Identifier is already in use.
[00:00:35] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion luckperms due to an unknown issue.
[00:00:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[00:00:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[00:00:35] [Server thread/INFO]: Vanish Placeholders - Hooked into SuperVanish or PremiumVanish
[00:00:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vanish [1.2]
[00:00:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: bungee [2.3]
[00:00:35] [Server thread/INFO]: [PlaceholderAPI] [attribute] Available attributes: luck, flying_speed, attack_speed, attack_damage, OXYGEN_BONUS, TEMPT_RANGE, knockback_resistance, LUCK, BLOCK_INTERACTION_RANGE, attack_knockback, explosion_knockback_resistance, MAX_ABSORPTION, ATTACK_DAMAGE, SAFE_FALL_DISTANCE, SCALE, block_interaction_range, ENTITY_INTERACTION_RANGE, MAX_HEALTH, ATTACK_SPEED, ARMOR, max_absorption, follow_range, water_movement_efficiency, GRAVITY, jump_strength, STEP_HEIGHT, FOLLOW_RANGE, oxygen_bonus, armor, MINING_EFFICIENCY, FLYING_SPEED, SWEEPING_DAMAGE_RATIO, submerged_mining_speed, SUBMERGED_MINING_SPEED, FALL_DAMAGE_MULTIPLIER, scale, armor_toughness, MOVEMENT_EFFICIENCY, block_break_speed, WATER_MOVEMENT_EFFICIENCY, spawn_reinforcements, step_height, sweeping_damage_ratio, JUMP_STRENGTH, EXPLOSION_KNOCKBACK_RESISTANCE, movement_speed, MOVEMENT_SPEED, sneaking_speed, SNEAKING_SPEED, mining_efficiency, entity_interaction_range, ARMOR_TOUGHNESS, max_health, safe_fall_distance, gravity, BURNING_TIME, burning_time, SPAWN_REINFORCEMENTS, tempt_range, fall_damage_multiplier, KNOCKBACK_RESISTANCE, movement_efficiency, BLOCK_BREAK_SPEED, ATTACK_KNOCKBACK
[00:00:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: attribute [1.1.0]
[00:00:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: ViaVersion [2.0.0]
[00:00:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[00:00:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[00:00:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldguard [1.4.2]
[00:00:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: multiverse [1.0.1]
[00:00:35] [Server thread/INFO]: 19 placeholder hook(s) registered!
[00:00:35] [Server thread/WARN]: [BetterRTP] Seems like the world `Tower2` does not have a `WorldType` declared. Please add/fix this in the config.yml file! This world will be treated as an overworld! If this world is a nether world, configure it to NETHER (example: `- Tower2: NETHER`
[00:00:35] [Craft Scheduler Thread - 31 - Citizens/ERROR]: Got an error with a html body connecting to https://api.minecraftservices.com/minecraft/profile/lookup/bulk/byname: <html>
<head><title>403 Forbidden</title></head>
<body>
<center><h1>403 Forbidden</h1></center>
<hr><center>Microsoft-Azure-Application-Gateway/v2</center>
</body>
</html>

[00:00:35] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item Hacha_de_shigu
[00:00:35] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/items/ExampleItems.yml
[00:00:35] [Server thread/WARN]: [MythicMobs] --| Error Message: Enchantment 'DAMAGE_ALL' not found
[00:00:35] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item Hacha_de_shigu
[00:00:35] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/items/ExampleItems.yml
[00:00:35] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid enchantment configured: DAMAGE_ALL 8
[00:00:36] [Craft Scheduler Thread - 31 - Citizens/ERROR]: Got an error with a html body connecting to https://api.minecraftservices.com/minecraft/profile/lookup/bulk/byname: <html>
<head><title>403 Forbidden</title></head>
<body>
<center><h1>403 Forbidden</h1></center>
<hr><center>Microsoft-Azure-Application-Gateway/v2</center>
</body>
</html>

[00:00:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimateautorestart [2025.01]
[00:00:36] [Server thread/INFO]: [UltimateAutoRestart] Hooked into PlaceholderAPI!
[00:00:36] [Server thread/INFO]: [UltimateAutoRestart] Successfully performed 1 hooks!
[00:00:37] [Craft Scheduler Thread - 21 - ImageFrame/INFO]: [ImageFrame] Data loading completed! Loaded 62 ImageMaps!
[00:00:38] [Craft Scheduler Thread - 26 - VotingPlugin/WARN]: [VotingPlugin] Detected an issue with voting sites, check the server startup log for more details: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[00:00:38] [Craft Scheduler Thread - 24 - AuctionHouse/INFO]: [CasaDeSubastas] Auto saved auction items & transactions
[00:00:38] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[00:00:38] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[00:00:38] [Server thread/INFO]:  
[00:00:38] [Server thread/INFO]:  [UltimateAutoRestart] New update available!
[00:00:38] [Server thread/INFO]:  Current version: 2025.01 with latest being 2025.02!
[00:00:38] [Server thread/INFO]:  
[00:00:38] [Server thread/INFO]:  SpigotMC -> https://norska.dev/r/spigot/uar/
[00:00:38] [Server thread/INFO]:  Polymart -> https://norska.dev/r/polymart/uar/
[00:00:38] [Server thread/INFO]:  BuiltByBit -> https://norska.dev/r/bbb/uar/
[00:00:38] [Server thread/INFO]:  
[00:00:38] [pool-170-thread-1/INFO]: [VotingPlugin] Pausing skull caching due to hitting rate limit or an error, increasing delay for caching
[00:00:43] [Server thread/INFO]: [MyCommand] found an update for MyCommand. Type /mycommand for more infos.
[00:00:43] [Craft Scheduler Thread - 25 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.18.2