Paste #109072: Unnamed Server Log Paste

Date: 2023/04/21 00:07:16 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
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694


[15:05:49] [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'
[15:05:50] [ServerMain/INFO]: Loaded 7 recipes
[15:05:51] [Server thread/INFO]: Starting minecraft server version 1.19.4
[15:05:51] [Server thread/INFO]: Loading properties
[15:05:51] [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)
[15:05:51] [Server thread/INFO]: Server Ping Player Sample Count: 12
[15:05:51] [Server thread/INFO]: Using 4 threads for Netty based IO
[15:05:51] [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
[15:05:51] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[15:05:51] [Server thread/INFO]: Default game type: SURVIVAL
[15:05:51] [Server thread/INFO]: Generating keypair
[15:05:51] [Server thread/INFO]: Starting Minecraft server on *:25565
[15:05:51] [Server thread/INFO]: Using default channel type
[15:05:51] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[15:05:51] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[15:05:52] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[15:05:52] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library C:\Users\ming\Desktop\420-2023\libraries\com\zaxxer\HikariCP\5.0.1\HikariCP-5.0.1.jar
[15:05:52] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library C:\Users\ming\Desktop\420-2023\libraries\org\slf4j\slf4j-api\2.0.0-alpha1\slf4j-api-2.0.0-alpha1.jar
[15:05:52] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library C:\Users\ming\Desktop\420-2023\libraries\it\unimi\dsi\fastutil\8.5.11\fastutil-8.5.11.jar
[15:05:52] [Server thread/INFO]: [SpigotLibraryLoader] [SkBee] Loading 2 libraries... please wait
[15:05:52] [Server thread/INFO]: [SpigotLibraryLoader] [SkBee] Loaded library C:\Users\ming\Desktop\420-2023\libraries\commons-io\commons-io\2.11.0\commons-io-2.11.0.jar
[15:05:52] [Server thread/INFO]: [SpigotLibraryLoader] [SkBee] Loaded library C:\Users\ming\Desktop\420-2023\libraries\org\apache\commons\commons-text\1.10.0\commons-text-1.10.0.jar
[15:05:52] [Server thread/INFO]: [SpigotLibraryLoader] [SkBee] Loaded library C:\Users\ming\Desktop\420-2023\libraries\org\apache\commons\commons-lang3\3.12.0\commons-lang3-3.12.0.jar
[15:05:53] [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!
[15:05:55] [Server thread/WARN]: Legacy plugin WDLCompanion v1.2.0 does not specify an api-version.
[15:05:55] [Server thread/INFO]: [Minepacks] PCGF-PluginLib not installed. Switching to standalone mode!
[15:05:55] [Server thread/WARN]: Legacy plugin JonAPI v1.1-c1 does not specify an api-version.
[15:05:55] [Server thread/WARN]: Legacy plugin shit_do v1.0 does not specify an api-version.
[15:05:55] [Server thread/WARN]: Legacy plugin CMIEInjector v1.0.2.3 does not specify an api-version.
[15:05:55] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.40
[15:05:55] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-CMI
[15:05:55] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.6.0
[15:05:56] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@69fa68da]
[15:05:56] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.0.0-SNAPSHOT-b602
[15:05:56] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.19.4) has not yet been tested! Proceed with caution.
[15:05:57] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.3
[15:05:57] [Server thread/INFO]: [BKCommonLib] Loading server plugin BKCommonLib v1.19.4-v1
[15:06:01] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.7+216b061
[15:06:01] [Server thread/INFO]: [My_Worlds] Loading server plugin My_Worlds v1.19.4-v1
[15:06:01] [Server thread/INFO]: [GriefPrevention] Loading server plugin GriefPrevention v16.18.1
[15:06:01] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.6.4
[15:06:01] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.26.2
[15:06:01] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.2.5.3
[15:06:01] [Server thread/INFO]: [CMI] Loading server plugin CMI v9.5.0.8
[15:06:01] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v10.0.32
[15:06:01] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.2.1-fd1d0777
[15:06:01] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[15:06:01] [Server thread/INFO]: [MythicLib] Loading server plugin MythicLib v1.5.2
[15:06:01] [Server thread/INFO]: [MythicLib] Detected Bukkit Version: v1_19_R3
[15:06:01] [Server thread/INFO]: [MythicLib] Hooked onto WorldGuard
[15:06:01] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.31-SNAPSHOT (build 3043)
[15:06:01] [Server thread/INFO]: [MMOCore] Loading server plugin MMOCore v1.11.3
[15:06:01] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.10 build-18/04/2023
[15:06:01] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.23
[15:06:01] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR3.1.7
[15:06:01] [Server thread/INFO]: [MMOItems] Loading server plugin MMOItems v6.9.3
[15:06:01] [Server thread/INFO]: [MMOItems] Hooked onto WorldEdit
[15:06:01] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v21.3
[15:06:01] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v3.2.2
[15:06:01] [Server thread/INFO]: [PlayerPoints] Loading server plugin PlayerPoints v3.2.5
[15:06:01] [Server thread/INFO]: [SkBee] Loading server plugin SkBee v2.7.4
[15:06:01] [Server thread/INFO]: [EpicPluginLib] Loading server plugin EpicPluginLib v2.2.1
[15:06:01] [Server thread/INFO]: [PCGF_PluginLib] Loading server plugin PCGF_PluginLib v1.0.39-SNAPSHOT
[15:06:01] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v3.3.1
[15:06:01] [Server thread/INFO]: [Sentinel] Loading server plugin Sentinel v2.7.3-SNAPSHOT (build 505)
[15:06:01] [Server thread/INFO]: [WildStacker] Loading server plugin WildStacker v2023.1
[15:06:01] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.1
[15:06:01] [Server thread/INFO]: [WDLCompanion] Loading server plugin WDLCompanion v1.2.0
[15:06:01] [Server thread/INFO]: [UltraBar] Loading server plugin UltraBar v2.3.2
[15:06:01] [Server thread/INFO]: [TreasureChestX] Loading server plugin TreasureChestX v1.0
[15:06:01] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.3.1
[15:06:01] [Server thread/INFO]: [Themis] Loading server plugin Themis v0.14.6
[15:06:01] [Server thread/INFO]: [TAB] Loading server plugin TAB v3.3.2
[15:06:01] [Server thread/INFO]: [skript-yaml] Loading server plugin skript-yaml v1.4
[15:06:01] [Server thread/INFO]: [SkQuery] Loading server plugin SkQuery v4.1.9
[15:06:01] [Server thread/INFO]: [ServerSigns] Loading server plugin ServerSigns v4.8.0
[15:06:01] [Server thread/INFO]: [RotatingHeads2] Loading server plugin RotatingHeads2 v1.0.3
[15:06:01] [Server thread/INFO]: [PlayMoreSounds] Loading server plugin PlayMoreSounds v4.2
[15:06:01] [Server thread/INFO]: [PlayerKits] Loading server plugin PlayerKits v2.26.1
[15:06:01] [Server thread/INFO]: [PlaceItemsOnGroundRebuilt] Loading server plugin PlaceItemsOnGroundRebuilt v1.0.6
[15:06:01] [Server thread/INFO]: [NoPlugins] Loading server plugin NoPlugins v8.1
[15:06:01] [Server thread/INFO]: [MythicDungeons] Loading server plugin MythicDungeons v1.1.1-SNAPSHOT
[15:06:01] [Server thread/INFO]: [MythicCrucible] Loading server plugin MythicCrucible v1.5.0-SNAPSHOT
[15:06:01] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.0.11
[15:06:01] [Server thread/INFO]: [Minepacks] Loading server plugin Minepacks v2.4.18
[15:06:01] [Server thread/INFO]: [MCPets] Loading server plugin MCPets v3.0.2
[15:06:01] [Server thread/INFO]: [MCPets] : mcpets-dismount flag registered successfully !
[15:06:01] [Server thread/INFO]: [MCPets] : mcpets-despawn flag registered successfully !
[15:06:01] [Server thread/INFO]: [MagicCosmetics] Loading server plugin MagicCosmetics v2.2.8
[15:06:01] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[15:06:01] [Server thread/INFO]: [LootChest] Loading server plugin LootChest v2.3.4
[15:06:01] [Server thread/INFO]: [LiteSignIn] Loading server plugin LiteSignIn v1.7.0.0
[15:06:01] [Server thread/INFO]: [LastLoginAPI] Loading server plugin LastLoginAPI v1.7.4
[15:06:01] [Server thread/INFO]: [LastLoginAPI] Loading libraries of LastLoginAPI v1.7.4, this may take a while
[15:06:01] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jar-relocator
[15:06:01] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for asm
[15:06:01] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for asm-commons
[15:06:01] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for gson
[15:06:01] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jdbi3-core
[15:06:01] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for geantyref
[15:06:01] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for caffeine
[15:06:01] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jdbi3-stringtemplate4
[15:06:01] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for ST4
[15:06:01] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for antlr-runtime
[15:06:01] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for jdbi3-sqlobject
[15:06:01] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for slf4j-api
[15:06:01] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for slf4j-simple
[15:06:01] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for HikariCP
[15:06:01] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for mariadb-java-client
[15:06:01] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for mysql-connector-j
[15:06:01] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for postgresql
[15:06:01] [Server thread/INFO]: [LastLoginAPI] Verifying checksum for h2
[15:06:01] [Server thread/INFO]: [JonAPI] Loading server plugin JonAPI v1.1-c1
[15:06:01] [Server thread/INFO]: [ItemJoin] Loading server plugin ItemJoin v5.2.5-RELEASE-b850
[15:06:01] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.0.9
[15:06:01] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.11.2
[15:06:01] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[15:06:01] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R3' loaded!
[15:06:01] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[15:06:01] [Server thread/INFO]: [shit_do] Loading server plugin shit_do v1.0
[15:06:01] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v4.1.10
[15:06:01] [Server thread/INFO]: [EpicCraftingsPlus] Loading server plugin EpicCraftingsPlus v7.18.1
[15:06:01] [Server thread/INFO]: [EnderContainers] Loading server plugin EnderContainers v2.3.0-dev
[15:06:01] [Server thread/INFO]: [DeluxeTags] Loading server plugin DeluxeTags v1.8.2-Release
[15:06:01] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.13.7-Release
[15:06:01] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup successfully!
[15:06:01] [Server thread/INFO]: [CMIEInjector] Loading server plugin CMIEInjector v1.0.2.3
[15:06:01] [Server thread/INFO]: [ChatItem] Loading server plugin ChatItem v2.4.6
[15:06:01] [Server thread/INFO]: [CaliComp] Loading server plugin CaliComp v1.1
[15:06:01] [Server thread/INFO]: [BloodInMinecraft] Loading server plugin BloodInMinecraft v9.5
[15:06:01] [Server thread/INFO]: [BeautyQuests] Loading server plugin BeautyQuests v0.20.1
[15:06:01] [Server thread/INFO]: [AuctionMaster] Loading server plugin AuctionMaster v4.1
[15:06:01] [Server thread/INFO]: [AquaticCrates] Loading server plugin AquaticCrates v2.3.9
[15:06:01] [Server thread/INFO]: [AnimatedScoreboard] Loading server plugin AnimatedScoreboard v0.2.7
[15:06:01] [Server thread/INFO]: [AdvancedAchievements] Loading server plugin AdvancedAchievements v7.2.4
[15:06:01] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[15:06:01] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.40
[15:06:02] [Thread-8/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[15:06:02] [Server thread/INFO]:         __    
[15:06:02] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.40
[15:06:02] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[15:06:02] [Server thread/INFO]: 
[15:06:02] [Server thread/INFO]: [LuckPerms] Loading configuration...
[15:06:03] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[15:06:04] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[15:06:04] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[15:06:04] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2742ms)
[15:06:04] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-CMI
[15:06:04] [Server thread/INFO]: [Vault] [Economy] CMI Economy found: Waiting
[15:06:04] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[15:06:04] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-CMI
[15:06:04] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[15:06:04] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.6.0
[15:06:04] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[15:06:04] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[15:06:04] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[15:06:04] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[15:06:05] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R3.PaperweightFaweAdapter as the Bukkit adapter
[15:06:06] [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/
[15:06:06] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b602
[15:06:06] [Server thread/INFO]: [BKCommonLib] Enabling BKCommonLib v1.19.4-v1
[15:06:06] [Server thread/INFO]: [BKCommonLib] BKCommonLib is running on Paperspigot (git-Paper-516) : v1_19_R3 (Minecraft 1.19.4)
[15:06:06] [Server thread/WARN]: [BKCommonLib.Network] ProtocolLib cannot be used because it does not support the Bundle packet yet
[15:06:06] [Server thread/WARN]: [BKCommonLib.Network] Please update ProtocolLib to a 1.19.4+ supporting version (build #620 or newer)
[15:06:07] [Server thread/INFO]: [BKCommonLib.Network] Now using a PlayerConnection hook to provide Packet Listener and Monitor support
[15:06:07] [Server thread/INFO]: [BKCommonLib] [RegionChangeTracker] Region block changes will be notified from FastAsyncWorldEdit (>= v1.17)
[15:06:08] [Server thread/INFO]: [BKCommonLib] BKCommonLib isn't a plugin, its a language based on english.
[15:06:08] [Server thread/INFO]: [BKCommonLib] BKCommonLib version 1.19.4-v1 (build: 1547) enabled! (1.247s)
[15:06:08] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.10 build-18/04/2023
[15:06:08] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[15:06:08] [Server thread/INFO]: [NexEngine] Loaded NMS version: V1_19_R3
[15:06:08] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[15:06:08] [Server thread/INFO]: [NexEngine] Successfully hooked with CMIEconomy economy
[15:06:08] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[15:06:08] [Server thread/INFO]: [NexEngine] Using 'en' language.
[15:06:08] [Server thread/INFO]: [NexEngine] Plugin loaded in 57 ms!
[15:06:08] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.23
[15:06:08] [Server thread/INFO]: [PlayerPoints] Enabling PlayerPoints v3.2.5
[15:06:08] [Server thread/INFO]: [PlayerPoints] Initializing using RoseGarden v1.1.0.42-SNAPSHOT
[15:06:08] [Server thread/INFO]: [PlayerPoints] Data handler connected using SQLite.
[15:06:08] [Server thread/INFO]: [ItemJoin] Enabling ItemJoin v5.2.5-RELEASE-b850
[15:06:08] [Server thread/INFO]: [CMIEInjector] Enabling CMIEInjector v1.0.2.3*
[15:06:08] [Server thread/INFO]: [CMIEInjector] Injecting CMI Economy
[15:06:08] [Server thread/INFO]: [NexEngine] Successfully hooked with CMIEconomy economy
[15:06:08] [Server thread/INFO]: [CMIEInjector] [Economy] CMI Economy found: Waiting
[15:06:08] [Server thread/INFO]: Preparing level "world"
[15:06:08] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[15:06:08] [Server thread/INFO]: Time elapsed: 116 ms
[15:06:08] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[15:06:08] [Server thread/INFO]: Time elapsed: 19 ms
[15:06:08] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[15:06:08] [Server thread/INFO]: Time elapsed: 17 ms
[15:06:08] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[15:06:09] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[15:06:09] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.7+216b061
[15:06:09] [Server thread/WARN]: [WorldGuard] Failed to parse the block / item type specified as 'ENDERCHEST'
[15:06:09] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[15:06:09] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[15:06:09] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[15:06:09] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[15:06:09] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[15:06:09] [Server thread/WARN]: [WorldGuard] Failed to parse the block / item type specified as 'ENDERCHEST'
[15:06:09] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[15:06:09] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[15:06:09] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[15:06:09] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[15:06:09] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[15:06:09] [Server thread/WARN]: [WorldGuard] Failed to parse the block / item type specified as 'ENDERCHEST'
[15:06:09] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[15:06:09] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[15:06:09] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[15:06:09] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[15:06:09] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[15:06:09] [Server thread/INFO]: [WorldGuard] Loading region data...
[15:06:09] [Server thread/INFO]: [My_Worlds] Enabling My_Worlds v1.19.4-v1
[15:06:09] [Server thread/INFO]: [My_Worlds] Loading world 'IntroWorld'
[15:06:09] [Server thread/INFO]: Preparing start region for dimension minecraft:introworld
[15:06:09] [Server thread/INFO]: Time elapsed: 13 ms
[15:06:09] [Server thread/WARN]: [WorldGuard] Failed to parse the block / item type specified as 'ENDERCHEST'
[15:06:09] [Server thread/INFO]: [WorldGuard] (IntroWorld) TNT ignition is PERMITTED.
[15:06:09] [Server thread/INFO]: [WorldGuard] (IntroWorld) Lighters are PERMITTED.
[15:06:09] [Server thread/INFO]: [WorldGuard] (IntroWorld) Lava fire is PERMITTED.
[15:06:09] [Server thread/INFO]: [WorldGuard] (IntroWorld) Fire spread is UNRESTRICTED.
[15:06:09] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'IntroWorld'
[15:06:11] [Server thread/INFO]: [My_Worlds] Loading world 'spawnWorld_the_end'
[15:06:11] [Server thread/INFO]: Preparing start region for dimension minecraft:spawnworld_the_end
[15:06:11] [Server thread/INFO]: Time elapsed: 21 ms
[15:06:11] [Server thread/WARN]: [WorldGuard] Failed to parse the block / item type specified as 'ENDERCHEST'
[15:06:11] [Server thread/INFO]: [WorldGuard] (spawnWorld_the_end) TNT ignition is PERMITTED.
[15:06:11] [Server thread/INFO]: [WorldGuard] (spawnWorld_the_end) Lighters are PERMITTED.
[15:06:11] [Server thread/INFO]: [WorldGuard] (spawnWorld_the_end) Lava fire is PERMITTED.
[15:06:11] [Server thread/INFO]: [WorldGuard] (spawnWorld_the_end) Fire spread is UNRESTRICTED.
[15:06:11] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawnWorld_the_end'
[15:06:12] [Server thread/INFO]: [My_Worlds] Loading world 'spawnWorld_nether'
[15:06:12] [Server thread/INFO]: Preparing start region for dimension minecraft:spawnworld_nether
[15:06:12] [Server thread/INFO]: Time elapsed: 68 ms
[15:06:12] [Server thread/WARN]: [WorldGuard] Failed to parse the block / item type specified as 'ENDERCHEST'
[15:06:12] [Server thread/INFO]: [WorldGuard] (spawnWorld_nether) TNT ignition is PERMITTED.
[15:06:12] [Server thread/INFO]: [WorldGuard] (spawnWorld_nether) Lighters are PERMITTED.
[15:06:12] [Server thread/INFO]: [WorldGuard] (spawnWorld_nether) Lava fire is PERMITTED.
[15:06:12] [Server thread/INFO]: [WorldGuard] (spawnWorld_nether) Fire spread is UNRESTRICTED.
[15:06:12] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawnWorld_nether'
[15:06:12] [Server thread/INFO]: [My_Worlds] Loading world 'spawnWorld'
[15:06:12] [Server thread/INFO]: Preparing start region for dimension minecraft:spawnworld
[15:06:12] [Server thread/INFO]: Time elapsed: 187 ms
[15:06:12] [Server thread/WARN]: [WorldGuard] Failed to parse the block / item type specified as 'ENDERCHEST'
[15:06:12] [Server thread/INFO]: [WorldGuard] (spawnWorld) TNT ignition is PERMITTED.
[15:06:12] [Server thread/INFO]: [WorldGuard] (spawnWorld) Lighters are PERMITTED.
[15:06:12] [Server thread/INFO]: [WorldGuard] (spawnWorld) Lava fire is PERMITTED.
[15:06:12] [Server thread/INFO]: [WorldGuard] (spawnWorld) Fire spread is UNRESTRICTED.
[15:06:12] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawnWorld'
[15:06:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: myworlds [1.19.4-v1]
[15:06:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mw [1.19.4-v1]
[15:06:13] [Server thread/INFO]: [My_Worlds] PlaceholderAPI integration enabled
[15:06:13] [Server thread/INFO]: [My_Worlds] My_Worlds version 1.19.4-v1 (build: 225) enabled! (3.426s)
[15:06:13] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.1
[15:06:13] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:104) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:106) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:110) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:112) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:113) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:115) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:116) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:118) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:120) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:121) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:122) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:123) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:124) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:125) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:126) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:132) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:134) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:138) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:139) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:14) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:141) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:142) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:143) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:144) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:146) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:147) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:148) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:150) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:151) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:154) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:18) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:19) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:21) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:23) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:25) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:26) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:28) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:30) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:33) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:34) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:35) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:42) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:43) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:44) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:45) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:46) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:49) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:50) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:53) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:59) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:60) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:63) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:7) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:81) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:85) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:89) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:9) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:94) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:98) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:99) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:06:13] [Server thread/INFO]: [GriefPrevention] 0 total claims loaded.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[15:06:13] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[15:06:13] [Server thread/INFO]: [GriefPrevention] Boot finished.
[15:06:13] [Server thread/INFO]: [Skript] Enabling Skript v2.6.4
[15:06:13] [Server thread/INFO]: [Skript] Skript's language file english.lang is outdated, some messages will be english.
[15:06:13] [ForkJoinPool.commonPool-worker-5/INFO]: [Skript] You're currently running the latest stable version of Skript.
[15:06:17] [Server thread/INFO]: [Skript] Loaded 153707 aliases in 3959ms
[15:06:17] [Server thread/INFO]: [Skript]  ~ created by & ? Peter G?ttinger aka Njol ~
[15:06:17] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.2
[15:06:17] [Server thread/INFO]: [CMILib] Enabling CMILib v1.2.5.3
[15:06:18] [pool-66-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (767828469573c2f0fa3ed5a44feb0b2f15f2c02d)
[15:06:18] [Server thread/INFO]: Server version: v1_19_R3 - 1.19.4 - paper
[15:06:18] [Server thread/INFO]: CMI hooked.
[15:06:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [1.2.5.3]
[15:06:18] [Server thread/INFO]: PlaceholderAPI hooked.
[15:06:18] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[15:06:18] [Server thread/INFO]: Updated (EN) language file. Took 27ms
[15:06:18] [Server thread/INFO]: Updated (ZH) language file. Took 19ms
[15:06:18] [Server thread/INFO]: [CMI] Enabling CMI v9.5.0.8
[15:06:19] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[15:06:19] [Server thread/INFO]: ????? ?????? ????
[15:06:19] [Server thread/INFO]: ????? ? ?? ? ????
[15:06:19] [Server thread/INFO]: ?? ?? ??????  ?? 
[15:06:19] [Server thread/INFO]: ?? ?? ??????  ?? 
[15:06:19] [Server thread/INFO]: ????? ?????? ????
[15:06:19] [Server thread/INFO]: ????? ?????? ????
[15:06:19] [Server thread/INFO]: _______________________________________________________
[15:06:19] [Server thread/INFO]:   Integrating PaperSpigot async methods
[15:06:19] [Server thread/INFO]:   57 Enabled and 1 Disabled modules
[15:06:19] [Server thread/INFO]:   Loaded (23) portals into memory. Took 13ms
[15:06:19] [Server thread/INFO]:   Permission plugin: LuckPerms5.4.40
[15:06:19] [Server thread/INFO]:   Initialized Cipher256 AES
[15:06:19] [Server thread/INFO]:   Loaded (60) regular alias into memory. Took 28ms
[15:06:19] [Server thread/INFO]:   Loaded (1) custom text's into memory. Took 2ms
[15:06:19] [Server thread/INFO]:   3.41.0 data base type detected
[15:06:19] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[15:06:19] [Server thread/INFO]:   Started SqLite data base. Took 131ms
[15:06:19] [Server thread/INFO]:   Vault was found - Enabling capabilities. Economy: CMIEconomy
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 已找到伺服器 G:熊之奇緣伺服器(874669456922652703)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】內部備忘錄(998856013480468480)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】企劃構思(1090515318813761648)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】怪物開發(1075778232764350524)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】裝備開發(878614315668733982)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】食物開發(878636257083797534)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】贊助構思(881533329256611841)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】伺服器支出收入(999834203099250749)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】警告訊息(998676192355946496)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】加入訊息(884395632452829184)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】moderator-only(884464072786083933)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】bear備忘錄(999121446108401754)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】內部聊天(996416944741822525)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】內部圖片(992440263001788487)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】伺服器聊天(881058831734562876)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】內部指令(1005864460289855488)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】官民合作社團(1056059429990170634)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】平民須知(880311412914814996)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】村莊幫助區(999845433033621634)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】伺服器公告(884465217940127745)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】伺服器規則(884464072786083932)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】伺服器資訊(993461062747820032)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】成為冒險者?(882263300803551242)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】歡迎訊息(874669457413398600)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】離開訊息(997358704368308264)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】加成者訊息(1000420474074955879)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】贊助資訊(881533120501927978)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】乞討成功區(1043079085800312852)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】時裝系統(1049338194648379462)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】回報系統?(882184996394242088)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】回報記錄(992564796174110841)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】建議區(992703226988216350)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】遊戲改動(1003383165940944989)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】基本玩法(998428529316335646)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】拍賣系統(998428626108297228)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】任務教學(1013031147292336178)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】副本教學(1013089941485522954)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】城鎮教學(1013097085282820158)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】職業技能介紹(1016347371992535040)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】領地保護系統(1037655632804859957)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】mcmmo系統教學(1037670521040543784)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】巴哈帖活動(1040964495796871198)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】公海區(992363001187422238)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】宣戰區(1052159731218776094)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】rpg討論分區(1051778110602870784)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】城市與原版討論分區(1051779163842941008)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】交易區(998428270167085177)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】指令區(992708521307152484)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】播歌區(1005874776864215050)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】圖片區(993549481511485480)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】攻略區(998429157505642577)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】黑洞區(1043173656609693807)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】投稿區域(1045926241666072688)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:【?】開車區(1045926910603034624)
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 錯誤的控制台頻道ID, 並未轉送控制台輸出。
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 啟用鉤取 LuckPerms
[15:06:20] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 啟用鉤取 PlaceholderAPI
[15:06:20] [Server thread/INFO]:   Loaded (17) holograms into memory. Took 18ms
[15:06:20] [Server thread/INFO]:   Loaded (5) warning categories into memory. Took 1ms
[15:06:20] [Server thread/INFO]:   Loaded (3) warning commands into memory. Took 0ms
[15:06:20] [Server thread/INFO]:   Loaded (142) custom mob heads into memory. Took 12ms
[15:06:20] [Server thread/INFO]:   Loaded (0) cooldowns into memory. Took 22ms
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (MainWorld) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (MainWorld_nether) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (MainWorld_the_end) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (em_fireworks) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (em_primis_wormhole) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (acidisland_world_the_end) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (GeneratedWorld) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (em_north_pole) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (nations2) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (sea) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (jkay03) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (em_adventurers_guild) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (em_primis) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (em_invasion) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (em_sewer_maze) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (em_oasis) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (acidisland_world) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (re) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (sealand) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (em_hallosseum) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (build) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (acidisland_world_nether) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (em_dark_spire) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (em_binder_of_worlds) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (x1) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (fb9) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (dark_spire) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (DXL_Game_2) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (DXL_Game_5) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (DXL_Game_13) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (DXL_Game_15) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (DXL_Game_16) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (n7) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (t1) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (n5_0) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (n5_1) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (n5_2) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (n5_3) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (n5_4) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (c1) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (hub) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (T2) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (n6_0) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (sc) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (d1) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (g4) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (s1) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (new) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (test) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (wbp) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (pod) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (217) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (1_1) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (AI) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (n3_0) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (wb) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (wbp_flat) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (survive) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (n3_1) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (n1_0) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (n1_1) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (abc) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (n2_0) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (SuperiorWorld) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (SuperiorWorld_nether) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (SuperiorWorld_the_end) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (bk) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (ice) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (wi) name
[15:06:20] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (to) name
[15:06:20] [Server thread/INFO]:   Initializing BungeeCord
[15:06:20] [Server thread/INFO]:   Loaded (5) kits into memory. Took 7ms
[15:06:20] [Server thread/INFO]:   Loaded (7) ranks into memory. Took 9ms
[15:06:20] [Server thread/INFO]:   Loaded (8) playtime rewards into memory. Took 2ms
[15:06:20] [Server thread/INFO]:   Loaded (237) player data into memory. Took 34ms
[15:06:20] [Server thread/INFO]:   Loaded (0) playtime records into memory. Took 1ms
[15:06:20] [Server thread/INFO]:   Loaded (0) playtime reward records into memory. Took 0ms
[15:06:20] [Server thread/INFO]:   Loaded (0) custom alias into memory. Took 2ms
[15:06:20] [Server thread/INFO]:   Loaded (1) interactive commands into memory. Took 1ms
[15:06:20] [Server thread/INFO]:   Registered events. Took 77ms
[15:06:20] [Server thread/INFO]:   Loaded (0) event action commands into memory. Took 3ms
[15:06:20] [Server thread/INFO]:   Updated (EN) language file. Took 73ms
[15:06:20] [Server thread/INFO]:   Updated (ZH) language file. Took 63ms
[15:06:20] [Server thread/INFO]:   Loaded (245) worth values into memory. Took 42ms
[15:06:20] [Server thread/INFO]:   Loaded (15) warps into memory. Took 2ms
[15:06:20] [Server thread/INFO]:   Vault permissions was found - Enabling capabilities.
[15:06:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmi [9.5.0.8]
[15:06:20] [Server thread/INFO]:   PlaceholderAPI hooked.
[15:06:20] [Server thread/INFO]:   PlaceholderAPI was found - Enabling capabilities.
[15:06:20] [Server thread/INFO]:   Starting world timer.
[15:06:20] [Server thread/INFO]:   Initializing world manager.
[15:06:20] [Server thread/INFO]:   Loaded (4) schedules into memory. Took 6ms
[15:06:20] [Server thread/INFO]:   Loaded GeoIP
[15:06:20] [Server thread/INFO]:   Loaded (17) holograms into memory. Took 6ms
[15:06:20] [Server thread/INFO]:   Loaded (29) skin cache entries into memory. Took 2ms
[15:06:20] [Server thread/INFO]:   Found DiscordSRV
[15:06:20] [Server thread/INFO]: [DiscordSRV] API listener com.Zrips.CMI.Modules.DiscordSRV.DiscordSRVListener 已訂閱 (4 種方案)
[15:06:20] [Server thread/INFO]:   Loaded (0) ArmorStand templates into memory. Took 1ms
[15:06:20] [Server thread/INFO]:   Version 9.5.0.8 has been enabled
[15:06:20] [Server thread/INFO]: ???????????????????????????????????????????????????????
[15:06:20] [Server thread/INFO]: [Vault][Economy] CMI Economy hooked.
[15:06:20] [Server thread/INFO]: [CMIEInjector][Economy] CMI Economy hooked.
[15:06:20] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.32
[15:06:20] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-10.0.32-Free.jar
[15:06:20] [Server thread/INFO]: [LibsDisguises] Discovered nms version: v1_19_R3 (null)
[15:06:20] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1158
[15:06:20] [Server thread/INFO]: [LibsDisguises] Build Date: 03/02/2023 23:08
[15:06:20] [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/
[15:06:20] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[15:06:20] [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!
[15:06:20] [Server thread/INFO]: [LibsDisguises] Disabling LibsDisguises v10.0.32
[15:06:20] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.2.1-fd1d0777
[15:06:20] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.19.4)...
[15:06:20] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[15:06:21] [Server thread/WARN]: [MythicMobs] --====|||| Mythic ||||====--
[15:06:21] [Server thread/WARN]: [MythicMobs] This version of Mythic is not fully compatible with your version of Bukkit.
[15:06:21] [Server thread/WARN]: [MythicMobs] Some features may be limited or disabled until you use a compatible version.
[15:06:21] [Server thread/WARN]: [MythicMobs] Server NMS Version Detected - v1_19_R3
[15:06:21] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 34 ms to scan 1 urls, producing 4 keys and 14 values 
[15:06:21] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 7 ms to scan 1 urls, producing 4 keys and 14 values 
[15:06:21] [Server thread/INFO]: [MythicMobs] MythicMobs GriefPrevention Support has been enabled!
[15:06:21] [Server thread/WARN]: [MythicMobs] ? Compatibility Error for 'LibsDisguises': Plugin not found/incompatible version
[15:06:21] [Server thread/INFO]: [MythicMobs] MythicMobs MMOItems Support has been enabled!
[15:06:21] [Server thread/INFO]: [MythicMobs] MythicMobs MythicLib Support has been enabled!
[15:06:21] [Server thread/INFO]: [MythicMobs] MythicMobs PlaceholderAPI Support has been enabled!
[15:06:21] [Server thread/INFO]: [MythicMobs] MythicMobs ProtocolLib Support has been enabled!
[15:06:21] [Server thread/INFO]: [MythicMobs] MythicMobs Vault Support has been enabled!
[15:06:21] [Server thread/INFO]: [MythicMobs] MythicMobs WorldGuard Support has been enabled!
[15:06:21] [Server thread/INFO]: [MythicMobs] Base directory C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\SavedData
[15:06:21] [Server thread/INFO]: [MythicMobs] Module directory C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\SavedData\worlds
[15:06:21] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 16 ms to scan 1 urls, producing 11 keys and 445 values 
[15:06:21] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 31 ms to scan 1 urls, producing 29 keys and 885 values 
[15:06:21] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 10 ms to scan 1 urls, producing 9 keys and 152 values 
[15:06:21] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 4 ms to scan 1 urls, producing 2 keys and 11 values 
[15:06:21] [Server thread/INFO]: [MythicMobs] LOADED
[15:06:21] [Server thread/WARN]: Plugin 'MythicMobs' is creating timing 'scheduler: io.lumine.mythic.core.skills.auras.AuraManager$$Lambda$9179/0x00000008029c8cb0' - this is deprecated behavior, please report it to the authors: Lumine
[15:06:21] [Server thread/INFO]: [MythicMobs] Loading Packs...
[15:06:21] [Server thread/INFO]: [MythicMobs] PACK C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Packs\Nocsy\packinfo.yml
[15:06:21] [Server thread/INFO]: [MythicMobs] PACK C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Packs\PixelBarrel's Library\packinfo.yml
[15:06:21] [Server thread/INFO]: [MythicMobs] PACK C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Packs\PixelBarrel's RPG Basics Vol.2\packinfo.yml
[15:06:21] [Server thread/INFO]: [MythicMobs] PACK C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Packs\Voxelspawns_Chieftain_Mount\packinfo.yml
[15:06:21] [Server thread/INFO]: [MythicMobs] Loading Items...
[15:06:21] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Item B2A_weapon
[15:06:21] [Server thread/WARN]: [MythicMobs] Error loading item 'B2A_weapon'. Enable debugging for a stack trace.
[15:06:21] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Item B2A_projectile_weapon
[15:06:21] [Server thread/WARN]: [MythicMobs] Error loading item 'B2A_projectile_weapon'. Enable debugging for a stack trace.
[15:06:21] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Item B2B_weapon
[15:06:21] [Server thread/WARN]: [MythicMobs] Error loading item 'B2B_weapon'. Enable debugging for a stack trace.
[15:06:21] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Item D1_projectile_custom_model1
[15:06:21] [Server thread/WARN]: [MythicMobs] Error loading item 'D1_projectile_custom_model1'. Enable debugging for a stack trace.
[15:06:21] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Item SkeletonKingSword
[15:06:21] [Server thread/WARN]: [MythicMobs] Error loading item 'SkeletonKingSword'. Enable debugging for a stack trace.
[15:06:21] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Item KingsCrown
[15:06:21] [Server thread/WARN]: [MythicMobs] Error loading item 'KingsCrown'. Enable debugging for a stack trace.
[15:06:21] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[15:06:21] [Server thread/INFO]: [MythicMobs] Loading Skills...
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '12.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '18.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '10.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '10.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.EthrodsMeleeAttacksDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '10.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.EthrodsMeleeAttacksDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.EthrodsMeleeAttacksDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '24.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '-1.5707964E-6': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '38.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '18.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.0to4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '50.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '50.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '50.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '50.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '50.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRUndergroundDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRBaitAndTailAttackDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '45.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<skill.var.quetzalcoatlSpawnParticleRing>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<skill.var.quetzalcoatlDeathParticleRing>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+3': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+7': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<skill.var.quetzalcoatlSpawnParticleRing>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<skill.var.quetzalcoatlDeathParticleRing>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+3': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+7': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<skill.var.quetzalcoatlSpawnParticleRing>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<skill.var.quetzalcoatlDeathParticleRing>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+3': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+7': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<skill.var.quetzalcoatlBGRuneRemoveDelay>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '40.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '35.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.20to40>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.-10to10>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.-25to25>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.20to40>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.-10to10>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.-25to25>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '38.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '20.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRUndergroundDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRUndergroundDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '+1': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRUndergroundDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '55.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.0to4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.5to0.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.5to0.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '22.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '32.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '22.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.2to0.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaCrystalBGGroundImpact>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.8to2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<skill.var.sintiaBGCrystalFallDelay>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.5to0.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.5to0.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.5to0.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaCrystalBGGroundImpact>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '30.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '35.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '40.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.5to0.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.5to0.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGProdigalRainDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.2to0.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '53.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '58.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.2to0.9>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.0.2to0.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaMagicCircleBGMagicCircles>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '40.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '0,size=0.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:21] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1,HitNonPlayers=true': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.mhp>*0.05': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.mhp>*0.02': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.1to5>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.mhp>*0.01': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.mhp>*0.01': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.mhp>*0.2': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.mhp>*0.2': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '20.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '15.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1.0E-4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1.0E-4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1.0E-4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1.0E-4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1.0E-4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1.0E-4': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[15:06:22] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[15:06:22] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.EthrodsMeleeAttacksDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.EthrodsMeleeAttacksDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.EthrodsMeleeAttacksDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.EthrodsMeleeAttacksDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<skill.damage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<skill.damage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.EthrodsMeleeAttacksDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRBaitAndTailAttackDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRBaitAndTailAttackDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRElementalRunesProjectileDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRElementalRunesProjectileDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRElementalRunesProjectileDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRTranscendentalMeteorsDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRTranscendentalMeteorsDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGThrowPlayerDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGThrowPlayerDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGBiteDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGBiteDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGBiteDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGBiteDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGBiteDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGBiteDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGBiteDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGBiteDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGBiteDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGMagicalBreathDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.sintiaBGStampedeDamage>*<caster.var.sintiaBGFuryPhase>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRElementalRunesAttackDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.quetzalcoatlKRElementalRunesAttackDamage>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[15:06:22] [Server thread/INFO]: [MythicMobs] ? Loaded 173 mobs.
[15:06:22] [Server thread/INFO]: [MythicMobs] ? Loaded 1 vanilla mob overrides.
[15:06:22] [Server thread/INFO]: [MythicMobs] ? Loaded 0 mob stacks.
[15:06:22] [Server thread/INFO]: [MythicMobs] ? Loaded 1282 skills.
[15:06:22] [Server thread/INFO]: [MythicMobs] ? Loaded 18 random spawns.
[15:06:22] [Server thread/INFO]: [MythicMobs] ? Loaded 47 mythic items.
[15:06:22] [Server thread/INFO]: [MythicMobs] ? Loaded 2 drop tables.
[15:06:22] [Server thread/INFO]: [MythicMobs] ? Loaded 36 mob spawners.
[15:06:22] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[15:06:22] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[15:06:22] [Server thread/INFO]: [MythicMobs] ? MythicMobs v5.2.1 ( build fd1d0777 ) has been successfully loaded!
[15:06:22] [Server thread/INFO]: [MythicLib] Enabling MythicLib v1.5.2
[15:06:22] [Server thread/WARN]: [MythicLib] You may be using an outdated config.yml!
[15:06:22] [Server thread/WARN]: [MythicLib] (Your config version: '4' | Expected config version: '5')
[15:06:22] [Server thread/INFO]: [MythicLib] Hooked onto CMI
[15:06:22] [Server thread/INFO]: [MythicLib] Hooked onto MythicMobs
[15:06:22] [Server thread/INFO]: [MythicLib] Hooked onto ProtocolLib
[15:06:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mythiclib [1.5.2]
[15:06:22] [Server thread/INFO]: [MythicLib] Hooked onto PlaceholderAPI
[15:06:23] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.31-SNAPSHOT (build 3043)
[15:06:23] [Server thread/INFO]: [Citizens] Loading external libraries
[15:06:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[15:06:23] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[15:06:23] [Server thread/INFO]: [MMOCore] Enabling MMOCore v1.11.3
[15:06:24] [Server thread/INFO]: [MMOCore] Hooked onto Vault
[15:06:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mmocore [1.11.3]
[15:06:24] [Server thread/INFO]: [MMOCore] Hooked onto PlaceholderAPI
[15:06:24] [Server thread/INFO]: [MMOCore] Hooked onto Citizens
[15:06:24] [Server thread/INFO]: [MMOCore] Hooked onto WorldGuard
[15:06:24] [Server thread/INFO]: [MMOCore] Hooked onto MythicMobs
[15:06:24] [Server thread/WARN]: [MMOCore] Could not load profession config 'on-fish': io.lumine.mythic.lib.gson.stream.MalformedJsonException: Expected ':' at line 1 column 27 path $.second-region
[15:06:24] [Server thread/WARN]: [MMOCore] Could not load trigger 'mmoitem{type=SWORD;id=CUTLASS}' from objective '5': Could not find MMOItem with ID 'CUTLASS'
[15:06:24] [Server thread/WARN]: [MMOCore] An error occured while trying to load loot chest region 'sample-region': Could not find world world_name_here
[15:06:24] [Server thread/WARN]: [MMOCore] Could not load item 'class' from inventory 'class-select': Couldn't find the class associated to: class
[15:06:24] [Server thread/WARN]: [MMOCore] Could not load item 'class' from inventory 'subclass-select': No enum constant org.bukkit.Material.
[15:06:24] [Server thread/WARN]: [MMOCore] Hooked parties onto MMOCore
[15:06:24] [Server thread/WARN]: [MMOCore] Hooked guilds onto MMOCore
[15:06:24] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR3.1.7
[15:06:24] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[15:06:24] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[15:06:24] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: Citizens
[15:06:24] [Server thread/INFO]: [MMOItems] Enabling MMOItems v6.9.3
[15:06:25] [Server thread/INFO]: [MMOItems] Hooked onto MythicMobs
[15:06:25] [Server thread/INFO]: [MMOItems] Hooked onto MMOCore
[15:06:25] [Server thread/INFO]: [MMOItems] Now using MMOCore as RPG core plugin
[15:06:25] [Server thread/INFO]: [MMOItems MUSKET HAPPY_NEW_GUN] Could not load base item data 'ability': Ability is missing type or mode
[15:06:25] [Server thread/INFO]: [MMOItems Item Templates] Loading template modifiers, please wait..
[15:06:25] [Server thread/INFO]: [MMOItems Item Templates] Loading item templates, please wait...
[15:06:25] [Server thread/INFO]: [MMOItems Item Templates (ARMOR)] Could not load item template 'BASE': Could not find base item data
[15:06:25] [Server thread/INFO]: [MMOItems Item Templates (CATALYST)] Could not load item template 'BASE': Could not find base item data
[15:06:25] [Server thread/INFO]: [MMOItems] Hooked onto Vault
[15:06:25] [Server thread/INFO]: [MMOItems] Hooked onto Vault
[15:06:25] [Server thread/INFO]: [MMOItems] Loading crafting stations, please wait..
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'magic-essence' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=3,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'arcane-helmet' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=6,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-chestplate' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=9,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-leggings' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=8,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-boots' from crafting station 'arcane-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=MAGIC_FRAGMENT,amount=5,display="Magic Fragment"}': Could not find a template with ID 'MAGIC_FRAGMENT'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'soulstealer' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MISCELLANEOUS,id=HUMAN_SOUL,amount=8,display="Human Soul"}': Could not find a template with ID 'HUMAN_SOUL'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'fire-essence' from crafting station 'mythical-forge': Invalid MMOItem MATERIAL FIRE_ESSENCE: No such MMOItem for Type MATERIAL. 
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'fire-totem' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=8,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'blaze-soul' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=5,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'hell-bow' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=2,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'fire-greatlance' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=4,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'molten-blade' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=FIRE_ESSENCE,amount=13,display="Fire Essence"}': Could not find a template with ID 'FIRE_ESSENCE'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'wither-essence' from crafting station 'mythical-forge': Invalid MMOItem MATERIAL WITHER_ESSENCE: No such MMOItem for Type MATERIAL. 
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'marking-bow' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITHER_ESSENCE,amount=1,display="Wither Essence"}': Could not find a template with ID 'WITHER_ESSENCE'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'cursed-wither-skull' from crafting station 'mythical-forge': Could not load ingredient 'mmoitem{type=MATERIAL,id=WITHER_ESSENCE,amount=1,display="Wither Essence"}': Could not find a template with ID 'WITHER_ESSENCE'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'dead-pharaoh-helmet' from crafting station 'mythical-forge': Invalid MMOItem ARMOR DEAD_PHARAOH_HELMET: No such MMOItem for Type ARMOR. 
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'mossy-skeleton-skull' from crafting station 'mythical-forge': Invalid MMOItem ARMOR MOSSY_SKELETON_SKULL: No such MMOItem for Type ARMOR. 
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-sword' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-sword-upgrade' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'two-handed-steel-sword' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=SWORD,id=STEEL_SWORD,amount=1,display="Steel Sword"}': Could not find a template with ID 'STEEL_SWORD'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'katana' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=6,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-helmet' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=6,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-chestplate' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=9,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-leggings' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=8,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-boots' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=5,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-ingot' from crafting station 'steel-crafting-station': Invalid MMOItem MATERIAL STEEL_INGOT: No such MMOItem for Type MATERIAL. 
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-dagger' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'hardened-steel-claymore' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=15,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'stiff-greatstaff' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-pickaxe' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[15:06:25] [Server thread/INFO]: [MMOItems] An issue occurred registering recipe 'steel-shovel' from crafting station 'steel-crafting-station': Could not load ingredient 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=2,display="Steel Ingot"}': Could not find a template with ID 'STEEL_INGOT'
[15:06:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mmoitems [6.9.3]
[15:06:25] [Server thread/INFO]: [MMOItems] Hooked onto PlaceholderAPI
[15:06:25] [Server thread/INFO]: [MMOItems] Loading recipes, please wait...
[15:06:25] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.3
[15:06:25] [Server thread/INFO]: [CoreProtect] Invalid WorldEdit version found.
[15:06:25] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[15:06:25] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[15:06:25] [Server thread/INFO]: --------------------
[15:06:25] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[15:06:25] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[15:06:25] [Server thread/INFO]: --------------------
[15:06:25] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[15:06:25] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[15:06:25] [Server thread/INFO]: [ClearLag] Loading modules...
[15:06:25] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (net.minecraft.server.v1_19_R3.MinecraftServer)
[15:06:25] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[15:06:25] [Server thread/WARN]: [ClearLag] Item type 'Boat !isMounted' does not match any Materials found on your Craftbukkit version.
[15:06:25] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[15:06:25] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[15:06:25] [Thread-24/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.19]...
[15:06:25] [Server thread/INFO]: [SkBee] Enabling SkBee v2.7.4
[15:06:25] [Server thread/INFO]: [SkBee] Loading NBTApi...
[15:06:25] [Server thread/INFO]: [SkBee] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[15:06:25] [Server thread/INFO]: [SkBee] Failed to load NBTApi!
[15:06:25] [Server thread/INFO]: [SkBee] NBT Elements DISABLED!
[15:06:25] [Server thread/INFO]: [SkBee]  - Your server version [1.19.4] is not currently supported by the NBT-API
[15:06:25] [Server thread/INFO]: [SkBee]  - This is not a bug!
[15:06:25] [Server thread/INFO]: [SkBee]  - NBT elements will resume once the API is updated to work with [1.19.4]
[15:06:25] [Thread-24/INFO]: [ClearLag] No updates found!
[15:06:25] [Server thread/INFO]: [SkBee] Recipe Elements successfully loaded
[15:06:25] [Server thread/INFO]: [SkBee] Scoreboard Elements successfully loaded
[15:06:25] [Server thread/INFO]: [SkBee] Scoreboard Objective Elements successfully loaded
[15:06:25] [Server thread/INFO]: [SkBee] Team Elements successfully loaded
[15:06:25] [Server thread/INFO]: [SkBee] Bound Elements successfully loaded
[15:06:25] [Server thread/INFO]: [SkBee] Text Component Elements successfully loaded
[15:06:25] [Server thread/INFO]: [SkBee] Pathfinding Elements successfully loaded
[15:06:25] [Server thread/INFO]: [SkBee] Structure Elements successfully loaded
[15:06:25] [Server thread/INFO]: [SkBee] Other Elements successfully loaded
[15:06:25] [Server thread/INFO]: [SkBee] Virtual Furnace Elements disabled via config
[15:06:25] [Server thread/INFO]: [SkBee] World Creator Elements successfully loaded
[15:06:25] [Server thread/INFO]: [SkBee] Game Event Elements successfully loaded
[15:06:25] [Server thread/INFO]: [SkBee] BossBar Elements successfully loaded
[15:06:25] [Server thread/INFO]: [SkBee] Statistic Elements successfully loaded
[15:06:25] [Server thread/INFO]: [SkBee] Villager Elements successfully loaded
[15:06:25] [Server thread/INFO]: [SkBee] Advancement Elements successfully loaded
[15:06:25] [Server thread/INFO]: [SkBee] World Border Elements successfully loaded
[15:06:25] [Server thread/INFO]: [SkBee] Particle Elements successfully loaded
[15:06:25] [Server thread/INFO]: [SkBee] Minecraft Tag elements successfully loaded
[15:06:25] [Server thread/INFO]: [SkBee] RayTrace elements successfully loaded
[15:06:25] [Server thread/INFO]: [SkBee] Loaded elements:
[15:06:25] [Server thread/INFO]: [SkBee]  - 35 events
[15:06:25] [Server thread/INFO]: [SkBee]  - 35 effects
[15:06:25] [Server thread/INFO]: [SkBee]  - 128 expressions
[15:06:25] [Server thread/INFO]: [SkBee]  - 13 conditions
[15:06:25] [Server thread/INFO]: [SkBee]  - 1 section
[15:06:25] [Server thread/INFO]: [SkBee] Checking for update...
[15:06:26] [Server thread/INFO]: [SkBee] Plugin is not up to date!
[15:06:26] [Server thread/INFO]: [SkBee]  - Current version: v2.7.4
[15:06:26] [Server thread/INFO]: [SkBee]  - Available update: v2.8.4
[15:06:26] [Server thread/INFO]: [SkBee]  - Download available at: https://github.com/ShaneBeee/SkBee/releases
[15:06:26] [Server thread/INFO]: [SkBee] Successfully enabled v2.7.4 in 0.70 seconds
[15:06:26] [Server thread/INFO]: [EpicPluginLib] Enabling EpicPluginLib v2.2.1
[15:06:26] [Server thread/INFO]: [EpicPluginLib] Dependency found: PlayMoreSounds.
[15:06:26] [Server thread/INFO]: [EpicPluginLib] Lib enabled successfully.
[15:06:26] [Server thread/INFO]: [EpicPluginLib] EpicPluginLib is using bStats as metrics collector.
[15:06:26] [Server thread/INFO]: [PCGF_PluginLib] Enabling PCGF_PluginLib v1.0.39-SNAPSHOT
[15:06:26] [Server thread/INFO]: [PCGF_PluginLib] Config file successfully loaded.
[15:06:26] [Server thread/INFO]: [PCGF_PluginLib] Item name language file successfully loaded. Language: english  Author: GeorgH93
[15:06:26] [Server thread/INFO]: [PCGF_PluginLib] Loading item translations ...
[15:06:26] [Server thread/INFO]: [PCGF_PluginLib] Finished loading item translations for 828 items.
[15:06:26] [Server thread/INFO]: [PCGF_PluginLib] Language file successfully loaded. Language: english  Author: GeorgH93
[15:06:26] [Server thread/INFO]: [PCGF_PluginLib]  PCGF_PluginLib v1.0.39-SNAPSHOT has been enabled!  :) 
[15:06:26] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v3.3.1
[15:06:26] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[15:06:26] [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!
[15:06:26] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[15:06:26] [Server thread/ERROR]: [ItemsAdder] ════════════════════════════════════════════════════════════════════
[15:06:26] [Server thread/ERROR]: [ItemsAdder]  
[15:06:26] [Server thread/ERROR]: [ItemsAdder]  
[15:06:26] [Server thread/ERROR]: [ItemsAdder]  
[15:06:26] [Server thread/ERROR]: [ItemsAdder] This server version is not supported: 1.19.4
[15:06:26] [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
[15:06:26] [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 <
[15:06:26] [Server thread/ERROR]: [ItemsAdder]  
[15:06:26] [Server thread/ERROR]: [ItemsAdder]  
[15:06:26] [Server thread/ERROR]: [ItemsAdder]  
[15:06:26] [Server thread/ERROR]: [ItemsAdder] ════════════════════════════════════════════════════════════════════
[15:06:26] [Server thread/INFO]: [Sentinel] Enabling Sentinel v2.7.3-SNAPSHOT (build 505)
[15:06:26] [Server thread/INFO]: [Sentinel] Sentinel loading...
[15:06:26] [Server thread/INFO]: [Sentinel] Running on java version: 17.0.6
[15:06:26] [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.
[15:06:26] [Server thread/INFO]: [Sentinel] Vault linked! Group targets will work.
[15:06:26] [Server thread/INFO]: [Sentinel] Sentinel found WorldGuard! Adding support for it!
[15:06:26] [Server thread/INFO]: [Sentinel] Sentinel loaded!
[15:06:26] [Server thread/INFO]: [WildStacker] Enabling WildStacker v2023.1
[15:06:26] [Server thread/INFO]: [WildStacker] ******** ENABLE START ********
[15:06:26] [Server thread/INFO]: [WildStacker] Loading configuration started...
[15:06:26] [Server thread/INFO]: [WildStacker]  - Stacking drops is enabled
[15:06:26] [Server thread/INFO]: [WildStacker]  - Stacking entities is enabled
[15:06:26] [Server thread/INFO]: [WildStacker]  - Stacking spawners is enabled
[15:06:26] [Server thread/INFO]: [WildStacker]  - Stacking barrels is enabled
[15:06:26] [Server thread/INFO]: [WildStacker] Loading configuration done (Took 46ms)
[15:06:26] [Server thread/INFO]: [WildStacker] Loading loot-tables started...
[15:06:26] [Server thread/INFO]: [WildStacker] Loading loot-tables done (Took 37ms)
[15:06:26] [Server thread/INFO]: [WildStacker] Loading messages started...
[15:06:26] [Server thread/INFO]: [WildStacker]  - Found 69 messages in lang.yml.
[15:06:26] [Server thread/INFO]: [WildStacker] Loading messages done (Took 2ms)
[15:06:27] [Server thread/INFO]: [WildStacker] ******** ENABLE DONE ********
[15:06:27] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.1
[15:06:27] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuard' is creating timing 'Third-Party Session Handlers' - this is deprecated behavior, please report it to the authors: 
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'TeleportOnEntryFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'TeleportOnExitFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'CommandOnEntryFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'CommandOnExitFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'ConsoleCommandOnEntryFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'ConsoleCommandOnExitFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'WalkSpeedFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'BlockedEffectsFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'GodmodeFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'GiveEffectsFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'FlyFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'FlySpeedFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'PlaySoundsFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/WARN]: Plugin 'WorldGuardExtraFlags' is creating timing 'GlideFlagHandler' - this is deprecated behavior, please report it to the authors: isokissa3
[15:06:27] [Server thread/INFO]: [WDLCompanion] Enabling WDLCompanion v1.2.0*
[15:06:27] [Server thread/INFO]: [UltraBar] Enabling UltraBar v2.3.2
[15:06:27] [Server thread/INFO]: [UltraBar] WorldGuard detected. WorldGuard addon activated.
[15:06:27] [Server thread/INFO]: [UltraBar] PlaceholderAPI detected. PlaceholderAPI addon activated.
[15:06:27] [Server thread/INFO]: [UltraBar] Your server is running version v1_19_R3!
[15:06:27] [Server thread/INFO]: [UltraBar] UltraBar is enabled and running fine! V: 2.3.2
[15:06:27] [Server thread/INFO]: [UltraBar] Bstat metrics is disabled for this plugin.
[15:06:27] [Server thread/INFO]: [TreasureChestX] Enabling TreasureChestX v1.0
[15:06:27] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.3.1
[15:06:27] [Server thread/INFO]:  
[15:06:27] [Server thread/INFO]: __________________________________________________________
[15:06:27] [Server thread/INFO]:  
[15:06:27] [Server thread/INFO]:                        TradeSystem [2.3.1]
[15:06:27] [Server thread/INFO]:  
[15:06:27] [Server thread/INFO]: Status:
[15:06:27] [Server thread/INFO]:  
[15:06:27] [Server thread/INFO]: MC-Version: 1.19.4 (R0.1-SNAPSHOT, Paper)
[15:06:27] [Server thread/INFO]:  
[15:06:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tradesystem [1.2]
[15:06:27] [Server thread/INFO]:   > Loading sounds
[15:06:27] [Server thread/INFO]:   > Loading blacklist
[15:06:27] [Server thread/INFO]:     ...got 3 blocked item(s)
[15:06:27] [Server thread/INFO]:   > Loading layouts
[15:06:27] [Server thread/INFO]:     ...got 3 layout(s)
[15:06:27] [Server thread/INFO]:   > Database logging is disabled
[15:06:27] [Server thread/INFO]:  
[15:06:27] [Server thread/INFO]: Finished (143ms)
[15:06:27] [Server thread/INFO]:  
[15:06:27] [Server thread/INFO]: __________________________________________________________
[15:06:27] [Server thread/INFO]:  
[15:06:27] [Server thread/INFO]: [Themis] Enabling Themis v0.14.6
[15:06:27] [Server thread/WARN]: [Themis] Couldn't find Floodgate which is required for Bedrock support
[15:06:27] [Server thread/WARN]: [Themis] There is no config section for the reach check
[15:06:28] [Server thread/WARN]: Plugin 'Themis' is creating timing 'Commands' - this is deprecated behavior, please report it to the authors: Olexorus
[15:06:28] [Server thread/WARN]: Plugin 'Themis' is creating timing 'Command: themis notify' - this is deprecated behavior, please report it to the authors: Olexorus
[15:06:28] [Server thread/WARN]: Plugin 'Themis' is creating timing 'Command: themis' - this is deprecated behavior, please report it to the authors: Olexorus
[15:06:28] [Server thread/WARN]: Plugin 'Themis' is creating timing 'Command: themis reload' - this is deprecated behavior, please report it to the authors: Olexorus
[15:06:28] [Server thread/WARN]: Plugin 'Themis' is creating timing 'Command: themis info' - this is deprecated behavior, please report it to the authors: Olexorus
[15:06:28] [Server thread/WARN]: Plugin 'Themis' is creating timing 'Command: themis notifications' - this is deprecated behavior, please report it to the authors: Olexorus
[15:06:28] [Server thread/WARN]: Plugin 'Themis' is creating timing 'Command: themis help' - this is deprecated behavior, please report it to the authors: Olexorus
[15:06:28] [Server thread/INFO]: [TAB] Enabling TAB v3.3.2
[15:06:28] [Server thread/INFO]: [TAB] Server version: 1.19.4 (v1_19_R3)
[15:06:28] [Server thread/INFO]: [TAB] Loaded NMS hook in 24ms
[15:06:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tab [3.3.2]
[15:06:28] [Server thread/INFO]: [TAB] Enabled in 68ms
[15:06:28] [Server thread/INFO]: [skript-yaml] Enabling skript-yaml v1.4
[15:06:28] [Server thread/INFO]: [SkQuery] Enabling SkQuery v4.1.9
[15:06:28] [Server thread/INFO]: [skQuery] Locating classes from SkQuery...
[15:06:28] [Server thread/INFO]: [skQuery] Beginning to process a total of 119 from SkQuery
[15:06:28] [Server thread/INFO]: [skQuery] Out of 119 classes, 119 classes were loaded from SkQuery
[15:06:28] [Server thread/INFO]: [ServerSigns] Enabling ServerSigns v4.8.0
[15:06:28] [Server thread/INFO]: [ServerSigns] Version 4.8.0 is now enabled.
[15:06:28] [Server thread/INFO]: [RotatingHeads2] Enabling RotatingHeads2 v1.0.3
[15:06:29] [Server thread/INFO]: [RotatingHeads2] --------------------------------------------------------------------------------------------
[15:06:29] [Server thread/INFO]: [RotatingHeads2] Loading plugin RotatingHeads2 v.1.0.3
[15:06:29] [Server thread/INFO]: [RotatingHeads2] --------------------------------------------------------------------------------------------
[15:06:29] [Server thread/INFO]: [RotatingHeads2] 
[15:06:29] [Server thread/INFO]: [RotatingHeads2]  Successfully loaded: 1 languages
[15:06:29] [Server thread/INFO]: [RotatingHeads2]  Hooked to language: en_GB
[15:06:29] [Server thread/INFO]: [RotatingHeads2] 
[15:06:29] [Server thread/INFO]: [RotatingHeads2] This plugin is running on 1.0.3...
[15:06:29] [Server thread/INFO]: [RotatingHeads2] Current plugin version on polymart is 1.0.3...
[15:06:29] [Server thread/INFO]: [RotatingHeads2] So your plugin is on the latest version...
[15:06:29] [Server thread/INFO]: [RotatingHeads2] 
[15:06:29] [Server thread/INFO]: [RotatingHeads2]  Plugin author: [Gennario]
[15:06:29] [Server thread/INFO]: [RotatingHeads2] 
[15:06:29] [Server thread/INFO]: [RotatingHeads2] Thanks for choosing Gennario's Development...
[15:06:29] [Server thread/INFO]: [RotatingHeads2] --------------------------------------------------------------------------------------------
[15:06:29] [Server thread/INFO]: [PlayMoreSounds] Enabling PlayMoreSounds v4.2
[15:06:29] [Server thread/INFO]: [PlayMoreSounds] -> Configurations loaded.
[15:06:29] [Server thread/INFO]: [PlayMoreSounds] -> 9 listeners loaded.
[15:06:29] [Server thread/INFO]: [PlayMoreSounds] -> Commands loaded.
[15:06:29] [Server thread/INFO]: [PlayMoreSounds] ============================================
[15:06:29] [Server thread/INFO]: [PlayMoreSounds] PlayMoreSounds has been enabled
[15:06:29] [Server thread/INFO]: [PlayMoreSounds] 1202 sounds available on 1.19.4
[15:06:29] [Server thread/INFO]: [PlayMoreSounds] ============================================
[15:06:29] [Server thread/WARN]: [PlayMoreSounds] PlayMoreSounds detected you are on version 1.19.4. This version was not tested and might throw errors.
[15:06:29] [Server thread/INFO]: [PlayMoreSounds] PlayMoreSounds is using bStats as metrics collector.
[15:06:29] [Server thread/INFO]: [PlayMoreSounds] Checking for updates...
[15:06:29] [Server thread/INFO]: [PlayerKits] Enabling PlayerKits v2.26.1
[15:06:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerkits [2.26.1]
[15:06:29] [Server thread/INFO]: [PlayerKits] Has been enabled! Version: 2.26.1
[15:06:29] [Server thread/INFO]: [PlayerKits] Thanks for using my plugin!  ~Ajneb97
[15:06:29] [EPL Update Checker/INFO]: [PlayMoreSounds] No updates available.
[15:06:29] [Server thread/INFO]: [PlaceItemsOnGroundRebuilt] Enabling PlaceItemsOnGroundRebuilt v1.0.6
[15:06:29] [Server thread/INFO]: [NoPlugins] Enabling NoPlugins v8.1
[15:06:29] [Server thread/INFO]: [NoPlugins] Minecraft version: v1_19_R3
[15:06:29] [Server thread/INFO]: [NoPlugins] Loaded assets for newer minecraft (1.13+)
[15:06:29] [Server thread/INFO]: [NoPlugins] Successfully loaded.
[15:06:29] [Server thread/INFO]: [MythicDungeons] Enabling MythicDungeons v1.1.1-SNAPSHOT
[15:06:29] [Server thread/INFO]: [DungeonParties] Loading server plugin DungeonParties v1.0-SNAPSHOT
[15:06:29] [Server thread/INFO]: [DungeonParties] Enabling DungeonParties v1.0-SNAPSHOT
[15:06:29] [Server thread/INFO]: [MythicDungeons] [STDOUT] DungeonParties plugin found! Enabled party support.
[15:06:29] [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).
[15:06:29] [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!
[15:06:29] [packetevents-update-check-thread/INFO]: [packetevents] Checking for an update, please wait...
[15:06:29] [Server thread/INFO]: [MythicDungeons] [STDOUT] MythicMobs plugin found! Enabled MythicMobs support.
[15:06:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: md [1.1.1]
[15:06:29] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 52 ms to scan 1 urls, producing 11 keys and 137 values
[15:06:29] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 5 ms to scan 1 urls, producing 7 keys and 58 values
[15:06:29] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 3 ms to scan 1 urls, producing 5 keys and 20 values
[15:06:29] [Server thread/INFO]: [MythicDungeons] [STDOUT] * Loaded 28 functions.
[15:06:29] [Server thread/INFO]: [MythicDungeons] [STDOUT] * Loaded 12 triggers.
[15:06:29] [Server thread/INFO]: [MythicDungeons] [STDOUT] * Loaded 4 conditions.
[15:06:29] [packetevents-update-check-thread/INFO]: [packetevents] You are on a dev or pre released build of packetevents. Your build: (2.0.0) | Latest released build: (1.8.4)
[15:06:30] [Server thread/INFO]: [MythicDungeons] [STDOUT] GUI menus initialized!
[15:06:30] [Server thread/INFO]: [MythicDungeons] [STDOUT] Mythic Dungeons v1.1.1 initialized! Happy dungeon-ing!
[15:06:30] [Server thread/INFO]: [MythicCrucible] Enabling MythicCrucible v1.5.0-SNAPSHOT
[15:06:30] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[15:06:30] [Server thread/INFO]: [MythicMobs] + Loading MythicCrucible for Bukkit
[15:06:30] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[15:06:30] [Server thread/INFO]: [MythicMobs] Registering Durability Listener
[15:06:30] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[15:06:30] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.0.11
[15:06:31] [Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.18
[15:06:31] [Server thread/INFO]: [Minepacks] Starting Minepacks in standalone mode!
[15:06:31] [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.
[15:06:31] [Server thread/INFO]: [Minepacks] Config file successfully loaded.
[15:06:31] [Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: 繁體中文  Author: Specialbase#0428
[15:06:31] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting...
[15:06:31] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed.
[15:06:31] [Server thread/INFO]: [Minepacks] Item name language file successfully loaded. Language: english  Author: GeorgH93
[15:06:31] [Server thread/INFO]: [Minepacks] Loading item translations ...
[15:06:31] [Server thread/INFO]: [Minepacks] Finished loading item translations for 828 items.
[15:06:31] [Server thread/INFO]: [Minepacks]  Minepacks has been enabled!  :) 
[15:06:31] [Server thread/INFO]: [MCPets] Enabling MCPets v3.0.2
[15:06:31] [Server thread/INFO]: [MCPets] : Language file reloaded.
[15:06:31] [Server thread/INFO]: [MCPets] : Blacklist file reloaded.
[15:06:31] [Server thread/INFO]: Loading pets... 
[15:06:31] [Server thread/INFO]:   - vs_chieftain loaded succesfully.
[15:06:31] [Server thread/INFO]: [MCPets] : 1 pets registered successfully !
[15:06:31] [Server thread/INFO]: [MCPets] : 0 categories registered successfully !
[15:06:31] [Server thread/ERROR]: [MCPets] Could not reach SQL database. Please configure your database parameters.
[15:06:31] [Server thread/ERROR]: [MCPets] [Database] Can't initialize MySQL.
[15:06:31] [Server thread/ERROR]: [MCPets] [Database] Will be using YAML support instead.
[15:06:31] [Server thread/INFO]: -=-=-=-= MCPets loaded =-=-=-=-
[15:06:31] [Server thread/INFO]:       Plugin made by Nocsy
[15:06:31] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[15:06:31] [Server thread/INFO]: -=- Launching Flags -=-
[15:06:31] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount.
[15:06:31] [Server thread/INFO]: [MCPets] : Starting flag mcpets-despawn.
[15:06:31] [Server thread/INFO]: 2 flags launched.
[15:06:31] [Server thread/INFO]: [MagicCosmetics] Enabling MagicCosmetics v2.2.8
[15:06:31] [Server thread/INFO]: [MagicCosmetics] Version: v1_19_R3 Detected!
[15:06:31] [Server thread/INFO]: [MagicCosmetics] Loading file cosmetic: cosmetics.yml
[15:06:31] [Server thread/INFO]: [MagicCosmetics] Loading file cosmetic: medieval_pack_backpack.yml
[15:06:31] [Server thread/INFO]: [MagicCosmetics] Loading file cosmetic: medieval_pack_ballon.yml
[15:06:31] [Server thread/INFO]: [MagicCosmetics] Loading file cosmetic: medieval_pack_hands.yml
[15:06:31] [Server thread/INFO]: [MagicCosmetics] Loading file cosmetic: medieval_pack_hats.yml
[15:06:31] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[15:06:32] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@6de689c9
[15:06:32] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[15:06:32] [Server thread/INFO]: [MagicCosmetics] SQLite table created successfully
[15:06:32] [Server thread/INFO]: [MagicCosmetics] Validating purchase...
[15:06:32] [Server thread/INFO]: [MagicCosmetics]  
[15:06:32] [Server thread/INFO]: [MagicCosmetics] Welcome sktom!
[15:06:32] [Server thread/INFO]: [MagicCosmetics] Thank you for using MagicCosmetics =)!
[15:06:32] [Server thread/INFO]: [MagicCosmetics]  
[15:06:32] [Server thread/INFO]: [MagicCosmetics] ModelEngine 3.0.0 found, using new model engine
[15:06:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: magicosmetics [2.2.8]
[15:06:32] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[15:06:32] [Server thread/INFO]: [LootChest] Enabling LootChest v2.3.4
[15:06:32] [Server thread/INFO]: [LootChest] Server version: 1.19
[15:06:32] [Server thread/INFO]: [LootChest] Loading config files...
[15:06:32] [Server thread/INFO]: [LootChest] Checking for update...
[15:06:32] [Server thread/INFO]: [LootChest] Starting particles...
[15:06:32] [Server thread/INFO]: [LiteSignIn] Enabling LiteSignIn v1.7.0.0
[15:06:32] [Server thread/INFO]: [LiteSignIn] The language information file has been loaded.
[15:06:32] [Server thread/INFO]: [LiteSignIn] Enabled Command Listener .
[15:06:32] [Server thread/INFO]: [LiteSignIn] Enabled Event Listener .
[15:06:32] [Server thread/INFO]: 每日簽到 >>> Successfully connected SQLite server.
[15:06:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: litesignin [1.0.0]
[15:06:32] [Server thread/INFO]: 每日簽到 >>> Find the PlaceholderAPI and get ready.
[15:06:32] [Server thread/INFO]: 每日簽到 >>> Async thread started.
[15:06:32] [Server thread/INFO]: 每日簽到 >>> Plugin are enabled!
[15:06:32] [Server thread/INFO]: [LastLoginAPI] Enabling LastLoginAPI v1.7.4
[15:06:32] [Server thread/INFO]: [LastLoginAPI] Initializing LastLoginAPI v1.7.4
[15:06:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: lastloginapi [1.7.4]
[15:06:32] [Server thread/INFO]: [LastLoginAPI] Hooked into PlaceholderAPI
[15:06:32] [Server thread/INFO]: [LastLoginAPI] LastLoginAPI v1.7.4 enabled
[15:06:32] [Server thread/INFO]: [JonAPI] Enabling JonAPI v1.1-c1*
[15:06:32] [Server thread/INFO]: [JonAPI] Plugin Version: 1.1-c1
[15:06:32] [Server thread/INFO]: [JonAPI] JonAPI ?用成功.    BY JONJS2333
[15:06:32] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.0.9
[15:06:32] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[15:06:32] [Server thread/INFO]: [ItemEdit] Hooking into PlaceholderApi
[15:06:32] [Server thread/INFO]: [ItemEdit] Hooked into PlaceHolderAPI:
[15:06:32] [Server thread/INFO]: [ItemEdit] placeholders:
[15:06:32] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[15:06:32] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[15:06:32] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[15:06:32] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[15:06:32] [Server thread/INFO]: [ItemEdit]       Values: inventory, equip, inventoryandequip, hand, offhand, head, chest, legs, feet
[15:06:32] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[15:06:32] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[15:06:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: itemedit [1.0]
[15:06:32] [Server thread/INFO]: [ItemEdit] Hooking into MythicMobs
[15:06:32] [Server thread/INFO]: [ItemEdit] # Enabled (took 48 ms)
[15:06:32] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.11.2
[15:06:32] [Server thread/INFO]: [NBTAPI] Adding listeners...
[15:06:32] [Server thread/INFO]: [NBTAPI] Gson:
[15:06:32] [Server thread/INFO]: [NBTAPI] Checking bindings...
[15:06:32] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[15:06:32] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[15:06:32] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[15:06:32] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[15:06:32] [Server thread/INFO]: [shit_do] Enabling shit_do v1.0*
[15:06:32] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.1.10
[15:06:32] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[15:06:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: excellentcrates [4.1.10]
[15:06:32] [Server thread/INFO]: [ExcellentCrates] Using 'en' language.
[15:06:32] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[15:06:32] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-2 - Added connection org.sqlite.jdbc4.JDBC4Connection@2015086b
[15:06:32] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[15:06:32] [Server thread/INFO]: [ExcellentCrates] Loaded 3 crate keys.
[15:06:32] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[15:06:32] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 206 ms!
[15:06:32] [Server thread/INFO]: [EpicCraftingsPlus] Enabling EpicCraftingsPlus v7.18.1
[15:06:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: epiccraftings [7.18.1]
[15:06:33] [Server thread/INFO]: [EpicCraftings+] Has been enabled! Version: 7.18.1
[15:06:33] [Server thread/INFO]: [EpicCraftings+] Thanks for using my plugin!  ~Ajneb97
[15:06:33] [Server thread/INFO]: [EnderContainers] Enabling EnderContainers v2.3.0-dev
[15:06:33] [Server thread/INFO]: [EnderContainers] Hooked into WorldGuard v7.0.7+216b061
[15:06:33] [Server thread/INFO]: [EnderContainers] MySQL disabled. Using flat system to store data.
[15:06:33] [Server thread/WARN]: [EnderContainers] You have disabled update checking. Please be sure that the plugin is up to date.
[15:06:33] [Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
[15:06:33] [Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
[15:06:33] [Server thread/INFO]: [DeluxeTags] 13 tags loaded
[15:06:33] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[15:06:33] [Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
[15:06:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxetags [1.8.2-Release]
[15:06:33] [Server thread/INFO]: [DeluxeTags] ----------------------------
[15:06:33] [Server thread/INFO]: [DeluxeTags]      DeluxeTags Updater
[15:06:33] [Server thread/INFO]: [DeluxeTags]  
[15:06:33] [Server thread/INFO]: [DeluxeTags] You are running 1.8.2-Release
[15:06:33] [Server thread/INFO]: [DeluxeTags] The latest version
[15:06:33] [Server thread/INFO]: [DeluxeTags] of DeluxeTags!
[15:06:33] [Server thread/INFO]: [DeluxeTags]  
[15:06:33] [Server thread/INFO]: [DeluxeTags] ----------------------------
[15:06:33] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.7-Release
[15:06:33] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[15:06:34] [Server thread/ERROR]: [DeluxeMenus] open_command specified for menu: pets already exists for another menu!
Skipping menu: pets
[15:06:34] [Server thread/INFO]: [DeluxeMenus] 23 GUI menus loaded!
[15:06:34] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[15:06:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.7-Release]
[15:06:34] [Server thread/INFO]: [ChatItem] Enabling ChatItem v2.4.6
[15:06:34] [Server thread/INFO]: [ChatItem] Detected server version: v1_19
[15:06:34] [Server thread/INFO]: [ChatItem] The plugin ProtocolLib has been detected. Loading Protocollib support ...
[15:06:34] [Server thread/INFO]: [ChatItem] Loaded 4 getter for base components.
[15:06:34] [Server thread/INFO]: [ChatItem] Save method founded: b. Use ComponentBuilder's method.
[15:06:34] [Server thread/INFO]: [ChatItem] Manager automatically chosen: PacketEditing (packet), ChatListener (chat)
[15:06:34] [Server thread/INFO]: [ChatItem] Load DiscordSRV support.
[15:06:34] [Server thread/INFO]: [CaliComp] Enabling CaliComp v1.1
[15:06:34] [Server thread/INFO]: [BloodInMinecraft] Enabling BloodInMinecraft v9.5
[15:06:34] [Server thread/INFO]: ----------------------------------------
[15:06:34] [Server thread/INFO]: BloodInMinecraft By Yanisssch Is On! No error Found ;)! VERSION 9.5
[15:06:34] [Server thread/INFO]: Your server running on:git-Paper-516 (MC: 1.19.4)-!Only work on 1.13 to newer versions!-
[15:06:34] [Server thread/INFO]: ----------------------------------------
[15:06:34] [Server thread/INFO]: [BeautyQuests] Enabling BeautyQuests v0.20.1
[15:06:34] [Server thread/INFO]: [BeautyQuests] ------------ BeautyQuests ------------
[15:06:34] [Server thread/INFO]: [BeautyQuests] Loaded valid Minecraft version 1_19_R3.
[15:06:34] [Server thread/INFO]: [BeautyQuests] Loaded language zh_HK (0.023s)!
[15:06:34] [Server thread/INFO]: [BeautyQuests] Loaded start particles: REDSTONE in shape POINT with color R255 G255 B0
[15:06:34] [Server thread/INFO]: [BeautyQuests] Loaded talk particles: VILLAGER_HAPPY in shape BAR
[15:06:34] [Server thread/INFO]: [BeautyQuests] Loaded next particles: SMOKE_NORMAL in shape SPOT
[15:06:35] [Server thread/INFO]: [WorldGuard] Registering session handler fr.skytasul.quests.utils.compatibility.worldguard.WorldGuardEntryHandler
[15:06:35] [Server thread/WARN]: Plugin 'BeautyQuests' is creating timing 'Session Handlers' - this is deprecated behavior, please report it to the authors: SkytAsul
[15:06:35] [Server thread/WARN]: Plugin 'BeautyQuests' is creating timing 'WorldGuardEntryHandler' - this is deprecated behavior, please report it to the authors: SkytAsul
[15:06:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: beautyquests [0.20.1]
[15:06:35] [Server thread/INFO]: [BeautyQuests] Placeholders registered !
[15:06:35] [Server thread/INFO]: [AuctionMaster] Enabling AuctionMaster v4.1
[15:06:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: auctionmaster [1.0.0]
[15:06:35] [Server thread/INFO]: [AuctionMaster] Succesfully connected to the Deliveries SQL.
[15:06:35] [Server thread/WARN]: [AuctionMaster] Auctions database is ready!
[15:06:35] [Server thread/WARN]: [AuctionMaster] AuctionLists database is ready!
[15:06:35] [Server thread/WARN]: [AuctionMaster] PreviewData database is ready!
[15:06:35] [Server thread/INFO]: [AquaticCrates] Enabling AquaticCrates v2.3.9
[15:06:35] [Server thread/INFO]: AquaticCrates | Loading the plugin...
[15:06:35] [Server thread/INFO]: AquaticCrates | Loading NMS Version!
[15:06:35] [Server thread/INFO]: AquaticCrates | Using NMS version v1_19_R4.
[15:06:35] [Server thread/INFO]: AquaticCrates | Loading PlaceholderAPI Hook!
[15:06:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: aquaticcrates [1.0.0]
[15:06:35] [Server thread/INFO]: AquaticCrates | Loading Database!
[15:06:35] [Server thread/INFO]: [AnimatedScoreboard] Enabling AnimatedScoreboard v0.2.7
[15:06:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: animatedscoreboard [0.0.1]
[15:06:35] [Server thread/INFO]: [AdvancedAchievements] Enabling AdvancedAchievements v7.2.4
[15:06:36] [Server thread/INFO]: [AdvancedAchievements] Backing up and loading configuration files...
[15:06:36] [Server thread/WARN]: [AdvancedAchievements] Overriding configuration: disabling PetMasterGive and PetMasterReceive categories.
[15:06:36] [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.
[15:06:36] [Server thread/WARN]: [AdvancedAchievements] Overriding configuration: disabling JobsReborn category.
[15:06:36] [Server thread/WARN]: [AdvancedAchievements] Ensure you have placed JobsReborn in your plugins folder or add JobsReborn to the DisabledCategories list in config.yml.
[15:06:36] [Server thread/INFO]: [AdvancedAchievements] Loaded 106 achievements in 43 categories.
[15:06:36] [Server thread/INFO]: [AdvancedAchievements] 10 disabled categories: [PetMasterReceive, PetMasterGive, AdvancementsCompleted, Connections, PlayerCommands, JobsReborn, Commands, EatenItems, Custom, Riptides]
[15:06:36] [Server thread/INFO]: [AdvancedAchievements] Registering event listeners...
[15:06:36] [Server thread/INFO]: [AdvancedAchievements] Initialising h2 database...
[15:06:36] [Server thread/INFO]: [AdvancedAchievements] Setting up command executor and custom tab completers...
[15:06:36] [Server thread/INFO]: [AdvancedAchievements] Launching scheduled tasks...
[15:06:36] [Server thread/INFO]: [AdvancedAchievements] Registering permissions...
[15:06:36] [Thread-31/INFO]: [AdvancedAchievements] Checking for plugin update...
[15:06:36] [Thread-31/WARN]: [AdvancedAchievements] Update available: v8.0.2! Download at https://www.spigotmc.org/resources/83466
[15:06:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: aach [7.2.4]
[15:06:37] [Server thread/INFO]: [AdvancedAchievements] Plugin has finished loading and is ready to run! Took 1394ms.
[15:06:38] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[15:06:38] [Server thread/INFO]: Running delayed init tasks
[15:06:38] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[15:06:38] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[15:06:38] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.GriefPreventionFeature] Plugin 'GriefPrevention' found. Using it now.
[15:06:38] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'GriefPrevention'
[15:06:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerpoints [3.2.5]
[15:06:38] [Craft Scheduler Thread - 22 - EpicPluginLib/INFO]: [EpicPluginLib] EpicPluginLib v2.4.2 is available. Please update.
[15:06:38] [Craft Scheduler Thread - 41 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[15:06:38] [Craft Scheduler Thread - 7 - ItemJoin/INFO]: [ItemJoin] Hooked into { My Worlds, WorldGuard, PlaceholderAPI, ProtocolLib, Citizens, Vault }
[15:06:38] [Craft Scheduler Thread - 7 - ItemJoin/INFO]: [ItemJoin] 1 Custom item(s) loaded!
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing bear_trap.bbmodel.
[15:06:38] [Craft Scheduler Thread - 42 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] Checking for an update!
[15:06:38] [Craft Scheduler Thread - 43 - Vault/INFO]: [Vault] Checking for Updates ... 
[15:06:38] [Craft Scheduler Thread - 29 - LootChest/INFO]: [LootChest] The plugin seems up to date.
[15:06:38] [Craft Scheduler Thread - 26 - PlaceItemsOnGroundRebuilt/INFO]: [PlaceItemsOnGroundRebuilt] No updates found!
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing combat_dummy.bbmodel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing dark_throne.bbmodel.
[15:06:38] [Craft Scheduler Thread - 42 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] No new versions found for the plugin!
[15:06:38] [Craft Scheduler Thread - 43 - Vault/INFO]: [Vault] No new version available
[15:06:38] [Server thread/INFO]: [Skript] Loading variables...
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing dummy_teemo_blue.bbmodel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing dummy_teemo_red.bbmodel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing dungeon_spike.bbmodel.
[15:06:38] [Server thread/INFO]: [Skript] Loaded 91 variables in 0.0 seconds
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing dungeon_statue.bbmodel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing ethrods.bbmodel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The bone wing1 is translated too far away from the pivot. Maximum translation is 80x80x80. [ 0.0, -6.400000095367432, 82.44297790527344 ]
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The bone wing2 is translated too far away from the pivot. Maximum translation is 80x80x80. [ 0.0, -6.400000095367432, 82.44297790527344 ]
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing ethrods_egg.bbmodel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing ethrods_larva.bbmodel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing explosive_barrel.bbmodel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing forester.bbmodel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing freemob.bbmodel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing health_pack.bbmodel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing kindletronsr.bbmodel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_otter_v2.bbmodel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing quetzalcoatl.bbmodel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing quetzalcoatl_rune.bbmodel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing Rocky.bbmodel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing Shroom.bbmodel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing ShroomInvis.bbmodel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing sintia_the_hydra.bbmodel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing sintia_the_hydra_vfx_crystal.bbmodel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing sintia_the_hydra_vfx_magic_circle.bbmodel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing slime_pit.bbmodel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Importing Teemo.bbmodel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] [Generating assets]
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating bear_trap.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating combat_dummy.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating dark_throne.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating dummy_teemo_blue.
[15:06:38] [Server thread/INFO]: [Skript] Line 4: (dct.sk)
[15:06:38] [Server thread/INFO]:     a living entity cannot be saved, i.e. the contents of the variable {sheep} will be lost when the server stops.
[15:06:38] [Server thread/INFO]:     Line: set {sheep} to last spawned sheep
[15:06:38] [Server thread/INFO]:  
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating dummy_teemo_red.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating dungeon_spike.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating dungeon_statue.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating ethrods.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating ethrods_egg.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating ethrods_larva.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating explosive_barrel.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating forester.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating freemob.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating health_pack.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating kindletronsr.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_otter_v2.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating quetzalcoatl.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating quetzalcoatl_rune.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating rocky.
[15:06:38] [Craft Scheduler Thread - 9 - ItemJoin/INFO]: [ItemJoin] You are up to date!
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating shroom.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating shroominvis.
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:38] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating sintia_the_hydra.
[15:06:39] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:39] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating sintia_the_hydra_vfx_crystal.
[15:06:39] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:39] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating sintia_the_hydra_vfx_magic_circle.
[15:06:39] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:39] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating slime_pit.
[15:06:39] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:39] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Generating teemo.
[15:06:39] [Server thread/INFO]: [Skript] Line 34: (Project.sk)
[15:06:39] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': 0,1,2,3,4,5,6,7,8,9,13,15,16,17,18,22,24,26,27,31,32,33,34,35,36,40,44,45,46,47,48,49,50,51,52,53
[15:06:39] [Server thread/INFO]:     Line: set slot 0,1,2,3,4,5,6,7,8,9,13,15,16,17,18,22,24,26,27,31,32,33,34,35,36,40,44,45,46,47,48,49,50,51,52,53 of (metadata value "guiTaoJin.%uuid of player%" of player) to black stained glass pane named "&8玻璃片"
[15:06:39] [Server thread/INFO]:  
[15:06:39] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] 
[15:06:39] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [A] Resource pack zipped.
[15:06:40] [Server thread/INFO]: [Skript] Line 155: (Project.sk)
[15:06:40] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': 10,11,12,19,20,21,28,29,30,37,38,39
[15:06:40] [Server thread/INFO]:     Line: if type of slot 10,11,12,19,20,21,28,29,30,37,38,39 of event-inventory isn't dirt or sand or air:
[15:06:40] [Server thread/INFO]:  
[15:06:40] [Server thread/INFO]: [Skript] Line 164: (Project.sk)
[15:06:40] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': 10,11,12,19,20,21,28,29,30,37,38,39
[15:06:40] [Server thread/INFO]:     Line: set {_items::*} to slot 10,11,12,19,20,21,28,29,30,37,38,39 of event-inventory
[15:06:40] [Server thread/INFO]:  
[15:06:40] [Server thread/INFO]: [Skript] Line 186: (Project.sk)
[15:06:40] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': 10,11,12,19,20,21,28,29,30,37,38,39
[15:06:40] [Server thread/INFO]:     Line: set slot 10,11,12,19,20,21,28,29,30,37,38,39 of event-inventory to air
[15:06:40] [Server thread/INFO]:  
[15:06:40] [Server thread/INFO]: [Skript] Line 193: (Project.sk)
[15:06:40] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': 10,11,12,19,20,21,28,29,30,37,38,39
[15:06:40] [Server thread/INFO]:     Line: set slot 10,11,12,19,20,21,28,29,30,37,38,39 of event-inventory to air
[15:06:40] [Server thread/INFO]:  
[15:06:40] [Server thread/INFO]: [Skript] Line 202: (Project.sk)
[15:06:40] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': 10,11,12,19,20,21,28,29,30,37,38,39
[15:06:40] [Server thread/INFO]:     Line: set slot 10,11,12,19,20,21,28,29,30,37,38,39 of event-inventory to air
[15:06:40] [Server thread/INFO]:  
[15:06:40] [Server thread/INFO]: [Skript] Line 238: (Project.sk)
[15:06:40] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': 10,11,12,19,20,21,28,29,30,37,38,39,14,23,41,42,43
[15:06:40] [Server thread/INFO]:     Line: set {_items::*} to slot 10,11,12,19,20,21,28,29,30,37,38,39,14,23,41,42,43 of event-inventory
[15:06:40] [Server thread/INFO]:  
[15:06:40] [Server thread/INFO]: [Skript] Line 245: (Project.sk)
[15:06:40] [Server thread/INFO]:     List is missing 'and' or 'or', defaulting to 'and': 0,1,2,3,4,5,6,7,8,9,13,15,16,17,18,22,24,26,27,31,32,33,34,35,36,40,44,45,46,47,48,49,50,51,52,53
[15:06:40] [Server thread/INFO]:     Line: set slot 0,1,2,3,4,5,6,7,8,9,13,15,16,17,18,22,24,26,27,31,32,33,34,35,36,40,44,45,46,47,48,49,50,51,52,53 of (metadata value "guiTaoJin.%uuid of player%" of player) to black stained glass pane named "&8玻璃片"
[15:06:40] [Server thread/INFO]:  
[15:06:40] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[15:06:40] [Server thread/INFO]: [Skript] Loaded 10 scripts with a total of 23 triggers and 7 commands in 2.19 seconds
[15:06:40] [Server thread/INFO]: [Skript] Finished loading.
[15:06:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: discordsrv [1.26.2]
[15:06:40] [Server thread/INFO]: [WildStacker] Loading providers started...
[15:06:40] [Server thread/INFO]: [WildStacker]  - Couldn't find any spawners providers, using default one.
[15:06:40] [Server thread/INFO]: [WildStacker] Using Vault as an economy provider.
[15:06:40] [Server thread/INFO]: [WildStacker] 
[15:06:40] [Server thread/INFO]: [WildStacker] Detected FastAsyncWorldEdit - Disabling ticks limiter for items...
[15:06:40] [Server thread/INFO]: [WildStacker] Loading providers done (Took 36ms)
[15:06:40] [Server thread/INFO]: [PlayMoreSounds] Starting Regions Handler v1.1 addon.
[15:06:40] [Server thread/INFO]: [PlayMoreSounds] Starting WorldGuard Regions v1.0 addon.
[15:06:40] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crates.
[15:06:41] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Mechanic CustomMechanic
[15:06:41] [Server thread/WARN]: [MythicMobs] --| Skill: t1-1 | File: C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Skills\T1S_moran.yml
[15:06:41] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic CUSTOMRANDOMSKILL
[15:06:41] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: customrandomskill{s=t1<&da>1<&da>1:0.8;t1<&da>1<&da>2:1;rnr=true}
[15:06:41] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Mechanic CustomMechanic
[15:06:41] [Server thread/WARN]: [MythicMobs] --| Skill: t1-2 | File: C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Skills\T1S_moran.yml
[15:06:41] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic CUSTOMRANDOMSKILL
[15:06:41] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: customrandomskill{s=t1<&da>2<&da>1:0.8;t1<&da>2<&da>2:1;rnr=true}
[15:06:41] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Mechanic CustomMechanic
[15:06:41] [Server thread/WARN]: [MythicMobs] --| Skill: t1-3 | File: C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Skills\T1S_moran.yml
[15:06:41] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic CUSTOMRANDOMSKILL
[15:06:41] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: customrandomskill{s=t1<&da>3<&da>1:0.8;t1<&da>3<&da>2:1;rnr=true}
[15:06:41] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Mechanic CustomMechanic
[15:06:41] [Server thread/WARN]: [MythicMobs] --| Skill: t1-4 | File: C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Skills\T1S_moran.yml
[15:06:41] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic CUSTOMRANDOMSKILL
[15:06:41] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: customrandomskill{s=t1<&da>4<&da>1:0.8;t1<&da>4<&da>2:1;rnr=true}
[15:06:41] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Mechanic CustomMechanic
[15:06:41] [Server thread/WARN]: [MythicMobs] --| Skill: t1-5 | File: C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Skills\T1S_moran.yml
[15:06:41] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic CUSTOMRANDOMSKILL
[15:06:41] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: customrandomskill{s=t1<&da>5<&da>1:0.8;t1<&da>5<&da>2:1;rnr=true}
[15:06:41] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Drop KingsCrown HEAD
[15:06:41] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Mobs\ExampleMobs.yml
[15:06:41] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[15:06:41] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Drop SkeletonKingSword HAND
[15:06:41] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Mobs\ExampleMobs.yml
[15:06:41] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[15:06:41] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Drop B2B_weapon:0
[15:06:41] [Server thread/WARN]: [MythicMobs] --| File: C:\Users\ming\Desktop\420-2023\plugins\MythicMobs\Mobs\委托\B1.yml
[15:06:41] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[15:06:41] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Drop KingsCrown 1 0.01
[15:06:41] [Server thread/WARN]: [MythicMobs] --| File: ExampleDropTables.yml
[15:06:41] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[15:06:41] [Server thread/WARN]: [MythicMobs] ? Configuration Error in Drop SkeletonKingSword 0.1
[15:06:41] [Server thread/WARN]: [MythicMobs] --| File: ExampleDropTables.yml
[15:06:41] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[15:06:41] [Server thread/WARN]: [ProtocolLib] [PacketFilterManager] Plugin Citizens tried to register listener for unknown packet PLAYER_INFO[PLAY, SERVER, 55, classNames: [net.minecraft.network.protocol.game.PacketPlayOutPlayerInfo, net.minecraft.network.protocol.game.ClientboundPlayerInfoPacket, net.minecraft.network.play.server.SPacketPlayerListItem] (unregistered)] [direction: from SERVER]
[15:06:41] [Server thread/INFO]: [Citizens] Loaded 0 NPCs.
[15:06:41] [Server thread/INFO]: [WildStacker] Starting to load entities...
[15:06:41] [Server thread/INFO]: [WildStacker] Loading entities done! Took 0 ms.
[15:06:41] [Server thread/INFO]: [WildStacker] Starting to load items...
[15:06:41] [Server thread/INFO]: [WildStacker] Loading items done! Took 1 ms.
[15:06:41] [Server thread/INFO]: [WildStacker] Starting to load spawners...
[15:06:41] [Server thread/INFO]: [WildStacker] Loading spawners done! Took 0 ms.
[15:06:41] [Server thread/INFO]: [WildStacker] Starting to load barrels...
[15:06:41] [Server thread/INFO]: [WildStacker] Loading barrels done! Took 1 ms.
[15:06:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: Animations [1.0.5]
[15:06:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: checkitem [2.3.3]
[15:06:41] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion deluxechat due to a missing plugin: DeluxeChat
[15:06:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: localtime [1.2]
[15:06:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.1-R2]
[15:06:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.3]
[15:06:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerlist [2.1]
[15:06:41] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playerstats due to a missing plugin: PlayerStats
[15:06:41] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playertime due to a missing plugin: PlayerTime
[15:06:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.0]
[15:06:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[15:06:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.7.0]
[15:06:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: world [1.2.1]
[15:06:41] [Server thread/INFO]: 10 placeholder hook(s) registered! 7 placeholder hook(s) have an update available.
[15:06:41] [Server thread/INFO]: [BeautyQuests] You are using the latest version of BeautyQuests.
[15:06:41] [Server thread/INFO]: Done (50.024s)! For help, type "help"
[15:06:41] [Server thread/INFO]: Stopping server
[15:06:41] [Server thread/INFO]: [DungeonParties] Disabling DungeonParties v1.0-SNAPSHOT
[15:06:41] [Server thread/INFO]: [AdvancedAchievements] Disabling AdvancedAchievements v7.2.4
[15:06:41] [Server thread/INFO]: [AdvancedAchievements] Remaining requests sent to the database, plugin successfully disabled.
[15:06:41] [Server thread/INFO]: [AnimatedScoreboard] Disabling AnimatedScoreboard v0.2.7
[15:06:41] [Server thread/INFO]: [AquaticCrates] Disabling AquaticCrates v2.3.9
[15:06:41] [Server thread/INFO]: DISABLING
[15:06:41] [Server thread/INFO]: [AuctionMaster] Disabling AuctionMaster v4.1
[15:06:41] [Server thread/INFO]: [BeautyQuests] Disabling BeautyQuests v0.20.1
[15:06:41] [Server thread/INFO]: [WorldGuard] Unregistering session handler fr.skytasul.quests.utils.compatibility.worldguard.WorldGuardEntryHandler
[15:06:41] [Server thread/INFO]: [BloodInMinecraft] Disabling BloodInMinecraft v9.5
[15:06:41] [Server thread/INFO]: ----------------------------------------
[15:06:41] [Server thread/INFO]: BloodInMinecraft By Yanisssch Is Now Off! GoodBye ^^ ;)!
[15:06:41] [Server thread/INFO]: ----------------------------------------
[15:06:41] [Server thread/INFO]: [CaliComp] Disabling CaliComp v1.1
[15:06:41] [Server thread/INFO]: [ChatItem] Disabling ChatItem v2.4.6
[15:06:41] [Server thread/INFO]: [CMIEInjector] Disabling CMIEInjector v1.0.2.3
[15:06:41] [Server thread/INFO]: [DeluxeMenus] Disabling DeluxeMenus v1.13.7-Release
[15:06:41] [Server thread/INFO]: [DeluxeTags] Disabling DeluxeTags v1.8.2-Release
[15:06:41] [Server thread/INFO]: [EnderContainers] Disabling EnderContainers v2.3.0-dev
[15:06:41] [Server thread/INFO]: [EpicCraftingsPlus] Disabling EpicCraftingsPlus v7.18.1
[15:06:41] [Server thread/INFO]: [EpicCraftings+] Has been disabled! Version: 7.18.1
[15:06:41] [Server thread/INFO]: [ExcellentCrates] Disabling ExcellentCrates v4.1.10
[15:06:41] [Server thread/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[15:06:41] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Shutdown initiated...
[15:06:41] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Shutdown completed.
[15:06:41] [Server thread/INFO]: [shit_do] Disabling shit_do v1.0
[15:06:41] [Server thread/INFO]: [NBTAPI] Disabling NBTAPI v2.11.2
[15:06:41] [Server thread/INFO]: [ItemEdit] Disabling ItemEdit v3.0.9
[15:06:41] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion itemedit
[15:06:41] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin ItemEdit was disabled.
[15:06:41] [Server thread/INFO]: [ItemJoin] Disabling ItemJoin v5.2.5-RELEASE-b850
[15:06:41] [Server thread/INFO]: [JonAPI] Disabling JonAPI v1.1-c1
[15:06:41] [Server thread/INFO]: [JonAPI] JonAPI ??成功. Goodbye!   BY JONJS2333
[15:06:41] [Server thread/INFO]: [LastLoginAPI] Disabling LastLoginAPI v1.7.4
[15:06:41] [Server thread/INFO]: [LastLoginAPI] Disabling LastLoginAPI
[15:06:41] [Server thread/INFO]: [LastLoginAPI] LastLoginAPI disabled
[15:06:41] [Server thread/INFO]: [LiteSignIn] Disabling LiteSignIn v1.7.0.0
[15:06:41] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion litesignin
[15:06:41] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin LiteSignIn was disabled.
[15:06:41] [Server thread/INFO]: 每日簽到 >>> Async thread stopped.
[15:06:41] [Server thread/INFO]: 每日簽到 >>> Database SQLite disconnected.
[15:06:41] [Server thread/INFO]: [LootChest] Disabling LootChest v2.3.4
[15:06:41] [Server thread/INFO]: [LootChest] Backed up data file in case of crash
[15:06:41] [Server thread/INFO]: [LPC] Disabling LPC v3.6.0
[15:06:41] [Server thread/INFO]: [MagicCosmetics] Disabling MagicCosmetics v2.2.8
[15:06:41] [Server thread/INFO]: [MCPets] Disabling MCPets v3.0.2
[15:06:41] [Server thread/INFO]: -=-=-=-= MCPets disable =-=-=-=-
[15:06:41] [Server thread/INFO]:           See you soon
[15:06:41] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[15:06:41] [Server thread/INFO]: [Minepacks] Disabling Minepacks v2.4.18
[15:06:42] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Shutdown initiated...
[15:06:42] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Shutdown completed.
[15:06:42] [Server thread/INFO]: [Minepacks]  Minepacks has been disabled.  :( 
[15:06:42] [Server thread/INFO]: [MiniMOTD] Disabling MiniMOTD v2.0.11
[15:06:42] [Server thread/INFO]: [MythicCrucible] Disabling MythicCrucible v1.5.0-SNAPSHOT
[15:06:42] [Server thread/INFO]: [MythicDungeons] Disabling MythicDungeons v1.1.1-SNAPSHOT
[15:06:42] [Server thread/INFO]: [MythicDungeons] [STDOUT] Cleaning up dungeons...
[15:06:42] [Server thread/INFO]: [NoPlugins] Disabling NoPlugins v8.1
[15:06:42] [Server thread/INFO]: [NoPlugins] disabled.
[15:06:42] [Server thread/INFO]: [PlaceItemsOnGroundRebuilt] Disabling PlaceItemsOnGroundRebuilt v1.0.6
[15:06:42] [Server thread/INFO]: [PlayerKits] Disabling PlayerKits v2.26.1
[15:06:42] [Server thread/INFO]: [PlayerKits] Has been disabled! Version: 2.26.1
[15:06:42] [Server thread/INFO]: [PlayMoreSounds] Disabling PlayMoreSounds v4.2
[15:06:42] [Server thread/INFO]: [PlayMoreSounds] Stopping Regions Handler v1.1 addon.
[15:06:42] [Server thread/INFO]: [PlayMoreSounds] Stopping WorldGuard Regions v1.0 addon.
[15:06:42] [Server thread/INFO]: [RotatingHeads2] Disabling RotatingHeads2 v1.0.3
[15:06:42] [Server thread/INFO]: [ServerSigns] Disabling ServerSigns v4.8.0
[15:06:42] [Server thread/INFO]: [ServerSigns] ServerSigns is now disabled.
[15:06:42] [Server thread/INFO]: [SkQuery] Disabling SkQuery v4.1.9
[15:06:42] [Server thread/INFO]: [skript-yaml] Disabling skript-yaml v1.4
[15:06:42] [Server thread/INFO]: [TAB] Disabling TAB v3.3.2
[15:06:42] [Server thread/INFO]: [TAB] Disabled in 1ms
[15:06:42] [Server thread/INFO]: [Themis] Disabling Themis v0.14.6
[15:06:42] [Server thread/INFO]: [TradeSystem] Disabling TradeSystem v2.3.1
[15:06:42] [Server thread/INFO]:  
[15:06:42] [Server thread/INFO]: __________________________________________________________
[15:06:42] [Server thread/INFO]:  
[15:06:42] [Server thread/INFO]:                        TradeSystem [2.3.1]
[15:06:42] [Server thread/INFO]:  
[15:06:42] [Server thread/INFO]: Status:
[15:06:42] [Server thread/INFO]:  
[15:06:42] [Server thread/INFO]: MC-Version: 1.19.4 (R0.1-SNAPSHOT, Paper)
[15:06:42] [Server thread/INFO]:  
[15:06:42] [Server thread/INFO]:   > Cancelling all active trades
[15:06:42] [Server thread/INFO]:  
[15:06:42] [Server thread/INFO]: Finished (1ms)
[15:06:42] [Server thread/INFO]:  
[15:06:42] [Server thread/INFO]: __________________________________________________________
[15:06:42] [Server thread/INFO]:  
[15:06:42] [Server thread/INFO]: [TreasureChestX] Disabling TreasureChestX v1.0
[15:06:42] [Server thread/INFO]: [UltraBar] Disabling UltraBar v2.3.2
[15:06:42] [Server thread/INFO]: [UltraBar] Saving tracked bars to file.
[15:06:42] [Server thread/INFO]: [UltraBar] Save complete!
[15:06:42] [Server thread/INFO]: [UltraBar] UltraBar was successfully disabled!
[15:06:42] [Server thread/INFO]: [WDLCompanion] Disabling WDLCompanion v1.2.0
[15:06:42] [Server thread/INFO]: [WorldGuardExtraFlags] Disabling WorldGuardExtraFlags v4.2.1
[15:06:42] [Server thread/INFO]: [WildStacker] Disabling WildStacker v2023.1
[15:06:42] [Server thread/INFO]: [WildStacker] Cancelling tasks...
[15:06:42] [Server thread/INFO]: [WildStacker] Shutting down stacking service...
[15:06:42] [Server thread/INFO]: [WildStacker] Performing entity&items save
[15:06:42] [Server thread/INFO]: [WildStacker] [STDOUT] Shutting down database executor
[15:06:42] [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).
[15:06:42] [Server thread/INFO]: [WildStacker] Clearing database...
[15:06:42] [Server thread/INFO]: [WildStacker] Stopping executor...
[15:06:42] [Server thread/INFO]: [Sentinel] Disabling Sentinel v2.7.3-SNAPSHOT (build 505)
[15:06:42] [Server thread/INFO]: [Sentinel] Sentinel unloading...
[15:06:42] [Server thread/INFO]: [Sentinel] Sentinel unloaded!
[15:06:42] [Server thread/INFO]: [ItemsAdder] Disabling ItemsAdder v3.3.1
[15:06:42] [Server thread/INFO]: [PCGF_PluginLib] Disabling PCGF_PluginLib v1.0.39-SNAPSHOT
[15:06:43] [Server thread/INFO]: [PCGF_PluginLib]  PCGF_PluginLib v1.0.39-SNAPSHOT has been disabled.  :( 
[15:06:43] [Server thread/INFO]: [EpicPluginLib] Disabling EpicPluginLib v2.2.1
[15:06:43] [Server thread/INFO]: [SkBee] Disabling SkBee v2.7.4
[15:06:43] [Server thread/INFO]: [PlayerPoints] Disabling PlayerPoints v3.2.5
[15:06:43] [Server thread/INFO]: [ClearLag] Disabling ClearLag v3.2.2
[15:06:43] [Server thread/INFO]: [ClearLag] Clearlag is now disabled!
[15:06:43] [Server thread/INFO]: [CoreProtect] Disabling CoreProtect v21.3
[15:06:43] [Server thread/INFO]: [CoreProtect] Finishing up data logging. Please wait...
[15:06:44] [Server thread/INFO]: [CoreProtect] Success! Disabled CoreProtect v21.3
[15:06:44] [Server thread/INFO]: [MMOItems] Disabling MMOItems v6.9.3
[15:06:44] [Server thread/INFO]: [ModelEngine] Disabling ModelEngine vR3.1.7
[15:06:44] [Server thread/INFO]: [LoneLibs] Disabling LoneLibs v1.0.23
[15:06:44] [Server thread/INFO]: [NexEngine] Disabling NexEngine v2.2.10 build-18/04/2023
[15:06:44] [Server thread/INFO]: [MMOCore] Disabling MMOCore v1.11.3
[15:06:44] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.31-SNAPSHOT (build 3043)
[15:06:44] [Server thread/INFO]: [MythicLib] Disabling MythicLib v1.5.2
[15:06:44] [Server thread/INFO]: [MythicMobs] Disabling MythicMobs v5.2.1-fd1d0777
[15:06:44] [Server thread/INFO]: [MythicMobs] Disabling Mythic Mobs...
[15:06:44] [Server thread/INFO]: [MythicMobs] All active settings have been saved.
[15:06:44] [Server thread/INFO]: [MythicMobs] UNLOADED
[15:06:44] [Server thread/INFO]: [CMI] Disabling CMI v9.5.0.8
[15:06:44] [Server thread/INFO]: [Vault][Economy] CMI Economy unhooked.
[15:06:44] [Server thread/INFO]: [CMI] Closed db connections
[15:06:44] [Server thread/INFO]: [CMILib] Disabling CMILib v1.2.5.3
[15:06:44] [Server thread/INFO]: [DiscordSRV] Disabling DiscordSRV v1.26.2
[15:06:44] [DiscordSRV - Shutdown/INFO]: [DiscordSRV] 已儲存已連結帳號,耗時5ms
[15:06:45] [DiscordSRV - Shutdown/INFO]: [DiscordSRV] 伺服器已關閉,耗時624ms
[15:06:45] [Server thread/INFO]: [Skript] Disabling Skript v2.6.4
[15:06:45] [Server thread/INFO]: [GriefPrevention] Disabling GriefPrevention v16.18.1
[15:06:45] [Server thread/INFO]: [GriefPrevention] GriefPrevention disabled.
[15:06:45] [Server thread/INFO]: [My_Worlds] Disabling My_Worlds v1.19.4-v1
[15:06:45] [Server thread/INFO]: [My_Worlds] My_Worlds disabled!
[15:06:45] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.7+216b061
[15:06:45] [Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[15:06:45] [Server thread/INFO]: [BKCommonLib] Disabling BKCommonLib v1.19.4-v1
[15:06:45] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.11.3
[15:06:45] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v5.0.0-SNAPSHOT-b602
[15:06:45] [Server thread/INFO]: [FastAsyncWorldEdit] Disabling FastAsyncWorldEdit v2.6.0
[15:06:45] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[15:06:45] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-CMI
[15:06:45] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.40
[15:06:45] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[15:06:45] [Server thread/INFO]: [LuckPerms] Closing storage...
[15:06:45] [Server thread/INFO]: [LuckPerms] Goodbye!
[15:06:45] [Server thread/INFO]: Saving players
[15:06:45] [Server thread/INFO]: Saving worlds
[15:06:45] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld
[15:06:45] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[15:06:45] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[15:06:45] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world'
[15:06:45] [Server thread/INFO]: [ChunkHolderManager] Saved 197 block chunks, 197 entity chunks, 0 poi chunks in world 'world' in 0.49s
[15:06:45] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[15:06:45] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_nether]'/minecraft:the_nether
[15:06:45] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_nether'
[15:06:45] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_nether'
[15:06:45] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_nether'
[15:06:45] [Server thread/INFO]: [ChunkHolderManager] Saved 172 block chunks, 172 entity chunks, 0 poi chunks in world 'world_nether' in 0.16s
[15:06:45] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[15:06:45] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_the_end]'/minecraft:the_end
[15:06:45] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_the_end'
[15:06:45] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_the_end'
[15:06:45] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_the_end'
[15:06:46] [Server thread/INFO]: [ChunkHolderManager] Saved 245 block chunks, 245 entity chunks, 0 poi chunks in world 'world_the_end' in 0.07s
[15:06:46] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[15:06:46] [Server thread/INFO]: Saving chunks for level 'ServerLevel[IntroWorld]'/minecraft:introworld
[15:06:46] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'IntroWorld'
[15:06:46] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'IntroWorld'
[15:06:46] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'IntroWorld'
[15:06:46] [Server thread/INFO]: [ChunkHolderManager] Saved 147 block chunks, 147 entity chunks, 0 poi chunks in world 'IntroWorld' in 0.06s
[15:06:46] [Server thread/INFO]: ThreadedAnvilChunkStorage (IntroWorld): All chunks are saved
[15:06:46] [Server thread/INFO]: Saving chunks for level 'ServerLevel[spawnWorld_the_end]'/minecraft:spawnworld_the_end
[15:06:46] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'spawnWorld_the_end'
[15:06:46] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'spawnWorld_the_end'
[15:06:46] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'spawnWorld_the_end'
[15:06:46] [Server thread/INFO]: [ChunkHolderManager] Saved 4 block chunks, 4 entity chunks, 0 poi chunks in world 'spawnWorld_the_end' in 0.01s
[15:06:46] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[15:06:46] [Server thread/INFO]: Saving chunks for level 'ServerLevel[spawnWorld_nether]'/minecraft:spawnworld_nether
[15:06:46] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'spawnWorld_nether'
[15:06:46] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'spawnWorld_nether'
[15:06:46] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'spawnWorld_nether'
[15:06:46] [Server thread/INFO]: [ChunkHolderManager] Saved 1 block chunks, 1 entity chunks, 0 poi chunks in world 'spawnWorld_nether' in 0.00s
[15:06:46] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[15:06:46] [Server thread/INFO]: Saving chunks for level 'ServerLevel[spawnWorld]'/minecraft:spawnworld
[15:06:46] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'spawnWorld'
[15:06:46] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'spawnWorld'
[15:06:46] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'spawnWorld'
[15:06:46] [Server thread/INFO]: [ChunkHolderManager] Saved 1 block chunks, 1 entity chunks, 0 poi chunks in world 'spawnWorld' in 0.01s
[15:06:46] [Server thread/INFO]: ThreadedAnvilChunkStorage (spawnWorld): All chunks are saved
[15:06:46] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved
[15:06:46] [Server thread/INFO]: Flushing Chunk IO
[15:06:46] [Server thread/INFO]: Closing Thread Pool
[15:06:46] [Server thread/INFO]: Closing Server