Paste #109079: Unnamed Server Log Paste

Date: 2023/04/21 01:23:42 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[16:22:23] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[16:22:25] [ServerMain/INFO]: Loaded 7 recipes
[16:22:26] [Server thread/INFO]: Starting minecraft server version 1.19.4
[16:22:26] [Server thread/INFO]: Loading properties
[16:22:26] [Server thread/INFO]: This server is running Paper version git-Paper-516 (MC: 1.19.4) (Implementing API version 1.19.4-R0.1-SNAPSHOT) (Git: f7717c3)
[16:22:26] [Server thread/INFO]: Server Ping Player Sample Count: 12
[16:22:26] [Server thread/INFO]: Using 4 threads for Netty based IO
[16:22:26] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[16:22:26] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[16:22:26] [Server thread/INFO]: Default game type: SURVIVAL
[16:22:26] [Server thread/INFO]: Generating keypair
[16:22:26] [Server thread/INFO]: Starting Minecraft server on *:25565
[16:22:26] [Server thread/INFO]: Using default channel type
[16:22:26] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[16:22:26] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[16:22:28] [Server thread/INFO]: [SpigotLibraryLoader] [SkBee] Loading 2 libraries... please wait
[16:22:28] [Server thread/INFO]: [SpigotLibraryLoader] [SkBee] Loaded library C:\Users\ming\Desktop\·s«״₪ו¥ף?\libraries\commons-io\commons-io\2.11.0\commons-io-2.11.0.jar
[16:22:28] [Server thread/INFO]: [SpigotLibraryLoader] [SkBee] Loaded library C:\Users\ming\Desktop\·s«״₪ו¥ף?\libraries\org\apache\commons\commons-text\1.10.0\commons-text-1.10.0.jar
[16:22:28] [Server thread/INFO]: [SpigotLibraryLoader] [SkBee] Loaded library C:\Users\ming\Desktop\·s«״₪ו¥ף?\libraries\org\apache\commons\commons-lang3\3.12.0\commons-lang3-3.12.0.jar
[16:22:28] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[16:22:28] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library C:\Users\ming\Desktop\·s«״₪ו¥ף?\libraries\com\zaxxer\HikariCP\5.0.1\HikariCP-5.0.1.jar
[16:22:28] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library C:\Users\ming\Desktop\·s«״₪ו¥ף?\libraries\org\slf4j\slf4j-api\2.0.0-alpha1\slf4j-api-2.0.0-alpha1.jar
[16:22:28] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library C:\Users\ming\Desktop\·s«״₪ו¥ף?\libraries\it\unimi\dsi\fastutil\8.5.11\fastutil-8.5.11.jar
[16:22:28] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_19_R3.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[16:22:30] [Server thread/WARN]: Legacy plugin WDLCompanion v1.2.0 does not specify an api-version.
[16:22:30] [Server thread/INFO]: [Minepacks] PCGF-PluginLib not installed. Switching to standalone mode!
[16:22:30] [Server thread/WARN]: Legacy plugin JonAPI v1.1-c1 does not specify an api-version.
[16:22:30] [Server thread/WARN]: Legacy plugin shit_do v1.0 does not specify an api-version.
[16:22:30] [Server thread/WARN]: Legacy plugin CMIEInjector v1.0.2.3 does not specify an api-version.
[16:22:31] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.40
[16:22:31] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-CMI
[16:22:31] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.6.0
[16:22:32] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@71b3c5eb]
[16:22:32] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v4.8.0
[16:22:32] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.19.4) has not yet been tested! Proceed with caution.
[16:22:33] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.2
[16:22:33] [Server thread/INFO]: [BKCommonLib] Loading server plugin BKCommonLib v1.19.4-v1
[16:22:33] [Server thread/WARN]: [BKCommonLib] Since Minecraft 1.17 the server is obfuscated and requires the server mappings to interpret it correctly
[16:22:33] [Server thread/WARN]: [BKCommonLib] BKCommonLib will now download Minecraft 1.19.4 server mappings from Mojang's servers
[16:22:33] [Server thread/WARN]: [BKCommonLib] The file will be installed in: plugins\BKCommonLib\minecraft\1.19.4_server_mappings.txt
[16:22:33] [Server thread/WARN]: [BKCommonLib] By downloading these files you further agree with Mojang's EULA.
[16:22:33] [Server thread/WARN]: [BKCommonLib] The EULA can be read here: https://account.mojang.com/documents/minecraft_eula
[16:22:33] [Server thread/WARN]: [BKCommonLib] > Fetching JSON from Mojang servers: https://launchermeta.mojang.com/mc/game/version_manifest.json
[16:22:34] [Server thread/WARN]: [BKCommonLib] > Fetching JSON from Mojang servers: https://piston-meta.mojang.com/v1/packages/f42c5f3f354ab3fef44088fe61e9c1cdbc25a8cc/1.19.4.json
[16:22:34] [Server thread/WARN]: [BKCommonLib] > Fetching Server Mappings from Mojang servers: https://piston-data.mojang.com/v1/objects/73c8bb982e420b33aad9632b482608c5c33e2d13/server.txt
[16:22:35] [Server thread/WARN]: [BKCommonLib] > Verifying Server Mappings...
[16:22:35] [Server thread/WARN]: [BKCommonLib] > Server Mappings verified, download completed!
[16:22:38] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.7+216b061
[16:22:38] [Server thread/INFO]: [My_Worlds] Loading server plugin My_Worlds v1.19.4-v1
[16:22:38] [Server thread/INFO]: [GriefPrevention] Loading server plugin GriefPrevention v16.18.1
[16:22:38] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.6.4
[16:22:38] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.26.2
[16:22:38] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.2.5.3
[16:22:38] [Server thread/INFO]: [CMI] Loading server plugin CMI v9.5.0.8
[16:22:38] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v10.0.32
[16:22:38] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.2.1-fd1d0777
[16:22:38] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[16:22:38] [Server thread/INFO]: [MythicLib] Loading server plugin MythicLib v1.5.2
[16:22:38] [Server thread/INFO]: [MythicLib] Detected Bukkit Version: v1_19_R3
[16:22:38] [Server thread/INFO]: [MythicLib] Hooked onto WorldGuard
[16:22:38] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.31-SNAPSHOT (build 3043)
[16:22:38] [Server thread/INFO]: [MMOCore] Loading server plugin MMOCore v1.11.3
[16:22:38] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.23
[16:22:38] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR3.1.7
[16:22:38] [Server thread/INFO]: [MMOItems] Loading server plugin MMOItems v6.9.3
[16:22:38] [Server thread/INFO]: [MMOItems] Hooked onto WorldEdit
[16:22:39] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v21.3
[16:22:39] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v3.2.2
[16:22:39] [Server thread/INFO]: [SkBee] Loading server plugin SkBee v2.7.4
[16:22:39] [Server thread/INFO]: [EpicPluginLib] Loading server plugin EpicPluginLib v2.2.1
[16:22:39] [Server thread/INFO]: [PCGF_PluginLib] Loading server plugin PCGF_PluginLib v1.0.39-SNAPSHOT
[16:22:39] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v3.3.1
[16:22:39] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.10 build-18/04/2023
[16:22:39] [Server thread/INFO]: [Sentinel] Loading server plugin Sentinel v2.7.3-SNAPSHOT (build 505)
[16:22:39] [Server thread/INFO]: [WildStacker] Loading server plugin WildStacker v2023.1
[16:22:39] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.1
[16:22:39] [Server thread/INFO]: [WDLCompanion] Loading server plugin WDLCompanion v1.2.0
[16:22:39] [Server thread/INFO]: [UltraBar] Loading server plugin UltraBar v2.3.2
[16:22:39] [Server thread/INFO]: [TreasureChestX] Loading server plugin TreasureChestX v1.0
[16:22:39] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.3.1
[16:22:39] [Server thread/INFO]: [Themis] Loading server plugin Themis v0.14.6
[16:22:39] [Server thread/INFO]: [TAB] Loading server plugin TAB v3.3.2
[16:22:39] [Server thread/INFO]: [skript-yaml] Loading server plugin skript-yaml v1.4
[16:22:39] [Server thread/INFO]: [SkQuery] Loading server plugin SkQuery v4.1.9
[16:22:39] [Server thread/INFO]: [ServerSigns] Loading server plugin ServerSigns v4.8.0
[16:22:39] [Server thread/INFO]: [RotatingHeads2] Loading server plugin RotatingHeads2 v1.0.3
[16:22:39] [Server thread/INFO]: [PlayMoreSounds] Loading server plugin PlayMoreSounds v4.2
[16:22:39] [Server thread/INFO]: [PlayerKits] Loading server plugin PlayerKits v2.26.1
[16:22:39] [Server thread/INFO]: [PlaceItemsOnGroundRebuilt] Loading server plugin PlaceItemsOnGroundRebuilt v1.0.6
[16:22:39] [Server thread/INFO]: [NoPlugins] Loading server plugin NoPlugins v8.1
[16:22:39] [Server thread/INFO]: [MythicDungeons] Loading server plugin MythicDungeons v1.1.1-SNAPSHOT
[16:22:39] [Server thread/INFO]: [MythicCrucible] Loading server plugin MythicCrucible v1.5.0-SNAPSHOT
[16:22:39] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.0.11
[16:22:39] [Server thread/INFO]: [Minepacks] Loading server plugin Minepacks v2.4.18
[16:22:39] [Server thread/INFO]: [MCPets] Loading server plugin MCPets v3.0.2
[16:22:39] [Server thread/INFO]: [MCPets] : mcpets-dismount flag registered successfully !
[16:22:39] [Server thread/INFO]: [MCPets] : mcpets-despawn flag registered successfully !
[16:22:39] [Server thread/INFO]: [MagicCosmetics] Loading server plugin MagicCosmetics v2.2.8
[16:22:39] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[16:22:39] [Server thread/INFO]: [LootChest] Loading server plugin LootChest v2.3.4
[16:22:39] [Server thread/INFO]: [LiteSignIn] Loading server plugin LiteSignIn v1.7.0.0
[16:22:39] [Server thread/INFO]: [LastLoginAPI] Loading server plugin LastLoginAPI v1.7.4
[16:22:39] [Server thread/INFO]: [LastLoginAPI] Loading libraries of LastLoginAPI v1.7.4, this may take a while
[16:22:39] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jar-relocator
[16:22:39] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for asm
[16:22:39] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for asm-commons
[16:22:39] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for gson
[16:22:39] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jdbi3-core
[16:22:39] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for geantyref
[16:22:39] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for caffeine
[16:22:39] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jdbi3-stringtemplate4
[16:22:39] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for ST4
[16:22:39] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for antlr-runtime
[16:22:39] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jdbi3-sqlobject
[16:22:39] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for slf4j-api
[16:22:39] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for slf4j-simple
[16:22:39] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for HikariCP
[16:22:39] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for mariadb-java-client
[16:22:39] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for mysql-connector-j
[16:22:39] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for postgresql
[16:22:39] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for h2
[16:22:39] [Server thread/INFO]: [JonAPI] Loading server plugin JonAPI v1.1-c1
[16:22:39] [Server thread/INFO]: [ItemJoin] Loading server plugin ItemJoin v5.2.5-RELEASE-b850
[16:22:39] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.0.9
[16:22:39] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.11.2
[16:22:39] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[16:22:39] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R3' loaded!
[16:22:39] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[16:22:39] [Server thread/INFO]: [shit_do] Loading server plugin shit_do v1.0
[16:22:39] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v4.1.10
[16:22:39] [Server thread/INFO]: [EpicCraftingsPlus] Loading server plugin EpicCraftingsPlus v7.18.1
[16:22:39] [Server thread/INFO]: [EnderContainers] Loading server plugin EnderContainers v2.3.0-dev
[16:22:39] [Server thread/INFO]: [DeluxeTags] Loading server plugin DeluxeTags v1.8.2-Release
[16:22:39] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.13.7-Release
[16:22:39] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup successfully!
[16:22:39] [Server thread/INFO]: [CMIEInjector] Loading server plugin CMIEInjector v1.0.2.3
[16:22:39] [Server thread/INFO]: [ChatItem] Loading server plugin ChatItem v2.4.6
[16:22:39] [Server thread/INFO]: [CaliComp] Loading server plugin CaliComp v1.1
[16:22:39] [Server thread/INFO]: [BloodInMinecraft] Loading server plugin BloodInMinecraft v9.5
[16:22:39] [Server thread/INFO]: [BeautyQuests] Loading server plugin BeautyQuests v0.20.1
[16:22:39] [Server thread/INFO]: [AuctionMaster] Loading server plugin AuctionMaster v4.1
[16:22:39] [Server thread/INFO]: [AquaticCrates] Loading server plugin AquaticCrates v2.3.9
[16:22:39] [Server thread/INFO]: [AnimatedScoreboard] Loading server plugin AnimatedScoreboard v0.2.7
[16:22:39] [Server thread/INFO]: [AdvancedAchievements] Loading server plugin AdvancedAchievements v7.2.4
[16:22:39] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[16:22:39] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.40
[16:22:39] [Thread-8/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[16:22:40] [Server thread/INFO]:         __    
[16:22:40] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.40
[16:22:40] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[16:22:40] [Server thread/INFO]: 
[16:22:40] [Server thread/INFO]: [LuckPerms] Loading configuration...
[16:22:41] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[16:22:42] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[16:22:42] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[16:22:42] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2954ms)
[16:22:42] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-CMI
[16:22:42] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[16:22:42] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-CMI
[16:22:42] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[16:22:42] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.6.0
[16:22:43] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[16:22:43] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[16:22:43] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[16:22:43] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[16:22:43] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R3.PaperweightFaweAdapter as the Bukkit adapter
[16:22:44] [Server thread/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] You are using a snapshot or a custom version of FAWE. This is not an official build distributed via https://www.spigotmc.org/resources/13932/
[16:22:44] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v4.8.0
[16:22:44] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread.
[16:22:44] [Server thread/INFO]: [BKCommonLib] Enabling BKCommonLib v1.19.4-v1
[16:22:45] [Server thread/INFO]: [BKCommonLib] BKCommonLib is running on Paperspigot (git-Paper-516) : v1_19_R3 (Minecraft 1.19.4)
[16:22:45] [Server thread/WARN]: [BKCommonLib.Network] ProtocolLib cannot be used because it does not support the Bundle packet yet
[16:22:45] [Server thread/WARN]: [BKCommonLib.Network] Please update ProtocolLib to a 1.19.4+ supporting version (build #620 or newer)
[16:22:45] [Server thread/INFO]: [BKCommonLib.Network] Now using a PlayerConnection hook to provide Packet Listener and Monitor support
[16:22:45] [Server thread/INFO]: [BKCommonLib] [RegionChangeTracker] Region block changes will be notified from FastAsyncWorldEdit (>= v1.17)
[16:22:46] [Server thread/INFO]: [BKCommonLib] Want fries with that? We have hidden fries in the FoodUtil class.
[16:22:46] [Server thread/INFO]: [BKCommonLib] BKCommonLib version 1.19.4-v1 (build: 1547) enabled! (1.13s)
[16:22:46] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.23
[16:22:46] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.10 build-18/04/2023
[16:22:46] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[16:22:46] [Server thread/INFO]: [NexEngine] Loaded NMS version: V1_19_R3
[16:22:46] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[16:22:46] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[16:22:46] [Server thread/INFO]: [NexEngine] Using 'en' language.
[16:22:46] [Server thread/INFO]: [NexEngine] Plugin loaded in 104 ms!
[16:22:46] [Server thread/INFO]: [ItemJoin] Enabling ItemJoin v5.2.5-RELEASE-b850
[16:22:46] [Server thread/INFO]: [CMIEInjector] Enabling CMIEInjector v1.0.2.3*
[16:22:46] [Server thread/INFO]: [CMIEInjector] Cant find CMI config file
[16:22:46] [Server thread/INFO]: Preparing level "world"
[16:22:46] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[16:22:46] [Server thread/INFO]: Time elapsed: 85 ms
[16:22:46] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[16:22:46] [Server thread/INFO]: Time elapsed: 38 ms
[16:22:46] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[16:22:46] [Server thread/INFO]: Time elapsed: 16 ms
[16:22:46] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
[16:22:47] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[16:22:47] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.7+216b061
[16:22:47] [Server thread/INFO]: [WorldGuard] Default configuration file written: config.yml
[16:22:47] [Server thread/INFO]: [WorldGuard] Default configuration file written: config_world.yml
[16:22:47] [Server thread/INFO]: [WorldGuard] Default configuration file written: blacklist.txt
[16:22:47] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[16:22:47] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[16:22:47] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[16:22:47] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[16:22:47] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[16:22:47] [Server thread/INFO]: [WorldGuard] Default configuration file written: config_world.yml
[16:22:47] [Server thread/INFO]: [WorldGuard] Default configuration file written: blacklist.txt
[16:22:47] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[16:22:47] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[16:22:47] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[16:22:47] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[16:22:47] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[16:22:47] [Server thread/INFO]: [WorldGuard] Default configuration file written: config_world.yml
[16:22:47] [Server thread/INFO]: [WorldGuard] Default configuration file written: blacklist.txt
[16:22:47] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[16:22:47] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[16:22:47] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[16:22:47] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[16:22:47] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[16:22:47] [Server thread/INFO]: [WorldGuard] Loading region data...
[16:22:47] [Server thread/INFO]: [WorldGuard] Unloading and saving region data that is currently loaded...
[16:22:47] [Server thread/INFO]: [WorldGuard] Loading region data for loaded worlds...
[16:22:47] [Server thread/INFO]: [WorldGuard] Loading region data...
[16:22:47] [Server thread/INFO]: [WorldGuard] Regions saved after UUID migration! This won't happen again unless you change the relevant configuration option in WorldGuard's config.
[16:22:47] [Server thread/INFO]: [My_Worlds] Enabling My_Worlds v1.19.4-v1
[16:22:47] [BKCommonLib-IOWorker/INFO]: [BKCommonLib.Configuration] File 'plugins\My_Worlds\PermissionDefaults.yml' has been generated
[16:22:47] [BKCommonLib-IOWorker/INFO]: [BKCommonLib.Configuration] File 'plugins\My_Worlds\Localization.yml' has been generated
[16:22:48] [BKCommonLib-IOWorker/INFO]: [BKCommonLib.Configuration] File 'plugins\My_Worlds\config.yml' has been generated
[16:22:48] [BKCommonLib-IOWorker/INFO]: [BKCommonLib.Configuration] File 'plugins\My_Worlds\defaultproperties.yml' has been generated
[16:22:49] [Server thread/INFO]: [My_Worlds] Created end portal gateway link from world 'world' to 'world_the_end'!
[16:22:49] [Server thread/INFO]: [My_Worlds] Created end portal (show credits) link from world 'world_the_end' to 'world'!
[16:22:49] [Server thread/INFO]: [My_Worlds] Players that die in world 'world_the_end' will respawn in world 'world'!
[16:22:49] [Server thread/INFO]: [My_Worlds] Created nether portal link from world 'world' to 'world_nether'!
[16:22:49] [Server thread/INFO]: [My_Worlds] Created nether portal link from world 'world_nether' to 'world'!
[16:22:49] [Server thread/INFO]: [My_Worlds] Players that die in world 'world_nether' will respawn in world 'world'!
[16:22:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: myworlds [1.19.4-v1]
[16:22:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mw [1.19.4-v1]
[16:22:49] [Server thread/INFO]: [My_Worlds] PlaceholderAPI integration enabled
[16:22:49] [Server thread/INFO]: [My_Worlds] My_Worlds version 1.19.4-v1 (build: 225) enabled! (2.09s)
[16:22:49] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.1
[16:22:49] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[16:22:49] [Server thread/INFO]: [GriefPrevention] 0 total claims loaded.
[16:22:49] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[16:22:49] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[16:22:49] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[16:22:49] [Server thread/INFO]: [GriefPrevention] Boot finished.
[16:22:49] [Server thread/INFO]: [Skript] Enabling Skript v2.6.4
[16:22:50] [Server thread/INFO]: [Skript] Successfully generated the config and the example scripts.
[16:22:51] [ForkJoinPool.commonPool-worker-5/INFO]: [Skript] You're currently running the latest stable version of Skript.
[16:22:54] [Server thread/INFO]: [Skript] Loaded 153707 aliases in 4104ms
[16:22:54] [Server thread/INFO]: [Skript]  ~ created by & ? Peter G?ttinger aka Njol ~
[16:22:54] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.2
[16:22:54] [Server thread/INFO]: [CMILib] Enabling CMILib v1.2.5.3
[16:22:54] [DiscordSRV - Initialization/ERROR]: [DiscordSRV] No bot token has been set in the config; a bot token is required to connect to Discord.
[16:22:55] [Server thread/INFO]: Server version: v1_19_R3 - 1.19.4 - paper
[16:22:55] [Server thread/INFO]: CMI hooked.
[16:22:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [1.2.5.3]
[16:22:55] [Server thread/INFO]: PlaceholderAPI hooked.
[16:22:55] [Server thread/INFO]: Updated (EN) language file. Took 25ms
[16:22:55] [Server thread/INFO]: [CMI] Enabling CMI v9.5.0.8
[16:22:55] [Server thread/INFO]: ????? ?????? ????
[16:22:55] [Server thread/INFO]: ????? ? ?? ? ????
[16:22:55] [Server thread/INFO]: ?? ?? ??????  ?? 
[16:22:55] [Server thread/INFO]: ?? ?? ??????  ?? 
[16:22:55] [Server thread/INFO]: ????? ?????? ????
[16:22:55] [Server thread/INFO]: ????? ?????? ????
[16:22:55] [Server thread/INFO]: _______________________________________________________
[16:22:55] [Server thread/INFO]:   Integrating PaperSpigot async methods
[16:22:55] [Server thread/INFO]:   58 Enabled and 0 Disabled modules
[16:22:56] [Server thread/INFO]:   Permission plugin: LuckPerms5.4.40
[16:22:56] [Server thread/INFO]:   Initialized Cipher256 AES
[16:22:56] [Server thread/INFO]:   Loaded (60) regular alias into memory. Took 27ms
[16:22:56] [Server thread/INFO]:   Loaded (1) custom text's into memory. Took 2ms
[16:22:56] [Server thread/INFO]:   3.41.0 data base type detected
[16:22:56] [Server thread/INFO]:   UserTable creating CREATE TABLE `users` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `player_uuid` text, `username` text, `nickname` text, `LogOutLocation` text, `DeathLocation` text, `TeleportLocation` text, `Homes` text, `LastLoginTime` bigint, `LastLogoffTime` bigint, `TotalPlayTime` bigint, `tFly` bigint, `tGod` bigint, `Glow` text, `Ips` text, `Cuffed` boolean, `AlertUntil` bigint, `AlertReason` text, `JoinedCounter` boolean, `LockedIps` text, `pTime` bigint, `Kits` text, `Charges` text, `Cooldowns` longtext, `Balance` double, `Notes` text, `Rank` text, `BannedUntil` bigint, `BannedAt` bigint, `BannedBy` text, `BanReason` text, `Ignores` text, `Vanish` text, `Economy` text, `Mail` text, `FlightCharge` double, `UserMeta` text, `Flying` boolean, `Votifier` int, `Jail` text, `JailedUntil` bigint, `FakeAccount` boolean, `PlaytimeOptimized` bigint, `flightChargeEnabled` boolean, `JailReason` text, `Skin` text, `Collision` boolean, `NamePrefix` text, `NameSuffix` text, `Warnings` text, `NameColor` text, `Muted` text, `AFRecharge` text, `DisplayName` text, `Options` text);
[16:22:56] [Server thread/INFO]:   InvTable creating CREATE TABLE `inventories` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `player_id` int, `inventories` longtext);
[16:22:56] [Server thread/INFO]:   PlayTime creating CREATE TABLE `playtime` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `player_id` int, `date` int, `h0` bigint, `h1` bigint, `h2` bigint, `h3` bigint, `h4` bigint, `h5` bigint, `h6` bigint, `h7` bigint, `h8` bigint, `h9` bigint, `h10` bigint, `h11` bigint, `h12` bigint, `h13` bigint, `h14` bigint, `h15` bigint, `h16` bigint, `h17` bigint, `h18` bigint, `h19` bigint, `h20` bigint, `h21` bigint, `h22` bigint, `h23` bigint);
[16:22:56] [pool-61-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (767828469573c2f0fa3ed5a44feb0b2f15f2c02d)
[16:22:56] [Server thread/INFO]:   PlayTimeReward creating CREATE TABLE `playtimereward` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `player_id` int, `repeatable` text, `onetime` text);
[16:22:56] [Server thread/INFO]:   Started SqLite data base. Took 189ms
[16:22:56] [Server thread/INFO]: [CMI] Vault was found but economy engine is missing. Use one from list provided in https://dev.bukkit.org/bukkit-plugins/vault/
[16:22:56] [Server thread/INFO]: [CMI] Alternatively you can enable CMI economy in config.yml file
[16:22:56] [Server thread/INFO]:   Vault was found but not economy plugin, you will have limited economy support
[16:22:56] [Server thread/INFO]:   Loaded (5) warning categories into memory. Took 1ms
[16:22:56] [Server thread/INFO]:   Loaded (3) warning commands into memory. Took 0ms
[16:22:56] [Server thread/INFO]:   Loaded (142) custom mob heads into memory. Took 9ms
[16:22:56] [Server thread/INFO]:   Loaded (0) cooldowns into memory. Took 19ms
[16:22:56] [Server thread/INFO]:   Initializing BungeeCord
[16:22:56] [Server thread/INFO]:   Loaded (5) kits into memory. Took 9ms
[16:22:56] [Server thread/INFO]:   Loaded (7) ranks into memory. Took 15ms
[16:22:56] [Server thread/INFO]:   Loaded (8) playtime rewards into memory. Took 7ms
[16:22:56] [Server thread/INFO]:   Loaded (0) player data into memory. Took 2ms
[16:22:56] [Server thread/INFO]:   Loaded (0) playtime records into memory. Took 1ms
[16:22:56] [Server thread/INFO]:   Loaded (0) playtime reward records into memory. Took 0ms
[16:22:56] [Server thread/INFO]:   Registered events. Took 85ms
[16:22:56] [Server thread/INFO]:   Loaded (0) event action commands into memory. Took 2ms
[16:22:56] [Server thread/INFO]:   Updated (EN) language file. Took 66ms
[16:22:56] [Server thread/INFO]:   Loaded (245) worth values into memory. Took 54ms
[16:22:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmi [9.5.0.8]
[16:22:57] [Server thread/INFO]:   PlaceholderAPI hooked.
[16:22:57] [Server thread/INFO]:   PlaceholderAPI was found - Enabling capabilities.
[16:22:57] [Server thread/INFO]:   Starting world timer.
[16:22:57] [Server thread/INFO]:   Initializing world manager.
[16:22:57] [Server thread/INFO]:   Loaded (4) schedules into memory. Took 6ms
[16:22:57] [Server thread/INFO]:   Loaded GeoIP
[16:22:57] [Server thread/INFO]:   Found DiscordSRV
[16:22:57] [Server thread/INFO]: [DiscordSRV] API listener com.Zrips.CMI.Modules.DiscordSRV.DiscordSRVListener ₪w­q¾\ (4 ÷״₪ט®׳)
[16:22:57] [Server thread/INFO]:   Loaded (0) ArmorStand templates into memory. Took 0ms
[16:22:57] [Server thread/INFO]:   Version 9.5.0.8 has been enabled
[16:22:57] [Server thread/INFO]: ???????????????????????????????????????????????????????
[16:22:57] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.32
[16:22:57] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-10.0.32-Free.jar
[16:22:57] [Server thread/INFO]: [LibsDisguises] Discovered nms version: v1_19_R3 (null)
[16:22:57] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1158
[16:22:57] [Server thread/INFO]: [LibsDisguises] Build Date: 03/02/2023 23:08
[16:22:57] [Server thread/WARN]: [LibsDisguises] If you own the plugin, place the premium jar downloaded from https://www.spigotmc.org/resources/libs-disguises.32453/ in plugins/LibsDisguises/
[16:22:57] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[16:22:57] [Server thread/ERROR]: [LibsDisguises] You're using the wrong version of Lib's Disguises for your server! This is intended for v1.12 & v1.13 & v1.14 & v1.15 & v1.16 & v1.17 & v1.18 & v1.19.R1 & v1.19.R2 & UNSUPPORTED!
[16:22:57] [Server thread/INFO]: [LibsDisguises] Disabling LibsDisguises v10.0.32
[16:22:57] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.2.1-fd1d0777
[16:22:57] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.19.4)...
[16:22:57] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[16:22:57] [Server thread/WARN]: [MythicMobs] ¡±6--====|||| ¡±c¡±lMythic ¡±6||||====--
[16:22:57] [Server thread/WARN]: [MythicMobs] This version of Mythic is not fully compatible with your version of Bukkit.
[16:22:57] [Server thread/WARN]: [MythicMobs] Some features may be limited or disabled until you use a compatible version.
[16:22:57] [Server thread/WARN]: [MythicMobs] Server NMS Version Detected - v1_19_R3
[16:22:57] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 56 ms to scan 1 urls, producing 4 keys and 14 values 
[16:22:57] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 7 ms to scan 1 urls, producing 4 keys and 14 values 
[16:22:57] [Server thread/INFO]: [MythicMobs] MythicMobs GriefPrevention Support has been enabled!
[16:22:57] [Server thread/WARN]: [MythicMobs] ? Compatibility Error for 'LibsDisguises': Plugin not found/incompatible version
[16:22:57] [Server thread/INFO]: [MythicMobs] MythicMobs MMOItems Support has been enabled!
[16:22:57] [Server thread/INFO]: [MythicMobs] MythicMobs MythicLib Support has been enabled!
[16:22:57] [Server thread/INFO]: [MythicMobs] MythicMobs PlaceholderAPI Support has been enabled!
[16:22:57] [Server thread/INFO]: [MythicMobs] MythicMobs ProtocolLib Support has been enabled!
[16:22:57] [Server thread/INFO]: [MythicMobs] MythicMobs Vault Support has been enabled!
[16:22:57] [Server thread/INFO]: [MythicMobs] MythicMobs WorldGuard Support has been enabled!
[16:22:57] [Server thread/INFO]: [MythicMobs] Base directory C:\Users\ming\Desktop\·s«״₪ו¥ף?\plugins\MythicMobs\SavedData
[16:22:57] [Server thread/INFO]: [MythicMobs] Module directory C:\Users\ming\Desktop\·s«״₪ו¥ף?\plugins\MythicMobs\SavedData\worlds
[16:22:57] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 16 ms to scan 1 urls, producing 11 keys and 445 values 
[16:22:57] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 39 ms to scan 1 urls, producing 29 keys and 885 values 
[16:22:58] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 11 ms to scan 1 urls, producing 9 keys and 152 values 
[16:22:58] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 6 ms to scan 1 urls, producing 2 keys and 11 values 
[16:22:58] [Server thread/INFO]: [MythicMobs] LOADED
[16:22:58] [Server thread/WARN]: Plugin 'MythicMobs' is creating timing 'scheduler: io.lumine.mythic.core.skills.auras.AuraManager$$Lambda$8911/0x00000008028c8ec8' - this is deprecated behavior, please report it to the authors: Lumine
[16:22:58] [Server thread/INFO]: [MythicMobs] File stats.yml not found! Creating a new one...
[16:22:58] [Server thread/INFO]: [MythicMobs] File config.yml not found! Creating a new one...
[16:22:58] [Server thread/INFO]: [MythicMobs] Loading Packs...
[16:22:58] [Server thread/INFO]: [MythicMobs] File packs.yml not found! Creating a new one...
[16:22:58] [Server thread/INFO]: [MythicMobs] Loading Items...
[16:22:58] [Server thread/INFO]: [MythicMobs] File ExampleItems.yml not found! Creating a new one...
[16:22:58] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Item SkeletonKingSword
[16:22:58] [Server thread/WARN]: [MythicMobs] Error loading item 'SkeletonKingSword'. Enable debugging for a stack trace.
[16:22:58] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Item KingsCrown
[16:22:58] [Server thread/WARN]: [MythicMobs] Error loading item 'KingsCrown'. Enable debugging for a stack trace.
[16:22:58] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[16:22:58] [Server thread/INFO]: [MythicMobs] Loading Skills...
[16:22:58] [Server thread/INFO]: [MythicMobs] File ExampleSkills.yml not found! Creating a new one...
[16:22:58] [Server thread/INFO]: [MythicMobs] File VanillaMobs.yml not found! Creating a new one...
[16:22:58] [Server thread/INFO]: [MythicMobs] File ExampleMobs.yml not found! Creating a new one...
[16:22:58] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[16:22:58] [Server thread/INFO]: [MythicMobs] File ExampleDropTables.yml not found! Creating a new one...
[16:22:58] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[16:22:58] [Server thread/INFO]: [MythicMobs] File ExampleRandomSpawns.yml not found! Creating a new one...
[16:22:58] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[16:22:58] [Server thread/INFO]: [MythicMobs] Spawners folder not found! Creating...
[16:22:58] [Server thread/INFO]: [MythicMobs] ? Loaded 8 mobs.
[16:22:58] [Server thread/INFO]: [MythicMobs] ? Loaded 3 vanilla mob overrides.
[16:22:58] [Server thread/INFO]: [MythicMobs] ? Loaded 0 mob stacks.
[16:22:58] [Server thread/INFO]: [MythicMobs] ? Loaded 3 skills.
[16:22:58] [Server thread/INFO]: [MythicMobs] ? Loaded 0 random spawns.
[16:22:58] [Server thread/INFO]: [MythicMobs] ? Loaded 1 mythic items.
[16:22:58] [Server thread/INFO]: [MythicMobs] ? Loaded 2 drop tables.
[16:22:58] [Server thread/INFO]: [MythicMobs] ? Loaded 0 mob spawners.
[16:22:58] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[16:22:58] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[16:22:58] [Server thread/INFO]: [MythicMobs] ? MythicMobs v5.2.1 ( build fd1d0777 ) has been successfully loaded!
[16:22:58] [Server thread/INFO]: [MythicLib] Enabling MythicLib v1.5.2
[16:22:58] [Server thread/INFO]: [MythicLib] Hooked onto CMI
[16:22:58] [Server thread/INFO]: [MythicLib] Hooked onto MythicMobs
[16:22:58] [Server thread/INFO]: [MythicLib] Hooked onto ProtocolLib
[16:22:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mythiclib [1.5.2]
[16:22:58] [Server thread/INFO]: [MythicLib] Hooked onto PlaceholderAPI
[16:22:58] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.31-SNAPSHOT (build 3043)
[16:22:58] [Server thread/INFO]: [Citizens] Loading external libraries
[16:23:06] [Server thread/INFO]: Creating file: config.yml
[16:23:07] [Server thread/INFO]: Creating file: saves.yml
[16:23:07] [Server thread/INFO]: Creating file: shops.yml
[16:23:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[16:23:07] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[16:23:07] [Server thread/INFO]: [MMOCore] Enabling MMOCore v1.11.3
[16:23:08] [Server thread/WARN]: [MMOCore] Vault was found but MMOCore was unable to successfully find/load an economy plugin.
[16:23:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mmocore [1.11.3]
[16:23:08] [Server thread/INFO]: [MMOCore] Hooked onto PlaceholderAPI
[16:23:08] [Server thread/INFO]: [MMOCore] Hooked onto Citizens
[16:23:08] [Server thread/INFO]: [MMOCore] Hooked onto WorldGuard
[16:23:08] [Server thread/INFO]: [MMOCore] Hooked onto MythicMobs
[16:23:08] [Server thread/INFO]: [MMOCore] default/drop-tables/example-drop-tables.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/professions/alchemy.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/professions/farming.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/professions/fishing.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/professions/mining.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/professions/smelting.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/professions/smithing.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/professions/woodcutting.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/professions/enchanting.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/quests/adv-begins.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/quests/tutorial.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/quests/fetch-mango.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/classes/arcane-mage.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/classes/human.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/classes/mage.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/classes/marksman.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/classes/paladin.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/classes/rogue.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/classes/warrior.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/expcurves/levels.txt
[16:23:08] [Server thread/INFO]: [MMOCore] default/expcurves/mining.txt
[16:23:08] [Server thread/INFO]: [MMOCore] default/skill-trees/combat.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/skill-trees/mage-arcane-mage.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/skill-trees/rogue-marksman.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/skill-trees/warrior-paladin.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/skill-trees/general.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/attributes.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/items.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/messages.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/stats.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/waypoints.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/restrictions.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/sounds.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/loot-chests.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/exp-tables.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/exp-sources.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/triggers.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/conditions.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/guilds.yml
[16:23:08] [Server thread/WARN]: [MMOCore] An error occured while trying to load loot chest region 'sample-region': Could not find world world_name_here
[16:23:08] [Server thread/INFO]: [MMOCore] default/gui/class-confirm/class-confirm-default.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/gui/player-stats.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/gui/attribute-view.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/gui/skill-tree.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/gui/skill-list.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/gui/class-select.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/gui/subclass-select.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/gui/quest-list.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/gui/waypoints.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/gui/friend-list.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/gui/friend-removal.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/gui/party-view.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/gui/party-creation.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/gui/guild-view.yml
[16:23:08] [Server thread/INFO]: [MMOCore] default/gui/guild-creation.yml
[16:23:08] [Server thread/WARN]: [MMOCore] Hooked parties onto MMOCore
[16:23:08] [Server thread/WARN]: [MMOCore] Hooked guilds onto MMOCore
[16:23:08] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR3.1.7
[16:23:08] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[16:23:08] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[16:23:08] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: Citizens
[16:23:08] [Server thread/INFO]: [MMOItems] Enabling MMOItems v6.9.3
[16:23:09] [Server thread/INFO]: [MMOItems] Hooked onto MythicMobs
[16:23:09] [Server thread/INFO]: [MMOItems] Hooked onto MMOCore
[16:23:09] [Server thread/INFO]: [MMOItems] Now using MMOCore as RPG core plugin
[16:23:09] [Server thread/INFO]: [MMOItems Item Templates] Loading template modifiers, please wait..
[16:23:09] [Server thread/INFO]: [MMOItems Item Templates] Loading item templates, please wait...
[16:23:09] [Server thread/ERROR]: [MMOItems] Could not load Economy Support (Vault)
[16:23:09] [Server thread/INFO]: [MMOItems] Hooked onto Vault
[16:23:09] [Server thread/INFO]: [MMOItems] Hooked onto Vault
[16:23:09] [Server thread/INFO]: [MMOItems] Loading crafting stations, please wait..
[16:23:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mmoitems [6.9.3]
[16:23:09] [Server thread/INFO]: [MMOItems] Hooked onto PlaceholderAPI
[16:23:09] [Server thread/INFO]: [MMOItems] Loading recipes, please wait...
[16:23:09] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.3
[16:23:10] [Server thread/INFO]: [CoreProtect] Invalid WorldEdit version found.
[16:23:10] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[16:23:10] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[16:23:10] [Server thread/INFO]: --------------------
[16:23:10] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[16:23:10] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[16:23:10] [Server thread/INFO]: --------------------
[16:23:10] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[16:23:10] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[16:23:10] [Server thread/INFO]: [ClearLag] Config not found. Generating default config...
[16:23:10] [Server thread/INFO]: [ClearLag] Loading modules...
[16:23:10] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (net.minecraft.server.v1_19_R3.MinecraftServer)
[16:23:10] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[16:23:10] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[16:23:10] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[16:23:10] [Thread-15/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.19]...
[16:23:10] [Server thread/INFO]: [SkBee] Enabling SkBee v2.7.4
[16:23:10] [Server thread/INFO]: [SkBee] Loading NBTApi...
[16:23:10] [Server thread/INFO]: [SkBee] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[16:23:10] [Server thread/INFO]: [SkBee] Failed to load NBTApi!
[16:23:10] [Server thread/INFO]: [SkBee] NBT Elements DISABLED!
[16:23:10] [Server thread/INFO]: [SkBee]  - Your server version [1.19.4] is not currently supported by the NBT-API
[16:23:10] [Server thread/INFO]: [SkBee]  - This is not a bug!
[16:23:10] [Server thread/INFO]: [SkBee]  - NBT elements will resume once the API is updated to work with [1.19.4]
[16:23:10] [Thread-15/INFO]: [ClearLag] No updates found!
[16:23:10] [Server thread/INFO]: [SkBee] Recipe Elements successfully loaded
[16:23:10] [Server thread/INFO]: [SkBee] Scoreboard Elements successfully loaded
[16:23:10] [Server thread/INFO]: [SkBee] Scoreboard Objective Elements successfully loaded
[16:23:10] [Server thread/INFO]: [SkBee] Team Elements successfully loaded
[16:23:10] [Server thread/INFO]: [SkBee] Bound Elements successfully loaded
[16:23:10] [Server thread/INFO]: [SkBee] Text Component Elements successfully loaded
[16:23:10] [Server thread/INFO]: [SkBee] Pathfinding Elements successfully loaded
[16:23:10] [Server thread/INFO]: [SkBee] Structure Elements successfully loaded
[16:23:10] [Server thread/INFO]: [SkBee] Other Elements successfully loaded
[16:23:10] [Server thread/INFO]: [SkBee] Virtual Furnace Elements disabled via config
[16:23:10] [Server thread/INFO]: [SkBee] World Creator Elements successfully loaded
[16:23:10] [Server thread/INFO]: [SkBee] Game Event Elements successfully loaded
[16:23:10] [Server thread/INFO]: [SkBee] BossBar Elements successfully loaded
[16:23:10] [Server thread/INFO]: [SkBee] Statistic Elements successfully loaded
[16:23:10] [Server thread/INFO]: [SkBee] Villager Elements successfully loaded
[16:23:10] [Server thread/INFO]: [SkBee] Advancement Elements successfully loaded
[16:23:10] [Server thread/INFO]: [SkBee] World Border Elements successfully loaded
[16:23:10] [Server thread/INFO]: [SkBee] Particle Elements successfully loaded
[16:23:10] [Server thread/INFO]: [SkBee] Minecraft Tag elements successfully loaded
[16:23:10] [Server thread/INFO]: [SkBee] RayTrace elements successfully loaded
[16:23:10] [Server thread/INFO]: [SkBee] Loaded elements:
[16:23:10] [Server thread/INFO]: [SkBee]  - 35 events
[16:23:10] [Server thread/INFO]: [SkBee]  - 35 effects
[16:23:10] [Server thread/INFO]: [SkBee]  - 128 expressions
[16:23:10] [Server thread/INFO]: [SkBee]  - 13 conditions
[16:23:10] [Server thread/INFO]: [SkBee]  - 1 section
[16:23:10] [Server thread/INFO]: [SkBee] Checking for update...
[16:23:11] [Server thread/INFO]: [SkBee] Plugin is not up to date!
[16:23:11] [Server thread/INFO]: [SkBee]  - Current version: v2.7.4
[16:23:11] [Server thread/INFO]: [SkBee]  - Available update: v2.8.4
[16:23:11] [Server thread/INFO]: [SkBee]  - Download available at: https://github.com/ShaneBeee/SkBee/releases
[16:23:11] [Server thread/INFO]: [SkBee] Successfully enabled v2.7.4 in 0.72 seconds
[16:23:11] [Server thread/INFO]: [EpicPluginLib] Enabling EpicPluginLib v2.2.1
[16:23:11] [Server thread/INFO]: [EpicPluginLib] Dependency found: PlayMoreSounds.
[16:23:11] [Server thread/INFO]: [EpicPluginLib] Lib enabled successfully.
[16:23:11] [Server thread/INFO]: [EpicPluginLib] EpicPluginLib is using bStats as metrics collector.
[16:23:11] [Server thread/INFO]: [PCGF_PluginLib] Enabling PCGF_PluginLib v1.0.39-SNAPSHOT
[16:23:11] [Server thread/INFO]: [PCGF_PluginLib] File "/config.yml" extracted successfully!
[16:23:11] [Server thread/INFO]: [PCGF_PluginLib] Config file successfully loaded.
[16:23:11] [Server thread/INFO]: [PCGF_PluginLib] File "/lang/items_en.yml" extracted successfully!
[16:23:11] [Server thread/INFO]: [PCGF_PluginLib] Item name language file successfully loaded. Language: english  Author: GeorgH93
[16:23:11] [Server thread/INFO]: [PCGF_PluginLib] Loading item translations ...
[16:23:11] [Server thread/INFO]: [PCGF_PluginLib] Finished loading item translations for 828 items.
[16:23:11] [Server thread/INFO]: [PCGF_PluginLib] File "/lang/common_en.yml" extracted successfully!
[16:23:11] [Server thread/INFO]: [PCGF_PluginLib] Language file successfully loaded. Language: english  Author: GeorgH93
[16:23:11] [Server thread/INFO]: [PCGF_PluginLib]  PCGF_PluginLib v1.0.39-SNAPSHOT has been enabled!  :) 
[16:23:11] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v3.3.1
[16:23:11] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[16:23:11] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(v1_19_R3) is not supported by this NBT-API Version(2.11.1) located at dev.lone.LoneLibs.nbt.nbtapi.utils.MinecraftVersion. The NBT-API will try to work as good as it can! Some functions may not work!
[16:23:11] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[16:23:11] [Server thread/ERROR]: [ItemsAdder] שששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששש
[16:23:11] [Server thread/ERROR]: [ItemsAdder]  
[16:23:11] [Server thread/ERROR]: [ItemsAdder]  
[16:23:11] [Server thread/ERROR]: [ItemsAdder]  
[16:23:11] [Server thread/ERROR]: [ItemsAdder] This server version is not supported: 1.19.4
[16:23:11] [Server thread/WARN]: [ItemsAdder] This server version is very new and is not currently supported by ItemsAdder. I'm working on an update. Last supported version is 1.19.3
[16:23:11] [Server thread/WARN]: [ItemsAdder] Open config.yml and set 'ignore-server-compatibility-check: true' 
to load the plugin anyway and see to report them on Github:
> http://a.devs.beer/ia-not-compat-git <
[16:23:11] [Server thread/ERROR]: [ItemsAdder]  
[16:23:11] [Server thread/ERROR]: [ItemsAdder]  
[16:23:11] [Server thread/ERROR]: [ItemsAdder]  
[16:23:11] [Server thread/ERROR]: [ItemsAdder] שששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששששש
[16:23:11] [Server thread/INFO]: [Sentinel] Enabling Sentinel v2.7.3-SNAPSHOT (build 505)
[16:23:11] [Server thread/INFO]: [Sentinel] Sentinel loading...
[16:23:11] [Server thread/INFO]: [Sentinel] Running on java version: 17.0.6
[16:23:11] [Server thread/INFO]: [Sentinel] Sentinel loaded on a fully supported Minecraft version. If you encounter any issues or need to ask a question, please join our Discord at https://discord.gg/Q6pZGSR and post in the '#sentinel' channel.
[16:23:11] [Server thread/INFO]: [Sentinel] Vault linked! Group targets will work.
[16:23:11] [Server thread/INFO]: [Sentinel] Sentinel found WorldGuard! Adding support for it!
[16:23:11] [Server thread/INFO]: [Sentinel] Sentinel loaded!
[16:23:11] [Server thread/INFO]: [WildStacker] Enabling WildStacker v2023.1
[16:23:11] [Server thread/INFO]: [WildStacker] ******** ENABLE START ********
[16:23:11] [Server thread/INFO]: [WildStacker] Loading configuration started...
[16:23:11] [Server thread/INFO]: [WildStacker]  - Stacking drops is enabled
[16:23:11] [Server thread/INFO]: [WildStacker]  - Stacking entities is enabled
[16:23:11] [Server thread/INFO]: [WildStacker]  - Stacking spawners is enabled
[16:23:11] [Server thread/INFO]: [WildStacker]  - Stacking barrels is enabled
[16:23:12] [Server thread/INFO]: [WildStacker] Loading configuration done (Took 53ms)
[16:23:12] [Server thread/INFO]: [WildStacker] Loading loot-tables started...
[16:23:12] [Server thread/INFO]: [WildStacker] Loading loot-tables done (Took 91ms)
[16:23:12] [Server thread/INFO]: [WildStacker] Loading messages started...
[16:23:12] [Server thread/INFO]: [WildStacker]  - Found 69 messages in lang.yml.
[16:23:12] [Server thread/INFO]: [WildStacker] Loading messages done (Took 3ms)
[16:23:12] [Server thread/INFO]: [WildStacker] ******** ENABLE DONE ********
[16:23:12] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.1
[16:23:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuard' is creating timing 'Third-Party Session Handlers' - this is deprecated behavior, please report it to the authors: 
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'TeleportOnEntryFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'TeleportOnExitFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'CommandOnEntryFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'CommandOnExitFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'ConsoleCommandOnEntryFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'ConsoleCommandOnExitFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'WalkSpeedFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'BlockedEffectsFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'GodmodeFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'GiveEffectsFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'FlyFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'FlySpeedFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'PlaySoundsFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'GlideFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[16:23:12] [Server thread/INFO]: [WDLCompanion] Enabling WDLCompanion v1.2.0*
[16:23:12] [Server thread/INFO]: [UltraBar] Enabling UltraBar v2.3.2
[16:23:12] [Server thread/INFO]: [UltraBar] WorldGuard detected. WorldGuard addon activated.
[16:23:12] [Server thread/INFO]: [UltraBar] PlaceholderAPI detected. PlaceholderAPI addon activated.
[16:23:12] [Server thread/INFO]: [UltraBar] Your server is running version v1_19_R3!
[16:23:13] [Server thread/INFO]: [UltraBar] UltraBar is enabled and running fine! V: 2.3.2
[16:23:13] [Server thread/INFO]: [UltraBar] Bstat metrics for this plugin is enabled. Disable it in the config if you do not want it on.
[16:23:13] [Server thread/INFO]: [TreasureChestX] Enabling TreasureChestX v1.0
[16:23:13] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.3.1
[16:23:13] [Server thread/INFO]:  
[16:23:13] [Server thread/INFO]: __________________________________________________________
[16:23:13] [Server thread/INFO]:  
[16:23:13] [Server thread/INFO]:                        TradeSystem [2.3.1]
[16:23:13] [Server thread/INFO]:  
[16:23:13] [Server thread/INFO]: Status:
[16:23:13] [Server thread/INFO]:  
[16:23:13] [Server thread/INFO]: MC-Version: 1.19.4 (R0.1-SNAPSHOT, Paper)
[16:23:13] [Server thread/INFO]:  
[16:23:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tradesystem [1.2]
[16:23:13] [Server thread/INFO]:   > Loading sounds
[16:23:13] [Server thread/INFO]:   > Loading blacklist
[16:23:13] [Server thread/INFO]:     ...got 3 blocked item(s)
[16:23:13] [Server thread/INFO]:   > Loading layouts
[16:23:13] [Server thread/WARN]: [TradeSystem] No trade pattern found -> create default patterns
[16:23:13] [Server thread/INFO]: [TradeSystem] Saved 3 layout(s).
[16:23:13] [Server thread/WARN]: [TradeSystem] No active layout found. Switching to the default layout: 'Standard'
[16:23:13] [Server thread/INFO]: [TradeSystem] Saved 'Standard' as active layout.
[16:23:13] [Server thread/INFO]:     ...got 3 layout(s)
[16:23:13] [Server thread/INFO]:   > Database logging is disabled
[16:23:13] [Server thread/INFO]:  
[16:23:13] [Server thread/INFO]: Finished (178ms)
[16:23:13] [Server thread/INFO]:  
[16:23:13] [Server thread/INFO]: __________________________________________________________
[16:23:13] [Server thread/INFO]:  
[16:23:13] [Server thread/INFO]: [Themis] Enabling Themis v0.14.6
[16:23:13] [Server thread/WARN]: [Themis] Couldn't find Floodgate which is required for Bedrock support
[16:23:13] [Server thread/WARN]: Plugin 'Themis' is creating timing 'Commands' - this is deprecated behavior, please report it to the authors: Olexorus
[16:23:13] [Server thread/WARN]: Plugin 'Themis' is creating timing 'Command: themis notify' - this is deprecated behavior, please report it to the authors: Olexorus
[16:23:13] [Server thread/WARN]: Plugin 'Themis' is creating timing 'Command: themis' - this is deprecated behavior, please report it to the authors: Olexorus
[16:23:13] [Server thread/WARN]: Plugin 'Themis' is creating timing 'Command: themis reload' - this is deprecated behavior, please report it to the authors: Olexorus
[16:23:13] [Server thread/WARN]: Plugin 'Themis' is creating timing 'Command: themis info' - this is deprecated behavior, please report it to the authors: Olexorus
[16:23:13] [Server thread/WARN]: Plugin 'Themis' is creating timing 'Command: themis notifications' - this is deprecated behavior, please report it to the authors: Olexorus
[16:23:13] [Server thread/WARN]: Plugin 'Themis' is creating timing 'Command: themis help' - this is deprecated behavior, please report it to the authors: Olexorus
[16:23:13] [Server thread/INFO]: [TAB] Enabling TAB v3.3.2
[16:23:13] [Server thread/INFO]: [TAB] Server version: 1.19.4 (v1_19_R3)
[16:23:13] [Server thread/INFO]: [TAB] Loaded NMS hook in 23ms
[16:23:13] [Server thread/INFO]: [TAB] Enabled in 70ms
[16:23:13] [Server thread/INFO]: [skript-yaml] Enabling skript-yaml v1.4
[16:23:13] [Server thread/INFO]: [SkQuery] Enabling SkQuery v4.1.9
[16:23:13] [Server thread/INFO]: [skQuery] Locating classes from SkQuery...
[16:23:13] [Server thread/INFO]: [skQuery] Beginning to process a total of 119 from SkQuery
[16:23:13] [Server thread/INFO]: [skQuery] Out of 119 classes, 119 classes were loaded from SkQuery
[16:23:13] [Server thread/INFO]: [ServerSigns] Enabling ServerSigns v4.8.0
[16:23:13] [Server thread/INFO]: [ServerSigns] Version 4.8.0 is now enabled.
[16:23:13] [Server thread/INFO]: [RotatingHeads2] Enabling RotatingHeads2 v1.0.3
[16:23:14] [Server thread/INFO]: [RotatingHeads2] --------------------------------------------------------------------------------------------
[16:23:14] [Server thread/INFO]: [RotatingHeads2] Loading plugin RotatingHeads2 v.1.0.3
[16:23:14] [Server thread/INFO]: [RotatingHeads2] --------------------------------------------------------------------------------------------
[16:23:14] [Server thread/INFO]: [RotatingHeads2] 
[16:23:14] [Server thread/INFO]: [RotatingHeads2]  Successfully loaded: 0 languages
[16:23:14] [Server thread/INFO]: [RotatingHeads2]  Added new language: en_GB
[16:23:14] [Server thread/INFO]: [RotatingHeads2]  Hooked to language: en_GB
[16:23:14] [Server thread/INFO]: [RotatingHeads2] 
[16:23:14] [Server thread/INFO]: [RotatingHeads2] This plugin is running on 1.0.3...
[16:23:14] [Server thread/INFO]: [RotatingHeads2] Current plugin version on polymart is 1.0.3...
[16:23:14] [Server thread/INFO]: [RotatingHeads2] So your plugin is on the latest version...
[16:23:14] [Server thread/INFO]: [RotatingHeads2] 
[16:23:14] [Server thread/INFO]: [RotatingHeads2]  Plugin author: [Gennario]
[16:23:14] [Server thread/INFO]: [RotatingHeads2] 
[16:23:14] [Server thread/INFO]: [RotatingHeads2] Thanks for choosing Gennario's Development...
[16:23:14] [Server thread/INFO]: [RotatingHeads2] --------------------------------------------------------------------------------------------
[16:23:14] [Server thread/INFO]: [PlayMoreSounds] Enabling PlayMoreSounds v4.2
[16:23:14] [Server thread/INFO]: [PlayMoreSounds] -> Configurations loaded.
[16:23:14] [Server thread/INFO]: [PlayMoreSounds] -> 18 listeners loaded.
[16:23:14] [Server thread/INFO]: [PlayMoreSounds] -> Commands loaded.
[16:23:14] [Server thread/INFO]: [PlayMoreSounds] ============================================
[16:23:14] [Server thread/INFO]: [PlayMoreSounds] PlayMoreSounds has been enabled
[16:23:14] [Server thread/INFO]: [PlayMoreSounds] 1202 sounds available on 1.19.4
[16:23:14] [Server thread/INFO]: [PlayMoreSounds] ============================================
[16:23:14] [Server thread/WARN]: [PlayMoreSounds] PlayMoreSounds detected you are on version 1.19.4. This version was not tested and might throw errors.
[16:23:14] [Server thread/INFO]: [PlayMoreSounds] PlayMoreSounds is using bStats as metrics collector.
[16:23:14] [Server thread/INFO]: [PlayMoreSounds] Checking for updates...
[16:23:14] [Server thread/INFO]: [PlayerKits] Enabling PlayerKits v2.26.1
[16:23:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerkits [2.26.1]
[16:23:14] [Server thread/INFO]: [PlayerKits] Has been enabled! Version: 2.26.1
[16:23:14] [Server thread/INFO]: [PlayerKits] Thanks for using my plugin!  ~Ajneb97
[16:23:14] [EPL Update Checker/INFO]: [PlayMoreSounds] No updates available.
[16:23:14] [Server thread/INFO]: [PlaceItemsOnGroundRebuilt] Enabling PlaceItemsOnGroundRebuilt v1.0.6
[16:23:14] [Server thread/INFO]: [NoPlugins] Enabling NoPlugins v8.1
[16:23:14] [Server thread/INFO]: [NoPlugins] Minecraft version: v1_19_R3
[16:23:14] [Server thread/INFO]: [NoPlugins] Loaded assets for newer minecraft (1.13+)
[16:23:14] [Server thread/INFO]: [NoPlugins] Successfully loaded.
[16:23:14] [Server thread/INFO]: [MythicDungeons] Enabling MythicDungeons v1.1.1-SNAPSHOT
[16:23:14] [Server thread/INFO]: [MythicDungeons] [STDOUT] ¡±eDownloading and initializing default party manager.
[16:23:14] [Server thread/WARN]: Nag author(s): '[MarcatoSound]' of 'MythicDungeons v1.1.1-SNAPSHOT' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[16:23:14] [Server thread/INFO]: [DungeonParties] Loading server plugin DungeonParties v1.0-SNAPSHOT
[16:23:14] [Server thread/INFO]: [DungeonParties] Enabling DungeonParties v1.0-SNAPSHOT
[16:23:14] [Server thread/INFO]: [MythicDungeons] [STDOUT] ¡±dDungeonParties plugin found! Enabled party support.
[16:23:14] [Server thread/WARN]: [MythicDungeons] [packetevents] We currently do not support the minecraft version 1.19.4, so things might break. PacketEvents will behave as if the minecraft version were 1.19.2!
[16:23:14] [packetevents-update-check-thread/INFO]: [packetevents] Checking for an update, please wait...
[16:23:14] [Server thread/INFO]: [packetevents] You are attempting to combine 2.0 PacketEvents with a ProtocolLib version older than v5.0.0. This is no longer works, please update to their dev builds. https://ci.dmulloy2.net/job/ProtocolLib/lastBuild/
[16:23:14] [Server thread/INFO]: [MythicDungeons] Disabling MythicDungeons v1.1.1-SNAPSHOT
[16:23:14] [Server thread/INFO]: [MythicDungeons] [STDOUT] ¡±dCleaning up dungeons...
[16:23:14] [Server thread/ERROR]: Error occurred while enabling MythicDungeons v1.1.1-SNAPSHOT (Is it up to date?)
java.lang.IllegalStateException: ProtocolLib incompatibility! Update to v5.0.0 or newer!
    at net.playavalon.mythicdungeons.packetevents.impl.factory.spigot.SpigotPacketEventsBuilder$1.checkCompatibility(SpigotPacketEventsBuilder.java:222) ~[MythicDungeons-1.1.1-SNAPSHOT.jar:?]
    at net.playavalon.mythicdungeons.packetevents.impl.factory.spigot.SpigotPacketEventsBuilder$1.init(SpigotPacketEventsBuilder.java:175) ~[MythicDungeons-1.1.1-SNAPSHOT.jar:?]
    at net.playavalon.mythicdungeons.MythicDungeons.onEnable(MythicDungeons.java:246) ~[MythicDungeons-1.1.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192) ~[paper-1.19.4.jar:git-Paper-516]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.19.4.jar:git-Paper-516]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:555) ~[paper-1.19.4.jar:git-Paper-516]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:466) ~[paper-1.19.4.jar:git-Paper-516]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:638) ~[paper-1.19.4.jar:git-Paper-516]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437) ~[paper-1.19.4.jar:git-Paper-516]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.19.4.jar:git-Paper-516]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1104) ~[paper-1.19.4.jar:git-Paper-516]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320) ~[paper-1.19.4.jar:git-Paper-516]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[16:23:14] [Server thread/INFO]: [MythicCrucible] Enabling MythicCrucible v1.5.0-SNAPSHOT
[16:23:14] [Server thread/INFO]: [MythicMobs] ¡±6------------------------------------------------
[16:23:14] [Server thread/INFO]: [MythicMobs] ¡±b+ Loading MythicCrucible for Bukkit
[16:23:14] [Server thread/INFO]: [MythicMobs] ¡±6------------------------------------------------
[16:23:14] [Server thread/INFO]: [MythicCrucible] File config.yml not found! Creating a new one...
[16:23:14] [Server thread/INFO]: [MythicMobs] Registering Durability Listener
[16:23:14] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[16:23:14] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.0.11
[16:23:15] [packetevents-update-check-thread/WARN]: java.lang.IllegalStateException: zip file closed
[16:23:15] [packetevents-update-check-thread/WARN]:     at java.base/java.util.zip.ZipFile.ensureOpen(ZipFile.java:831)
[16:23:15] [packetevents-update-check-thread/WARN]:     at java.base/java.util.zip.ZipFile.getEntry(ZipFile.java:330)
[16:23:15] [packetevents-update-check-thread/WARN]:     at java.base/java.util.jar.JarFile.getEntry(JarFile.java:518)
[16:23:15] [packetevents-update-check-thread/WARN]:     at java.base/java.util.jar.JarFile.getJarEntry(JarFile.java:473)
[16:23:15] [packetevents-update-check-thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:195)
[16:23:15] [packetevents-update-check-thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:587)
[16:23:15] [packetevents-update-check-thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:155)
[16:23:15] [packetevents-update-check-thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:150)
[16:23:15] [packetevents-update-check-thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:520)
[16:23:15] [packetevents-update-check-thread/WARN]:     at MythicDungeons-1.1.1-SNAPSHOT.jar//net.playavalon.mythicdungeons.packetevents.api.util.updatechecker.UpdateChecker.checkLatestReleasedVersion(UpdateChecker.java:48)
[16:23:15] [packetevents-update-check-thread/WARN]:     at MythicDungeons-1.1.1-SNAPSHOT.jar//net.playavalon.mythicdungeons.packetevents.api.util.updatechecker.UpdateChecker.checkForUpdate(UpdateChecker.java:62)
[16:23:15] [packetevents-update-check-thread/WARN]:     at MythicDungeons-1.1.1-SNAPSHOT.jar//net.playavalon.mythicdungeons.packetevents.api.util.updatechecker.UpdateChecker.lambda$handleUpdateCheck$0(UpdateChecker.java:94)
[16:23:15] [packetevents-update-check-thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[16:23:15] [packetevents-update-check-thread/INFO]: [packetevents] Something went wrong while checking for an update. Your build: (2.0.0)
[16:23:15] [packetevents-update-check-thread/WARN]: Exception in thread "packetevents-update-check-thread" java.lang.IllegalStateException: zip file closed
[16:23:15] [packetevents-update-check-thread/WARN]:     at java.base/java.util.zip.ZipFile.ensureOpen(ZipFile.java:831)
[16:23:15] [packetevents-update-check-thread/WARN]:     at java.base/java.util.zip.ZipFile.getEntry(ZipFile.java:330)
[16:23:15] [packetevents-update-check-thread/WARN]:     at java.base/java.util.jar.JarFile.getEntry(JarFile.java:518)
[16:23:15] [packetevents-update-check-thread/WARN]:     at java.base/java.util.jar.JarFile.getJarEntry(JarFile.java:473)
[16:23:15] [packetevents-update-check-thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:195)
[16:23:15] [packetevents-update-check-thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:587)
[16:23:15] [packetevents-update-check-thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:155)
[16:23:15] [packetevents-update-check-thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:150)
[16:23:15] [packetevents-update-check-thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:520)
[16:23:15] [packetevents-update-check-thread/WARN]:     at MythicDungeons-1.1.1-SNAPSHOT.jar//net.playavalon.mythicdungeons.packetevents.api.util.updatechecker.UpdateChecker.checkForUpdate(UpdateChecker.java:87)
[16:23:15] [packetevents-update-check-thread/WARN]:     at MythicDungeons-1.1.1-SNAPSHOT.jar//net.playavalon.mythicdungeons.packetevents.api.util.updatechecker.UpdateChecker.lambda$handleUpdateCheck$0(UpdateChecker.java:94)
[16:23:15] [packetevents-update-check-thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[16:23:15] [Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.18
[16:23:15] [Server thread/INFO]: [Minepacks] Starting Minepacks in standalone mode!
[16:23:15] [Server thread/INFO]: [Minepacks] You do have the PCGF_PluginLib installed. You may consider switching to the default version of the plugin to reduce memory load and unlock additional features.
[16:23:15] [Server thread/INFO]: [Minepacks] File "/config.yml" extracted successfully!
[16:23:15] [Server thread/INFO]: [Minepacks] Config file successfully loaded.
[16:23:15] [Server thread/INFO]: [Minepacks] File "/lang/en.yml" extracted successfully!
[16:23:15] [Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: english  Author: GeorgH93
[16:23:15] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting...
[16:23:15] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed.
[16:23:15] [Server thread/INFO]: [Minepacks] File "/lang/items_en.yml" extracted successfully!
[16:23:15] [Server thread/INFO]: [Minepacks] Item name language file successfully loaded. Language: english  Author: GeorgH93
[16:23:15] [Server thread/INFO]: [Minepacks] Loading item translations ...
[16:23:15] [Server thread/INFO]: [Minepacks] Finished loading item translations for 828 items.
[16:23:15] [Server thread/INFO]: [Minepacks]  Minepacks has been enabled!  :) 
[16:23:15] [Server thread/INFO]: [MCPets] Enabling MCPets v3.0.2
[16:23:15] [Server thread/INFO]: [MCPets] : Language file reloaded.
[16:23:15] [Server thread/INFO]: [MCPets] : Blacklist file reloaded.
[16:23:15] [Server thread/INFO]: Loading pets... 
[16:23:15] [Server thread/INFO]: [MCPets] : 0 pets registered successfully !
[16:23:15] [Server thread/INFO]: [MCPets] : 0 categories registered successfully !
[16:23:16] [Server thread/ERROR]: [MCPets] Could not reach SQL database. Please configure your database parameters.
[16:23:16] [Server thread/ERROR]: [MCPets] [Database] Can't initialize MySQL.
[16:23:16] [Server thread/ERROR]: [MCPets] [Database] Will be using YAML support instead.
[16:23:16] [Server thread/INFO]: -=-=-=-= MCPets loaded =-=-=-=-
[16:23:16] [Server thread/INFO]:       Plugin made by Nocsy
[16:23:16] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[16:23:16] [Server thread/INFO]: -=- Launching Flags -=-
[16:23:16] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount.
[16:23:16] [Server thread/INFO]: [MCPets] : Starting flag mcpets-despawn.
[16:23:16] [Server thread/INFO]: 2 flags launched.
[16:23:16] [Server thread/INFO]: [MagicCosmetics] Enabling MagicCosmetics v2.2.8
[16:23:16] [Server thread/INFO]: [MagicCosmetics] Version: v1_19_R3 Detected!
[16:23:16] [Server thread/INFO]: [MagicCosmetics] Loading file cosmetic: cosmetics.yml
[16:23:16] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[16:23:16] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@66657972
[16:23:16] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[16:23:16] [Server thread/INFO]: [MagicCosmetics] SQLite table created successfully
[16:23:16] [Server thread/INFO]: [MagicCosmetics] Validating purchase...
[16:23:16] [Server thread/INFO]: [MagicCosmetics]  
[16:23:16] [Server thread/INFO]: [MagicCosmetics] Welcome sktom!
[16:23:16] [Server thread/INFO]: [MagicCosmetics] Thank you for using MagicCosmetics =)!
[16:23:16] [Server thread/INFO]: [MagicCosmetics]  
[16:23:16] [Server thread/INFO]: [MagicCosmetics] ModelEngine 3.0.0 found, using new model engine
[16:23:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: magicosmetics [2.2.8]
[16:23:16] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[16:23:16] [Server thread/INFO]: [LootChest] Enabling LootChest v2.3.4
[16:23:16] [Server thread/INFO]: [LootChest] Server version: 1.19
[16:23:16] [Server thread/INFO]: [LootChest] Loading config files...
[16:23:16] [Server thread/INFO]: [LootChest] Checking for update...
[16:23:16] [Server thread/INFO]: [LootChest] Starting particles...
[16:23:16] [Server thread/INFO]: [LiteSignIn] Enabling LiteSignIn v1.7.0.0
[16:23:16] [Server thread/INFO]: [LiteSignIn] The language information file has been loaded.
[16:23:16] [Server thread/INFO]: [LiteSignIn] Enabled Command Listener .
[16:23:16] [Server thread/INFO]: [LiteSignIn] Enabled Event Listener .
[16:23:16] [Server thread/INFO]: LiteSignIn >>> Successfully connected SQLite server.
[16:23:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: litesignin [1.0.0]
[16:23:16] [Server thread/INFO]: LiteSignIn >>> Find the PlaceholderAPI and get ready.
[16:23:16] [Server thread/INFO]: LiteSignIn >>> Async thread started.
[16:23:16] [Server thread/INFO]: LiteSignIn >>> Plugin are enabled!
[16:23:16] [Server thread/INFO]: [LastLoginAPI] Enabling LastLoginAPI v1.7.4
[16:23:16] [Server thread/INFO]: [LastLoginAPI] Initializing LastLoginAPI v1.7.4
[16:23:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: lastloginapi [1.7.4]
[16:23:16] [Server thread/INFO]: [LastLoginAPI] Hooked into PlaceholderAPI
[16:23:16] [Server thread/INFO]: [LastLoginAPI] LastLoginAPI v1.7.4 enabled
[16:23:16] [Server thread/INFO]: [JonAPI] Enabling JonAPI v1.1-c1*
[16:23:16] [Server thread/INFO]: [JonAPI] Plugin Version: 1.1-c1
[16:23:16] [Server thread/INFO]: [JonAPI] JonAPI ?¥־¦¨¥\.    BY JONJS2333
[16:23:16] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.0.9
[16:23:16] [Server thread/INFO]: [ItemEdit] Unable to hook into Vault
[16:23:17] [Server thread/INFO]: [ItemEdit] Hooking into PlaceholderApi
[16:23:17] [Server thread/INFO]: [ItemEdit] Hooked into PlaceHolderAPI:
[16:23:17] [Server thread/INFO]: [ItemEdit] placeholders:
[16:23:17] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[16:23:17] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[16:23:17] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[16:23:17] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[16:23:17] [Server thread/INFO]: [ItemEdit]       Values: inventory, equip, inventoryandequip, hand, offhand, head, chest, legs, feet
[16:23:17] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[16:23:17] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[16:23:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: itemedit [1.0]
[16:23:17] [Server thread/INFO]: [ItemEdit] Hooking into MythicMobs
[16:23:17] [Server thread/INFO]: [ItemEdit] # Enabled (took 76 ms)
[16:23:17] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.11.2
[16:23:17] [Server thread/INFO]: [NBTAPI] Adding listeners...
[16:23:17] [Server thread/INFO]: [NBTAPI] Gson:
[16:23:17] [Server thread/INFO]: [NBTAPI] Checking bindings...
[16:23:17] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[16:23:17] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[16:23:17] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[16:23:17] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[16:23:17] [Server thread/INFO]: [shit_do] Enabling shit_do v1.0*
[16:23:17] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.1.10
[16:23:17] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[16:23:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: excellentcrates [4.1.10]
[16:23:17] [Server thread/INFO]: [ExcellentCrates] Using 'en' language.
[16:23:17] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[16:23:17] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-2 - Added connection org.sqlite.jdbc4.JDBC4Connection@4787a650
[16:23:17] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[16:23:17] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crate keys.
[16:23:17] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[16:23:17] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 868 ms!
[16:23:17] [Server thread/INFO]: [EpicCraftingsPlus] Enabling EpicCraftingsPlus v7.18.1
[16:23:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: epiccraftings [7.18.1]
[16:23:18] [Server thread/INFO]: [EpicCraftings+] Has been enabled! Version: 7.18.1
[16:23:18] [Server thread/INFO]: [EpicCraftings+] Thanks for using my plugin!  ~Ajneb97
[16:23:18] [Server thread/INFO]: [EnderContainers] Enabling EnderContainers v2.3.0-dev
[16:23:18] [Server thread/INFO]: [EnderContainers] Hooked into WorldGuard v7.0.7+216b061
[16:23:18] [Server thread/INFO]: [EnderContainers] MySQL disabled. Using flat system to store data.
[16:23:18] [Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
[16:23:18] [Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
[16:23:18] [Server thread/INFO]: [DeluxeTags] 1 tag loaded
[16:23:18] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[16:23:18] [Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
[16:23:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxetags [1.8.2-Release]
[16:23:18] [Server thread/INFO]: [DeluxeTags] ----------------------------
[16:23:18] [Server thread/INFO]: [DeluxeTags]      DeluxeTags Updater
[16:23:18] [Server thread/INFO]: [DeluxeTags]  
[16:23:18] [Server thread/INFO]: [DeluxeTags] You are running 1.8.2-Release
[16:23:18] [Server thread/INFO]: [DeluxeTags] The latest version
[16:23:18] [Server thread/INFO]: [DeluxeTags] of DeluxeTags!
[16:23:18] [Server thread/INFO]: [DeluxeTags]  
[16:23:18] [Server thread/INFO]: [DeluxeTags] ----------------------------
[16:23:18] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.7-Release
[16:23:18] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[16:23:19] [Server thread/INFO]: [DeluxeMenus] Individual menus directory did not exist.
Created directory: plugins\DeluxeMenus\gui_menus
[16:23:19] [Server thread/INFO]: [DeluxeMenus] 3 GUI menus loaded!
[16:23:19] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[16:23:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.7-Release]
[16:23:19] [Server thread/INFO]: [ChatItem] Enabling ChatItem v2.4.6
[16:23:19] [Server thread/INFO]: [ChatItem] Detected server version: v1_19
[16:23:19] [Server thread/ERROR]: Cannot load plugins\ChatItem\config.yml
org.bukkit.configuration.InvalidConfigurationException: while scanning a quoted scalar
 in 'reader', line 1044, column 11:
        8201: "Poti
              ^
found unexpected end of stream
 in 'reader', line 1045, column 1:
    
    ^

    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:106) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:306) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.reloadConfig(JavaPlugin.java:172) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.getConfig(JavaPlugin.java:148) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at me.dadus33.chatitem.ChatItem.onEnable(ChatItem.java:123) ~[ChatItem-2.4.6.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192) ~[paper-1.19.4.jar:git-Paper-516]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.19.4.jar:git-Paper-516]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:555) ~[paper-1.19.4.jar:git-Paper-516]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:466) ~[paper-1.19.4.jar:git-Paper-516]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:638) ~[paper-1.19.4.jar:git-Paper-516]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:437) ~[paper-1.19.4.jar:git-Paper-516]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.19.4.jar:git-Paper-516]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1104) ~[paper-1.19.4.jar:git-Paper-516]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:320) ~[paper-1.19.4.jar:git-Paper-516]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: org.yaml.snakeyaml.scanner.ScannerException: while scanning a quoted scalar
 in 'reader', line 1044, column 11:
        8201: "Poti
              ^
found unexpected end of stream
 in 'reader', line 1045, column 1:
    
    ^

    at org.yaml.snakeyaml.scanner.ScannerImpl.scanFlowScalarSpaces(ScannerImpl.java:1991) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.scanner.ScannerImpl.scanFlowScalar(ScannerImpl.java:1904) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.scanner.ScannerImpl.fetchFlowScalar(ScannerImpl.java:1082) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.scanner.ScannerImpl.fetchDouble(ScannerImpl.java:1064) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.java:452) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:263) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingValue.produce(ParserImpl.java:694) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:185) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeScalarNode(Composer.java:239) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:208) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeKeyNode(Composer.java:347) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:332) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:311) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:357) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:336) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:311) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:357) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:336) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:311) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:134) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:160) ~[snakeyaml-1.33.jar:?]
    at org.yaml.snakeyaml.Yaml.compose(Yaml.java:559) ~[snakeyaml-1.33.jar:?]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:104) ~[paper-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    ... 18 more
[16:23:19] [Server thread/INFO]: [ChatItem] The plugin ProtocolLib has been detected. Loading Protocollib support ...
[16:23:19] [Server thread/WARN]: [ProtocolLib] [PacketFilterManager] [ChatItem] Unsupported server packet in current Minecraft version: CHAT[PLAY, SERVER, 15, classNames: [net.minecraft.network.protocol.game.PacketPlayOutChat, net.minecraft.network.protocol.game.ClientboundChatPacket, net.minecraft.network.play.server.SPacketChat] (unregistered)]
[16:23:19] [Server thread/INFO]: [ChatItem] Loaded 4 getter for base components.
[16:23:19] [Server thread/INFO]: [ChatItem] Manager automatically chosen: PacketEditing (packet)
[16:23:19] [Server thread/INFO]: [ChatItem] Load DiscordSRV support.
[16:23:19] [Server thread/INFO]: [CaliComp] Enabling CaliComp v1.1
[16:23:19] [Server thread/INFO]: [BloodInMinecraft] Enabling BloodInMinecraft v9.5
[16:23:19] [Server thread/INFO]: ----------------------------------------
[16:23:19] [Server thread/INFO]: BloodInMinecraft By Yanisssch Is On! No error Found ;)! VERSION 9.5
[16:23:19] [Server thread/INFO]: Your server running on:git-Paper-516 (MC: 1.19.4)-!Only work on 1.13 to newer versions!-
[16:23:19] [Server thread/INFO]: ----------------------------------------
[16:23:19] [Server thread/INFO]: [BeautyQuests] Enabling BeautyQuests v0.20.1
[16:23:19] [Server thread/INFO]: [BeautyQuests] ------------ BeautyQuests ------------
[16:23:19] [Server thread/INFO]: [BeautyQuests] Loaded valid Minecraft version 1_19_R3.
[16:23:19] [Server thread/INFO]: [BeautyQuests] data.yml created.
[16:23:19] [Server thread/INFO]: [BeautyQuests] Loaded language en_US (0.05s)!
[16:23:19] [Server thread/INFO]: [BeautyQuests] Loaded start particles: REDSTONE in shape POINT with color R255 G255 B0
[16:23:19] [Server thread/INFO]: [BeautyQuests] Loaded talk particles: VILLAGER_HAPPY in shape BAR
[16:23:19] [Server thread/INFO]: [BeautyQuests] Loaded next particles: SMOKE_NORMAL in shape SPOT
[16:23:20] [Server thread/INFO]: [WorldGuard] Registering session handler fr.skytasul.quests.utils.compatibility.worldguard.WorldGuardEntryHandler
[16:23:20] [Server thread/WARN]: Plugin 'BeautyQuests' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: SkytAsul
[16:23:20] [Server thread/WARN]: Plugin 'BeautyQuests' is creating timing 'WorldGuardEntryHandler' - this is deprecated behavior, please report it to the authors: SkytAsul
[16:23:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: beautyquests [0.20.1]
[16:23:20] [Server thread/INFO]: [BeautyQuests] Placeholders registered !
[16:23:20] [Server thread/INFO]: [AuctionMaster] Enabling AuctionMaster v4.1
[16:23:20] [Server thread/INFO]: [AuctionMaster] Loading bids_related.yml config...
[16:23:20] [Server thread/INFO]: [AuctionMaster] Loading auctions_manager.yml config...
[16:23:20] [Server thread/INFO]: [AuctionMaster] Loading currency.yml config...
[16:23:20] [Server thread/INFO]: [AuctionMaster] Loading admin_config.yml config...
[16:23:20] [Server thread/INFO]: [AuctionMaster] Loading sounds.yml config...
[16:23:20] [Server thread/INFO]: [AuctionMaster] Loading menus.yml config...
[16:23:20] [Server thread/INFO]: [AuctionMaster] Loading buyItNow.yml config...
[16:23:20] [Server thread/INFO]: [AuctionMaster] Loading armor.yml config...
[16:23:20] [Server thread/INFO]: [AuctionMaster] Loading blocks.yml config...
[16:23:20] [Server thread/INFO]: [AuctionMaster] Loading consumables.yml config...
[16:23:20] [Server thread/INFO]: [AuctionMaster] Loading others.yml config...
[16:23:20] [Server thread/INFO]: [AuctionMaster] Loading tools.yml config...
[16:23:20] [Server thread/INFO]: [AuctionMaster] Loading weapons.yml config...
[16:23:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: auctionmaster [1.0.0]
[16:23:20] [Server thread/INFO]: [AuctionMaster] Succesfully connected to the Deliveries SQL.
[16:23:20] [Server thread/WARN]: [AuctionMaster] Auctions database is ready!
[16:23:20] [Server thread/WARN]: [AuctionMaster] AuctionLists database is ready!
[16:23:20] [Server thread/WARN]: [AuctionMaster] PreviewData database is ready!
[16:23:20] [Server thread/INFO]: [AquaticCrates] Enabling AquaticCrates v2.3.9
[16:23:20] [Server thread/INFO]: AquaticCrates | Loading the plugin...
[16:23:20] [Server thread/INFO]: AquaticCrates | Loading NMS Version!
[16:23:20] [Server thread/INFO]: AquaticCrates | Using NMS version v1_19_R4.
[16:23:20] [Server thread/INFO]: AquaticCrates | Loading PlaceholderAPI Hook!
[16:23:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: aquaticcrates [1.0.0]
[16:23:20] [Server thread/INFO]: AquaticCrates | Loading Database!
[16:23:20] [Server thread/INFO]: [AnimatedScoreboard] Enabling AnimatedScoreboard v0.2.7
[16:23:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: animatedscoreboard [0.0.1]
[16:23:20] [Server thread/INFO]: [AdvancedAchievements] Enabling AdvancedAchievements v7.2.4
[16:23:21] [Server thread/INFO]: [AdvancedAchievements] Backing up and loading configuration files...
[16:23:21] [Server thread/WARN]: [AdvancedAchievements] Overriding configuration: disabling PetMasterGive and PetMasterReceive categories.
[16:23:21] [Server thread/WARN]: [AdvancedAchievements] Ensure you have placed Pet Master in your plugins folder or add PetMasterGive and PetMasterReceive to the DisabledCategories list in config.yml.
[16:23:21] [Server thread/WARN]: [AdvancedAchievements] Overriding configuration: disabling JobsReborn category.
[16:23:21] [Server thread/WARN]: [AdvancedAchievements] Ensure you have placed JobsReborn in your plugins folder or add JobsReborn to the DisabledCategories list in config.yml.
[16:23:21] [Server thread/INFO]: [AdvancedAchievements] Loaded 60 achievements in 49 categories.
[16:23:21] [Server thread/INFO]: [AdvancedAchievements] 4 disabled categories: [PetMasterReceive, AdvancementsCompleted, PetMasterGive, JobsReborn]
[16:23:21] [Server thread/INFO]: [AdvancedAchievements] Registering event listeners...
[16:23:21] [Server thread/INFO]: [AdvancedAchievements] Initialising h2 database...
[16:23:21] [Server thread/INFO]: [AdvancedAchievements] Setting up command executor and custom tab completers...
[16:23:21] [Server thread/INFO]: [AdvancedAchievements] Launching scheduled tasks...
[16:23:21] [Server thread/INFO]: [AdvancedAchievements] Registering permissions...
[16:23:21] [Thread-22/INFO]: [AdvancedAchievements] Checking for plugin update...
[16:23:21] [Thread-22/WARN]: [AdvancedAchievements] Update available: v8.0.2! Download at https://www.spigotmc.org/resources/83466
[16:23:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: aach [7.2.4]
[16:23:22] [Server thread/INFO]: [AdvancedAchievements] Plugin has finished loading and is ready to run! Took 1020ms.
[16:23:23] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[16:23:23] [Server thread/INFO]: 0 placeholder hook(s) registered!
[16:23:23] [Server thread/INFO]: Running delayed init tasks
[16:23:23] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[16:23:23] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[16:23:23] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.GriefPreventionFeature] Plugin 'GriefPrevention' found. Using it now.
[16:23:23] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'GriefPrevention'
[16:23:23] [Craft Scheduler Thread - 6 - ItemJoin/INFO]: [ItemJoin] Hooked into { My Worlds, WorldGuard, PlaceholderAPI, ProtocolLib, Citizens }
[16:23:23] [Craft Scheduler Thread - 6 - ItemJoin/INFO]: [ItemJoin] 24 Custom item(s) loaded!
[16:23:23] [Craft Scheduler Thread - 46 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:23:23] [Craft Scheduler Thread - 46 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[16:23:23] [Craft Scheduler Thread - 46 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:23:23] [Craft Scheduler Thread - 46 - ModelEngine/INFO]: [ModelEngine] [A] [Generating assets]
[16:23:23] [Craft Scheduler Thread - 52 - ServerSigns/INFO]: [Metrics] Connection refused: connect
[16:23:23] [Craft Scheduler Thread - 48 - EpicPluginLib/INFO]: [EpicPluginLib] EpicPluginLib v2.4.2 is available. Please update.
[16:23:23] [Craft Scheduler Thread - 72 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] Checking for an update!
[16:23:23] [Craft Scheduler Thread - 71 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[16:23:23] [Craft Scheduler Thread - 73 - Vault/INFO]: [Vault] Checking for Updates ... 
[16:23:23] [Craft Scheduler Thread - 46 - ModelEngine/INFO]: [ModelEngine] [A] 
[16:23:23] [Craft Scheduler Thread - 46 - ModelEngine/INFO]: [ModelEngine] [A] Resource pack zipped.
[16:23:23] [Craft Scheduler Thread - 57 - LootChest/INFO]: [LootChest] The plugin seems up to date.
[16:23:23] [Craft Scheduler Thread - 73 - Vault/INFO]: [Vault] No new version available
[16:23:23] [Craft Scheduler Thread - 72 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] No new versions found for the plugin!
[16:23:23] [Craft Scheduler Thread - 54 - PlaceItemsOnGroundRebuilt/INFO]: [PlaceItemsOnGroundRebuilt] No updates found!
[16:23:23] [Server thread/INFO]: [Skript] Loading variables...
[16:23:23] [Server thread/INFO]: [Skript] Loaded 0 variables in 0.0 seconds
[16:23:23] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[16:23:23] [Server thread/INFO]: [Skript] No scripts were found, maybe you should write some ;)
[16:23:23] [Server thread/INFO]: [Skript] Finished loading.
[16:23:23] [Server thread/INFO]: [DiscordSRV] Disabling DiscordSRV v1.26.2
[16:23:23] [Server thread/INFO]: [WildStacker] Loading providers started...
[16:23:23] [Server thread/INFO]: [WildStacker]  - Couldn't find any spawners providers, using default one.
[16:23:23] [Server thread/INFO]: [WildStacker] 
[16:23:23] [Server thread/INFO]: [WildStacker] Detected FastAsyncWorldEdit - Disabling ticks limiter for items...
[16:23:23] [Server thread/INFO]: [WildStacker] Loading providers done (Took 39ms)
[16:23:23] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crates.
[16:23:23] [Craft Scheduler Thread - 8 - ItemJoin/INFO]: [ItemJoin] You are up to date!
[16:23:23] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Drop KingsCrown HEAD
[16:23:23] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\ming\Desktop\·s«״₪ו¥ף?\plugins\MythicMobs\Mobs\ExampleMobs.yml
[16:23:23] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[16:23:23] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Drop SkeletonKingSword HAND
[16:23:23] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\ming\Desktop\·s«״₪ו¥ף?\plugins\MythicMobs\Mobs\ExampleMobs.yml
[16:23:23] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[16:23:23] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Drop KingsCrown 1 0.01
[16:23:23] [Server thread/WARN]: [MythicMobs] --| File: ExampleDropTables.yml
[16:23:23] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[16:23:23] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Drop SkeletonKingSword 0.1
[16:23:23] [Server thread/WARN]: [MythicMobs] --| File: ExampleDropTables.yml
[16:23:23] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[16:23:23] [Server thread/WARN]: [ProtocolLib] [PacketFilterManager] [Citizens] Unsupported server packet in current Minecraft version: PLAYER_INFO[PLAY, SERVER, 54, classNames: [net.minecraft.network.protocol.game.PacketPlayOutPlayerInfo, net.minecraft.network.protocol.game.ClientboundPlayerInfoPacket, net.minecraft.network.play.server.SPacketPlayerListItem] (unregistered)]
[16:23:23] [Server thread/INFO]: [Citizens] Loaded 0 NPCs.
[16:23:23] [Server thread/INFO]: [WildStacker] Starting to load entities...
[16:23:23] [Server thread/INFO]: [WildStacker] Loading entities done! Took 1 ms.
[16:23:23] [Server thread/INFO]: [WildStacker] Starting to load items...
[16:23:23] [Server thread/INFO]: [WildStacker] Loading items done! Took 1 ms.
[16:23:23] [Server thread/INFO]: [WildStacker] Starting to load spawners...
[16:23:23] [Server thread/INFO]: [WildStacker] Loading spawners done! Took 0 ms.
[16:23:23] [Server thread/INFO]: [WildStacker] Starting to load barrels...
[16:23:23] [Server thread/INFO]: [WildStacker] Loading barrels done! Took 0 ms.
[16:23:23] [Server thread/INFO]: [PlaceholderAPI] An update for PlaceholderAPI (v2.11.3) is available at:
[16:23:23] [Server thread/INFO]: [PlaceholderAPI] https://www.spigotmc.org/resources/placeholderapi.6245/
[16:23:23] [Server thread/INFO]: [BeautyQuests] You are using the latest version of BeautyQuests.
[16:23:23] [Server thread/INFO]: [EnderContainers] You are using the newest version of the plugin (2.3.0-dev).
[16:23:23] [Server thread/WARN]: [EnderContainers] ----------[Unstable Build]----------
[16:23:23] [Server thread/WARN]: [EnderContainers]   You are using a development build. This means that the plugin can be unstable.
[16:23:23] [Server thread/WARN]: [EnderContainers]   If you have an issue during its execution, please report it on the Github repository.
[16:23:23] [Server thread/WARN]: [EnderContainers] ------------------------------------
[16:23:23] [Server thread/INFO]: Downloaded Locale_ES.yml file
[16:23:23] [Server thread/INFO]: Downloaded Locale_IT.yml file
[16:23:23] [Server thread/INFO]: [CMI] Downloaded Locale_NO.yml file
[16:23:23] [Server thread/INFO]: Downloaded Locale_DE.yml file
[16:23:23] [Server thread/INFO]: Downloaded Locale_CN.yml file
[16:23:23] [Server thread/INFO]: Downloaded Locale_LT.yml file
[16:23:23] [Server thread/INFO]: Downloaded Locale_SL.yml file
[16:23:23] [Server thread/INFO]: Downloaded Locale_FR.yml file
[16:23:23] [Server thread/INFO]: Downloaded Locale_SK.yml file
[16:23:23] [Server thread/INFO]: Downloaded Locale_PL.yml file
[16:23:23] [Server thread/INFO]: Downloaded Locale_ZH.yml file
[16:23:23] [Server thread/INFO]: Downloaded Locale_NO.yml file
[16:23:23] [Server thread/INFO]: Downloaded Locale_TR.yml file
[16:23:23] [Server thread/INFO]: Done (57.564s)! For help, type "help"
[16:23:23] [Server thread/INFO]: Stopping server
[16:23:23] [Server thread/INFO]: [DungeonParties] Disabling DungeonParties v1.0-SNAPSHOT
[16:23:23] [Server thread/INFO]: [AdvancedAchievements] Disabling AdvancedAchievements v7.2.4
[16:23:23] [Server thread/INFO]: [AdvancedAchievements] Remaining requests sent to the database, plugin successfully disabled.
[16:23:23] [Server thread/INFO]: [AnimatedScoreboard] Disabling AnimatedScoreboard v0.2.7
[16:23:23] [Server thread/INFO]: [AquaticCrates] Disabling AquaticCrates v2.3.9
[16:23:23] [Server thread/INFO]: DISABLING
[16:23:23] [Server thread/INFO]: [AuctionMaster] Disabling AuctionMaster v4.1
[16:23:23] [Server thread/INFO]: [BeautyQuests] Disabling BeautyQuests v0.20.1
[16:23:23] [Server thread/INFO]: [WorldGuard] Unregistering session handler fr.skytasul.quests.utils.compatibility.worldguard.WorldGuardEntryHandler
[16:23:23] [Server thread/INFO]: [BloodInMinecraft] Disabling BloodInMinecraft v9.5
[16:23:23] [Server thread/INFO]: ----------------------------------------
[16:23:23] [Server thread/INFO]: BloodInMinecraft By Yanisssch Is Now Off! GoodBye ^^ ;)!
[16:23:23] [Server thread/INFO]: ----------------------------------------
[16:23:23] [Server thread/INFO]: [CaliComp] Disabling CaliComp v1.1
[16:23:23] [Server thread/INFO]: [ChatItem] Disabling ChatItem v2.4.6
[16:23:23] [Server thread/INFO]: [CMIEInjector] Disabling CMIEInjector v1.0.2.3
[16:23:23] [Server thread/INFO]: [DeluxeMenus] Disabling DeluxeMenus v1.13.7-Release
[16:23:23] [Server thread/INFO]: [DeluxeTags] Disabling DeluxeTags v1.8.2-Release
[16:23:23] [Server thread/INFO]: [EnderContainers] Disabling EnderContainers v2.3.0-dev
[16:23:23] [Server thread/INFO]: [EpicCraftingsPlus] Disabling EpicCraftingsPlus v7.18.1
[16:23:23] [Server thread/INFO]: [EpicCraftings+] Has been disabled! Version: 7.18.1
[16:23:23] [Server thread/INFO]: [ExcellentCrates] Disabling ExcellentCrates v4.1.10
[16:23:23] [Server thread/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[16:23:23] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Shutdown initiated...
[16:23:23] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Shutdown completed.
[16:23:23] [Server thread/INFO]: [shit_do] Disabling shit_do v1.0
[16:23:23] [Server thread/INFO]: [NBTAPI] Disabling NBTAPI v2.11.2
[16:23:23] [Server thread/INFO]: [ItemEdit] Disabling ItemEdit v3.0.9
[16:23:23] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion itemedit
[16:23:23] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin ItemEdit was disabled.
[16:23:23] [Server thread/INFO]: [ItemJoin] Disabling ItemJoin v5.2.5-RELEASE-b850
[16:23:23] [Server thread/INFO]: [JonAPI] Disabling JonAPI v1.1-c1
[16:23:23] [Server thread/INFO]: [JonAPI] JonAPI ??¦¨¥\. Goodbye!   BY JONJS2333
[16:23:23] [Server thread/INFO]: [LastLoginAPI] Disabling LastLoginAPI v1.7.4
[16:23:23] [Server thread/INFO]: [LastLoginAPI] Disabling LastLoginAPI
[16:23:23] [Server thread/INFO]: [LastLoginAPI] LastLoginAPI disabled
[16:23:23] [Server thread/INFO]: [LiteSignIn] Disabling LiteSignIn v1.7.0.0
[16:23:23] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion litesignin
[16:23:23] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin LiteSignIn was disabled.
[16:23:23] [Server thread/INFO]: LiteSignIn >>> Async thread stopped.
[16:23:23] [Server thread/INFO]: LiteSignIn >>> Database SQLite disconnected.
[16:23:23] [Server thread/INFO]: [LootChest] Disabling LootChest v2.3.4
[16:23:23] [Server thread/INFO]: [LootChest] Backed up data file in case of crash
[16:23:23] [Server thread/INFO]: [LPC] Disabling LPC v3.6.0
[16:23:23] [Server thread/INFO]: [MagicCosmetics] Disabling MagicCosmetics v2.2.8
[16:23:23] [Server thread/INFO]: [MCPets] Disabling MCPets v3.0.2
[16:23:23] [Server thread/INFO]: -=-=-=-= MCPets disable =-=-=-=-
[16:23:23] [Server thread/INFO]:           See you soon
[16:23:23] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[16:23:23] [Server thread/INFO]: [Minepacks] Disabling Minepacks v2.4.18
[16:23:24] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Shutdown initiated...
[16:23:24] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Shutdown completed.
[16:23:24] [Server thread/INFO]: [Minepacks]  Minepacks has been disabled.  :( 
[16:23:24] [Server thread/INFO]: [MiniMOTD] Disabling MiniMOTD v2.0.11
[16:23:24] [Server thread/INFO]: [MythicCrucible] Disabling MythicCrucible v1.5.0-SNAPSHOT
[16:23:24] [Server thread/INFO]: [NoPlugins] Disabling NoPlugins v8.1
[16:23:24] [Server thread/INFO]: [NoPlugins] disabled.
[16:23:24] [Server thread/INFO]: [PlaceItemsOnGroundRebuilt] Disabling PlaceItemsOnGroundRebuilt v1.0.6
[16:23:24] [Server thread/INFO]: [PlayerKits] Disabling PlayerKits v2.26.1
[16:23:24] [Server thread/INFO]: [PlayerKits] Has been disabled! Version: 2.26.1
[16:23:24] [Server thread/INFO]: [PlayMoreSounds] Disabling PlayMoreSounds v4.2
[16:23:24] [Server thread/INFO]: [RotatingHeads2] Disabling RotatingHeads2 v1.0.3
[16:23:24] [Server thread/INFO]: [ServerSigns] Disabling ServerSigns v4.8.0
[16:23:24] [Server thread/INFO]: [ServerSigns] ServerSigns is now disabled.
[16:23:24] [Server thread/INFO]: [SkQuery] Disabling SkQuery v4.1.9
[16:23:24] [Server thread/INFO]: [skript-yaml] Disabling skript-yaml v1.4
[16:23:24] [Server thread/INFO]: [TAB] Disabling TAB v3.3.2
[16:23:24] [Server thread/INFO]: [TAB] Disabled in 1ms
[16:23:24] [Server thread/INFO]: [Themis] Disabling Themis v0.14.6
[16:23:24] [Server thread/INFO]: [TradeSystem] Disabling TradeSystem v2.3.1
[16:23:24] [Server thread/INFO]:  
[16:23:24] [Server thread/INFO]: __________________________________________________________
[16:23:24] [Server thread/INFO]:  
[16:23:24] [Server thread/INFO]:                        TradeSystem [2.3.1]
[16:23:24] [Server thread/INFO]:  
[16:23:24] [Server thread/INFO]: Status:
[16:23:24] [Server thread/INFO]:  
[16:23:24] [Server thread/INFO]: MC-Version: 1.19.4 (R0.1-SNAPSHOT, Paper)
[16:23:24] [Server thread/INFO]:  
[16:23:24] [Server thread/INFO]:   > Cancelling all active trades
[16:23:24] [Server thread/INFO]:  
[16:23:24] [Server thread/INFO]: Finished (1ms)
[16:23:24] [Server thread/INFO]:  
[16:23:24] [Server thread/INFO]: __________________________________________________________
[16:23:24] [Server thread/INFO]:  
[16:23:24] [Server thread/INFO]: [TreasureChestX] Disabling TreasureChestX v1.0
[16:23:24] [Server thread/INFO]: [UltraBar] Disabling UltraBar v2.3.2
[16:23:24] [Server thread/INFO]: [UltraBar] Saving tracked bars to file.
[16:23:24] [Server thread/INFO]: [UltraBar] Save complete!
[16:23:24] [Server thread/INFO]: [UltraBar] UltraBar was successfully disabled!
[16:23:24] [Server thread/INFO]: [WDLCompanion] Disabling WDLCompanion v1.2.0
[16:23:24] [Server thread/INFO]: [WorldGuardExtraFlags] Disabling WorldGuardExtraFlags v4.2.1
[16:23:24] [Server thread/INFO]: [WildStacker] Disabling WildStacker v2023.1
[16:23:24] [Server thread/INFO]: [WildStacker] Cancelling tasks...
[16:23:24] [Server thread/INFO]: [WildStacker] Shutting down stacking service...
[16:23:24] [Server thread/INFO]: [WildStacker] Performing entity&items save
[16:23:24] [Server thread/INFO]: [WildStacker] [STDOUT] Shutting down database executor
[16:23:24] [Server thread/WARN]: Nag author(s): '[Ome_R]' of 'WildStacker v2023.1' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[16:23:24] [Server thread/INFO]: [WildStacker] Clearing database...
[16:23:24] [Server thread/INFO]: [WildStacker] Stopping executor...
[16:23:24] [Server thread/INFO]: [Sentinel] Disabling Sentinel v2.7.3-SNAPSHOT (build 505)
[16:23:24] [Server thread/INFO]: [Sentinel] Sentinel unloading...
[16:23:24] [Server thread/INFO]: [Sentinel] Sentinel unloaded!
[16:23:24] [Server thread/INFO]: [NexEngine] Disabling NexEngine v2.2.10 build-18/04/2023
[16:23:24] [Server thread/INFO]: [ItemsAdder] Disabling ItemsAdder v3.3.1
[16:23:24] [Server thread/INFO]: [PCGF_PluginLib] Disabling PCGF_PluginLib v1.0.39-SNAPSHOT
[16:23:25] [Server thread/INFO]: [PCGF_PluginLib]  PCGF_PluginLib v1.0.39-SNAPSHOT has been disabled.  :( 
[16:23:25] [Server thread/INFO]: [EpicPluginLib] Disabling EpicPluginLib v2.2.1
[16:23:25] [Server thread/INFO]: [SkBee] Disabling SkBee v2.7.4
[16:23:25] [Server thread/INFO]: [ClearLag] Disabling ClearLag v3.2.2
[16:23:25] [Server thread/INFO]: [ClearLag] Clearlag is now disabled!
[16:23:25] [Server thread/INFO]: [CoreProtect] Disabling CoreProtect v21.3
[16:23:25] [Server thread/INFO]: [CoreProtect] Finishing up data logging. Please wait...
[16:23:26] [Server thread/INFO]: [CoreProtect] Success! Disabled CoreProtect v21.3
[16:23:26] [Server thread/INFO]: [MMOItems] Disabling MMOItems v6.9.3
[16:23:26] [Server thread/INFO]: [ModelEngine] Disabling ModelEngine vR3.1.7
[16:23:26] [Server thread/INFO]: [LoneLibs] Disabling LoneLibs v1.0.23
[16:23:26] [Server thread/INFO]: [MMOCore] Disabling MMOCore v1.11.3
[16:23:26] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.31-SNAPSHOT (build 3043)
[16:23:26] [Server thread/INFO]: [MythicLib] Disabling MythicLib v1.5.2
[16:23:26] [Server thread/INFO]: [MythicMobs] Disabling MythicMobs v5.2.1-fd1d0777
[16:23:26] [Server thread/INFO]: [MythicMobs] Disabling Mythic Mobs...
[16:23:26] [Server thread/INFO]: [MythicMobs] All active settings have been saved.
[16:23:26] [Server thread/INFO]: [MythicMobs] UNLOADED
[16:23:26] [Server thread/INFO]: [CMI] Disabling CMI v9.5.0.8
[16:23:26] [Server thread/INFO]: [CMI] Closed db connections
[16:23:26] [Server thread/INFO]: [CMILib] Disabling CMILib v1.2.5.3
[16:23:26] [Server thread/INFO]: [Skript] Disabling Skript v2.6.4
[16:23:26] [Server thread/INFO]: [GriefPrevention] Disabling GriefPrevention v16.18.1
[16:23:26] [Server thread/INFO]: [GriefPrevention] GriefPrevention disabled.
[16:23:26] [Server thread/INFO]: [My_Worlds] Disabling My_Worlds v1.19.4-v1
[16:23:26] [BKCommonLib-IOWorker/INFO]: [BKCommonLib.Configuration] File 'plugins\My_Worlds\worlds.yml' has been generated
[16:23:26] [Server thread/INFO]: [My_Worlds] My_Worlds disabled!
[16:23:26] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.7+216b061
[16:23:26] [Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[16:23:26] [Server thread/INFO]: [BKCommonLib] Disabling BKCommonLib v1.19.4-v1
[16:23:26] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.11.2
[16:23:26] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v4.8.0
[16:23:26] [Server thread/INFO]: [FastAsyncWorldEdit] Disabling FastAsyncWorldEdit v2.6.0
[16:23:26] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[16:23:26] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-CMI
[16:23:26] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.40
[16:23:26] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[16:23:26] [Server thread/INFO]: [LuckPerms] Closing storage...
[16:23:26] [Server thread/INFO]: [LuckPerms] Goodbye!
[16:23:26] [Server thread/INFO]: Saving players
[16:23:26] [Server thread/INFO]: Saving worlds
[16:23:26] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld
[16:23:26] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[16:23:26] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[16:23:26] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world'
[16:23:27] [Server thread/INFO]: [ChunkHolderManager] Saved 11 block chunks, 11 entity chunks, 0 poi chunks in world 'world' in 0.08s
[16:23:27] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[16:23:27] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_nether]'/minecraft:the_nether
[16:23:27] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_nether'
[16:23:27] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_nether'
[16:23:27] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_nether'
[16:23:27] [Server thread/INFO]: [ChunkHolderManager] Saved 6 block chunks, 6 entity chunks, 0 poi chunks in world 'world_nether' in 0.02s
[16:23:27] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[16:23:27] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_the_end]'/minecraft:the_end
[16:23:27] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_the_end'
[16:23:27] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_the_end'
[16:23:27] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_the_end'
[16:23:27] [Server thread/INFO]: [ChunkHolderManager] Saved 6 block chunks, 6 entity chunks, 0 poi chunks in world 'world_the_end' in 0.01s
[16:23:27] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[16:23:27] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved
[16:23:27] [Server thread/INFO]: Flushing Chunk IO
[16:23:27] [Server thread/INFO]: Closing Thread Pool
[16:23:27] [Server thread/INFO]: Closing Server