Paste #119327: cmi does not load

Date: 2024/01/09 12:39:09 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
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260


[23:08:26] [ServerMain/INFO]: Environment: Environment[accountsHost=https://api.mojang.com, sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[23:08:28] [ServerMain/INFO]: Loaded 7 recipes
[23:08:28] [Server thread/INFO]: Starting minecraft server version 1.20.2
[23:08:28] [Server thread/INFO]: Loading properties
[23:08:28] [Server thread/INFO]: This server is running Purpur version git-Purpur-2094 (MC: 1.20.2) (Implementing API version 1.20.2-R0.1-SNAPSHOT) (Git: c46cb7e on HEAD)
[23:08:29] [Server thread/INFO]: Server Ping Player Sample Count: 12
[23:08:29] [Server thread/INFO]: Using 4 threads for Netty based IO
[23:08:29] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 2 worker threads, and gen parallelism of 2 threads
[23:08:29] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 256 bits (int)
[23:08:29] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 256 bits (float)
[23:08:29] [Server thread/INFO]: [Pufferfish] SIMD operations detected as functional. Will replace some operations with faster versions.
[23:08:29] [Server thread/INFO]: Default game type: SURVIVAL
[23:08:29] [Server thread/INFO]: Generating keypair
[23:08:29] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25568
[23:08:29] [Server thread/INFO]: Using epoll channel type
[23:08:29] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[23:08:29] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[23:08:30] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[23:08:30] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[23:08:30] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[23:08:30] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[23:08:30] [Server thread/INFO]: [WolfyUtilities] NMS Version: v1_20_R2
[23:08:31] [Server thread/INFO]: [me.wolfyscript.lib.org.reflections.Reflections] Reflections took 295 ms to scan 1 urls, producing 905 keys and 3616 values
[23:08:31] [Server thread/INFO]: [CustomCrafting] NMS Version: v1_20_R2
[23:08:31] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R2.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[23:08:34] [Server thread/WARN]: Legacy plugin CMIEInjector v1.0.2.3 does not specify an api-version.
[23:08:34] [Server thread/INFO]: [BackInPack] Hooked into WorldGuard 7.0.9+5934e49
[23:08:34] [Server thread/INFO]: [SpigotLibraryLoader] [CrazyCrates] Loading 1 libraries... please wait
[23:08:34] [Server thread/INFO]: [SpigotLibraryLoader] [CrazyCrates] Loaded library /home/container/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[23:08:34] [Server thread/INFO]: [SpigotLibraryLoader] [CrazyCrates] Loaded library /home/container/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[23:08:34] [Server thread/INFO]: [SpigotLibraryLoader] [CrazyCrates] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[23:08:34] [Server thread/INFO]: [SpigotLibraryLoader] [CrazyCrates] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[23:08:34] [Server thread/INFO]: [SpigotLibraryLoader] [CrazyCrates] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[23:08:34] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.108
[23:08:34] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[23:08:34] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.8.3-SNAPSHOT-613;b754bc0
[23:08:36] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@7cde88b4]
[23:08:36] [Server thread/INFO]: [VoidGen] Loading server plugin VoidGen v2.2.1
[23:08:36] [Server thread/INFO]: [WildStacker] Loading server plugin WildStacker v2023.3-b32
[23:08:36] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.1.1-SNAPSHOT-673
[23:08:37] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9+5934e49
[23:08:37] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[23:08:37] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.5
[23:08:37] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v10.0.40
[23:08:37] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.5.1-9aedaa15
[23:08:37] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[23:08:37] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[23:08:37] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.4.4.3
[23:08:37] [Server thread/INFO]: [MythicLib] Loading server plugin MythicLib v1.6.2-SNAPSHOT
[23:08:37] [Server thread/INFO]: [MythicLib] Plugin file is called 'MythicLib-dist-1.6.2-20231127.001116-28.jar'
[23:08:37] [Server thread/INFO]: [MythicLib] Detected Bukkit Version: v1_20_R2
[23:08:37] [Server thread/INFO]: [MythicLib] Hooked onto WorldGuard
[23:08:37] [Server thread/INFO]: [CMI] Loading server plugin CMI v9.6.9.5
[23:08:37] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.5
[23:08:37] [Server thread/INFO]: [ProtectionStones] Loading server plugin ProtectionStones v2.10.4
[23:08:37] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.30
[23:08:37] [Server thread/INFO]: [MMOItems] Loading server plugin MMOItems v6.9.5-SNAPSHOT
[23:08:37] [Server thread/INFO]: [MMOItems] Plugin file is called 'MMOItems-6.9.5-20231202.120256-13.jar'
[23:08:37] [Server thread/INFO]: [MMOItems] Hooked onto WorldEdit
[23:08:37] [Server thread/INFO]: Environment: Environment[accountsHost=https://api.mojang.com, sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[23:08:37] [Server thread/WARN]: [MMOItems] Could not register stat 'ITEM_DAMAGE' as a stat with the same ID already exists.
[23:08:37] [Server thread/INFO]: [MMOItems Template Modifiers] Preloading template modifiers, please wait..
[23:08:37] [Server thread/INFO]: [MMOItems Item Templates] Preloading item templates, please wait..
[23:08:37] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3296)
[23:08:37] [Server thread/INFO]: [SCore] Loading server plugin SCore v4.24.1.6
[23:08:37] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.12
[23:08:37] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v3.6.2-beta-r4
[23:08:37] [Server thread/INFO]: [WolfyUtilities] Loading server plugin WolfyUtilities v4.16.14.1
[23:08:37] [Server thread/INFO]: [WolfyUtilities] Register JSON de-/serializers
[23:08:37] [Server thread/INFO]: [WolfyUtilities] Register JSON Operators
[23:08:37] [Server thread/INFO]: [WolfyUtilities] Register JSON Value Providers
[23:08:37] [Server thread/INFO]: [WolfyUtilities] Register CustomItem NBT Checks
[23:08:37] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Actions
[23:08:37] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Events
[23:08:37] [Server thread/INFO]: [WolfyUtilities] Register Particle Animators
[23:08:37] [Server thread/INFO]: [WolfyUtilities] Register Particle Shapes
[23:08:37] [Server thread/INFO]: [WolfyUtilities] Register Particle Timers
[23:08:37] [Server thread/INFO]: [WolfyUtilities] Register Custom Block Data
[23:08:37] [Server thread/INFO]: [WolfyUtilities] Register Custom Player Data
[23:08:37] [Server thread/INFO]: [WolfyUtilities] Register NBT Query Nodes
[23:08:37] [Server thread/INFO]: [PlayerPoints] Loading server plugin PlayerPoints v3.2.6
[23:08:37] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.12.2
[23:08:37] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[23:08:37] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[23:08:37] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[23:08:37] [Server thread/INFO]: [HeadDB] Loading server plugin HeadDB v5.0.0-rc.9
[23:08:37] [Server thread/INFO]: [CustomCrafting] Loading server plugin CustomCrafting v4.16.8.5
[23:08:37] [Server thread/INFO]: [CustomCrafting] WolfyUtils API: v4.16.14.1
[23:08:37] [Server thread/INFO]: [CustomCrafting] CustomCrafting: v4.16.8.5
[23:08:37] [Server thread/INFO]: [CustomCrafting] Environment   : PROD
[23:08:37] [Server thread/INFO]: [CustomCrafting] Registering CustomItem Data
[23:08:37] [Server thread/INFO]: [CustomCrafting] Registering Custom Block Data
[23:08:37] [Server thread/INFO]: [CustomCrafting] Registering Result Extensions
[23:08:37] [Server thread/INFO]: [CustomCrafting] Registering Result Merge Adapters
[23:08:37] [Server thread/INFO]: [CustomCrafting] Registering Recipe Conditions
[23:08:37] [Thread-9/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[23:08:37] [Server thread/INFO]: [CustomCrafting] Registering Recipe Types
[23:08:37] [Server thread/INFO]: [CustomCrafting] Registering Anvil Recipe Tasks
[23:08:37] [Server thread/INFO]: [CustomCrafting] Registering Type Registries
[23:08:37] [Server thread/INFO]: [ExecutableItems] Loading server plugin ExecutableItems v6.24.1.6
[23:08:37] [Server thread/INFO]: [ShopGUIPlus] Loading server plugin ShopGUIPlus v1.94.0
[23:08:37] [Server thread/INFO]: [BungeeGuard] Loading server plugin BungeeGuard v1.3-SNAPSHOT
[23:08:37] [Server thread/INFO]: [AdvancedEnchantments] Loading server plugin AdvancedEnchantments v9.5.28
[23:08:37] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.59
[23:08:37] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-DEV-168
[23:08:37] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup successfully!
[23:08:37] [Server thread/INFO]: [Quests] Loading server plugin Quests v3.14.2-3345d07
[23:08:37] [Server thread/INFO]: [Markets] Loading server plugin Markets v2.13.1
[23:08:37] [Server thread/INFO]: [CMIEInjector] Loading server plugin CMIEInjector v1.0.2.3
[23:08:37] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.0.9
[23:08:37] [Server thread/INFO]: [MobFarmManager] Loading server plugin MobFarmManager v2.1.0.4
[23:08:37] [Server thread/INFO]: [LuckyWheel] Loading server plugin LuckyWheel v1.0.3
[23:08:37] [Server thread/INFO]: [LastLoginAPI] Loading server plugin LastLoginAPI v1.7.4
[23:08:37] [Server thread/INFO]: [LastLoginAPI] Loading libraries of LastLoginAPI v1.7.4, this may take a while
[23:08:37] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jar-relocator
[23:08:37] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for asm
[23:08:37] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for asm-commons
[23:08:37] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for gson
[23:08:37] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jdbi3-core
[23:08:37] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for geantyref
[23:08:37] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for caffeine
[23:08:37] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jdbi3-stringtemplate4
[23:08:37] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for ST4
[23:08:37] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for antlr-runtime
[23:08:37] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jdbi3-sqlobject
[23:08:37] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for slf4j-api
[23:08:37] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for slf4j-simple
[23:08:37] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for HikariCP
[23:08:37] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for mariadb-java-client
[23:08:37] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for mysql-connector-j
[23:08:37] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for postgresql
[23:08:37] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for h2
[23:08:37] [Server thread/INFO]: [TradeMe] Loading server plugin TradeMe v6.2.1.0
[23:08:37] [Server thread/INFO]: [EasyCommandBlocker] Loading server plugin EasyCommandBlocker v1.8.1
[23:08:37] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.4
[23:08:37] [Server thread/INFO]: [40ServidoresMC] Loading server plugin 40ServidoresMC v2.5
[23:08:37] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.8.0
[23:08:37] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[23:08:37] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[23:08:37] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[23:08:37] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[23:08:37] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[23:08:37] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[23:08:37] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[23:08:37] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[23:08:37] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[23:08:37] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[23:08:37] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[23:08:37] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[23:08:37] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[23:08:37] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[23:08:37] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[23:08:37] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[23:08:37] [Server thread/INFO]: [AlonsoTags] Loading server plugin AlonsoTags v2.1.3-BETA-PRO
[23:08:37] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.13.3
[23:08:37] [Server thread/INFO]: [BackInPack] Loading server plugin BackInPack v3.0-BETA
[23:08:37] [Server thread/INFO]: [CrazyCrates] Loading server plugin CrazyCrates v1.19.3
[23:08:37] [Server thread/INFO]: [InventoryRollbackPlus] Loading server plugin InventoryRollbackPlus v1.6.12
[23:08:37] [Server thread/INFO]: [ExcellentShop] Loading server plugin ExcellentShop v4.7.2
[23:08:37] [Server thread/INFO]: [JPremium] Loading server plugin JPremium vCLEARED-1.19.0
[23:08:37] [Server thread/INFO]: [ConditionalEvents] Loading server plugin ConditionalEvents v4.44.2
[23:08:37] [Server thread/INFO]: [VoteParty] Loading server plugin VoteParty v2.37
[23:08:37] [Server thread/INFO]: [ChestSort] Loading server plugin ChestSort v13.6.6
[23:08:37] [Server thread/INFO]: [UltimateClans] Loading server plugin UltimateClans v6.15.6
[23:08:37] [Server thread/INFO]: [DeluxeCombat] Loading server plugin DeluxeCombat v1.50.6
[23:08:37] [Server thread/INFO]: [BottledExp] Loading server plugin BottledExp v3.2.2.2
[23:08:37] [Server thread/INFO]: [LPX] Loading server plugin LPX v3.3.3
[23:08:37] [Server thread/INFO]: [UltimateServerProtector] Loading server plugin UltimateServerProtector v26.0
[23:08:37] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[23:08:37] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.108
[23:08:38] [Server thread/INFO]:         __    
[23:08:38] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.108
[23:08:38] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[23:08:38] [Server thread/INFO]: 
[23:08:38] [Server thread/INFO]: [LuckPerms] Loading configuration...
[23:08:39] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MARIADB]
[23:08:39] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[23:08:39] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[23:08:39] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[23:08:40] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[23:08:40] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[23:08:40] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2934ms)
[23:08:40] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[23:08:40] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[23:08:40] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[23:08:40] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[23:08:40] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.8.3-SNAPSHOT-613;b754bc0
[23:08:41] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[23:08:41] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[23:08:41] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[23:08:41] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[23:08:41] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R2.PaperweightFaweAdapter as the Bukkit adapter
[23:08:41] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[23:08:41] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[23:08:41] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.1.1-SNAPSHOT-673
[23:08:41] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.30
[23:08:41] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.12
[23:08:41] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[23:08:41] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[23:08:41] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[23:08:41] [Server thread/INFO]: [NexEngine] Plugin loaded in 54 ms!
[23:08:41] [Server thread/INFO]: [WolfyUtilities] Enabling WolfyUtilities v4.16.14.1
[23:08:41] [Server thread/INFO]: [WolfyUtilities] Minecraft version: 1.20.2
[23:08:41] [Server thread/INFO]: [WolfyUtilities] WolfyUtils version: 4.16.14.1
[23:08:41] [Server thread/INFO]: [WolfyUtilities] Environment: PROD
[23:08:41] [Server thread/INFO]: [WolfyUtilities] Loading Plugin integrations: 
[23:08:41] [Server thread/INFO]: [WolfyUtilities]  - MythicMobs
[23:08:41] [Server thread/INFO]: [WolfyUtilities]  - PlaceholderAPI
[23:08:41] [Server thread/INFO]: [WolfyUtilities]  - ExecutableItems
[23:08:41] [Server thread/INFO]: [WolfyUtilities]  - ItemsAdder
[23:08:41] [Server thread/INFO]: [WolfyUtilities]  - MMOItems
[23:08:41] [Server thread/INFO]: [WolfyUtilities] Create & Init Plugin integrations: 
[23:08:41] [Server thread/INFO]: [WolfyUtilities] Register API references
[23:08:41] [Server thread/INFO]: [WolfyUtilities] Loading stored Custom Items
[23:08:42] [Server thread/INFO]: [WolfyUtilities] Loading Creative Mode Tabs
[23:08:42] [Server thread/INFO]: [PlayerPoints] Enabling PlayerPoints v3.2.6
[23:08:42] [Server thread/INFO]: [PlayerPoints] Initializing using RoseGarden v1.2.5
[23:08:42] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 28 build(s) out of date.
You are running build 613, the latest version is build 641.
Update at https://www.spigotmc.org/resources/13932/
[23:08:42] [Server thread/INFO]: [PlayerPoints] Data handler connected using MySQL.
[23:08:42] [Server thread/INFO]: [BungeeGuard] Enabling BungeeGuard v1.3-SNAPSHOT
[23:08:42] [Server thread/INFO]: [BungeeGuard] Using Paper's PlayerHandshakeEvent to listen for connections.
[23:08:42] [Server thread/INFO]: [CMIEInjector] Enabling CMIEInjector v1.0.2.3*
[23:08:42] [Server thread/INFO]: [CMIEInjector] Injecting CMI Economy
[23:08:42] [Server thread/INFO]: [NexEngine] Successfully hooked with CMIEconomy economy
[23:08:42] [Server thread/INFO]: [CMIEInjector] [Economy] CMI Economy found: Waiting
[23:08:42] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[23:08:42] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[23:08:42] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[23:08:42] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[23:08:42] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[23:08:42] [Server thread/INFO]: Preparing level "Eclipze"
[23:08:43] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[23:08:43] [Server thread/INFO]: Time elapsed: 214 ms
[23:08:43] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[23:08:43] [Server thread/INFO]: Time elapsed: 56 ms
[23:08:43] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[23:08:43] [Server thread/INFO]: Time elapsed: 34 ms
[23:08:43] [Server thread/INFO]: [WildStacker] Enabling WildStacker v2023.3-b32
[23:08:43] [Server thread/INFO]: [WildStacker] ******** ENABLE START ********
[23:08:43] [Server thread/INFO]: [WildStacker] Loading configuration started...
[23:08:43] [Server thread/INFO]: [WildStacker]  - Stacking drops is disabled
[23:08:43] [Server thread/INFO]: [WildStacker]  - Stacking entities is enabled
[23:08:43] [Server thread/INFO]: [WildStacker]  - Stacking spawners is disabled
[23:08:43] [Server thread/INFO]: [WildStacker]  - Stacking barrels is disabled
[23:08:43] [Server thread/INFO]: [WildStacker] Loading configuration done (Took 145ms)
[23:08:43] [Server thread/INFO]: [WildStacker] Loading loot-tables started...
[23:08:43] [Server thread/INFO]: [WildStacker] Loading loot-tables done (Took 54ms)
[23:08:43] [Server thread/INFO]: [WildStacker] Loading messages started...
[23:08:43] [Server thread/INFO]: [WildStacker]  - Found 69 messages in lang.yml.
[23:08:43] [Server thread/INFO]: [WildStacker] Loading messages done (Took 11ms)
[23:08:44] [Server thread/INFO]: [WildStacker] ******** ENABLE DONE ********
[23:08:44] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9+5934e49
[23:08:44] [Server thread/INFO]: [WorldGuard] (Eclipze) TNT ignition is PERMITTED.
[23:08:44] [Server thread/INFO]: [WorldGuard] (Eclipze) Lighters are PERMITTED.
[23:08:44] [Server thread/INFO]: [WorldGuard] (Eclipze) Lava fire is PERMITTED.
[23:08:44] [Server thread/INFO]: [WorldGuard] (Eclipze) Fire spread is UNRESTRICTED.
[23:08:44] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Eclipze'
[23:08:44] [Server thread/INFO]: [WorldGuard] (Eclipze_nether) TNT ignition is PERMITTED.
[23:08:44] [Server thread/INFO]: [WorldGuard] (Eclipze_nether) Lighters are PERMITTED.
[23:08:44] [Server thread/INFO]: [WorldGuard] (Eclipze_nether) Lava fire is PERMITTED.
[23:08:44] [Server thread/INFO]: [WorldGuard] (Eclipze_nether) Fire spread is UNRESTRICTED.
[23:08:44] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Eclipze_nether'
[23:08:44] [Server thread/INFO]: [WorldGuard] (Eclipze_the_end) TNT ignition is PERMITTED.
[23:08:44] [Server thread/INFO]: [WorldGuard] (Eclipze_the_end) Lighters are PERMITTED.
[23:08:44] [Server thread/INFO]: [WorldGuard] (Eclipze_the_end) Lava fire is PERMITTED.
[23:08:44] [Server thread/INFO]: [WorldGuard] (Eclipze_the_end) Fire spread is UNRESTRICTED.
[23:08:44] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Eclipze_the_end'
[23:08:44] [Server thread/INFO]: [WorldGuard] Loading region data...
[23:08:44] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[23:08:44] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[23:08:44] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[23:08:45] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[23:08:45] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[23:08:45] [Server thread/INFO]: Preparing start region for dimension minecraft:eventos
[23:08:46] [Server thread/INFO]: Time elapsed: 885 ms
[23:08:46] [Server thread/INFO]: [WorldGuard] (Eventos) TNT ignition is PERMITTED.
[23:08:46] [Server thread/INFO]: [WorldGuard] (Eventos) Lighters are PERMITTED.
[23:08:46] [Server thread/INFO]: [WorldGuard] (Eventos) Lava fire is PERMITTED.
[23:08:46] [Server thread/INFO]: [WorldGuard] (Eventos) Fire spread is UNRESTRICTED.
[23:08:46] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Eventos'
[23:08:46] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[23:08:46] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[23:08:46] [Server thread/INFO]: [Multiverse-Core] 4 - World(s) loaded.
[23:08:46] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[23:08:46] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[23:08:46] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.5
[23:08:46] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[23:08:46] [Server thread/INFO]: [WolfyUtilities] init PAPI event
[23:08:46] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for PlaceholderAPI
[23:08:46] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.40
[23:08:46] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-10.0.40-Premium.jar
[23:08:46] [Server thread/INFO]: [LibsDisguises] Discovered nms version: v1_20_R2 (v1_20_R2)
[23:08:46] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1269
[23:08:46] [Server thread/INFO]: [LibsDisguises] Build Date: 15/11/2023 07:31
[23:08:46] [Server thread/INFO]: [LibsDisguises] Registered to: 946953 (36)
[23:08:46] [Server thread/INFO]: [LibsDisguises] Premium enabled, thank you for supporting Lib's Disguises!
[23:08:47] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[23:08:47] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[23:08:47] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[23:08:47] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.5.1-9aedaa15
[23:08:48] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.20.2)...
[23:08:48] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[23:08:49] [Server thread/INFO]: [MythicMobs] Mythic LibsDisguises Support has been enabled!
[23:08:49] [Server thread/INFO]: [MythicMobs] Mythic MMOItems Support has been enabled!
[23:08:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[23:08:49] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[23:08:49] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[23:08:49] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[23:08:49] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[23:08:49] [Server thread/INFO]: [MythicMobs] Base directory /home/container/plugins/MythicMobs/SavedData
[23:08:49] [Server thread/INFO]: [MythicMobs] Module directory /home/container/plugins/MythicMobs/SavedData/worlds
[23:08:50] [Server thread/INFO]: [MythicMobs] Loading Packs...
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading Items...
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading Skills...
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_DAMAGE from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_SPEED from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat BONUS_DAMAGE from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_DAMAGE from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_RESILIENCE from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_REDUCTION from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat DEFENSE from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_NEGATION from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH_REGENERATION from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_POWER from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat MOVEMENT_SPEED from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_NEGATION from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_POWER from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_COUNTERATTACK from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_GENERIC from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_BLUNT from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_SHARP from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_BLUNT from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_SHARP from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat FIRE_RESISTANCE from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading stat SPEED from /home/container/plugins/MythicMobs/stats.yml
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[23:08:51] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[23:08:51] [Server thread/INFO]: [MythicMobs] ✓ Loaded 8 mobs.
[23:08:51] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[23:08:51] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[23:08:51] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 skills.
[23:08:51] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[23:08:51] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 mythic items.
[23:08:51] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[23:08:51] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[23:08:51] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[23:08:51] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[23:08:51] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.5.1 ( build 9aedaa15 ) has been successfully loaded!
[23:08:51] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for MythicMobs
[23:08:51] [Server thread/INFO]: [CMILib] Enabling CMILib v1.4.4.3
[23:08:52] [Server thread/INFO]: Server version: v1_20_R2 - 1.20.2 - purpur
[23:08:52] [Server thread/INFO]: CMI hooked.
[23:08:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.4.4.3]
[23:08:52] [Server thread/INFO]: PlaceholderAPI hooked.
[23:08:52] [Server thread/INFO]: Updated (EN) language file. Took 23ms
[23:08:52] [Server thread/INFO]: Updated (ES) language file. Took 13ms
[23:08:52] [Server thread/INFO]: [MythicLib] Enabling MythicLib v1.6.2-SNAPSHOT
[23:08:52] [Server thread/INFO]: [MythicLib] Hooked onto DecentHolograms
[23:08:52] [Server thread/INFO]: [MythicLib] Hooked onto CMI
[23:08:52] [Server thread/INFO]: [MythicMobs] MMO Plugin Support has been enabled!
[23:08:52] [Server thread/INFO]: [MythicLib] Hooked onto MythicMobs
[23:08:52] [Server thread/INFO]: [MythicLib] Hooked onto ProtocolLib
[23:08:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythiclib [1.6.2-SNAPSHOT]
[23:08:52] [Server thread/INFO]: [MythicLib] Hooked onto PlaceholderAPI
[23:08:52] [Server thread/WARN]: [MythicLib] Found a dependency cycle! Please make sure that the plugins involved load with no errors.
[23:08:52] [Server thread/WARN]: [MythicLib] Plugin dependency cycle: [CrazyCrates, ItemsAdder, SCore, ItemsAdder]
[23:08:52] [Server thread/INFO]: [CMI] Enabling CMI v9.6.9.5
[23:08:52] [Server thread/INFO]: ┏━━━┓ ┏━┓┏━┓ ┏━━┓
[23:08:52] [Server thread/INFO]: ┃┏━┓┃ ┃ ┗┛ ┃ ┗┫┣┛
[23:08:52] [Server thread/INFO]: ┃┃ ┗┛ ┃┏┓┏┓┃  ┃┃ 
[23:08:52] [Server thread/INFO]: ┃┃ ┏┓ ┃┃┃┃┃┃  ┃┃ 
[23:08:52] [Server thread/INFO]: ┃┗━┛┃ ┃┃┃┃┃┃ ┏┫┣┓
[23:08:52] [Server thread/INFO]: ┗━━━┛ ┗┛┗┛┗┛ ┗━━┛
[23:08:52] [Server thread/INFO]: _______________________________________________________
[23:08:52] [Server thread/INFO]:   Integrating PaperSpigot async methods
[23:08:52] [Server thread/INFO]:   Vault found. (Loaded: true)
[23:08:52] [Server thread/INFO]:   Citizens found. (Loaded: false)
[23:08:52] [Server thread/INFO]:   41 Enabled and 18 Disabled modules
[23:08:52] [Server thread/INFO]:   ProtocolLib found. (Loaded: true)
[23:08:52] [Server thread/INFO]:   Permission plugin: LuckPerms5.4.108
[23:08:52] [Server thread/INFO]:   Initialized Cipher256 AES
[23:08:53] [Server thread/INFO]:   Loaded (61) regular alias into memory. Took 42ms
[23:08:53] [Server thread/INFO]:   Loaded (1) custom text's into memory. Took 1ms
[23:08:53] [Server thread/INFO]:   3.42.0 data base type detected
[23:08:53] [Server thread/INFO]:   Started SqLite data base. Took 148ms
[23:08:53] [Server thread/INFO]:   Vault was found - Enabling capabilities. Economy: CMIEconomy
[23:08:53] [Server thread/INFO]:   Loaded (5) warning categories into memory. Took 1ms
[23:08:53] [Server thread/INFO]:   Loaded (3) warning commands into memory. Took 0ms
[23:08:53] [Server thread/INFO]:   Loaded (144) custom mob heads into memory. Took 15ms
[23:08:53] [Server thread/INFO]:   Loaded (0) cooldowns into memory. Took 25ms
[23:08:53] [Server thread/INFO]:   Enabling BungeeCord Support
[23:08:53] [Server thread/INFO]:   Initializing BungeeCord
[23:08:53] [Server thread/INFO]:   Loaded (1) kits into memory. Took 4ms
[23:08:53] [Server thread/INFO]:   Loaded (7) ranks into memory. Took 7ms
[23:08:53] [Server thread/INFO]:   Loaded (8) playtime rewards into memory. Took 1ms
[23:08:53] [Server thread/INFO]:   Loaded (4) player data into memory. Took 8ms
[23:08:53] [Server thread/INFO]:   Loaded (0) playtime records into memory. Took 1ms
[23:08:53] [Server thread/INFO]:   Loaded (0) playtime reward records into memory. Took 0ms
[23:08:53] [Server thread/INFO]:   Loaded (0) custom alias into memory. Took 0ms
[23:08:53] [Server thread/INFO]:   Registered events. Took 74ms
[23:08:53] [Server thread/INFO]:   Loaded (0) event action commands into memory. Took 3ms
[23:08:53] [Server thread/INFO]:   Loaded (EN) language file into memory. Took 95ms
[23:08:53] [Server thread/INFO]:   Loaded (ES) language file into memory. Took 79ms
[23:08:53] [Server thread/INFO]:   Loaded (245) worth values into memory. Took 32ms
[23:08:53] [Server thread/INFO]:   Loaded (2) warps into memory. Took 2ms
[23:08:53] [Server thread/INFO]:   VaultPermissions found. (Loaded: true)
[23:08:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmi [9.6.9.5]
[23:08:53] [Server thread/INFO]:   PlaceholderAPI hooked.
[23:08:53] [Server thread/INFO]:   PlaceholderAPI found. (Loaded: true)
[23:08:53] [Server thread/INFO]:   Starting world timer.
[23:08:53] [Server thread/INFO]:   Initializing world manager.
[23:08:53] [Server thread/INFO]:   Loaded (4) schedules into memory. Took 4ms
[23:08:53] [Server thread/INFO]:   Loaded GeoIP
[23:08:53] [Server thread/INFO]:   Loaded (0) skin cache entries into memory. Took 0ms
[23:08:53] [Server thread/INFO]:   Loaded (0) ArmorStand templates into memory. Took 0ms
[23:08:53] [Server thread/INFO]:   Version 9.6.9.5 has been enabled
[23:08:53] [Server thread/INFO]: ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
[23:08:53] [Server thread/INFO]: [CMIEInjector][Economy] CMI Economy hooked.
[23:08:53] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.5
[23:08:53] [Server thread/INFO]: [ProtectionStones] Enabling ProtectionStones v2.10.4
[23:08:53] [Server thread/INFO]: [WorldGuard] Registering session handler dev.espi.protectionstones.flags.GreetingFlagHandler
[23:08:53] [Server thread/INFO]: [WorldGuard] Registering session handler dev.espi.protectionstones.flags.FarewellFlagHandler
[23:08:53] [Server thread/INFO]: [ProtectionStones] PlaceholderAPI support enabled!
[23:08:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: protectionstones [2.10.4]
[23:08:53] [Server thread/INFO]: [ProtectionStones] LuckPerms support enabled!
[23:08:53] [Server thread/INFO]: [ProtectionStones] Protection Stone Blocks:
[23:08:53] [Server thread/INFO]: [ProtectionStones] - PLAYER_HEAD:eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZWRiNWNlMGQ0NGMzZTgxMzhkYzJlN2U1MmMyODk3YmI4NzhlMWRiYzIyMGQ3MDY4OWM3YjZiMThkMzE3NWUwZiJ9fX0= (24)
[23:08:53] [Server thread/INFO]: [ProtectionStones] - PLAYER_HEAD:eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTZhNzY2MzFjMjNlZTJhNzAwZjMzZGNmYTY1Yzc0ZGQzMGQwZjE1N2YzNTE1ZGIyMjU3Y2FkNjhlMmRjN2MzYSJ9fX0= (64)
[23:08:53] [Server thread/INFO]: [ProtectionStones] - PLAYER_HEAD:eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMTNkZDYxZTQ4NDI2M2MzNGYxNzg3ZjY2MGNkNjAwYzI4Y2MyZmIwZGU2NTg5MDI3NDI5NGFjZDJjMzAzMjA2OCJ9fX0= (32)
[23:08:53] [Server thread/INFO]: [ProtectionStones] - PLAYER_HEAD:eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTgwNTU3ZmU2M2YwNmI0YzcwZTJjNWViMmVmNmMwZDhkNWI1NWZkMDljYzVkZTNiY2I2NWY4MzJlMDVkNGMyZSJ9fX0= (16)
[23:08:53] [Server thread/INFO]: [ProtectionStones] - PLAYER_HEAD:eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZmFkYzRhMDI0NzE4ZDQwMWVlYWU5ZTk1YjNjOTI3NjdmOTE2ZjMyM2M5ZTgzNjQ5YWQxNWM5MjY1ZWU1MDkyZiJ9fX0= (8)
[23:08:54] [Server thread/INFO]: [ProtectionStones] Building region cache...
[23:08:54] [Server thread/INFO]: [ProtectionStones] Building UUID cache... (if slow change async-load-uuid-cache in the config to true)
[23:08:54] [Server thread/INFO]: [ProtectionStones] Checking if PS regions have been updated to UUIDs...
[23:08:54] [Server thread/INFO]: [ProtectionStones] ProtectionStones has successfully started!
[23:08:54] [Server thread/INFO]: [MMOItems] Enabling MMOItems v6.9.5-SNAPSHOT
[23:08:54] [Server thread/INFO]: [MMOItems] Hooked onto MythicMobs
[23:08:54] [Server thread/INFO]: [MMOItems LONG_SWORD DUAL_LONGSWORD] Could not load base item data 'item-particles': 
[23:08:54] [Server thread/INFO]: [MMOItems THRUSTING_SWORD SKILLED_SWORD] Could not load base item data 'required-dexterity': Could not find stat with ID 'REQUIRED_DEXTERITY'
[23:08:54] [Server thread/INFO]: [MMOItems SWORD YANISDARK_SWORD] Could not load base item data 'additional-experience': Could not find stat with ID 'ADDITIONAL_EXPERIENCE'
[23:08:54] [Server thread/INFO]: [MMOItems OFF_CATALYST QUICKCASTER_CATALYST] Could not load base item data 'mana-regeneration': Could not find stat with ID 'MANA_REGENERATION'
[23:08:54] [Server thread/INFO]: [MMOItems OFF_CATALYST CHARM_OF_LEVITATION] Could not load base item data 'max-stellium': Could not find stat with ID 'MAX_STELLIUM'
[23:08:54] [Server thread/INFO]: [MMOItems KATANA MASTER_KATANA] Could not load base item data 'required-dexterity': Could not find stat with ID 'REQUIRED_DEXTERITY'
[23:08:54] [Server thread/INFO]: [MMOItems CATALYST LUCK_CHARM] Could not load base item data 'additional-experience': Could not find stat with ID 'ADDITIONAL_EXPERIENCE'
[23:08:54] [Server thread/INFO]: [MMOItems CATALYST LUCK_CHARM] Could not load base item data 'additional-experience-enchanting': Could not find stat with ID 'ADDITIONAL_EXPERIENCE_ENCHANTING'
[23:08:54] [Server thread/INFO]: [MMOItems HAMMER THOR_HAMMER] Could not load base item data 'additional-experience': Could not find stat with ID 'ADDITIONAL_EXPERIENCE'
[23:08:54] [Server thread/INFO]: [MMOItems Template Modifiers] Loading template modifiers, please wait..
[23:08:54] [Server thread/INFO]: [MMOItems Item Templates] Loading item templates, please wait...
[23:08:54] [Server thread/INFO]: [MMOItems] Hooked onto Vault
[23:08:54] [Server thread/INFO]: [MMOItems] Loading crafting stations, please wait..
[23:08:54] [Server thread/INFO]: [MMOItems] Hooked onto AdvancedEnchantments
[23:08:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mmoitems [6.9.5-SNAPSHOT]
[23:08:54] [Server thread/INFO]: [MMOItems] Hooked onto PlaceholderAPI
[23:08:54] [Server thread/INFO]: [MMOItems] Loading recipes, please wait...
[23:08:54] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for MMOItems
[23:08:54] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3296)
[23:08:54] [Server thread/INFO]: [Citizens] Loading external libraries
[23:08:54] [Server thread/ERROR]: [Citizens] v2.0.33-SNAPSHOT (build 3296) is not compatible with Minecraft v1_20_R2 - try upgrading Minecraft or Citizens. Disabling...
[23:08:54] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.33-SNAPSHOT (build 3296)
[23:08:54] [Server thread/INFO]: [SCore] Enabling SCore v4.24.1.6
[23:08:54] [Server thread/INFO]: ================ SCore ================
[23:08:54] [Server thread/INFO]: SCore Version of the server git-Purpur-2094 (MC: 1.20.2) !
[23:08:54] [Server thread/INFO]: SCore ExecutableItems hooked !  (6.24.1.6) Load After
[23:08:54] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.5)  Load Before
[23:08:54] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.9+5934e49)  Load Before
[23:08:54] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-b131)  Load Before
[23:08:54] [Server thread/INFO]: SCore Multiverse-Core hooked !  (4.3.1-b861)  Load Before
[23:08:54] [Server thread/INFO]: SCore ProtocolLib hooked !
[23:08:54] [Server thread/INFO]: SCore Locale setup: EN
[23:08:54] [Server thread/INFO]: SCore NBTAPI hooked !  (2.12.2) Load After
[23:08:54] [Server thread/INFO]: SCore HeadDB hooked !  (5.0.0-rc.9) Load After
[23:08:54] [Server thread/INFO]: SCore MythicMobs hooked !  (5.5.1-9aedaa15)  Load Before
[23:08:54] [Server thread/INFO]: SCore DecentHolograms hooked !  (2.8.5)  Load Before
[23:08:54] [Server thread/INFO]: SCore CMI hooked !  (9.6.9.5)  Load Before
[23:08:54] [Server thread/INFO]: SCore ItemsAdder hooked !  (3.6.2-beta-r4) Load After
[23:08:54] [Server thread/INFO]: SCore ShopGUIPlus hooked !  (1.94.0) Load After
[23:08:54] [Server thread/INFO]: SCore ProtectionStones hooked !  (2.10.4)  Load Before
[23:08:54] [Server thread/INFO]: SCore TAB hooked !  (4.0.9) Load After
[23:08:54] [Server thread/INFO]: SCore Language of the editor setup on EN
[23:08:54] [Server thread/INFO]: SCore Language for in-game messages setup on EN
[23:08:54] [Server thread/INFO]: SCore Connection to the db...
[23:08:54] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[23:08:54] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[23:08:54] [Server thread/INFO]: SCore Creating table Commands if not exists...
[23:08:54] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[23:08:54] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[23:08:54] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[23:08:54] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[23:08:54] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[23:08:55] [Server thread/INFO]: SCore SCore loaded 1 variables from local files !
[23:08:55] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[23:08:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: SCore [1.0.0]
[23:08:55] [Server thread/INFO]: ================ SCore ================
[23:08:55] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v3.6.2-beta-r4
[23:08:55] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[23:08:55] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[23:08:55] [Server thread/INFO]: [ItemsAdder] 
  ___  ___        __        __   __   ___  __      ItemsAdder 3.6.2-beta-r4
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     LoneLibs 1.0.30
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Purpur git-Purpur-2094 (MC: 1.20.2)
                                               
[23:08:55] [Server thread/INFO]: [ItemsAdder] [Host] Starting self-host webserver on port: 8164
[23:08:55] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.12.2
[23:08:55] [Server thread/INFO]: [NBTAPI] Adding listeners...
[23:08:55] [Server thread/INFO]: [NBTAPI] Checking bindings...
[23:08:55] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[23:08:55] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[23:08:55] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[23:08:55] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[23:08:55] [Server thread/INFO]: [HeadDB] Enabling HeadDB v5.0.0-rc.9
[23:08:55] [Server thread/INFO]: [HeadDB] Loading HeadDB - 5.0.0-rc.9
[23:08:55] [Server thread/INFO]: [HeadDB] Loaded 1 languages!
[23:08:55] [Server thread/INFO]: [HeadDB] Done!
[23:08:55] [Server thread/INFO]: [CustomCrafting] Enabling CustomCrafting v4.16.8.5
[23:08:55] [helper-scheduler-0/WARN]: [HeadDB] There is a new update available for HeadDB on spigot!
[23:08:55] [helper-scheduler-0/WARN]: [HeadDB] Download: https://www.spigotmc.org/resources/84967
[23:08:55] [Server thread/INFO]: [CustomCrafting] Loaded fallback language "en_US" v6.1.0 translated by WolfyScript
[23:08:55] [Server thread/INFO]: [CustomCrafting] Loaded active language "en_US" v6.1.0 translated by WolfyScript
[23:08:55] [Server thread/INFO]: [CustomCrafting] ____ _  _ ____ ___ ____ _  _ ____ ____ ____ ____ ___ _ _  _ ____ 
[23:08:55] [Server thread/INFO]: [CustomCrafting] |    |  | [__   |  |  | |\/| |    |__/ |__| |___  |  | |\ | | __ 
[23:08:55] [Server thread/INFO]: [CustomCrafting] |___ |__| ___]  |  |__| |  | |___ |  \ |  | |     |  | | \| |__]
[23:08:55] [Server thread/INFO]: [CustomCrafting]     Version      | v4.16.8.5
[23:08:55] [Server thread/INFO]: [CustomCrafting]     WolfyUtils   | v4.16.14.1
[23:08:55] [Server thread/INFO]: [CustomCrafting]     Bukkit       | git-Purpur-2094 (MC: 1.20.2)(API: 1.20.2-R0.1-SNAPSHOT)
[23:08:55] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[23:08:55] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[23:08:55] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'WolfyUtilities' to create a bStats instance!
[23:08:56] [Server thread/INFO]: [CustomCrafting] 
[23:08:56] [Server thread/INFO]: [CustomCrafting] Special thanks to my Patrons for supporting this project: 
[23:08:56] [Server thread/INFO]: [CustomCrafting] Omarlatif, Nat R, Junye Zhou, Mithran, Teddy, Invictus_Vulpes 
[23:08:56] [Server thread/INFO]: [CustomCrafting] Luuk Musch, WizardOfWit, Lumi Server, fioxu, Green Masks
[23:08:56] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[23:08:56] [Server thread/INFO]: [CustomCrafting] Detected ProtocolLib... initiating additional features.
[23:08:56] [Server thread/INFO]: [CustomCrafting] Registering PlaceHolder
[23:08:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: customcrafting [4.16.8.5]
[23:08:56] [Server thread/INFO]: [CustomCrafting] Data destination: LOCAL
[23:08:56] [Server thread/INFO]: [CustomCrafting] Initiating Inventory GUIs
[23:08:56] [Server thread/INFO]: [CustomCrafting] Register ItemCreator Tabs
[23:08:56] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[23:08:56] [Server thread/INFO]: [ExecutableItems] Enabling ExecutableItems v6.24.1.6
[23:08:56] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[23:08:56] [Server thread/INFO]: ExecutableItems PlaceholderAPI hooked !
[23:08:56] [Server thread/INFO]: ExecutableItems HeadDB hooked !
[23:08:56] [Server thread/INFO]: ExecutableItems NBTAPI hooked !
[23:08:56] [Server thread/INFO]: ExecutableItems WildStacker hooked !
[23:08:56] [Server thread/INFO]: ExecutableItems CustomCrafting hooked !
[23:08:56] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld in the option disableItemsPerWorld
[23:08:56] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld2 in the option disableItemsPerWorld
[23:08:58] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the World value of ifInWorld from config, value: world (Item: Prem_World_Teleporter)
[23:08:58] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the World value of ifInWorld from config, value: world_nether (Item: Prem_World_Teleporter)
[23:08:58] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the World value of ifInWorld from config, value: world_the_end (Item: Prem_World_Teleporter)
[23:08:58] [Server thread/INFO]: ExecutableItems Amount of Executable Items configurations loaded: 113
[23:08:58] [Server thread/INFO]: ExecutableItems Items with display conditions :  
[23:08:58] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[23:08:58] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for ExecutableItems
[23:08:58] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.94.0
[23:08:58] [Server thread/INFO]: [AdvancedEnchantments] Enabling AdvancedEnchantments v9.5.28
[23:08:59] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WildStacker.
[23:08:59] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuard.
[23:08:59] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into ProtectionStones.
[23:08:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedenchantments [1.0.0]
[23:08:59] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into PlaceholderAPI.
[23:08:59] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into MythicMobs.
[23:08:59] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into ProtocolLib.
[23:08:59] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into CMI.
[23:08:59] [Server thread/INFO]: [AdvancedEnchantments] Loaded 7 armor sets.
[23:08:59] [Server thread/INFO]: [AdvancedEnchantments] Loaded 5 weapons.
[23:08:59] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into economy plugin (Vault)
[23:08:59] [Server thread/INFO]: [spark] Enabling spark v1.10.59
[23:08:59] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[23:08:59] [Server thread/INFO]: [spark] Starting background profiler...
[23:08:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: spark [1.10.59]
[23:08:59] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[23:08:59] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-DEV-168
[23:08:59] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[23:09:00] [Server thread/ERROR]: [DeluxeMenus] open_command specified for menu: menu-pag2 already exists for another menu!
Skipping menu: menu-pag2
[23:09:00] [Server thread/INFO]: [DeluxeMenus] 98 GUI menus loaded!
[23:09:00] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[23:09:00] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[23:09:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-DEV-168]
[23:09:00] [Server thread/INFO]: [Quests] Enabling Quests v3.14.2-3345d07
[23:09:00] [Server thread/INFO]: [Quests] Initialising storage provider 'yaml'
[23:09:00] [Server thread/INFO]: [Quests] Your server is running version 1.20
[23:09:00] [Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[23:09:00] [Server thread/INFO]: [Markets] Enabling Markets v2.13.1
[23:09:00] [Server thread/INFO]:  
[23:09:00] [Server thread/INFO]: =============================
[23:09:00] [Server thread/INFO]: Markets v2.13.1 by Tweetzy
[23:09:00] [Server thread/INFO]: Developer: Kiran Hart
[23:09:00] [pool-60-thread-1/INFO]: ᴄᴏᴍᴇʀᴄɪᴏ Loading Markets
[23:09:00] [Server thread/INFO]: [FlightCore] Enabling metrics for Markets
[23:09:00] [pool-60-thread-1/INFO]: ᴄᴏᴍᴇʀᴄɪᴏ Loading Players
[23:09:00] [Server thread/INFO]: =============================
[23:09:00] [Server thread/INFO]:  
[23:09:00] [pool-60-thread-1/INFO]: ᴄᴏᴍᴇʀᴄɪᴏ Loading Market Categories
[23:09:00] [Server thread/INFO]: [TAB] Enabling TAB v4.0.9
[23:09:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.0.9]
[23:09:01] [Server thread/INFO]: [TAB] [WARN] Layout feature breaks yellow-number feature, because it replaces real player with fake slots with different usernames for more reliable functionality. Disable yellow-number feature, as it will only look bad and consume resources.
[23:09:01] [Server thread/INFO]: [TAB] [WARN] Found a total of 1 issues.
[23:09:01] [Server thread/INFO]: [TAB] Enabled in 134ms
[23:09:01] [Server thread/INFO]: [MobFarmManager] Enabling MobFarmManager v2.1.0.4
[23:09:01] [Server thread/INFO]: MobFarmManager Version 2.1.0.4 has been enabled
[23:09:01] [Server thread/INFO]: [LuckyWheel] Enabling LuckyWheel v1.0.3
[23:09:01] [Server thread/INFO]: [LuckyWheel] -----------------------------------------------------------
[23:09:01] [Server thread/INFO]: [LuckyWheel] LuckyWheel - This server is running a compatible version
[23:09:01] [Server thread/INFO]: [LuckyWheel] -----------------------------------------------------------
[23:09:01] [Server thread/INFO]: [LastLoginAPI] Enabling LastLoginAPI v1.7.4
[23:09:01] [Server thread/INFO]: [LastLoginAPI] Initializing LastLoginAPI v1.7.4
[23:09:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lastloginapi [1.7.4]
[23:09:01] [Server thread/INFO]: [LastLoginAPI] Hooked into PlaceholderAPI
[23:09:01] [Server thread/INFO]: [LastLoginAPI] LastLoginAPI v1.7.4 enabled
[23:09:01] [Server thread/INFO]: [TradeMe] Enabling TradeMe v6.2.1.0
[23:09:01] [Server thread/INFO]: [TradeMe] Version 6.2.1.0 has been enabled
[23:09:01] [Server thread/INFO]: [TradeMe] PlayerPoints plugin was found!
[23:09:01] [Server thread/INFO]: [TradeMe] Vault plugin was found!
[23:09:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: trademe [6.2.1.0]
[23:09:01] [Server thread/INFO]: [TradeMe] PlaceholderAPI hooked.
[23:09:01] [Server thread/INFO]: [TradeMe] Connected to sqlite
[23:09:01] [Server thread/INFO]: [TradeMe] 0 trade logs preloaded
[23:09:01] [Server thread/INFO]: [EasyCommandBlocker] Enabling EasyCommandBlocker v1.8.1
[23:09:01] [Server thread/INFO]: [EasyCommandBlocker] Has been enabled! Version: 1.8.1
[23:09:01] [Server thread/INFO]: [EasyCommandBlocker] Thanks for using my plugin!   ~Ajneb97
[23:09:02] [Server thread/INFO]: There is a new version available. (1.8.2)
[23:09:02] [Server thread/INFO]: You can download it at: https://www.spigotmc.org/resources/101752/
[23:09:02] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.4
[23:09:02] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[23:09:02] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[23:09:02] [Server thread/INFO]: | Command file(s) found : 1
[23:09:02] [Server thread/INFO]: | Config : Ready.
[23:09:02] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[23:09:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mycommand [1.0.0]
[23:09:02] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[23:09:02] [Server thread/INFO]: | Custom commands loaded : 44
[23:09:02] [Server thread/INFO]: | You're running the latest version of MyCommand.
[23:09:02] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[23:09:02] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[23:09:02] [Server thread/INFO]: [40ServidoresMC] Enabling 40ServidoresMC v2.5
[23:09:02] [Server thread/INFO]: [40ServidoresMC] Plugin 40ServidoresMC v2.5 cargado completamente
[23:09:02] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.8.0
[23:09:02] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[23:09:02] [Server thread/INFO]: [ajLeaderboards] Loaded 0 boards
[23:09:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.8.0]
[23:09:02] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[23:09:02] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.8.0 by ajgeiss0702 enabled!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Enabling AlonsoTags v2.1.3-BETA-PRO
[23:09:02] [Server thread/INFO]: [AlonsoTags] Max health Attribute check found. Using it..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Inventory title with support for more than 32 characters. Skipping..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Hex colors are available! Ready for RGB..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Old constructor for HoverEvent found! Using it..
[23:09:02] [Server thread/INFO]: [AlonsoTags] New sendTitle method found! Using it..
[23:09:02] [Server thread/INFO]: [AlonsoTags] New setUnbreakable method found! Using it..
[23:09:02] [Server thread/INFO]: [AlonsoTags] New isUnbreakable method found! Using it..
[23:09:02] [Server thread/INFO]: Enabling HEX color fix for 1.8 - 1.15 players.. (This is an experimental feature
[23:09:02] [Server thread/INFO]:     _   _                 _____             ___          Running v2.1.3-BETA-PRO
[23:09:02] [Server thread/INFO]:    /_\ | |___ _ _  ___ __|_   _|_ _ __ _ __| _ \_ _ ___  Server Purpur vgit-Purpur-2094 (MC: 1.20.2)
[23:09:02] [Server thread/INFO]:   / _ \| / _ \ ' \(_-</ _ \| |/ _` / _` (_-<  _/ '_/ _ \ Discord for support: https://alonsoaliaga.com/discord
[23:09:02] [Server thread/INFO]:  /_/ \_\_\___/_||_/__/\___/|_|\__,_\__, /__/_| |_| \___/ Thanks for using my plugin ❤ 946953!
[23:09:02] [Server thread/INFO]:          Developed by AlonsoAliaga |___/
[23:09:02] [Server thread/INFO]: 
[23:09:02] [Server thread/INFO]: ==============================================================================================
[23:09:02] [Server thread/INFO]: [AlonsoTags] You are using a Paper fork (Purpur), plugin should work fine!
[23:09:02] [Server thread/INFO]: [AlonsoTags] If you have issues, join us on our official support server on alonsoaliaga.com/discord
[23:09:02] [Server thread/INFO]: ==============================================================================================
[23:09:02] [Server thread/INFO]: 
[23:09:02] [Server thread/INFO]: [AlonsoTags] BungeeCord action bar available. Hooking..
[23:09:02] [Server thread/INFO]: [AlonsoTags] ProtocolLib found! Checking..
[23:09:02] [Server thread/INFO]: [Auto-update] Configuration is up-to-date!
[23:09:02] [Server thread/INFO]: [AlonsoTags] [HikariCP] Using com.mysql.cj.jdbc.MysqlDataSource for source class name..
[23:09:02] [Server thread/INFO]: [AlonsoTags] [SQLite] Attempting to create 'alonsotags' table..
[23:09:02] [Server thread/INFO]: [SQLite] Connecting to database 'database-alonsotags.db'!
[23:09:02] [Server thread/INFO]: [SQLite] Driver available: SQLite JDBC | 3.42.0
[23:09:02] [Server thread/INFO]: [SQLite] Successfully connected to database!
[23:09:02] [Server thread/INFO]: [AlonsoTags] [SQLite] Table 'alonsotags' has been created if didn't exist.
[23:09:02] [Server thread/INFO]: [AlonsoTags] Column called 'purchased_tags' already exists. Skipping..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Column called 'selected_color' already exists. Skipping..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Column called 'selected_filter' already exists. Skipping..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Successfully loaded 1 books!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Old ItemStack constructor is available!
[23:09:02] [Server thread/INFO]: [AlonsoTags] SkullMeta#setOwningPlayer method is available for heads.
[23:09:02] [Server thread/INFO]: [AlonsoTags] SkullMeta#setOwner method is available for heads.
[23:09:02] [Server thread/INFO]: [AlonsoTags] SkullMeta#setOwnerProfile method is available for heads. Using it for heads..
[23:09:02] [Server thread/INFO]: [AlonsoTags] New setUnbreakable method found! Using it..
[23:09:02] [Server thread/INFO]: [AlonsoTags] New setOwningPlayer method is available!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Old Bukkit#getOfflinePlayer(String name) method is available!
[23:09:02] [Server thread/INFO]: [AlonsoTags] New isUnbreakable method found! Using it..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Currency LEVEL successfully loaded!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Vault found! Hooking..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Vault hooked correctly with plugin 'CMIEInjector' because couldn't find preferred plugins!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Cost type 'VAULT' has been enabled!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Currency VAULT successfully loaded!
[23:09:02] [Server thread/INFO]: [AlonsoTags] PlayerPoints available! THIS IS IN BETA, report issues in our discord! Hooking..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Currency PLAYER_POINTS successfully loaded!
[23:09:02] [Server thread/INFO]: [AlonsoTags] TokenManager is not available! Disabling economy support..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Currency TOKEN_MANAGER not loaded!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '1' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '2' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '3' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '4' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '5' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '6' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '7' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '8' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '9' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '10' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '11' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '12' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '13' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '14' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '15' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '16' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '17' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '18' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '19' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '20' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '21' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '22' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '23' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '24' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '25' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '26' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '27' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '28' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '29' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '30' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '31' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '32' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '33' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '34' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '35' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '36' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '37' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '38' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '39' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '40' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '41' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '42' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading '43' tag...
[23:09:02] [Server thread/INFO]: [AlonsoTags] Successfully loaded 43 tags!
[23:09:02] [Server thread/INFO]: [AlonsoTags] [Start] Scheduling economy hooks..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading 'default' color..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Successfully loaded default color!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading 'red' color..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Successfully loaded red color!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading 'green' color..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Successfully loaded green color!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading 'dark-blue' color..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Successfully loaded dark-blue color!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading 'purple' color..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Successfully loaded purple color!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading 'cyan' color..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Successfully loaded cyan color!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading 'gray' color..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Successfully loaded gray color!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading 'pink' color..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Successfully loaded pink color!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading 'lime' color..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Successfully loaded lime color!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading 'yellow' color..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Successfully loaded yellow color!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading 'aqua' color..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Successfully loaded aqua color!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading 'gold' color..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Successfully loaded gold color!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading 'white' color..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Successfully loaded white color!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading 'dark-red' color..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Successfully loaded dark-red color!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading 'black' color..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Successfully loaded black color!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading 'blue' color..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Successfully loaded blue color!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Loading 'brown' color..
[23:09:02] [Server thread/INFO]: [AlonsoTags] Successfully loaded brown color!
[23:09:02] [Server thread/INFO]: [AlonsoTags] Successfully loaded 17 colors!
[23:09:02] [Server thread/INFO]: [AlonsoTags] PlaceholderAPI found! Hooking..
[23:09:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: alonsotags [2.1.3-BETA-PRO]
[23:09:02] [Server thread/INFO]: [AlonsoTags] Bungee messaging system is allowed in this server. Enabling..
[23:09:02] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.13.3
[23:09:03] [Server thread/INFO]: [LiteBans] Using system locale (en)
[23:09:03] [Server thread/INFO]: [LiteBans] Loaded 2 templates from templates.yml!
[23:09:03] [Server thread/INFO]: [LiteBans] Loaded 0 template groups from templates.yml!
[23:09:03] [Server thread/INFO]: [LiteBans] Loading SQL driver: h2 1.4.197 (org.h2.Driver)
[23:09:03] [Server thread/INFO]: [LiteBans] Connecting to database...
[23:09:03] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[23:09:03] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[23:09:03] [Server thread/INFO]: [LiteBans] Connected to H2 database successfully (141.2 ms).
[23:09:03] [Server thread/INFO]: [LiteBans] Database connection fully initialized (144.8 ms).
[23:09:03] [Server thread/INFO]: [LiteBans] v2.13.3 enabled. Startup took 341 ms.
[23:09:03] [Server thread/INFO]: [BackInPack] Enabling BackInPack v3.0-BETA
[23:09:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: BackInPack [3.0-BETA]
[23:09:03] [Server thread/INFO]: [BackInPack] PlaceholderAPI plugin found, placeholders registered.
[23:09:03] [Server thread/INFO]: [BackInPack] Vault plugin found, economy registered.
[23:09:03] [Server thread/INFO]: [BackInPack] BackInPack plugin is starting...
  ___ ___ ___ 
 | _ )_ _| _ \ | Version: 3.0-BETA
 | _ \| ||  _/ | SSID: 9c3b342c-6799-4d10-8e30-2137a41a25a8
 |___/___|_|   | Server: 1.20.2-R0.1-SNAPSHOT
              
[23:09:03] [Server thread/INFO]: [BackInPack] Se ha cargado el archivo de idioma es.yml
[23:09:03] [Server thread/INFO]: [BackInPack] Cargando las mochilas de los jugadores
[23:09:03] [Server thread/INFO]: [BackInPack] El complemento BackInPack se ha habilitado
[23:09:03] [Server thread/INFO]: [CrazyCrates] Enabling CrazyCrates v1.19.3
[23:09:03] [Server thread/INFO]: [CrazyCrates] Loading the events.log
[23:09:03] [Server thread/INFO]: [CrazyCrates] Successfully loaded events.log
[23:09:03] [Server thread/INFO]: [CrazyCrates] Loading the locations.yml
[23:09:03] [Server thread/INFO]: [CrazyCrates] Successfully loaded locations.yml
[23:09:03] [Server thread/INFO]: [CrazyCrates] Loading the data.yml
[23:09:03] [Server thread/INFO]: [CrazyCrates] Successfully loaded data.yml
[23:09:03] [Server thread/INFO]: [CrazyCrates] Loading custom files.
[23:09:03] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/koth.yml.
[23:09:03] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/vote.yml.
[23:09:03] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/eclipze.yml.
[23:09:03] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/spawners.yml.
[23:09:03] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/basica.yml.
[23:09:03] [Server thread/INFO]: [CrazyCrates] Finished loading custom files.
[23:09:03] [Server thread/WARN]: [CrazyCrates] Created examples because we couldn't find it.
[23:09:03] [Server thread/INFO]: [CrazyCrates] DecentHolograms support has been enabled.
[23:09:03] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[23:09:03] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[23:09:03] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[23:09:03] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'CrazyCrates' to create a bStats instance!
[23:09:04] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[23:09:04] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[23:09:04] [Server thread/INFO]: [CrazyCrates] All physical crate locations have been loaded.
[23:09:04] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[23:09:04] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[23:09:04] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[23:09:04] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[23:09:04] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[23:09:04] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[23:09:04] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[23:09:04] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[23:09:04] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[23:09:04] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[23:09:04] [Server thread/INFO]: [CrazyCrates] DECENT_HOLOGRAMS FOUND
[23:09:04] [Server thread/INFO]: [CrazyCrates] HOLOGRAPHIC_DISPLAYS NOT FOUND
[23:09:04] [Server thread/INFO]: [CrazyCrates] CMI FOUND
[23:09:04] [Server thread/INFO]: [CrazyCrates] PLACEHOLDERAPI FOUND
[23:09:04] [Server thread/INFO]: [CrazyCrates] ORAXEN NOT FOUND
[23:09:04] [Server thread/INFO]: [CrazyCrates] ITEMS_ADDER FOUND
[23:09:04] [Server thread/INFO]: [CrazyCrates] PlaceholderAPI support is enabled!
[23:09:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: crazycrates [1.19.3]
[23:09:04] [Server thread/INFO]: [CrazyCrates] You can disable logging by going to the plugin-config.yml and setting verbose to false.
[23:09:04] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.12
[23:09:04] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
[23:09:04] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[23:09:04] [Server thread/INFO]: [ExcellentShop] Enabling ExcellentShop v4.7.2
[23:09:04] [Server thread/INFO]: [ExcellentShop] Powered by: NexEngine
[23:09:04] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[23:09:04] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@69c3a267
[23:09:04] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[23:09:04] [Server thread/INFO]: [ExcellentShop] Registered currency: exp
[23:09:04] [Server thread/INFO]: [ExcellentShop] Registered currency: vault
[23:09:04] [Server thread/INFO]: [ExcellentShop] Registered currency: playerpoints
[23:09:04] [Server thread/INFO]: [ExcellentShop] Registered currency: gold
[23:09:04] [Server thread/INFO]: [ExcellentShop] Registered 'bukkit_item' product handler.
[23:09:04] [Server thread/INFO]: [ExcellentShop] Registered 'bukkit_command' product handler.
[23:09:04] [Server thread/INFO]: [ExcellentShop] Registered 'ItemsAdder' product handler.
[23:09:04] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[23:09:04] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-2 - Added connection org.sqlite.jdbc4.JDBC4Connection@4d6530e3
[23:09:04] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[23:09:04] [Server thread/INFO]: [ExcellentShop] Plugin loaded in 456 ms!
[23:09:04] [Server thread/INFO]: [JPremium] Enabling JPremium vCLEARED-1.19.0
[23:09:04] [Server thread/INFO]: [JPremium] BungeeGuard detected! JPremium won't register any handshake listeners!
[23:09:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: JPremium [SpigotVersion]
[23:09:04] [Server thread/INFO]: [ConditionalEvents] Enabling ConditionalEvents v4.44.2
[23:09:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: conditionalevents [4.44.2]
[23:09:04] [Server thread/INFO]: [ConditionalEvents] Has been enabled! Version: 4.44.2
[23:09:04] [Server thread/INFO]: [ConditionalEvents] Thanks for using my plugin!   ~Ajneb97
[23:09:04] [Server thread/INFO]: There is a new version available. (4.45.5)
[23:09:04] [Server thread/INFO]: You can download it at: https://modrinth.com/plugin/conditionalevents
[23:09:04] [Server thread/INFO]: [VoteParty] Enabling VoteParty v2.37
[23:09:05] [Server thread/INFO]: [VoteParty] [ACF] Enabled Asynchronous Tab Completion Support!
[23:09:05] [Server thread/INFO]: 
[23:09:05] [Server thread/INFO]:  _  _  ____
[23:09:05] [Server thread/INFO]: / )( \(  _ \
[23:09:05] [Server thread/INFO]: \ \/ / ) __/ VoteParty v2.37
[23:09:05] [Server thread/INFO]:  \__/ (__)   Server Version: git-Purpur-2094 (MC: 1.20.2)
[23:09:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: voteparty [2.0]
[23:09:05] [Server thread/ERROR]: [VoteParty] Failed to register events for class me.clip.voteparty.listener.HooksListenerNuVotifier because com/vexsoftware/votifier/model/VotifierEvent does not exist.
[23:09:05] [Server thread/INFO]: [ChestSort] Enabling ChestSort v13.6.6
[23:09:05] [Server thread/INFO]: [ChestSort] Hooked into WorldGuard 7.0.9+5934e49
[23:09:05] [Server thread/INFO]: [ChestSort] Use permissions: true
[23:09:05] [Server thread/INFO]: [ChestSort] Current sorting method: {category},{itemsFirst},{name},{color},{customName}
[23:09:05] [Server thread/INFO]: [ChestSort] Allow automatic chest sorting:true
[23:09:05] [Server thread/INFO]: [ChestSort]   |- Chest sorting enabled by default: false
[23:09:05] [Server thread/INFO]: [ChestSort]   |- Sort time: close
[23:09:05] [Server thread/INFO]: [ChestSort] Allow automatic inventory sorting:true
[23:09:05] [Server thread/INFO]: [ChestSort]   |- Inventory sorting enabled by default: false
[23:09:05] [Server thread/INFO]: [ChestSort] Auto generate category files: true
[23:09:05] [Server thread/INFO]: [ChestSort] Allow hotkeys: true
[23:09:05] [Server thread/INFO]: [ChestSort] Hotkeys enabled by default:
[23:09:05] [Server thread/INFO]: [ChestSort]   |- Middle-Click: true
[23:09:05] [Server thread/INFO]: [ChestSort]   |- Shift-Click: true
[23:09:05] [Server thread/INFO]: [ChestSort]   |- Double-Click: true
[23:09:05] [Server thread/INFO]: [ChestSort]   |- Shift-Right-Click: true
[23:09:05] [Server thread/INFO]: [ChestSort] Allow additional hotkeys: true
[23:09:05] [Server thread/INFO]: [ChestSort] Additional hotkeys enabled by default:
[23:09:05] [Server thread/INFO]: [ChestSort]   |- Left-Click: false
[23:09:05] [Server thread/INFO]: [ChestSort]   |- Right-Click: false
[23:09:05] [Server thread/INFO]: [ChestSort] Check for updates: true
[23:09:05] [Server thread/INFO]: [ChestSort] Check interval: 4 hours (4.0 seconds)
[23:09:05] [Server thread/INFO]: [ChestSort] Categories: 900-weapons (6), 905-common-tools (4), 907-other-tools (6), 909-food (33), 910-valuables (47), 920-armor-and-arrows (9), 930-brewing (18), 950-redstone (23), 960-wood (60), 970-stone (38), 980-plants (50), 981-corals (1)
[23:09:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chestsort [13.6.6]
[23:09:05] [Server thread/INFO]: [UltimateClans] Enabling UltimateClans v6.15.6
[23:09:05] [Server thread/INFO]: [UltimateClans] ========================================
[23:09:05] [Server thread/INFO]: [UltimateClans]  _     _  _        _                              ______  _                     
[23:09:05] [Server thread/INFO]: [UltimateClans] | |   | || | _    (_)               _            / _____)| |                  V6
[23:09:05] [Server thread/INFO]: [UltimateClans] | |   | || || |_   _  ____    ____ | |_    ____ | /      | |  ____  ____    ___ 
[23:09:05] [Server thread/INFO]: [UltimateClans] | |   | || ||  _) | ||    \  / _  ||  _)  / _  )| |      | | / _  ||  _ \  /___)
[23:09:05] [Server thread/INFO]: [UltimateClans] | |___| || || |__ | || | | |( ( | || |__ ( (/ / | \_____ | |( ( | || | | ||___ |
[23:09:05] [Server thread/INFO]: [UltimateClans]  \______||_| \___)|_||_|_|_| \_||_| \___) \____) \______)|_| \_||_||_| |_|(___/ 
[23:09:05] [Server thread/INFO]: [UltimateClans]  
[23:09:06] [Server thread/INFO]: [UltimateClans] Licensed to: Ronal99 (5240)
[23:09:06] [Server thread/INFO]: [UltimateClans] Language: ES (default)
[23:09:06] [Server thread/INFO]: [UltimateClans] Setup ScriptEngine: 
[23:09:06] [Server thread/INFO]: [UltimateClans]  - Loaded successfully
[23:09:06] [Server thread/INFO]: [UltimateClans] Setup database: SQLITE (Medium)
[23:09:06] [Server thread/INFO]: [UltimateClans]  - Clan database [OK]
[23:09:06] [Server thread/INFO]: [UltimateClans]  - Player database [OK]
[23:09:06] [Server thread/INFO]: [UltimateClans]  - Invite database [OK]
[23:09:06] [Server thread/INFO]: [UltimateClans]  - NEW Moderation database [OK]
[23:09:06] [Server thread/INFO]: [UltimateClans]  - Logger database [OK]
[23:09:06] [Server thread/INFO]: [UltimateClans] Setup hooks...
[23:09:06] [Server thread/INFO]: [UltimateClans]  - ProtocolLib
[23:09:06] [Server thread/INFO]: [UltimateClans]  - PlaceholderAPI
[23:09:06] [Server thread/INFO]: [UltimateClans]  - NBTAPI
[23:09:06] [Server thread/INFO]: [UltimateClans]  - ItemsAdder
[23:09:06] [Server thread/INFO]: [UltimateClans]  - WorldGuard 7+
[23:09:06] [Server thread/INFO]: [UltimateClans]  - CMI [ + HOLO USING]
[23:09:06] [Server thread/INFO]: [UltimateClans]  - DecentHolograms
[23:09:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: uclans [UClans V6]
[23:09:06] [Server thread/INFO]: [UltimateClans] Setup bedrock hook...
[23:09:06] [Server thread/INFO]: [UltimateClans]  - Not found.
[23:09:06] [Server thread/INFO]: [UltimateClans] Setup economy...
[23:09:06] [Server thread/INFO]: [UltimateClans]  - Vault
[23:09:06] [Server thread/INFO]: [UltimateClans]  - PlayerPoints
[23:09:06] [Server thread/INFO]: [UltimateClans] Economy: VAULT
[23:09:06] [Server thread/INFO]: [UltimateClans] Loaded 66 aliases.
[23:09:06] [Server thread/INFO]: [UltimateClans] Loaded 51 commands.
[23:09:06] [Server thread/INFO]: [UltimateClans] Loaded 1 clan patent(s).
[23:09:06] [Server thread/INFO]: [UltimateClans] Setup Addons...
[23:09:08] [Server thread/INFO]: [UltimateClans]  - ClanBank, V3.4.0 (Lang: EN)
[23:09:08] [Server thread/INFO]: [UltimateClans] ========================================
[23:09:08] [Server thread/INFO]: [DeluxeCombat] Enabling DeluxeCombat v1.50.6
[23:09:08] [Server thread/INFO]: [DeluxeCombat]  _____        _                   ______            _                
[23:09:08] [Server thread/INFO]: [DeluxeCombat] (____ \      | |                 / _____)          | |          _    
[23:09:08] [Server thread/INFO]: [DeluxeCombat]  _   \ \ ____| |_   _ _   _ ____| /      ___  ____ | | _   ____| |_  
[23:09:08] [Server thread/INFO]: [DeluxeCombat] | |   | / _  ) | | | ( \ / ) _  ) |     / _ \|    \| || \ / _  |  _) 
[23:09:08] [Server thread/INFO]: [DeluxeCombat] | |__/ ( (/ /| | |_| |) X ( (/ /| \____| |_| | | | | |_) | ( | | |__ 
[23:09:08] [Server thread/INFO]: [DeluxeCombat] |_____/ \____)_|\____(_/ \_)____)\______)___/|_|_|_|____/ \_||_|\___)
[23:09:08] [Server thread/INFO]: [DeluxeCombat] 
[23:09:08] [Server thread/INFO]: [DeluxeCombat] Hook ProtocolLib (4.6.0, Common Hook) has been registered.
[23:09:08] [Server thread/INFO]: [DeluxeCombat] Hook LibsDisguises (10.0.24, Common Hook) has been registered.
[23:09:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxecombat [0.1.2]
[23:09:08] [Server thread/INFO]: [DeluxeCombat] Hook PlaceholderAPI (2.10.9, Common Hook) has been registered.
[23:09:08] [Server thread/INFO]: [DeluxeCombat] Hook AdvancedEnchantments (8.0.0b29, Item Hook) has been registered.
[23:09:08] [Server thread/ERROR]: [DeluxeCombat] Failed to register events for class nl.marido.deluxecombat.hooks.citizens.CombatLogCitizenListener because net/citizensnpcs/api/event/NPCDeathEvent does not exist.
[23:09:08] [Server thread/ERROR]: [DeluxeCombat] Failed to register events for class nl.marido.deluxecombat.hooks.plugins.commonhook.CitizenHook because net/citizensnpcs/api/event/NPCLeftClickEvent does not exist.
[23:09:08] [Server thread/INFO]: [DeluxeCombat] Hook Citizens (2.0.27, Common Hook) has been registered.
[23:09:08] [Server thread/INFO]: [DeluxeCombat] Hook ProtectionStones (2.8.5, Common Hook) has been registered.
[23:09:08] [Server thread/INFO]: [DeluxeCombat] Hook UltimateClans (4.0.1, Clan Hook) has been registered.
[23:09:08] [Server thread/INFO]: [DeluxeCombat] Hook MMOItems (5.2.1, Item Hook) has been registered.
[23:09:08] [Server thread/INFO]: [DeluxeCombat] Hook Vault (1.7.3, Common Hook) has been registered.
[23:09:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[23:09:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[23:09:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DeluxeCombat' to create a bStats instance!
[23:09:08] [Server thread/INFO]: [DeluxeCombat] Spawnpoints (0), Kill-Streaks (1), Rewards (2), Custom Tools (1) loaded!
[23:09:08] [Server thread/INFO]: [DeluxeCombat] Start fetching marketplace addons...
[23:09:08] [Server thread/INFO]: [BottledExp] Enabling BottledExp v3.2.2.2
[23:09:08] [Server thread/INFO]: [BottledExp] Version 3.2.2.2 has been enabled
[23:09:08] [Server thread/INFO]: [BottledExp] Using LuckPerms via Vault.
[23:09:08] [Server thread/INFO]: [LPX] Enabling LPX v3.3.3
[23:09:09] [Server thread/INFO]: [LPX] License successfully verified!
[23:09:09] [Server thread/INFO]: [UltimateServerProtector] Enabling UltimateServerProtector v26.0
[23:09:09] [Server thread/INFO]: [UltimateServerProtector] Plugin started in 12 ms
[23:09:09] [Folia Async Scheduler Thread #3/INFO]: [UltimateServerProtector] ========================================
[23:09:09] [Folia Async Scheduler Thread #3/INFO]: [UltimateServerProtector] You are using latest version of the plugin!
[23:09:09] [Folia Async Scheduler Thread #3/INFO]: [UltimateServerProtector] ========================================
[23:09:09] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[23:09:09] [Server thread/INFO]: Running delayed init tasks
[23:09:09] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[23:09:09] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[23:09:09] [Craft Scheduler Thread - 18 - ItemsAdder/INFO]: [ItemsAdder] [License] Store product licensed to: Ronal99 (5240)
[23:09:09] [Craft Scheduler Thread - 25 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[23:09:09] [Craft Scheduler Thread - 10 - BackInPack/INFO]: [BackInPack] 
  ___ ___ ___   _   _ ___ ___   _ _____ ___ 
 | _ )_ _| _ \ | | | | _ \   \ /_\_   _| __|
 | _ \| ||  _/ | |_| |  _/ |) / _ \| | | _| 
 |___/___|_|    \___/|_| |___/_/ \_\_| |___|

The plugin BackInPack can be updated. Use this link to download the latest version
https://www.spigotmc.org/resources/backinpack.102384/

[23:09:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerpoints [3.2.6]
[23:09:09] [Server thread/INFO]: [WildStacker] Loading providers started...
[23:09:09] [Server thread/INFO]: [WildStacker]  - Couldn't find any spawners providers, using default one.
[23:09:09] [Server thread/INFO]: [WildStacker] Using Vault as an economy provider.
[23:09:10] [Server thread/INFO]: [ShopGUIPlus] Registered spawners support for WildStacker.
[23:09:10] [Server thread/INFO]: [WildStacker] Found ShopGUIPlus - Hooked as SpawnerProvider!
[23:09:10] [Craft Scheduler Thread - 28 - Vault/INFO]: [Vault] Checking for Updates ... 
[23:09:10] [Server thread/INFO]: [WildStacker] Loading providers done (Took 26ms)
[23:09:10] [Server thread/INFO]: [ItemsAdder] [Pack] Extracting internal contents from .jar
[23:09:10] [Craft Scheduler Thread - 8 - CMILib/INFO]: New version of CMILib was detected. Please update it
[23:09:10] [Craft Scheduler Thread - 21 - VoteParty/INFO]: [VoteParty] Version is up to date
[23:09:10] [Craft Scheduler Thread - 28 - Vault/INFO]: [Vault] No new version available
[23:09:10] [Craft Scheduler Thread - 12 - DecentHolograms/INFO]: 
[23:09:10] [Craft Scheduler Thread - 12 - DecentHolograms/INFO]: A newer version of DecentHolograms is available. Download it from: https://www.spigotmc.org/resources/96927/
[23:09:10] [Craft Scheduler Thread - 26 - DeluxeCombat/INFO]: [DeluxeCombat] Successfully fetched 8 marketplace items from the internet!
[23:09:10] [Server thread/INFO]: [ItemsAdder] [Pack] DONE extracting internal contents from .jar
[23:09:10] [Craft Scheduler Thread - 25 - InventoryRollbackPlus/INFO]: 
[23:09:10] [Craft Scheduler Thread - 25 - InventoryRollbackPlus/INFO]: ===============================================================================
[23:09:10] [Craft Scheduler Thread - 25 - InventoryRollbackPlus/INFO]: A minor update to InventoryRollbackPlus is available!
[23:09:10] [Craft Scheduler Thread - 25 - InventoryRollbackPlus/INFO]: Download at https://www.spigotmc.org/resources/inventoryrollbackplus-1-8-1-16-x.85811/
[23:09:10] [Craft Scheduler Thread - 25 - InventoryRollbackPlus/INFO]: (current: 1.6.12, latest: 1.6.14)
[23:09:10] [Craft Scheduler Thread - 25 - InventoryRollbackPlus/INFO]: ===============================================================================
[23:09:10] [Server thread/WARN]: [ItemsAdder] Custom entities 'fast_packets_creation' is disabled. This might cause stuttering animations. More info: https://a.devs.beer/ia-delaypackets
[23:09:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: quests [3.14.2-3345d07]
[23:09:10] [Server thread/INFO]: [Quests] 35 task types have been registered.
[23:09:10] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[23:09:11] [Server thread/INFO]: [Quests] 1368 quests have been registered.
[23:09:11] [Server thread/INFO]: [UltimateClans] Start invite loader...
[23:09:11] [Server thread/INFO]: [UltimateClans] Loaded 0 invites(s).
[23:09:11] [Server thread/INFO]: [UltimateClans] Start moderation loader...
[23:09:11] [Server thread/INFO]: [UltimateClans] Loaded 0 moderations(s).
[23:09:11] [Server thread/INFO]: [UltimateClans] Start logger loader...
[23:09:11] [Server thread/INFO]: [UltimateClans] Loaded 0 log(s).
[23:09:11] [Server thread/INFO]: [UltimateClans] Start clans loader...
[23:09:11] [Server thread/INFO]: [UltimateClans] Loaded 1 clan(s).
[23:09:11] [Server thread/INFO]: [WildStacker] Starting to load entities...
[23:09:11] [Server thread/INFO]: [WildStacker] Loading entities done! Took 0 ms.
[23:09:11] [Server thread/INFO]: [WildStacker] Starting to load items...
[23:09:11] [Server thread/INFO]: [WildStacker] Loading items done! Took 1 ms.
[23:09:11] [Server thread/INFO]: [WildStacker] Starting to load spawners...
[23:09:11] [Server thread/INFO]: [WildStacker] Couldn't load spawner: ESurvival,5,80,-21
[23:09:11] [Server thread/INFO]: [WildStacker] Null world.
[23:09:11] [Server thread/INFO]: [WildStacker] Loading spawners done! Took 0 ms.
[23:09:11] [Server thread/INFO]: [WildStacker] Starting to load barrels...
[23:09:11] [Server thread/INFO]: [WildStacker] Loading barrels done! Took 0 ms.
[23:09:11] [Server thread/INFO]: [ExcellentShop] [Chest Shop] Shops Loaded: 0
[23:09:11] [Server thread/INFO]: [40ServidoresMC] No se ha encontrado plugin para la versión de servidor que estas ejecutando
[23:09:11] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion ViaVersion due to an unknown issue.
[23:09:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[23:09:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: servertime [3.2]
[23:09:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.7]
[23:09:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.6.2]
[23:09:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: bungee [2.3]
[23:09:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.1]
[23:09:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[23:09:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [2.0.2]
[23:09:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: progress [2.1]
[23:09:11] [Server thread/INFO]: 9 placeholder hook(s) registered!
[23:09:11] [Server thread/INFO]: Done (42.493s)! For help, type "help"
[23:09:11] [Craft Scheduler Thread - 19 - UltimateClans/INFO]: [UltimateClans] Start players loader...
[23:09:11] [Craft Scheduler Thread - 19 - UltimateClans/INFO]: [UltimateClans] Loaded 4 player(s).
[23:09:11] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder] Loaded 7 items
[23:09:11] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder] Used 0/188 REAL block IDs
[23:09:11] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder] Used 0/750 REAL_NOTE block IDs
[23:09:11] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder] Used 0/63 REAL_TRANSPARENT block IDs
[23:09:11] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder] Used 0/127 REAL_WIRE block IDs
[23:09:11] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder] Used 0/14 FIRE block IDs
[23:09:11] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder] Used 42/6608 font_images
[23:09:11] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded 1 categories
[23:09:11] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded successfully.
[23:09:11] [Craft Scheduler Thread - 16 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Checking resourcepack url... 
[23:09:11] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Resourcepack URL (self-host): http://144.217.76.59:8164/generated.zip
[23:09:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[23:09:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[23:09:11] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for ItemsAdder
[23:09:11] [Server thread/INFO]: [AlonsoTags] [ItemsAdder] ItemsAdder items were updated. Reloading tags/colors..
[23:09:11] [Server thread/INFO]: [AlonsoTags] Loading 'default' color..
[23:09:11] [Server thread/INFO]: [AlonsoTags] Successfully loaded default color!
[23:09:11] [Server thread/INFO]: [AlonsoTags] Loading 'red' color..
[23:09:11] [Server thread/INFO]: [AlonsoTags] Successfully loaded red color!
[23:09:11] [Server thread/INFO]: [AlonsoTags] Loading 'green' color..
[23:09:11] [Server thread/INFO]: [AlonsoTags] Successfully loaded green color!
[23:09:11] [Server thread/INFO]: [AlonsoTags] Loading 'dark-blue' color..
[23:09:11] [Server thread/INFO]: [AlonsoTags] Successfully loaded dark-blue color!
[23:09:11] [Server thread/INFO]: [AlonsoTags] Loading 'purple' color..
[23:09:11] [Server thread/INFO]: [AlonsoTags] Successfully loaded purple color!
[23:09:11] [Server thread/INFO]: [AlonsoTags] Loading 'cyan' color..
[23:09:11] [Server thread/INFO]: [AlonsoTags] Successfully loaded cyan color!
[23:09:11] [Server thread/INFO]: [AlonsoTags] Loading 'gray' color..
[23:09:11] [Server thread/INFO]: [AlonsoTags] Successfully loaded gray color!
[23:09:11] [Server thread/INFO]: [AlonsoTags] Loading 'pink' color..
[23:09:11] [Server thread/INFO]: [AlonsoTags] Successfully loaded pink color!
[23:09:11] [Server thread/INFO]: [AlonsoTags] Loading 'lime' color..
[23:09:11] [Server thread/INFO]: [AlonsoTags] Successfully loaded lime color!
[23:09:11] [Server thread/INFO]: [AlonsoTags] Loading 'yellow' color..
[23:09:11] [Server thread/INFO]: [AlonsoTags] Successfully loaded yellow color!
[23:09:11] [Server thread/INFO]: [AlonsoTags] Loading 'aqua' color..
[23:09:11] [Server thread/INFO]: [AlonsoTags] Successfully loaded aqua color!
[23:09:11] [Server thread/INFO]: [AlonsoTags] Loading 'gold' color..
[23:09:11] [Server thread/INFO]: [AlonsoTags] Successfully loaded gold color!
[23:09:11] [Server thread/INFO]: [AlonsoTags] Loading 'white' color..
[23:09:11] [Server thread/INFO]: [AlonsoTags] Successfully loaded white color!
[23:09:11] [Server thread/INFO]: [AlonsoTags] Loading 'dark-red' color..
[23:09:11] [Server thread/INFO]: [AlonsoTags] Successfully loaded dark-red color!
[23:09:11] [Server thread/INFO]: [AlonsoTags] Loading 'black' color..
[23:09:11] [Server thread/INFO]: [AlonsoTags] Successfully loaded black color!
[23:09:11] [Server thread/INFO]: [AlonsoTags] Loading 'blue' color..
[23:09:11] [Server thread/INFO]: [AlonsoTags] Successfully loaded blue color!
[23:09:11] [Server thread/INFO]: [AlonsoTags] Loading 'brown' color..
[23:09:11] [Server thread/INFO]: [AlonsoTags] Successfully loaded brown color!
[23:09:11] [Server thread/INFO]: [AlonsoTags] Successfully loaded 17 colors!
[23:09:11] [Server thread/INFO]: [Mythic] Reloading plugin...
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading Packs...
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading Items...
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading Skills...
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_DAMAGE from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_SPEED from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat BONUS_DAMAGE from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_DAMAGE from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_RESILIENCE from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_REDUCTION from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat DEFENSE from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_NEGATION from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH_REGENERATION from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_POWER from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat MOVEMENT_SPEED from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_NEGATION from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_POWER from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_COUNTERATTACK from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_GENERIC from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_BLUNT from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_SHARP from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_BLUNT from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_SHARP from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat FIRE_RESISTANCE from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading stat SPEED from /home/container/plugins/MythicMobs/stats.yml
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[23:09:11] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[23:09:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 8 mobs.
[23:09:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[23:09:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[23:09:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 skills.
[23:09:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[23:09:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 mythic items.
[23:09:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[23:09:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[23:09:11] [Server thread/INFO]: [Mythic] Mythic has finished reloading!
[23:09:11] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[23:09:12] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[23:09:12] [Server thread/INFO]: [CustomCrafting] Loading Recipes & Items
[23:09:12] [Server thread/INFO]: [CustomCrafting] - - - - [Local Storage] - - - -
[23:09:12] [Server thread/INFO]: [CustomCrafting] [LOCAL] Looking through data folder...
[23:09:12] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Items
[23:09:12] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Recipes
[23:09:12] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 2 recipes; Skipped: 0 error/s, 0 already existing
[23:09:12] [Server thread/INFO]: [CustomCrafting] [LOCAL_OLD] Loaded 0 recipes; Skipped: 0 error/s, 0 already existing
[23:09:12] [Server thread/INFO]: [CustomCrafting] [LOCAL_LEGACY] Loaded 0 recipes; Skipped: 0 error/s, 0 already existing
[23:09:12] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 2 recipes
[23:09:12] [Server thread/INFO]: [CustomCrafting] 
[23:09:12] [Server thread/INFO]: [CustomCrafting] Indexing Recipe Book...
[23:09:12] [Server thread/INFO]: [CustomCrafting] Indexed Recipe Book!
[23:09:12] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[23:09:12] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into ProtocolLib, AdvancedEnchantments, WorldGuard, PlaceholderAPI, MythicMobs, ProtectionStones, ItemsAdder.
[23:09:12] [Craft Scheduler Thread - 23 - AlonsoTags/INFO]: [AlonsoTags] Checking for updates...
[23:09:12] [Craft Scheduler Thread - 23 - AlonsoTags/INFO]: [AlonsoTags] New version available: 2.2.1-BETA-PRO
[23:09:12] [Craft Scheduler Thread - 23 - AlonsoTags/INFO]: [AlonsoTags] Please download the latest version to get support!
[23:09:12] [Craft Scheduler Thread - 23 - AlonsoTags/INFO]: [AlonsoTags] Download: https://www.spigotmc.org/resources/85788/
[23:09:12] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.94.0 ]================================
[23:09:12] [Server thread/INFO]: [ShopGUIPlus]  
[23:09:12] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[23:09:12] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[23:09:12] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[23:09:12] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[23:09:12] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for MMOItems.
[23:09:12] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for ExecutableItems.
[23:09:12] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for ItemsAdder.
[23:09:12] [Server thread/INFO]: [ShopGUIPlus] Using WildStacker for spawners support.
[23:09:12] [Server thread/WARN]: [ShopGUIPlus] Error occurred when loading shopMenuFillItem (config.yml), item not loaded: Invalid or no material name specified
[23:09:12] [Server thread/INFO]: [ShopGUIPlus] Loaded 35 main menu items.
[23:09:12] [Craft Scheduler Thread - 25 - DeluxeCombat/INFO]: [DeluxeCombat] Checking for new updates...
[23:09:12] [Craft Scheduler Thread - 25 - DeluxeCombat/INFO]: [DeluxeCombat] You're running the newest version of DeluxeCombat
[23:09:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'miscellaneous' with 11 items.
[23:09:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'farming' with 22 items.
[23:09:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'armor' with 28 items.
[23:09:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'ores' with 10 items.
[23:09:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks' with 42 items.
[23:09:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'drops' with 21 items.
[23:09:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'tools' with 17 items.
[23:09:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'food' with 12 items.
[23:09:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'dyes' with 17 items.
[23:09:12] [Server thread/INFO]: [ShopGUIPlus] Loaded 9 shops with total of 180 items.
[23:09:12] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[23:09:12] [Server thread/INFO]: [ShopGUIPlus] Loaded 7 sounds.
[23:09:12] [Server thread/INFO]: [ShopGUIPlus]  
[23:09:12] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[23:09:12] [Thread-27/INFO]: [UltimateClans] Find for new versions...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '1' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '2' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '3' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '4' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '5' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '6' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '7' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '8' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '9' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '10' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '11' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '12' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '13' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '14' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '15' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '16' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '17' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '18' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '19' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '20' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '21' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '22' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '23' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '24' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '25' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '26' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '27' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '28' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '29' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '30' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '31' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '32' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '33' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '34' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '35' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '36' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '37' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '38' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '39' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '40' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '41' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '42' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Loading '43' tag...
[23:09:12] [Server thread/INFO]: [AlonsoTags] Successfully loaded 43 tags!
[23:09:12] [Server thread/INFO]: [AlonsoTags] [Reload] Loading economy hooks..
[23:09:12] [Server thread/INFO]: [AlonsoTags] No vault hooks queued to be registered. Skipping..
[23:09:13] [Thread-27/WARN]: [UltimateClans] New version (7.0.2) of Ultimate Clans is avaliable in https://polymart.org/r/1162
[23:09:16] [Server thread/INFO]: [ExecutableItems] Hooked into DeluxeCombat!
[23:09:16] [Server thread/INFO]: [DeluxeCombat] Hook ExecutableItems (5.2.9, Item Hook) has been registered.
[23:09:16] [Server thread/INFO]: [DeluxeCombat] Addon WorldGuard Addon (v.1.0.2, timderspieler) has been installed successfully!
[23:09:16] [Server thread/INFO]: [DeluxeCombat] Hook WorldGuard Addon (>=7.0.0, WorldGuard Implementation) has been registered.
[23:09:16] [Server thread/INFO]: [DeluxeCombat] Hooked into UltimateClans, AdvancedEnchantments, MMOItems, ExecutableItems, ProtocolLib, LibsDisguises, PlaceholderAPI, Citizens, ProtectionStones, Vault, Vault and WorldGuard.
[23:39:09] [Craft Scheduler Thread - 64 - LibsDisguises/INFO]: [LibsDisguises] Now looking for update on Github..