Paste #122465: LOGS

Date: 2024/05/05 09:05:37 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
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731


[17:56:46] [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'
[17:56:47] [ServerMain/INFO]: Loaded 7 recipes
[17:56:48] [Server thread/INFO]: Starting minecraft server version 1.19.4
[17:56:48] [Server thread/INFO]: Loading properties
[17:56:48] [Server thread/INFO]: This server is running Paper version git-Paper-550 (MC: 1.19.4) (Implementing API version 1.19.4-R0.1-SNAPSHOT) (Git: 483368e on ver/1.19.4)
[17:56:48] [Server thread/INFO]: Server Ping Player Sample Count: 12
[17:56:48] [Server thread/INFO]: Using 4 threads for Netty based IO
[17:56:48] [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
[17:56:48] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[17:56:48] [Server thread/INFO]: Default game type: SURVIVAL
[17:56:48] [Server thread/INFO]: Generating keypair
[17:56:48] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25566
[17:56:48] [Server thread/INFO]: Using epoll channel type
[17:56:48] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[17:56:48] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 2 libraries... please wait
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loading 1 libraries... please wait
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpmime/4.5.14/httpmime-4.5.14.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [SuperiorSkyblock2] Loading 1 libraries... please wait
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [SuperiorSkyblock2] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [SuperiorSkyblock2] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [SuperiorSkyblock2] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [SuperiorSkyblock2] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [SuperiorSkyblock2] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[17:56:49] [Server thread/INFO]: [SpigotLibraryLoader] [SuperiorSkyblock2] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[17:56:51] [Server thread/INFO]: [WolfyUtilities] NMS Version: v1_19_R3
[17:56:51] [Server thread/INFO]: [me.wolfyscript.lib.org.reflections.Reflections] Reflections took 337 ms to scan 1 urls, producing 905 keys and 3616 values
[17:56:51] [Server thread/INFO]: [CustomCrafting] NMS Version: v1_19_R3
[17:56:52] [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!
[17:56:55] [Server thread/WARN]: Legacy plugin Animotion v1.0_i_patch3 does not specify an api-version.
[17:56:55] [Server thread/INFO]: [STDOUT] [QTlQev4FGCNhjSbp]  Downloaded from https://directleaks.net 
[17:56:55] [Server thread/WARN]: Legacy plugin bAnnouncer v1.2.9 does not specify an api-version.
[17:56:55] [Server thread/WARN]: Legacy plugin aAntiSpam v1.2 does not specify an api-version.
[17:56:55] [Server thread/WARN]: Legacy plugin CommandNPC v1.9.1 does not specify an api-version.
[17:56:55] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.10.0
[17:56:55] [Server thread/INFO]: [ViaVersion] ViaVersion 4.10.0 is now loaded. Registering protocol transformers and injecting...
[17:56:56] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[17:56:56] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[17:56:56] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.108
[17:56:56] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[17:56:56] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.9.3-SNAPSHOT-752;3310686
[17:56:58] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@1b0e29e7]
[17:56:58] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.2.1-SNAPSHOT-685
[17:56:59] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.8+33cdb4a
[17:56:59] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.5
[17:56:59] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3277)
[17:56:59] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.13.2
[17:56:59] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.45
[17:56:59] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.3
[17:56:59] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.1
[17:56:59] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.8.5
[17:56:59] [Server thread/INFO]: [Vulcan] Loading server plugin Vulcan v2.7.9
[17:56:59] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[17:56:59] [Server thread/INFO]: [ProHolographicDisplays] Loading server plugin ProHolographicDisplays v3.0.4-SNAPSHOT
[17:56:59] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.2
[17:56:59] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v3.2.2
[17:56:59] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v3.6.3-beta-12
[17:56:59] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.15
[17:56:59] [Server thread/INFO]: [WildStacker] Loading server plugin WildStacker v2023.3
[17:56:59] [Server thread/INFO]: [ShopGUIPlus] Loading server plugin ShopGUIPlus v1.95.1
[17:56:59] [Server thread/INFO]: [SuperiorSkyblock2] Loading server plugin SuperiorSkyblock2 v2023.3
[17:56:59] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[17:56:59] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.6.1-${CI_COMMIT_SHORT_SHA}
[17:56:59] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[17:57:00] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[17:57:00] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.4.4.6
[17:57:00] [Server thread/INFO]: [WolfyUtilities] Loading server plugin WolfyUtilities v4.16.14.1
[17:57:00] [Server thread/INFO]: [WolfyUtilities] Generate Functional Recipes
[17:57:00] [Server thread/INFO]: [WolfyUtilities] Register JSON de-/serializers
[17:57:00] [Server thread/INFO]: [WolfyUtilities] Register JSON Operators
[17:57:00] [Server thread/INFO]: [WolfyUtilities] Register JSON Value Providers
[17:57:00] [Server thread/INFO]: [WolfyUtilities] Register CustomItem NBT Checks
[17:57:00] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Actions
[17:57:00] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Events
[17:57:00] [Server thread/INFO]: [WolfyUtilities] Register Particle Animators
[17:57:00] [Server thread/INFO]: [WolfyUtilities] Register Particle Shapes
[17:57:00] [Server thread/INFO]: [WolfyUtilities] Register Particle Timers
[17:57:00] [Server thread/INFO]: [WolfyUtilities] Register Custom Block Data
[17:57:00] [Server thread/INFO]: [WolfyUtilities] Register Custom Player Data
[17:57:00] [Server thread/INFO]: [WolfyUtilities] Register NBT Query Nodes
[17:57:00] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.2.2
[17:57:00] [Server thread/INFO]: [WildChests] Loading server plugin WildChests v2023.3
[17:57:00] [Server thread/INFO]: [RHPhantomControl] Loading server plugin RHPhantomControl v1.18_R2
[17:57:00] [Server thread/INFO]: [SkyblockPlus] Loading server plugin SkyblockPlus v1.0.3
[17:57:00] [Server thread/INFO]: [ArmorStandTools] Loading server plugin ArmorStandTools v4.4.4
[17:57:00] [Server thread/INFO]: [ArmorStandTools] Registered custom WorldGuard flag: ast
[17:57:00] [Server thread/INFO]: [Multiverse-Portals] Loading server plugin Multiverse-Portals v4.2.3
[17:57:00] [Server thread/INFO]: [SimpleScore] Loading server plugin SimpleScore v3.12.4
[17:57:00] [Server thread/INFO]: [CustomCrafting] Loading server plugin CustomCrafting v4.16.8.5
[17:57:00] [Server thread/INFO]: [CustomCrafting] WolfyUtils API: v4.16.14.1
[17:57:00] [Server thread/INFO]: [CustomCrafting] CustomCrafting: v4.16.8.5
[17:57:00] [Server thread/INFO]: [CustomCrafting] Environment   : PROD
[17:57:00] [Server thread/INFO]: [CustomCrafting] Registering CustomItem Data
[17:57:00] [Server thread/INFO]: [CustomCrafting] Registering Custom Block Data
[17:57:00] [Server thread/INFO]: [CustomCrafting] Registering Result Extensions
[17:57:00] [Server thread/INFO]: [CustomCrafting] Registering Result Merge Adapters
[17:57:00] [Server thread/INFO]: [CustomCrafting] Registering Recipe Conditions
[17:57:00] [Server thread/INFO]: [CustomCrafting] Registering Recipe Types
[17:57:00] [Server thread/INFO]: [CustomCrafting] Registering Anvil Recipe Tasks
[17:57:00] [Server thread/INFO]: [CustomCrafting] Registering Type Registries
[17:57:00] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.2
[17:57:00] [Server thread/INFO]: [CrazyEnvoys] Loading server plugin CrazyEnvoys v1.4.20.5
[17:57:00] [Server thread/INFO]: [RankSystem] Loading server plugin RankSystem v1.3
[17:57:00] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.20.1
[17:57:00] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.13.6-Release
[17:57:00] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[17:57:00] [Server thread/INFO]: [BungeeGuard] Loading server plugin BungeeGuard v1.3-SNAPSHOT
[17:57:00] [Server thread/INFO]: [ServerBooster] Loading server plugin ServerBooster v1.1.6-r3
[17:57:00] [Server thread/INFO]: [MythicCrucible] Loading server plugin MythicCrucible v2.0.0-SNAPSHOT
[17:57:00] [Server thread/INFO]: [KeepChunks] Loading server plugin KeepChunks v1.7.1
[17:57:00] [Server thread/INFO]: [AdventCalendar] Loading server plugin AdventCalendar v1.2.8
[17:57:00] [Server thread/INFO]: [CitizensText] Loading server plugin CitizensText v1.2
[17:57:00] [Server thread/INFO]: [Animotion] Loading server plugin Animotion v1.0_i_patch3
[17:57:00] [Server thread/INFO]: [AdvancedCrates] Loading server plugin AdvancedCrates v3.9.28
[17:57:00] [Server thread/INFO]: [TempFly] Loading server plugin TempFly v3.1.7
[17:57:00] [Server thread/INFO]: [bAnnouncer] Loading server plugin bAnnouncer v1.2.9
[17:57:00] [Server thread/INFO]: [TitleManager] Loading server plugin TitleManager v2.3.6
[17:57:00] [Server thread/INFO]: [aAntiSpam] Loading server plugin aAntiSpam v1.2
[17:57:00] [Server thread/INFO]: [ChatReaction] Loading server plugin ChatReaction v1.8.0
[17:57:00] [Server thread/INFO]: [OldCombatMechanics] Loading server plugin OldCombatMechanics v2.0.0
[17:57:00] [Server thread/INFO]: [ImageMaps] Loading server plugin ImageMaps v1.0.10
[17:57:00] [Server thread/INFO]: [CommandNPC] Loading server plugin CommandNPC v1.9.1
[17:57:00] [Server thread/INFO]: [BlockRegen] Loading server plugin BlockRegen v3.10.5
[17:57:00] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[17:57:00] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.1.4
[17:57:00] [Server thread/INFO]: [WildTools] Loading server plugin WildTools v2023.3
[17:57:00] [Server thread/INFO]: [AdvancedPortals] Loading server plugin AdvancedPortals v0.9.3
[17:57:00] [Server thread/INFO]: [PluginManager] Loading server plugin PluginManager v2.8.1
[17:57:00] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.4
[17:57:00] [Server thread/INFO]: [DiscordEventWebhooks] Loading server plugin DiscordEventWebhooks v1.49
[17:57:00] [Server thread/INFO]: [CommandPanels] Loading server plugin CommandPanels v3.19.1.3
[17:57:00] [Server thread/INFO]: [WildLoaders] Loading server plugin WildLoaders v2023.3
[17:57:00] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.0.9
[17:57:00] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[17:57:00] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.108
[17:57:01] [Server thread/INFO]:         __    
[17:57:01] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.108
[17:57:01] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[17:57:01] [Server thread/INFO]: 
[17:57:01] [Server thread/INFO]: [LuckPerms] Loading configuration...
[17:57:01] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[17:57:02] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[17:57:02] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[17:57:03] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[17:57:04] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[17:57:04] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[17:57:04] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 4374ms)
[17:57:04] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[17:57:04] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[17:57:04] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[17:57:04] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[17:57:04] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[17:57:04] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.9.3-SNAPSHOT-752;3310686
[17:57:05] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[17:57:05] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[17:57:05] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[17:57:05] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[17:57:05] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R3.PaperweightFaweAdapter as the Bukkit adapter
[17:57:06] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.2.1-SNAPSHOT-685
[17:57:06] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.45
[17:57:06] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.3
[17:57:06] [Server thread/INFO]: [WolfyUtilities] Enabling WolfyUtilities v4.16.14.1
[17:57:06] [Server thread/INFO]: [WolfyUtilities] Minecraft version: 1.19.4
[17:57:06] [Server thread/INFO]: [WolfyUtilities] WolfyUtils version: 4.16.14.1
[17:57:06] [Server thread/INFO]: [WolfyUtilities] Environment: PROD
[17:57:06] [Server thread/INFO]: [WolfyUtilities] Loading Plugin integrations: 
[17:57:06] [Server thread/INFO]: [WolfyUtilities]  - MythicMobs
[17:57:06] [Server thread/INFO]: [WolfyUtilities]  - PlaceholderAPI
[17:57:06] [Server thread/INFO]: [WolfyUtilities]  - ItemsAdder
[17:57:06] [Server thread/INFO]: [WolfyUtilities] Create & Init Plugin integrations: 
[17:57:06] [Server thread/INFO]: [WolfyUtilities] Register API references
[17:57:06] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 3 build(s) out of date.
You are running build 752, the latest version is build 755.
Update at https://www.spigotmc.org/resources/13932/
[17:57:06] [Server thread/INFO]: [WolfyUtilities] Loading stored Custom Items
[17:57:06] [Server thread/INFO]: [WolfyUtilities] Loading Creative Mode Tabs
[17:57:06] [Server thread/INFO]: [BungeeGuard] Enabling BungeeGuard v1.3-SNAPSHOT
[17:57:06] [Server thread/INFO]: [BungeeGuard] Using Paper's PlayerHandshakeEvent to listen for connections.
[17:57:06] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[17:57:06] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[17:57:06] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[17:57:06] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[17:57:06] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[17:57:06] [Server thread/INFO]: Preparing level "world"
[17:57:06] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[17:57:06] [Server thread/INFO]: Time elapsed: 197 ms
[17:57:06] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.10.0
[17:57:06] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19.4 (762)
[17:57:07] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: ViaVersion
[17:57:07] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.8+33cdb4a
[17:57:07] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[17:57:07] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[17:57:07] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[17:57:07] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[17:57:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[17:57:07] [Server thread/INFO]: [WorldGuard] Loading region data...
[17:57:07] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.5
[17:57:08] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[17:57:08] [Server thread/INFO]: [WolfyUtilities] init PAPI event
[17:57:08] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for PlaceholderAPI
[17:57:08] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3277)
[17:57:08] [Server thread/INFO]: [Citizens] Loading external libraries
[17:57:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[17:57:08] [Server thread/INFO]: [Citizens] Chargement de la gestion de l'économie via Vault.
[17:57:08] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.13.2
[17:57:09] [Server thread/INFO]: [LiteBans] Using system locale (en)
[17:57:09] [Server thread/INFO]: [LiteBans] Loaded 2 templates from templates.yml!
[17:57:09] [Server thread/INFO]: [LiteBans] Loaded 0 template groups from templates.yml!
[17:57:09] [Server thread/INFO]: [LiteBans] Loading SQL driver: h2 1.4.197 (org.h2.Driver)
[17:57:09] [Server thread/INFO]: [LiteBans] Connecting to database...
[17:57:09] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[17:57:09] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[17:57:09] [Server thread/INFO]: [LiteBans] Connected to H2 database successfully (340.6 ms).
[17:57:09] [Server thread/INFO]: [LiteBans] Database connection fully initialized (345.9 ms).
[17:57:09] [Server thread/INFO]: [LiteBans] v2.13.2 enabled. Startup took 569 ms.
[17:57:09] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.1
[17:57:10] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[17:57:10] [Server thread/INFO]: [Essentials] No kits found to migrate.
[17:57:10] [Server thread/INFO]: [Essentials] Loaded 39094 items from items.json.
[17:57:10] [Server thread/INFO]: [Essentials] Using locale fr
[17:57:10] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[17:57:10] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[17:57:10] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[17:57:10] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[17:57:10] [Server thread/INFO]: [Skript] Enabling Skript v2.8.5
[17:57:11] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] You're currently running the latest stable version of Skript.
[17:57:15] [Server thread/INFO]: [Skript] Loaded 151084 aliases in 5202ms
[17:57:16] [Server thread/INFO]: [Skript]  ~ created by & © Peter GĂŒttinger aka Njol ~
[17:57:16] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.7.9
[17:57:17] [Server thread/INFO]: [Vulcan] Server Version: 1.19.4 detected!
[17:57:17] [Server thread/INFO]: [Vulcan] MythicMobs found. Enabling hook!
[17:57:17] [Server thread/INFO]: [Vulcan] BStats enabled!
[17:57:17] [Server thread/INFO]: [Vulcan] Registered MythicMobs listener!
[17:57:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: Vulcan [2.7.9]
[17:57:17] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[17:57:17] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[17:57:17] [Server thread/INFO]: [Votifier] Loaded token for website: default
[17:57:17] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[17:57:17] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[17:57:17] [Server thread/INFO]: [ProHolographicDisplays] Enabling ProHolographicDisplays v3.0.4-SNAPSHOT
[17:57:17] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0%0]:8192.
[17:57:17] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.2
[17:57:17] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[17:57:17] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[17:57:17] [Server thread/INFO]: --------------------
[17:57:17] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[17:57:17] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[17:57:17] [Server thread/INFO]: --------------------
[17:57:17] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[17:57:17] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[17:57:17] [Server thread/INFO]: [ClearLag] Loading modules...
[17:57:17] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (net.minecraft.server.v1_19_R3.MinecraftServer)
[17:57:17] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[17:57:17] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[17:57:17] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[17:57:17] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v3.6.3-beta-12
[17:57:17] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[17:57:17] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R3' loaded!
[17:57:18] [Server thread/INFO]: [ItemsAdder] 
  ___  ___        __        __   __   ___  __      ItemsAdder 3.6.3-beta-12
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     LoneLibs 1.0.45
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Paper git-Paper-550 (MC: 1.19.4)
                                               
[17:57:18] [Server thread/INFO]: [ItemsAdder] Registered Citizens NPC Trait: customentity
[17:57:18] [Server thread/INFO]: [ItemsAdder] Registered Skript API
[17:57:18] [Server thread/INFO]: [ItemsAdder] [Host] Starting self-host webserver on port: 25567
[17:57:18] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.15
[17:57:18] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[17:57:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[17:57:18] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[17:57:19] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[17:57:19] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.15
[17:57:19] [Server thread/INFO]: [WildStacker] Enabling WildStacker v2023.3
[17:57:19] [Server thread/INFO]: [WildStacker] ******** ENABLE START ********
[17:57:19] [Server thread/INFO]: [WildStacker] Loading configuration started...
[17:57:19] [Server thread/INFO]: [WildStacker]  - Stacking drops is enabled
[17:57:19] [Server thread/INFO]: [WildStacker]  - Stacking entities is enabled
[17:57:19] [Server thread/INFO]: [WildStacker]  - Stacking spawners is enabled
[17:57:19] [Server thread/INFO]: [WildStacker]  - Stacking barrels is enabled
[17:57:19] [Server thread/INFO]: [WildStacker] Loading configuration done (Took 57ms)
[17:57:19] [Server thread/INFO]: [WildStacker] Loading loot-tables started...
[17:57:19] [Server thread/INFO]: [WildStacker] Loading loot-tables done (Took 15ms)
[17:57:19] [Server thread/INFO]: [WildStacker] Loading messages started...
[17:57:19] [Server thread/INFO]: [WildStacker]  - Found 69 messages in lang.yml.
[17:57:19] [Server thread/INFO]: [WildStacker] Loading messages done (Took 3ms)
[17:57:19] [Server thread/INFO]: [WildStacker] ******** ENABLE DONE ********
[17:57:19] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.95.1
[17:57:19] [Server thread/INFO]: [ShopGUIPlus] [STDOUT] [Spigotunlocked.com] - COSMO
[17:57:19] [Server thread/WARN]: Nag author(s): '[brc]' of 'ShopGUIPlus v1.95.1' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[17:57:19] [Server thread/INFO]: [SuperiorSkyblock2] Enabling SuperiorSkyblock2 v2023.3
[17:57:20] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module rhino-engine...
[17:57:20] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module rhino-engine (Took 12ms)
[17:57:20] [Server thread/INFO]: Preparing start region for dimension minecraft:superiorworld
[17:57:20] [Server thread/INFO]: Time elapsed: 433 ms
[17:57:20] [Server thread/INFO]: [WorldGuard] (SuperiorWorld) TNT ignition is PERMITTED.
[17:57:20] [Server thread/INFO]: [WorldGuard] (SuperiorWorld) Lighters are PERMITTED.
[17:57:20] [Server thread/INFO]: [WorldGuard] (SuperiorWorld) Lava fire is PERMITTED.
[17:57:20] [Server thread/INFO]: [WorldGuard] (SuperiorWorld) Fire spread is UNRESTRICTED.
[17:57:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SuperiorWorld'
[17:57:20] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module bank...
[17:57:20] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module bank (Took 6ms)
[17:57:20] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module missions...
[17:57:20] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_l_3
[17:57:21] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_8_1
[17:57:21] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_m_1
[17:57:21] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_l_2
[17:57:21] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_8_3
[17:57:21] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_a_3
[17:57:21] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_n_2
[17:57:21] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_9_3
[17:57:21] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_i_1
[17:57:21] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_1_3
[17:57:22] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_k_1
[17:57:22] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_3_2
[17:57:22] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_f_1
[17:57:22] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_8_2
[17:57:22] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_c_1
[17:57:22] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_n_1
[17:57:22] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_4_1
[17:57:22] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_7_3
[17:57:22] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_m_3
[17:57:22] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_h_1
[17:57:23] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_p_3
[17:57:23] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_i_2
[17:57:23] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_5_2
[17:57:23] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_1_2
[17:57:23] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_f_2
[17:57:23] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_h_2
[17:57:23] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_2_2
[17:57:23] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_9_1
[17:57:23] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_k_2
[17:57:23] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_d_1
[17:57:23] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_l_1
[17:57:23] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_i_3
[17:57:24] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_5_3
[17:57:24] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_c_2
[17:57:24] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_2_3
[17:57:24] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_k_3
[17:57:24] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_h_3
[17:57:24] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_j_3
[17:57:24] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_m_2
[17:57:24] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_4_3
[17:57:24] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_j_1
[17:57:24] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_r_3
[17:57:24] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_2_1
[17:57:24] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_a_1
[17:57:24] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_1_1
[17:57:25] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_b_1
[17:57:25] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_n_3
[17:57:25] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_f_3
[17:57:25] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_r_2
[17:57:25] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_7_2
[17:57:25] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_o_3
[17:57:25] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_g_3
[17:57:25] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_e_1
[17:57:25] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_3_1
[17:57:25] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_5_1
[17:57:25] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_7_1
[17:57:25] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_b_2
[17:57:26] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_4_2
[17:57:26] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_j_2
[17:57:26] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_a_2
[17:57:26] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_b_3
[17:57:26] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_g_1
[17:57:26] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_o_2
[17:57:26] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_6_3
[17:57:26] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_p_2
[17:57:26] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_p_1
[17:57:26] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_e_2
[17:57:26] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_6_2
[17:57:26] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_9_2
[17:57:26] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_c_3
[17:57:26] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_d_2
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_3_3
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_6_1
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_e_3
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_o_1
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_g_2
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_r_1
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission miner_d_3
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_n_94
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_3_a4
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_b_45
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_m_91
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_1_4
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_8_32
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_k_80
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_d_52
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_9_33
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_6_21
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_g_67
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_6_22
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_n_92
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_l_85
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_g_65
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_9_36
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_4_15
[17:57:27] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_i_75
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_4_16
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_4_13
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_i_72
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_m_89
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_3_a1
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_a_39
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_e_57
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_c_50
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_6_24
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_5_17
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_k_83
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_b_42
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_o_99
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_c_51
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_1_2
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_k_81
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_n_93
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_5_18
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_o_96
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_a_45
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_5_20
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_j_76
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_h_69
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_2_5
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_l_84
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_1_1
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_2_8
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_3_a2
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_a_42
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_i_74
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_b_43
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_3_a3
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_o_97
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_d_53
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_p_100
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_8_29
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_4_14
[17:57:28] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_d_54
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_h_71
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_l_87
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_2_6
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_7_27
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_h_68
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_8_31
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_e_56
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_7_25
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_c_49
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_h_70
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_a_40
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_m_90
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_a_44
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_n_95
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_7_26
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_j_77
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_k_82
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_c_48
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_b_44
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_p_103
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_p_102
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_e_59
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_g_64
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_a_41
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_f_63
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_a_46
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_a_43
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_a_38
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_o_98
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_2_7
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_9_35
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_f_62
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_8_30
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_c_47
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_m_88
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_j_78
[17:57:29] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_6_23
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_p_101
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_l_86
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_f_61
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_g_66
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_d_55
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_5_19
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_i_73
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_7_28
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_a_37
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_j_79
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_1_3
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_f_60
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_e_58
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_9_34
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission slayer_b_46
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_f_2
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_3_2
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_6_3
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_4_3
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_a_3
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_f_1
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_6_2
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_9_2
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_a_1
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_5_3
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_9_3
[17:57:30] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_9_1
[17:57:31] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_e_2
[17:57:31] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_b_3
[17:57:31] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_1_1
[17:57:31] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_2_2
[17:57:31] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_c_2
[17:57:31] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_4_1
[17:57:31] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_a_2
[17:57:31] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_1_3
[17:57:31] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_7_1
[17:57:31] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_d_3
[17:57:31] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_1_2
[17:57:31] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_d_1
[17:57:31] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_b_2
[17:57:31] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_b_1
[17:57:31] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_g_2
[17:57:31] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_f_3
[17:57:31] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_c_3
[17:57:31] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_e_1
[17:57:31] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_5_2
[17:57:31] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_8_2
[17:57:31] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_7_2
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_6_1
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_2_3
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_g_1
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_c_1
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_5_1
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_3_1
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_d_2
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_8_3
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_2_1
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_e_3
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_3_3
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_7_3
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_4_2
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_8_1
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission farmer_g_3
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_1_3
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_4_2
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_1_2
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_3_4
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_3_3
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_4_4
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_3_1
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_5_1
[17:57:32] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_2_3
[17:57:33] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_4_1
[17:57:33] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_2_1
[17:57:33] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_3_2
[17:57:33] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_2_2
[17:57:33] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_1_1
[17:57:33] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_4_3
[17:57:33] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_1_4
[17:57:33] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission fisherman_2_4
[17:57:33] [Server thread/WARN]: Plugin 'SuperiorSkyblock2' is creating timing 'Plugin: SuperiorSkyblock2 v2023.3 Event: DynamicRegisteredListener::IslandCreateEvent(IslandCreateEvent)' - this is deprecated behavior, please report it to the authors: Ome_R
[17:57:33] [Server thread/WARN]: Plugin 'SuperiorSkyblock2' is creating timing 'Plugin: SuperiorSkyblock2 v2023.3 Event: DynamicRegisteredListener::IslandJoinEvent(IslandJoinEvent)' - this is deprecated behavior, please report it to the authors: Ome_R
[17:57:33] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission first-island
[17:57:33] [Server thread/WARN]: Plugin 'SuperiorSkyblock2' is creating timing 'Plugin: SuperiorSkyblock2 v2023.3 Event: DynamicRegisteredListener::IslandWorthUpdateEvent(IslandWorthUpdateEvent)' - this is deprecated behavior, please report it to the authors: Ome_R
[17:57:33] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission 500-worth
[17:57:33] [Server thread/WARN]: Plugin 'SuperiorSkyblock2' is creating timing 'Plugin: SuperiorSkyblock2 v2023.3 Event: DynamicRegisteredListener::IslandInviteEvent(IslandInviteEvent)' - this is deprecated behavior, please report it to the authors: Ome_R
[17:57:33] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission first-invite
[17:57:33] [Server thread/WARN]: Plugin 'SuperiorSkyblock2' is creating timing 'Plugin: SuperiorSkyblock2 v2023.3 Event: DynamicRegisteredListener::IslandWorthUpdateEvent(IslandWorthUpdateEvent)' - this is deprecated behavior, please report it to the authors: Ome_R
[17:57:33] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission 10k-worth
[17:57:33] [Server thread/WARN]: Plugin 'SuperiorSkyblock2' is creating timing 'Plugin: SuperiorSkyblock2 v2023.3 Event: DynamicRegisteredListener::IslandWorthUpdateEvent(IslandWorthUpdateEvent)' - this is deprecated behavior, please report it to the authors: Ome_R
[17:57:33] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission 1k-worth
[17:57:33] [Server thread/WARN]: Plugin 'SuperiorSkyblock2' is creating timing 'Plugin: SuperiorSkyblock2 v2023.3 Event: DynamicRegisteredListener::IslandWorthUpdateEvent(IslandWorthUpdateEvent)' - this is deprecated behavior, please report it to the authors: Ome_R
[17:57:33] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission 5k-worth
[17:57:33] [Server thread/WARN]: Plugin 'SuperiorSkyblock2' is creating timing 'Plugin: SuperiorSkyblock2 v2023.3 Event: DynamicRegisteredListener::IslandJoinEvent(IslandJoinEvent)' - this is deprecated behavior, please report it to the authors: Ome_R
[17:57:33] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission add-member
[17:57:33] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_2_2
[17:57:33] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_3_2
[17:57:33] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_8_1
[17:57:33] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_4_1
[17:57:33] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_3_3
[17:57:33] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_8_2
[17:57:33] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_4_3
[17:57:33] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_7_1
[17:57:34] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_5_1
[17:57:34] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_1_2
[17:57:34] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_2_1
[17:57:34] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_6_1
[17:57:34] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_5_2
[17:57:34] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_6_3
[17:57:34] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_9_3
[17:57:34] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_a_3
[17:57:34] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_6_2
[17:57:34] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_9_2
[17:57:34] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_a_2
[17:57:34] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_5_3
[17:57:34] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_8_3
[17:57:34] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_4_2
[17:57:34] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_2_3
[17:57:34] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_3_1
[17:57:34] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_9_1
[17:57:35] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_a_1
[17:57:35] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_1_3
[17:57:35] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_7_2
[17:57:35] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_1_1
[17:57:35] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission digger_7_3
[17:57:35] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_3_1
[17:57:35] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_6_2
[17:57:35] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_4_2
[17:57:35] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_4_1
[17:57:35] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_3_3
[17:57:35] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_7_3
[17:57:35] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_1_2
[17:57:35] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_1_3
[17:57:35] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_5_1
[17:57:35] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_6_1
[17:57:35] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_1_1
[17:57:36] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_8_2
[17:57:36] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_7_1
[17:57:36] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_8_3
[17:57:36] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_7_2
[17:57:36] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_5_3
[17:57:36] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_6_3
[17:57:36] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_2_2
[17:57:36] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_2_3
[17:57:36] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_3_2
[17:57:36] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_2_1
[17:57:36] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_8_1
[17:57:36] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_4_3
[17:57:36] [Server thread/INFO]: [SuperiorSkyblock2] Registered mission woodcutter_5_2
[17:57:36] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module missions (Took 15890ms)
[17:57:36] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module generators...
[17:57:36] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module generators (Took 2ms)
[17:57:36] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module upgrades...
[17:57:36] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module upgrades (Took 9ms)
[17:57:37] [Server thread/INFO]: [SuperiorSkyblock2] Loading messages started...
[17:57:37] [Server thread/INFO]: [SuperiorSkyblock2]  - Found 698 messages in the language files.
[17:57:37] [Server thread/INFO]: [SuperiorSkyblock2] Loading messages done (Took 189ms)
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic mycel_the_end.schematic (DefaultSchematicParser)
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic desert_the_end.schematic (DefaultSchematicParser)
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic desert_nether.schematic (DefaultSchematicParser)
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic neige.schematic (DefaultSchematicParser)
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic mycel_nether.schematic (DefaultSchematicParser)
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic Sakura.schematic (DefaultSchematicParser)
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic taiga.schematic (DefaultSchematicParser)
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic normal_nether.schematic (DefaultSchematicParser)
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic normal_the_end.schematic (DefaultSchematicParser)
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic mangrove.schematic (DefaultSchematicParser)
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic mycel.schematic (DefaultSchematicParser)
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic normal.schematic (DefaultSchematicParser)
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic desert.schematic (DefaultSchematicParser)
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-ban.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-ban.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-ban.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-ban.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-ban.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-ban.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-ban.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-disband.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-disband.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-disband.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-disband.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-disband.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-disband.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-disband.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-kick.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-kick.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-kick.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-kick.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-kick.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-kick.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-kick.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-leave.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-leave.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-leave.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-leave.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-leave.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-leave.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [confirm-leave.yml] Couldn't convert items.# into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [island-creation.yml] Couldn't convert items.~ into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [island-creation.yml] Couldn't convert items.~ into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [island-creation.yml] Couldn't convert items.~ into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [island-creation.yml] Couldn't convert items.~ into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [island-creation.yml] Couldn't convert items.~ into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [island-creation.yml] Couldn't convert items.~ into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [island-creation.yml] Couldn't convert items.~ into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [island-creation.yml] Couldn't convert items.~ into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [island-creation.yml] Couldn't convert items.~ into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [island-creation.yml] Couldn't convert items.~ into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [island-creation.yml] Couldn't convert items.~ into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [island-creation.yml] Couldn't convert items.~ into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [island-creation.yml] Couldn't convert items.~ into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [island-creation.yml] Couldn't convert items.~ into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [island-creation.yml] Couldn't convert items.~ into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [island-creation.yml] Couldn't convert items.~ into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [island-creation.yml] Couldn't convert items.~ into an itemstack. Check type & data sections!
[17:57:38] [Server thread/ERROR]: [SuperiorSkyblock2] [island-creation.yml] Couldn't convert items.~ into an itemstack. Check type & data sections!
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Trying to connect to local database (SQLite)...
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Successfully established connection with local database!
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Creating a backup file...
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Backup done!
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load players...
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Finished loading 38 players (Took 12ms)
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load islands...
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Finished loading 11 islands (Took 69ms)
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load grid...
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Finished grid!
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load stacked blocks...
[17:57:38] [Server thread/INFO]: [SuperiorSkyblock2] Finished stacked blocks!
[17:57:39] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[17:57:39] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[17:57:39] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[17:57:39] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[17:57:39] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[17:57:39] [Server thread/INFO]: Preparing start region for dimension minecraft:caverne
[17:57:40] [Server thread/INFO]: Time elapsed: 1182 ms
[17:57:40] [Server thread/INFO]: [WorldGuard] (caverne) TNT ignition is PERMITTED.
[17:57:40] [Server thread/INFO]: [WorldGuard] (caverne) Lighters are PERMITTED.
[17:57:40] [Server thread/INFO]: [WorldGuard] (caverne) Lava fire is PERMITTED.
[17:57:40] [Server thread/INFO]: [WorldGuard] (caverne) Fire spread is UNRESTRICTED.
[17:57:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'caverne'
[17:57:40] [Server thread/INFO]: Preparing start region for dimension minecraft:nether
[17:57:41] [Server thread/INFO]: Time elapsed: 23 ms
[17:57:41] [Server thread/INFO]: [WorldGuard] (nether) TNT ignition is PERMITTED.
[17:57:41] [Server thread/INFO]: [WorldGuard] (nether) Lighters are PERMITTED.
[17:57:41] [Server thread/INFO]: [WorldGuard] (nether) Lava fire is PERMITTED.
[17:57:41] [Server thread/INFO]: [WorldGuard] (nether) Fire spread is UNRESTRICTED.
[17:57:41] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'nether'
[17:57:41] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[17:57:41] [Server thread/INFO]: Time elapsed: 67 ms
[17:57:41] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[17:57:41] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[17:57:41] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[17:57:41] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[17:57:41] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[17:57:41] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world_nether
[17:57:41] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[17:57:41] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: cavernee
[17:57:41] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[17:57:41] [Server thread/INFO]: Preparing start region for dimension minecraft:farm
[17:57:41] [Server thread/INFO]: Time elapsed: 53 ms
[17:57:41] [Server thread/INFO]: [WorldGuard] (farm) TNT ignition is PERMITTED.
[17:57:41] [Server thread/INFO]: [WorldGuard] (farm) Lighters are PERMITTED.
[17:57:41] [Server thread/INFO]: [WorldGuard] (farm) Lava fire is PERMITTED.
[17:57:41] [Server thread/INFO]: [WorldGuard] (farm) Fire spread is UNRESTRICTED.
[17:57:41] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'farm'
[17:57:41] [Server thread/INFO]: Preparing start region for dimension minecraft:foret
[17:57:41] [Server thread/INFO]: Time elapsed: 36 ms
[17:57:41] [Server thread/INFO]: [WorldGuard] (foret) TNT ignition is PERMITTED.
[17:57:41] [Server thread/INFO]: [WorldGuard] (foret) Lighters are PERMITTED.
[17:57:41] [Server thread/INFO]: [WorldGuard] (foret) Lava fire is PERMITTED.
[17:57:41] [Server thread/INFO]: [WorldGuard] (foret) Fire spread is UNRESTRICTED.
[17:57:41] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'foret'
[17:57:41] [Server thread/INFO]: Preparing start region for dimension minecraft:end
[17:57:41] [Server thread/INFO]: Time elapsed: 35 ms
[17:57:41] [Server thread/INFO]: [WorldGuard] (end) TNT ignition is PERMITTED.
[17:57:41] [Server thread/INFO]: [WorldGuard] (end) Lighters are PERMITTED.
[17:57:41] [Server thread/INFO]: [WorldGuard] (end) Lava fire is PERMITTED.
[17:57:41] [Server thread/INFO]: [WorldGuard] (end) Fire spread is UNRESTRICTED.
[17:57:41] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'end'
[17:57:41] [Server thread/INFO]: [Multiverse-Core] 8 - World(s) loaded.
[17:57:41] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[17:57:41] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[17:57:41] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.6.1-${CI_COMMIT_SHORT_SHA}
[17:57:42] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.19.4)...
[17:57:42] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[17:57:43] [Server thread/INFO]: [MythicMobs] Mythic HolographicDisplays Support has been enabled!
[17:57:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[17:57:43] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[17:57:43] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[17:57:43] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[17:57:43] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[17:57:44] [Server thread/INFO]: [MythicMobs] Base directory /home/container/plugins/MythicMobs/data
[17:57:44] [Server thread/INFO]: [MythicMobs] Module directory /home/container/plugins/MythicMobs/data/worlds
[17:57:45] [Server thread/INFO]: [MythicMobs] Loading Packs...
[17:57:45] [Server thread/INFO]: [MythicMobs] Loading Items...
[17:57:45] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[17:57:45] [Server thread/INFO]: [MythicMobs] Loading Skills...
[17:57:45] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'exlode' is not supported by this version of MythicMobs.
[17:57:45] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'exlode' is not supported by this version of MythicMobs.
[17:57:46] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[17:57:46] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[17:57:46] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[17:57:46] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[17:57:46] [Server thread/WARN]: [MythicMobs] --| Mob: hana | File: /home/container/plugins/MythicMobs/Mobs/torotoro/Hana.yml
[17:57:46] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill CancelEventSkill
[17:57:46] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=CancelEventSkill;sync=true}
[17:57:46] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[17:57:46] [Server thread/WARN]: [MythicMobs] --| Mob: deer_spirit | File: /home/container/plugins/MythicMobs/Mobs/torotoro/Hana.yml
[17:57:46] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill CancelEventSkill
[17:57:46] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=CancelEventSkill;sync=true}
[17:57:46] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[17:57:46] [Server thread/WARN]: [MythicMobs] --| Mob: light_beam | File: /home/container/plugins/MythicMobs/Mobs/torotoro/Hana.yml
[17:57:46] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill CancelEventSkill
[17:57:46] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=CancelEventSkill;sync=true}
[17:57:46] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[17:57:46] [Server thread/WARN]: [MythicMobs] --| Mob: deer_healing | File: /home/container/plugins/MythicMobs/Mobs/torotoro/Hana.yml
[17:57:46] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill CancelEventSkill
[17:57:46] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=CancelEventSkill;sync=true}
[17:57:46] [Server thread/INFO]: [MythicMobs] ✓ Loaded 50 mobs.
[17:57:46] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[17:57:46] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[17:57:46] [Server thread/INFO]: [MythicMobs] ✓ Loaded 216 skills.
[17:57:46] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[17:57:46] [Server thread/INFO]: [MythicMobs] ✓ Loaded 26 mythic items.
[17:57:46] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[17:57:46] [Server thread/INFO]: [MythicMobs] ✓ Loaded 77 mob spawners.
[17:57:46] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[17:57:46] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[17:57:46] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.6.1 ( build ${CI_COMMIT_SHORT_SHA} ) has been successfully loaded!
[17:57:46] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for MythicMobs
[17:57:46] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[17:57:46] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[17:57:46] [Server thread/INFO]: [CMILib] Enabling CMILib v1.4.4.6
[17:57:47] [Server thread/INFO]: Server version: v1_19_R3 - 1.19.4 - paper
[17:57:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.4.4.6]
[17:57:47] [Server thread/INFO]: PlaceholderAPI hooked.
[17:57:47] [Server thread/INFO]: Updated (EN) language file. Took 36ms
[17:57:47] [Server thread/INFO]: Updated (FR) language file. Took 16ms
[17:57:47] [Server thread/INFO]: [Jobs] Enabling Jobs v5.2.2.2
[17:57:47] [Server thread/INFO]: ------------- Jobs -------------
[17:57:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jobsr [5.2.2.2]
[17:57:47] [Server thread/INFO]: PlaceholderAPI hooked.
[17:57:47] [Server thread/INFO]: Connected to database (SqLite)
[17:57:47] [Server thread/INFO]: Loaded 8 titles
[17:57:47] [Server thread/INFO]: Loaded 75 protected blocks timers
[17:57:48] [Server thread/INFO]: Loaded 1371 custom item names
[17:57:48] [Server thread/INFO]: Loaded 81 custom entity names
[17:57:48] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[17:57:48] [Server thread/INFO]: Loaded 38 custom enchant names
[17:57:48] [Server thread/INFO]: Loaded 21 custom enchant names
[17:57:48] [Server thread/INFO]: Loaded 16 custom color names
[17:57:48] [Server thread/INFO]: Update shops items icon section and use 'ItemStack' instead
[17:57:48] [Server thread/INFO]: Loaded 4 shop items
[17:57:48] [Server thread/INFO]: Update Woodcutter jobs gui item section to use `Item` instead of `Id` and `Data` sections
[17:57:48] [Server thread/INFO]: Loaded 1 quests for Bûcheron
[17:57:48] [Server thread/INFO]: Update Hunter jobs gui item section to use `Item` instead of `Id` and `Data` sections
[17:57:48] [Server thread/INFO]: Loaded 1 quests for Chasseur
[17:57:48] [Server thread/INFO]: Update Fisherman jobs gui item section to use `ItemStack` instead of `Item` sections format. More information inside _EXAMPLE job file
[17:57:48] [Server thread/INFO]: Loaded 1 quests for PĂȘcheur
[17:57:48] [Server thread/INFO]: Update Miner jobs gui item section to use `Item` instead of `Id` and `Data` sections
[17:57:48] [Server thread/INFO]: Loaded 1 quests for Mineur
[17:57:48] [Server thread/INFO]: Loaded 1 quests for Farmer
[17:57:48] [Server thread/INFO]: Loaded 5 jobs
[17:57:48] [Server thread/INFO]: Loaded 0 boosted items
[17:57:48] [Server thread/INFO]: Loaded 2 furnace for reassigning.
[17:57:48] [Server thread/INFO]: Loaded 1 brewing for reassigning.
[17:57:48] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[17:57:48] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[17:57:48] [Server thread/INFO]: Preloaded 29 players data in 0.01
[17:57:48] [Server thread/INFO]: WorldGuard detected.
[17:57:48] [Server thread/INFO]: MythicMobs 5.x detected.
[17:57:48] [Server thread/INFO]: [Jobs] MythicMobs was found - Enabling capabilities.
[17:57:48] [Server thread/INFO]: Plugin has been enabled successfully.
[17:57:48] [Server thread/INFO]: ------------------------------------
[17:57:48] [Server thread/INFO]: [WildChests] Enabling WildChests v2023.3
[17:57:48] [Server thread/INFO]: [WildChests] ******** ENABLE START ********
[17:57:48] [Server thread/INFO]: [WildChests] Loading configuration started...
[17:57:48] [Server thread/INFO]: [WildChests]  - Found 6 chests in config.yml.
[17:57:48] [Server thread/INFO]: [WildChests] Loading configuration done (Took 42ms)
[17:57:48] [Server thread/INFO]: [WildChests] Loading messages started...
[17:57:48] [Server thread/INFO]: [WildChests]  - Found 42 messages in lang.yml.
[17:57:48] [Server thread/INFO]: [WildChests] Loading messages done (Took 2ms)
[17:57:48] [Server thread/INFO]: [WildChests] ******** ENABLE DONE ********
[17:57:48] [Server thread/INFO]: [RHPhantomControl] Enabling RHPhantomControl v1.18_R2
[17:57:48] [Server thread/INFO]: [RHPhantomControl] The plugin has been loaded!
[17:57:48] [Server thread/INFO]: [RHPhantomControl] You are using version 1.18_R2 /w 💕 by X0R3
[17:57:48] [Server thread/INFO]: [RHPhantomControl] Info:
[17:57:48] [Server thread/INFO]: [RHPhantomControl] If you want your server be presented on the plugin page, then please contact me! :)
[17:57:48] [Server thread/INFO]: [SkyblockPlus] Enabling SkyblockPlus v1.0.3
[17:57:48] [Server thread/INFO]: [SkyblockPlus] Loaded 7 upgrades: hopper, crop, drop, size, spawner, member, generator
[17:57:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: skp [1.0.3]
[17:57:48] [Server thread/INFO]: [ArmorStandTools] Enabling ArmorStandTools v4.4.4
[17:57:48] [Server thread/INFO]: [ArmorStandTools] PlotSquared plugin not found. Continuing without PlotSquared support.
[17:57:48] [Server thread/INFO]: [ArmorStandTools] WorldGuard plugin found. WorldGuard support enabled.
[17:57:48] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.2.3
[17:57:48] [Server thread/INFO]: [Multiverse-Portals] 1 - Portals(s) loaded
[17:57:48] [Server thread/INFO]: [Multiverse-Portals] Found FastAsyncWorldEdit. Using it for selections.
[17:57:48] [Server thread/INFO]: [Multiverse-Portals 4.2.3]  Enabled - By Rigby and fernferret
[17:57:48] [Server thread/INFO]: [SimpleScore] Enabling SimpleScore v3.12.4
[17:57:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: SimpleScore [3.12.4]
[17:57:49] [Server thread/INFO]: [CustomCrafting] Enabling CustomCrafting v4.16.8.5
[17:57:49] [Server thread/INFO]: [CustomCrafting] Loaded fallback language "en_US" v6.1.0 translated by WolfyScript
[17:57:49] [Server thread/INFO]: [CustomCrafting] Loaded active language "en_US" v6.1.0 translated by WolfyScript
[17:57:49] [Server thread/INFO]: [CustomCrafting] ____ _  _ ____ ___ ____ _  _ ____ ____ ____ ____ ___ _ _  _ ____ 
[17:57:49] [Server thread/INFO]: [CustomCrafting] |    |  | [__   |  |  | |\/| |    |__/ |__| |___  |  | |\ | | __ 
[17:57:49] [Server thread/INFO]: [CustomCrafting] |___ |__| ___]  |  |__| |  | |___ |  \ |  | |     |  | | \| |__]
[17:57:49] [Server thread/INFO]: [CustomCrafting]     Version      | v4.16.8.5
[17:57:49] [Server thread/INFO]: [CustomCrafting]     WolfyUtils   | v4.16.14.1
[17:57:49] [Server thread/INFO]: [CustomCrafting]     Bukkit       | git-Paper-550 (MC: 1.19.4)(API: 1.19.4-R0.1-SNAPSHOT)
[17:57:49] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[17:57:49] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R3' loaded!
[17:57:49] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'WolfyUtilities' to create a bStats instance!
[17:57:49] [Server thread/INFO]: [CustomCrafting] 
[17:57:49] [Server thread/INFO]: [CustomCrafting] Special thanks to my Patrons for supporting this project: 
[17:57:49] [Server thread/INFO]: [CustomCrafting] Omarlatif, Nat R, Junye Zhou, Mithran, Teddy, Invictus_Vulpes 
[17:57:49] [Server thread/INFO]: [CustomCrafting] Luuk Musch, WizardOfWit, Lumi Server, fioxu, Green Masks
[17:57:49] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[17:57:49] [Server thread/INFO]: [CustomCrafting] Detected ProtocolLib... initiating additional features.
[17:57:49] [Server thread/INFO]: [CustomCrafting] Registering PlaceHolder
[17:57:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: customcrafting [4.16.8.5]
[17:57:49] [Server thread/INFO]: [CustomCrafting] Data destination: LOCAL
[17:57:49] [Server thread/INFO]: [CustomCrafting] Initiating Inventory GUIs
[17:57:49] [Server thread/INFO]: [CustomCrafting] Register ItemCreator Tabs
[17:57:50] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[17:57:50] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.2
[17:57:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[17:57:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[17:57:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[17:57:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[17:57:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[17:57:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[17:57:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[17:57:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[17:57:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[17:57:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[17:57:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[17:57:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[17:57:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[17:57:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[17:57:50] [Server thread/INFO]: [CrazyEnvoys] Enabling CrazyEnvoys v1.4.20.5
[17:57:50] [Server thread/INFO]: [CrazyEnvoys] Loading the config.yml
[17:57:50] [Server thread/INFO]: [CrazyEnvoys] Successfully loaded config.yml
[17:57:50] [Server thread/INFO]: [CrazyEnvoys] Loading the messages.yml
[17:57:50] [Server thread/INFO]: [CrazyEnvoys] Successfully loaded messages.yml
[17:57:50] [Server thread/INFO]: [CrazyEnvoys] Loading the data.yml
[17:57:50] [Server thread/INFO]: [CrazyEnvoys] Successfully loaded data.yml
[17:57:50] [Server thread/INFO]: [CrazyEnvoys] Loading custom files.
[17:57:50] [Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Lucky.yml.
[17:57:50] [Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Titan.yml.
[17:57:50] [Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Basic.yml.
[17:57:50] [Server thread/INFO]: [CrazyEnvoys] Finished loading custom files.
[17:57:50] [Server thread/INFO]: [CrazyEnvoys] HolographicDisplays support has been enabled.
[17:57:50] [Server thread/INFO]: [CrazyEnvoys] Metrics has been enabled.
[17:57:50] [Server thread/WARN]: [CrazyEnvoys] We no longer support placeholders using {}
[17:57:50] [Server thread/WARN]: [CrazyEnvoys] We only support %% placeholders i.e %crazyenvoys_cooldown%
[17:57:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: crazyenvoys [1.4.20.5]
[17:57:50] [Server thread/INFO]: [RankSystem] Enabling RankSystem v1.3
[17:57:50] [CC-update-check/WARN]: [CustomCrafting] Your version is outdated! There is a new version available! Download it here: https://www.spigotmc.org/resources/55883/
[17:57:50] [Server thread/INFO]: 

[RankSystem] Plugin has been enabled!
[17:57:50] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.1
[17:57:50] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[17:57:50] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.6-Release
[17:57:50] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[17:57:50] [Server thread/WARN]: [DeluxeMenus] Material for item: A1 in menu: island is not a valid material name!
Skipping item: A1
[17:57:50] [Server thread/WARN]: [DeluxeMenus] Material for item: Decoration in menu: is_settings is not a valid material name!
Skipping item: Decoration
[17:57:50] [Server thread/WARN]: [DeluxeMenus] Has Permission requirement at path: open_requirement.requirements.permission does not contain a permission: entry
[17:57:50] [Server thread/WARN]: [DeluxeMenus] Has Permission requirement at path: open_requirement.requirements.permission does not contain a permission: entry
[17:57:50] [Server thread/WARN]: [DeluxeMenus] Has Permission requirement at path: open_requirement.requirements.permission does not contain a permission: entry
[17:57:50] [Server thread/WARN]: [DeluxeMenus] Has Permission requirement at path: open_requirement.requirements.permission does not contain a permission: entry
[17:57:50] [Server thread/WARN]: [DeluxeMenus] Has Permission requirement at path: open_requirement.requirements.permission does not contain a permission: entry
[17:57:50] [Server thread/WARN]: [DeluxeMenus] Has Permission requirement at path: open_requirement.requirements.permission does not contain a permission: entry
[17:57:50] [Server thread/WARN]: [DeluxeMenus] Has Permission requirement at path: open_requirement.requirements.permission does not contain a permission: entry
[17:57:50] [Server thread/INFO]: [DeluxeMenus] 32 GUI menus loaded!
[17:57:50] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[17:57:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.13.6-Release]
[17:57:50] [Server thread/INFO]: [ServerBooster] Enabling ServerBooster v1.1.6-r3
[17:57:50] [Server thread/WARN]: [ServerBooster] Invalid configuration for mob type: pig_zombie
[17:57:50] [Server thread/INFO]: Override of spigot.yml and bukkit.yml configs completed
[17:57:51] [Server thread/INFO]: [MythicCrucible] Enabling MythicCrucible v2.0.0-SNAPSHOT
[17:57:51] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[17:57:51] [Server thread/INFO]: [MythicMobs] + Loading MythicCrucible for Bukkit
[17:57:51] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[17:57:51] [Server thread/INFO]: [MythicMobs] Registering Durability Listener
[17:57:56] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[17:57:56] [Server thread/INFO]: [MythicMobs] MythicCrucible Support has been enabled!
[17:57:56] [Server thread/INFO]: [MythicMobs] MythicCrucible WorldEdit support enabled!
[17:57:56] [Server thread/INFO]: [MythicMobs] ✓ MythicCrucible  v2.0.0 has been successfully loaded!
[17:57:56] [Server thread/INFO]: [KeepChunks] Enabling KeepChunks v1.7.1
[17:57:56] [Server thread/INFO]: 
[17:57:56] [Server thread/INFO]:  _     _                   _______ _                 _          
[17:57:56] [Server thread/INFO]: (_)   | |                 (_______) |               | |  v1.7.1
[17:57:56] [Server thread/INFO]:  _____| |_____ _____ ____  _      | |__  _   _ ____ | |  _  ___ 
[17:57:56] [Server thread/INFO]: |  _   _) ___ | ___ |  _ \| |     |  _ \| | | |  _ \| |_/ )/___)
[17:57:56] [Server thread/INFO]: | |  \ \| ____| ____| |_| | |_____| | | | |_| | | | |  _ (|___ |
[17:57:56] [Server thread/INFO]: |_|   \_)_____)_____)  __/ \______)_| |_|____/|_| |_|_| \_|___/ 
[17:57:56] [Server thread/INFO]:                     |_|                                         
[17:57:56] [Server thread/INFO]: 
[17:57:56] [Server thread/INFO]: [KeepChunks] KeepChunks v1.7.1 has been enabled
[17:57:56] [Server thread/INFO]: [AdventCalendar] Enabling AdventCalendar v1.2.8
[17:57:56] [Server thread/INFO]: [AdventCalendar] Version 1.2.0 Successfully Loaded!
[17:57:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: adventcalendar [1.2.4]
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] MENU MANAGER HAS BEEN SETUP
[17:57:56] [Server thread/WARN]: Nag author(s): '[CaelenO42]' of 'AdventCalendar v1.2.8' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] EssentialsPlayerListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] InventoryChangeListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] cQ
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] PlayersListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] MythicCraftingManager
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] SuperWorkbenchMapping
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] MegaWorkbenchMapping
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] 
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] PlayerListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] BlacklistListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] BlacklistListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] Vulcan_Fi
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] L
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] du
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] ey
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] co
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] J
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] cF
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] fY
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] W
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] gq
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] go
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] gp
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] ArmorListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] MenusListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] ShulkerOversizedPatch
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] SpawnersListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] MenusListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] ProtectionListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] GUIListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] JobsListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] JobsListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] InventoryListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] MainListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] MainListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] FurnaceListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] FurnaceListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] BrewingStandListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] EventListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] EventListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] EventListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] EventListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] EventListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] EventListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] EventListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] ItemManager
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] ItemManager
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] GUIListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] EquipListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] GUIInventoryListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] BInventoryListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] PlayerListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] InventoryListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] EventBasedCraftRecipeHandler
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] AnvilListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] GrindStoneListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] GrindStoneListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] RecipeBookListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] SmithingListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] ArmorEquipEventListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] CraftItemListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] InventoryClickListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] gf
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] gx
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] fV
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] BucketsListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] CraftingMissions
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] MenusListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] JobsPaymentListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] JobsPaymentListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] JobsPaymentListener
[17:57:56] [Server thread/INFO]: [AdventCalendar] [STDOUT] InventoryListener
[17:57:56] [Server thread/WARN]: [AdventCalendar] Config file is out of date! Make sure your config is up to date or things might break!
[17:57:56] [Server thread/INFO]: [AdventCalendar] [ACF] Enabled Asynchronous Tab Completion Support!
[17:57:56] [Server thread/INFO]: [AdventCalendar] Userdata folder found!
[17:57:56] [Server thread/INFO]: [CitizensText] Enabling CitizensText v1.2
[17:57:56] [Server thread/INFO]: [CitizensText] PlaceholderAPI hooked !
[17:57:56] [Server thread/INFO]: [Animotion] Enabling Animotion v1.0_i_patch3*
[17:57:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: animotion [1a]
[17:57:56] [Server thread/INFO]: Animotion PlaceholderAPI expansion has been enabled.
[17:57:56] [Server thread/INFO]: Animotion WorldGuard extension has been enabled.
[17:57:56] [Server thread/INFO]: Animotion Animotion is ready to use !
[17:57:56] [Server thread/INFO]: Animotion An update is available.
[17:57:56] [Server thread/INFO]: [AdvancedCrates] Enabling AdvancedCrates v3.9.28
[17:57:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedcrates [3.9.28]
[17:57:56] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[17:57:56] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R3' loaded!
[17:57:56] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AdvancedCrates' to create a bStats instance!
[17:57:58] [Server thread/INFO]: [TempFly] Enabling TempFly v3.1.7
[17:57:58] [Server thread/INFO]: [TempFly] Attempting to initialize (SuperiorSkyblock2) hook...
[17:57:58] [Server thread/INFO]: [TempFly] Initializing ClipAPI
[17:57:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tempfly [3.1.7]
[17:57:58] [Server thread/INFO]: [bAnnouncer] Enabling bAnnouncer v1.2.9*
[17:57:58] [Server thread/INFO]: [TitleManager] Enabling TitleManager v2.3.6
[17:57:58] [Server thread/INFO]: [aAntiSpam] Enabling aAntiSpam v1.2*
[17:57:58] [Server thread/INFO]: aAntiSpam activated.
[17:57:58] [Server thread/INFO]: [ChatReaction] Enabling ChatReaction v1.8.0
[17:57:58] [Server thread/INFO]: [ChatReaction] You are using Spigot! Tooltips in reaction start messages are enabled!
[17:57:58] [Server thread/INFO]: [ChatReaction] 45 words loaded!
[17:57:58] [Server thread/INFO]: [ChatReaction] Reaction stats are disabled!!
[17:57:58] [Server thread/INFO]: [ChatReaction] [STDOUT] ---------------------------
[17:57:58] [Server thread/WARN]: Nag author(s): '[extended_clip]' of 'ChatReaction v1.8.0' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[17:57:58] [Server thread/INFO]: [ChatReaction] [STDOUT]      ChatReaction Updater
[17:57:58] [Server thread/INFO]: [ChatReaction] [STDOUT]  
[17:57:58] [Server thread/INFO]: [ChatReaction] [STDOUT] Could not connect to spigotmc.org
[17:57:58] [Server thread/INFO]: [ChatReaction] [STDOUT] to check for updates! 
[17:57:58] [Server thread/INFO]: [ChatReaction] [STDOUT]  
[17:57:58] [Server thread/INFO]: [ChatReaction] [STDOUT] ---------------------------
[17:57:58] [Server thread/INFO]: [ChatReaction] [STDOUT] ---------------------------
[17:57:58] [Server thread/INFO]: [ChatReaction] [STDOUT]      ChatReaction Updater
[17:57:58] [Server thread/INFO]: [ChatReaction] [STDOUT]  
[17:57:58] [Server thread/INFO]: [ChatReaction] [STDOUT] You are running 1.8.0
[17:57:58] [Server thread/INFO]: [ChatReaction] [STDOUT] The latest version
[17:57:58] [Server thread/INFO]: [ChatReaction] [STDOUT] of ChatReaction!
[17:57:58] [Server thread/INFO]: [ChatReaction] [STDOUT]  
[17:57:58] [Server thread/INFO]: [ChatReaction] [STDOUT] ---------------------------
[17:57:58] [Server thread/INFO]: [OldCombatMechanics] Enabling OldCombatMechanics v2.0.0
[17:57:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ocm [2.0.0]
[17:57:58] [Server thread/WARN]: [OldCombatMechanics] Configured world world_nether not found, skipping...
[17:57:58] [Server thread/INFO]: [OldCombatMechanics] OldCombatMechanics v2.0.0 has been enabled
[17:57:58] [Server thread/INFO]: [ImageMaps] Enabling ImageMaps v1.0.10
[17:57:58] [Server thread/INFO]: [CommandNPC] Enabling CommandNPC v1.9.1*
[17:57:58] [Server thread/INFO]: [CommandNPC] Vault compatible economy found! Economy support for CommandNPC has been enabled.
[17:57:58] [Server thread/INFO]: [CommandNPC] Initiating Database
[17:57:58] [Server thread/INFO]: [CommandNPC] Injecting command info into Citizens.
[17:57:58] [Thread-18/INFO]: [CommandNPC] Loading commands complete!
[17:57:58] [Server thread/INFO]: [CommandNPC] CommandNPC successfully loaded!
[17:57:58] [Server thread/INFO]: [BlockRegen] Enabling BlockRegen v3.10.5
[17:57:58] [Server thread/INFO]: INFO: Loaded file Settings.yml
[17:57:58] [Server thread/INFO]: INFO: Loaded file Messages.yml
[17:57:58] [Server thread/INFO]: INFO: Loaded file Blocklist.yml
[17:57:58] [Server thread/INFO]: INFO: Loaded file Regions.yml
[17:57:58] [Server thread/INFO]: [BlockRegen] INFO: Running on version 1.19
[17:57:58] [Server thread/INFO]: [BlockRegen] INFO: WorldEdit found! Enabling regions.
[17:57:58] [Server thread/INFO]: [BlockRegen] INFO: WorldGuard found! Supporting it's Region protection.
[17:57:58] [Server thread/INFO]: [BlockRegen] INFO: Checking dependencies...
[17:57:58] [Server thread/INFO]: [BlockRegen] INFO: Vault & economy plugin found! Enabling economy functions.
[17:57:58] [Server thread/INFO]: [BlockRegen] INFO: Jobs found! Enabling Jobs requirements and rewards.
[17:57:58] [Server thread/INFO]: [BlockRegen] INFO: Found PlaceholderAPI! Using it for placeholders.
[17:57:58] [Server thread/INFO]: [BlockRegen] INFO: Loaded 31 block preset(s)...
[17:57:58] [Server thread/INFO]: [BlockRegen] INFO: Added 0 event(s)...
[17:57:58] [Server thread/INFO]: [BlockRegen] INFO: Loaded file Regions.yml
[17:57:58] [Server thread/INFO]: [BlockRegen] INFO: Loaded 7 region(s)...
[17:57:58] [Server thread/INFO]: [BlockRegen] INFO: You are using version 3.10.5
[17:57:58] [Server thread/INFO]: [BlockRegen] INFO: Report bugs or suggestions to discord only please. ( /blockregen discord )
[17:57:58] [Server thread/INFO]: [BlockRegen] INFO: Always backup if you are not sure about things.
[17:57:58] [Server thread/INFO]: [BlockRegen] INFO: MetricsLite enabled
[17:57:58] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[17:57:58] [ForkJoinPool.commonPool-worker-2/INFO]: [BlockRegen] INFO: Loaded 0 regeneration process(es)...
[17:57:58] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.1.4
[17:57:58] [Server thread/INFO]: [ItemEdit] Selected Storage Type: YAML
[17:57:59] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[17:57:59] [Server thread/INFO]: [ItemEdit] Hooking into PlaceholderApi
[17:57:59] [Server thread/INFO]: [ItemEdit] Hooked into PlaceHolderAPI:
[17:57:59] [Server thread/INFO]: [ItemEdit] placeholders:
[17:57:59] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[17:57:59] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[17:57:59] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[17:57:59] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[17:57:59] [Server thread/INFO]: [ItemEdit]       Values: inventory (include offhand), equip (include offhand), inventoryandequip (include offhand), hand, offhand, head, chest, legs, feet
[17:57:59] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[17:57:59] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[17:57:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemedit [1.0]
[17:57:59] [Server thread/INFO]: [ItemEdit] Hooking into ShopGuiPlus
[17:57:59] [Server thread/INFO]: [ShopGUIPlus] Registered item provider 'ServerItem'.
[17:57:59] [Server thread/INFO]: [ItemEdit] Hooking into MythicMobs
[17:57:59] [Server thread/INFO]: [ItemEdit] # Enabled (took 61 ms)
[17:57:59] [Server thread/INFO]: [WildTools] Enabling WildTools v2023.3
[17:57:59] [Server thread/INFO]: [WildTools] ******** ENABLE START ********
[17:57:59] [Server thread/INFO]: [WildTools] Loading configuration started...
[17:57:59] [Server thread/INFO]: [WildTools]  - Found 15 tools in config.yml.
[17:57:59] [Server thread/INFO]: [WildTools] Loading configuration done (Took 29ms)
[17:57:59] [Server thread/INFO]: [WildTools] Loading messages started...
[17:57:59] [Server thread/INFO]: [WildTools]  - Found 0 messages in lang.yml.
[17:57:59] [Server thread/INFO]: [WildTools] Loading messages done (Took 2ms)
[17:57:59] [Server thread/INFO]: [WildTools] Couldn't find the tool sell_wand, skipping recipe...
[17:57:59] [Server thread/INFO]: [WildTools] Couldn't find valid recipe for crafting_wand, skipping...
[17:57:59] [Server thread/INFO]: [WildTools] ******** ENABLE DONE ********
[17:57:59] [Server thread/INFO]: [AdvancedPortals] Enabling AdvancedPortals v0.9.3
[17:57:59] [Server thread/INFO]: [AdvancedPortals] BLOCK_PORTAL_TRAVEL found
[17:57:59] [Server thread/INFO]: [AdvancedPortals] Bungee detected. Enabling proxy features.
[17:57:59] [Server thread/INFO]: Advanced portals have been successfully enabled!
[17:57:59] [Server thread/INFO]: [PluginManager] Enabling PluginManager v2.8.1
[17:57:59] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.4
[17:57:59] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[17:57:59] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[17:57:59] [Server thread/INFO]: | Command file(s) found : 1
[17:57:59] [Server thread/INFO]: | Config : Ready.
[17:57:59] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[17:57:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mycommand [1.0.0]
[17:57:59] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[17:57:59] [Server thread/INFO]: | Custom commands loaded : 46
[17:57:59] [Server thread/INFO]: | You're running the latest version of MyCommand.
[17:57:59] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[17:57:59] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[17:57:59] [Server thread/INFO]: [DiscordEventWebhooks] Enabling DiscordEventWebhooks v1.49
[17:57:59] [Server thread/INFO]: -------------------------------------------------
[17:57:59] [Server thread/INFO]: DiscordWebhooks
[17:57:59] [Server thread/INFO]: Enabled! You are currently running Version: 1.48
[17:57:59] [Server thread/INFO]: https://someonessonsplugins.ga/
[17:57:59] [Server thread/INFO]: -------------------------------------------------
[17:57:59] [Server thread/INFO]: [CommandPanels] Enabling CommandPanels v3.19.1.3
[17:57:59] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.19.1.3 Plugin Loading...
[17:57:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: commandpanels [1.0.0]
[17:57:59] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.19.1.3 Plugin Loaded!
[17:57:59] [Server thread/INFO]: [WildLoaders] Enabling WildLoaders v2023.3
[17:57:59] [Server thread/INFO]: [WildLoaders] ******** ENABLE START ********
[17:57:59] [Server thread/INFO]: [WildLoaders] Loading configuration started...
[17:57:59] [Server thread/INFO]: [WildLoaders]  - Found 1 chunk-loaders in config.yml.
[17:57:59] [Server thread/INFO]: [WildLoaders] Loading configuration done (Took 4ms)
[17:57:59] [Server thread/INFO]: [WildLoaders] Loading messages started...
[17:57:59] [Server thread/INFO]: [WildLoaders]  - Found 25 messages in lang.yml.
[17:57:59] [Server thread/INFO]: [WildLoaders] Loading messages done (Took 1ms)
[17:57:59] [Server thread/INFO]: [WildLoaders] ******** ENABLE DONE ********
[17:57:59] [Server thread/INFO]: [TAB] Enabling TAB v4.0.9
[17:58:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.0.9]
[17:58:00] [Server thread/INFO]: [TAB] [WARN] Animation "Welcome" has refresh interval of 0 milliseconds! Did you forget to configure it? Using 1000.
[17:58:00] [Server thread/INFO]: [TAB] [WARN] Found a total of 1 issues.
[17:58:00] [Server thread/INFO]: [TAB] Enabled in 118ms
[17:58:00] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[17:58:00] [Server thread/INFO]: Running delayed init tasks
[17:58:00] [Craft Scheduler Thread - 8 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing GreenElemental.bbmodel.
[17:58:00] [Craft Scheduler Thread - 10 - Essentials/INFO]: [Essentials] Récupération des informations de version...
[17:58:00] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[17:58:00] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[17:58:00] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing Hana.bbmodel.
[17:58:00] [Craft Scheduler Thread - 14 - SimpleScore/WARN]: [SimpleScore] New version (v3.12.5) available, download at:
[17:58:00] [Craft Scheduler Thread - 14 - SimpleScore/WARN]: [SimpleScore] https://www.spigotmc.org/resources/23243/
[17:58:00] [Craft Scheduler Thread - 6 - CMILib/INFO]: New version of CMILib was detected. Please update it
[17:58:00] [Craft Scheduler Thread - 14 - Vault/INFO]: [Vault] Checking for Updates ... 
[17:58:00] [Craft Scheduler Thread - 14 - Vault/INFO]: [Vault] No new version available
[17:58:00] [Craft Scheduler Thread - 11 - ItemEdit/INFO]: [ItemEdit] New Update at https://spigotmc.org/resources/40993
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing circular_branch.bbmodel.
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing concussion.bbmodel.
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring3 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 9.541664367526768E-15 ]
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring3 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 9.541664367526768E-15 ]
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring3 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -9.541664367526768E-15 ]
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring3 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 9.541664367526768E-15 ]
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring2 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 9.541664367526768E-15 ]
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring2 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 9.541664367526768E-15 ]
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring2 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -9.541664367526768E-15 ]
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone concussionring2 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 9.541664367526768E-15 ]
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing deer_healing.bbmodel.
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing deer_spirit.bbmodel.
[17:58:00] [Server thread/INFO]: [Skript] Loading variables...
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone neck is rotated in multiple axis. Choosing one axis.
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone neck has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 1.2722218874358041E-14 ]
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone neck has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 1.2722218874358041E-14 ]
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone neck has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 1.2722218874358041E-14 ]
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone neck has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 1.2722218874358041E-14 ]
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone neck is rotated in multiple axis. Choosing one axis.
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing discord1.bbmodel.
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:00] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing discord2.bbmodel.
[17:58:01] [Server thread/INFO]: [Skript] Loaded 8 variables in 0.0 seconds
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ent_branch.bbmodel.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[17:58:01] [Craft Scheduler Thread - 12 - CrazyEnvoys/INFO]: [CrazyEnvoys] Plugin is up to date! - v1.8.4
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ent_branch_upwards.bbmodel.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ent_guardian.bbmodel.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ent_king.bbmodel.
[17:58:01] [User Authenticator #0/INFO]: UUID of player Matrakor is 3de9ea3f-f3c4-4430-8123-4a75336deebb
[17:58:01] [Craft Scheduler Thread - 18 - PluginManager/INFO]: PM | You are using the latest version of PluginManager.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ent_minion.bbmodel.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ent_sorcerer.bbmodel.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ent_warrior.bbmodel.
[17:58:01] [Craft Scheduler Thread - 8 - ItemsAdder/INFO]: [ItemsAdder] [License] Spigot product licensed to: LoneDev (88296)
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing experience_golem.bbmodel.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing leaf_storm.bbmodel.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing leaf_tornado.bbmodel.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing light_beam.bbmodel.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lord_demon.bbmodel.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lord_demon_claw.bbmodel.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lr_yeti.bbmodel.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lr_yeti_chest.bbmodel.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lr_yeti_icespikes.bbmodel.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lr_yeti_snowball.bbmodel.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lr_yeti_snowball_parts.bbmodel.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing minion_melee.bbmodel.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing minion_ranged.bbmodel.
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:01] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing shelob.bbmodel.
[17:58:01] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[17:58:01] [Server thread/INFO]: [Skript] Loaded 1 script with a total of 3 structures in 0.51 seconds
[17:58:01] [Server thread/INFO]: [Skript] Finished loading.
[17:58:01] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[17:58:01] [Server thread/INFO]: [ItemsAdder] [Pack] Extracting internal contents from .jar
[17:58:01] [Server thread/INFO]: [ItemsAdder] [Pack] DONE extracting internal contents from .jar
[17:58:02] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:58:02] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Resource pack zipped.
[17:58:03] [Server thread/INFO]: [WildStacker] Loading providers started...
[17:58:03] [Server thread/INFO]: [WildStacker]  - Couldn't find any spawners providers, using default one.
[17:58:03] [Server thread/INFO]: [WildStacker] Using Vault as an economy provider.
[17:58:03] [Server thread/INFO]: [ShopGUIPlus] Registered spawners support for WildStacker.
[17:58:03] [Server thread/INFO]: [WildStacker] Found ShopGUIPlus - Hooked as SpawnerProvider!
[17:58:03] [Server thread/INFO]: [WildStacker] 
[17:58:03] [Server thread/INFO]: [WildStacker] Detected FastAsyncWorldEdit - Disabling ticks limiter for items...
[17:58:03] [Server thread/INFO]: [WildStacker] Loading providers done (Took 44ms)
[17:58:03] [Server thread/INFO]: [SuperiorSkyblock2] Using WildStacker as a spawners provider.
[17:58:03] [Server thread/INFO]: [SuperiorSkyblock2] Using WildStacker as a stacked-blocks provider.
[17:58:03] [Server thread/INFO]: [SuperiorSkyblock2] Using LuckPerms as a permissions provider.
[17:58:03] [Server thread/INFO]: [SuperiorSkyblock2] Using ShopGUIPlus as a prices provider.
[17:58:03] [Server thread/INFO]: [SuperiorSkyblock2] Hooked into Essentials for support of vanish status of players.
[17:58:03] [Server thread/INFO]: [SuperiorSkyblock2] Hooked into Essentials for support of afk status of players.
[17:58:03] [Server thread/INFO]: [SuperiorSkyblock2] Using Vault as an economy provider.
[17:58:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: superior [2023.3]
[17:58:03] [Server thread/INFO]: [SuperiorSkyblock2] Using PlaceholderAPI for placeholders support.
[17:58:03] [Server thread/INFO]: [SuperiorSkyblock2] Detected PaperSpigot - Using async chunk-loading support with PaperMC.
[17:58:03] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (Essentials)
[17:58:03] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (LuckPerms)
[17:58:03] [Server thread/INFO]: [WildChests] - Couldn't find any prices providers, using default one
[17:58:03] [Server thread/ERROR]: [Citizens] La caractéristique  a échoué au chargement pour le NPC ID\: 51.
[17:58:04] [Server thread/INFO]: [Citizens] Chargement de 44 NPCs.
[17:58:04] [Server thread/INFO]: [WildStacker] Starting to load entities...
[17:58:04] [Server thread/INFO]: [WildStacker] Loading entities done! Took 0 ms.
[17:58:04] [Server thread/INFO]: [WildStacker] Starting to load items...
[17:58:04] [Server thread/INFO]: [WildStacker] Loading items done! Took 1 ms.
[17:58:04] [Server thread/INFO]: [WildStacker] Starting to load spawners...
[17:58:04] [Server thread/INFO]: [WildStacker] Loading spawners done! Took 2 ms.
[17:58:04] [Server thread/INFO]: [WildStacker] Starting to load barrels...
[17:58:04] [Server thread/INFO]: [WildStacker] Loading barrels done! Took 1 ms.
[17:58:04] [Server thread/INFO]: Animotion Loading up all animotions...
[17:58:04] [Server thread/INFO]: Animotion All animotions have been loaded.
[17:58:04] [Server thread/INFO]: [BlockRegen] INFO: Checking dependencies...
[17:58:04] [Server thread/INFO]: [BlockRegen] INFO: Starting auto-save.. with an interval of 600 seconds.
[17:58:04] [Server thread/INFO]: [WildTools] Loading providers started...
[17:58:05] [Server thread/INFO]: [WildTools]  - Using ShopGUIPlus as PricesProvider.
[17:58:05] [Server thread/INFO]: [WildTools]  - Couldn't find any factions providers for tnt banks, using default one.
[17:58:05] [Server thread/INFO]: [WildTools] Using Vault as an economy provider.
[17:58:05] [Server thread/INFO]: [WildTools] Loading providers done (Took 14ms)
[17:58:05] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion envoys due to a missing plugin: Envoys
[17:58:05] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion uskyblock due to a missing plugin: uSkyBlock
[17:58:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: checkitem [2.7.2]
[17:58:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldguard [1.4.2]
[17:58:05] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion askyblock due to a missing plugin: ASkyBlock
[17:58:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[17:58:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: tempdata [0.1-BETA]
[17:58:05] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion votingplugin. Identifier is already in use.
[17:58:05] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion votingplugin due to an unknown issue.
[17:58:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: ViaVersion [2.0.0]
[17:58:05] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playertime due to a missing plugin: PlayerTime
[17:58:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[17:58:05] [Server thread/INFO]: [PAPI] [Javascript-Expansion] 4 scripts loaded!
[17:58:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: javascript [2.1.2]
[17:58:05] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playerstats due to a missing plugin: PlayerStats
[17:58:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[17:58:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: playerlist [3.0.6]
[17:58:05] [Server thread/INFO]: 9 placeholder hook(s) registered! 1 placeholder hook(s) have an update available.
[17:58:05] [Server thread/INFO]: Done (76.727s)! For help, type "help"
[17:58:05] [Server thread/INFO]: Timings Reset
[17:58:05] [Server thread/INFO]: [WildChests] Trying to connect to SQLite database...
[17:58:05] [Server thread/INFO]: [WildChests] Successfully established connection with SQLite database!
[17:58:05] [Server thread/INFO]: [WildLoaders] The chunk-loader at foret,272,25,559 is invalid.
[17:58:05] [Server thread/INFO]: [WildLoaders] The chunk-loader at foret,271,25,559 is invalid.
[17:58:05] [Server thread/INFO]: [WildLoaders] The chunk-loader at foret,271,25,560 is invalid.
[17:58:05] [Craft Scheduler Thread - 8 - ItemsAdder/INFO]: [ItemsAdder] Loaded 247 items
[17:58:05] [Craft Scheduler Thread - 8 - ItemsAdder/INFO]: [ItemsAdder] Used 0/188 REAL block IDs
[17:58:05] [Craft Scheduler Thread - 8 - ItemsAdder/INFO]: [ItemsAdder] Used 30/750 REAL_NOTE block IDs
[17:58:05] [Craft Scheduler Thread - 8 - ItemsAdder/INFO]: [ItemsAdder] Used 0/63 REAL_TRANSPARENT block IDs
[17:58:05] [Craft Scheduler Thread - 8 - ItemsAdder/INFO]: [ItemsAdder] Used 0/127 REAL_WIRE block IDs
[17:58:05] [Craft Scheduler Thread - 8 - ItemsAdder/INFO]: [ItemsAdder] Used 0/14 FIRE block IDs
[17:58:05] [Craft Scheduler Thread - 8 - ItemsAdder/INFO]: [ItemsAdder] Used 627/6608 font_images
[17:58:05] [Craft Scheduler Thread - 8 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded 4 categories
[17:58:05] [Craft Scheduler Thread - 8 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded successfully.
[17:58:05] [Craft Scheduler Thread - 8 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Checking resourcepack url... 
[17:58:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[17:58:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[17:58:06] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for ItemsAdder
[17:58:06] [Server thread/INFO]: [ItemsAdder] Reloading ItemsAdder Custom Entities Citizens NPCs...
[17:58:06] [Server thread/INFO]: [ItemsAdder] Reloaded 0 ItemsAdder Custom Entities Citizens NPCs.
[17:58:06] [Server thread/INFO]: [Mythic] Reloading plugin...
[17:58:06] [Server thread/INFO]: [MythicMobs] Loading Packs...
[17:58:07] [Server thread/INFO]: [MythicMobs] Loading Items...
[17:58:07] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[17:58:07] [Server thread/INFO]: [MythicMobs] Loading Skills...
[17:58:07] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'exlode' is not supported by this version of MythicMobs.
[17:58:07] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'exlode' is not supported by this version of MythicMobs.
[17:58:07] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[17:58:07] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[17:58:07] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[17:58:07] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[17:58:07] [Server thread/WARN]: [MythicMobs] --| Mob: hana | File: /home/container/plugins/MythicMobs/Mobs/torotoro/Hana.yml
[17:58:07] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill CancelEventSkill
[17:58:07] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=CancelEventSkill;sync=true}
[17:58:07] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[17:58:07] [Server thread/WARN]: [MythicMobs] --| Mob: deer_spirit | File: /home/container/plugins/MythicMobs/Mobs/torotoro/Hana.yml
[17:58:07] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill CancelEventSkill
[17:58:07] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=CancelEventSkill;sync=true}
[17:58:07] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[17:58:07] [Server thread/WARN]: [MythicMobs] --| Mob: light_beam | File: /home/container/plugins/MythicMobs/Mobs/torotoro/Hana.yml
[17:58:07] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill CancelEventSkill
[17:58:07] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=CancelEventSkill;sync=true}
[17:58:07] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[17:58:07] [Server thread/WARN]: [MythicMobs] --| Mob: deer_healing | File: /home/container/plugins/MythicMobs/Mobs/torotoro/Hana.yml
[17:58:07] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill CancelEventSkill
[17:58:07] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=CancelEventSkill;sync=true}
[17:58:07] [Server thread/INFO]: [MythicMobs] ✓ Loaded 50 mobs.
[17:58:07] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[17:58:07] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[17:58:07] [Server thread/INFO]: [MythicMobs] ✓ Loaded 216 skills.
[17:58:07] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[17:58:07] [Server thread/INFO]: [MythicMobs] ✓ Loaded 26 mythic items.
[17:58:07] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[17:58:07] [Server thread/INFO]: [MythicMobs] ✓ Loaded 77 mob spawners.
[17:58:07] [Server thread/INFO]: [MythicMobs] Attached traits to items.
[17:58:07] [Server thread/INFO]: [Mythic] Mythic has finished reloading!
[17:58:07] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[17:58:08] [Server thread/INFO]: com.mojang.authlib.GameProfile@451200c1[id=3de9ea3f-f3c4-4430-8123-4a75336deebb,name=Matrakor,properties={textures=[com.mojang.authlib.properties.Property@2467801c]},legacy=false] (/37.65.172.4:49519) lost connection: Disconnected
[17:58:08] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 7423ms or 148 ticks behind
[17:58:08] [Craft Scheduler Thread - 7 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Resourcepack URL (self-host): http://82.64.170.170:25567/generated.zip
[17:58:08] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[17:58:08] [Server thread/INFO]: [CustomCrafting] Loading Recipes & Items
[17:58:08] [Server thread/INFO]: [CustomCrafting] - - - - [Local Storage] - - - -
[17:58:08] [Server thread/INFO]: [CustomCrafting] [LOCAL] Looking through data folder...
[17:58:08] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Items
[17:58:08] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Recipes
[17:58:08] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 47 recipes; Skipped: 0 error/s, 0 already existing
[17:58:08] [Server thread/INFO]: [CustomCrafting] [LOCAL_OLD] Loaded 0 recipes; Skipped: 0 error/s, 0 already existing
[17:58:08] [Server thread/INFO]: [CustomCrafting] [LOCAL_LEGACY] Loaded 0 recipes; Skipped: 0 error/s, 0 already existing
[17:58:08] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 47 recipes
[17:58:08] [Server thread/INFO]: [CustomCrafting] 
[17:58:08] [Server thread/INFO]: [CustomCrafting] Indexing Recipe Book...
[17:58:08] [Server thread/INFO]: [CustomCrafting] Indexed Recipe Book!
[17:58:08] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[17:58:08] [Server thread/INFO]: [CitizensText] 0 texts loadeds
[17:58:08] [Server thread/INFO]: Created team [ACdontTouch]
[17:58:08] [Server thread/INFO]: Collision rule for team [ACdontTouch] is now "Never"
[17:58:10] [Server thread/INFO]: [MythicMobs] Loading ProtocolLib listeners...
[17:58:10] [Server thread/INFO]: [MythicMobs] Attached traits to items.
[17:58:10] [Server thread/INFO]: [MythicMobs] Loaded 26 items.
[17:58:10] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.95.1 ]================================
[17:58:10] [Server thread/INFO]: [ShopGUIPlus]  
[17:58:10] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[17:58:10] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[17:58:10] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[17:58:10] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[17:58:10] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for ItemsAdder.
[17:58:10] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for MythicMobs.
[17:58:10] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for ServerItem.
[17:58:10] [Server thread/INFO]: [ShopGUIPlus] Using WildStacker for spawners support.
[17:58:10] [Server thread/WARN]: [ShopGUIPlus] Error occurred when loading shopMenuFillItem (config.yml), item not loaded: Invalid or no material name specified
[17:58:10] [Server thread/INFO]: [ShopGUIPlus] Loaded 10 main menu items.
[17:58:10] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'coralblocks' with 15 items.
[17:58:10] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'corals' with 16 items.
[17:58:10] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'concretes' with 26 items.
[17:58:10] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'skulls' with 16 items.
[17:58:10] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'buttons' with 20 items.
[17:58:10] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'ores' with 29 items.
[17:58:10] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'woods' with 18 items.
[17:58:10] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks' with 135 items.
[17:58:10] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'glass' with 27 items.
[17:58:10] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'deadcoralfans' with 16 items.
[17:58:10] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'boats' with 17 items.
[17:58:10] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'banners' with 27 items.
[17:58:10] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'dyes' with 27 items.
[17:58:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'food' with 33 items.
[17:58:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'flowers' with 28 items.
[17:58:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'planks' with 18 items.
[17:58:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'trapdoors' with 19 items.
[17:58:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'fences' with 20 items.
[17:58:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'doors' with 19 items.
[17:58:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'glasspanes' with 28 items.
[17:58:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'pressureplates' with 20 items.
[17:58:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'terracottas' with 27 items.
[17:58:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'shulkerboxes' with 28 items.
[17:58:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'glazedterracottas' with 26 items.
[17:58:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'deadcorals' with 16 items.
[17:58:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'coralfans' with 16 items.
[17:58:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'redstone' with 38 items.
[17:58:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'concretepowders' with 26 items.
[17:58:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'musicdiscs' with 24 items.
[17:58:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'beds' with 27 items.
[17:58:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'saplings' with 17 items.
[17:58:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'miscellaneous' with 72 items.
[17:58:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'deadcoralblocks' with 15 items.
[17:58:11] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'fencegates' with 19 items.
[17:58:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'decorations' with 68 items.
[17:58:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'carpets' with 27 items.
[17:58:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'strippedwoods' with 18 items.
[17:58:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'farming' with 36 items.
[17:58:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'signs' with 19 items.
[17:58:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'walls' with 28 items.
[17:58:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'leaves' with 17 items.
[17:58:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'drops' with 60 items.
[17:58:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'strippedlogs' with 18 items.
[17:58:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'logs' with 18 items.
[17:58:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'wools' with 26 items.
[17:58:12] [Server thread/INFO]: [ShopGUIPlus] Loaded 45 shops with total of 1260 items.
[17:58:12] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[17:58:12] [Server thread/INFO]: [ShopGUIPlus] Loaded 7 sounds.
[17:58:12] [Server thread/INFO]: [ShopGUIPlus]  
[17:58:12] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[17:58:14] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[17:58:14] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[17:58:17] [Craft Scheduler Thread - 13 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin has an update available! Your Version: 6.15 New Version: 6.15.1
[17:58:51] [User Authenticator #0/INFO]: UUID of player Matrakor is 3de9ea3f-f3c4-4430-8123-4a75336deebb
[17:58:52] [Server thread/INFO]: Matrakor[/        ip         ] logged in with entity id 918 at ([SuperiorWorld]-4493.409803808837, 94.0, -4499.300000011921)
[17:58:52] [Server thread/INFO]: [+] Matrakor connecté.
[17:59:07] [Server thread/INFO]: Matrakor issued server command: /spawn
[17:59:07] [Server thread/ERROR]: [TempFly] If you are seeing this message there may be a bug. Please contact the tempfly dev with this info: TerritoryHook | onTerritoeyEnter()
[17:59:10] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /gamemode spectator Matrakor
[17:59:10] [Server thread/INFO]: Mode de jeu spectateur pour Matrakor.
[17:59:10] [Server thread/INFO]: Played sound my_sounds:voice.song_1 to Matrakor
[17:59:10] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:10] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:10] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:10] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:10] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:10] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:10] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:10] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:10] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:10] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:10] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:11] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:11] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:11] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:11] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:11] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:11] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:11] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:11] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:11] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:11] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:11] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:11] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:11] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:11] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:11] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:11] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:11] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:11] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:11] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:11] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:12] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:12] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:12] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:12] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:12] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:12] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:12] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:12] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:12] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:12] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:12] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:12] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:12] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:12] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:12] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:12] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:12] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:12] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:12] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:12] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:13] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:13] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:13] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:13] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:13] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:13] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:13] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:13] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:13] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:13] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:13] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:13] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:13] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:13] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:13] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:13] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:13] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:13] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:13] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:13] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:14] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:14] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:14] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:14] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:14] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:14] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:14] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:14] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:14] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:14] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:14] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:14] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:14] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:14] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:14] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:14] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:14] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:14] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:14] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:14] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:15] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:15] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:15] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:15] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:15] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:15] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:15] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:15] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:15] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:15] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:15] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:15] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:15] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:15] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:15] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:15] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:15] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:15] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:15] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:15] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:16] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:16] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:16] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:16] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:16] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:16] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:16] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:16] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:16] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:16] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:16] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:16] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:16] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:16] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:16] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:16] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:16] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:16] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:16] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:16] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:17] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:17] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:17] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:17] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:17] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:17] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:17] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:17] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:17] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:17] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:17] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:17] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:17] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:17] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:17] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:17] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:17] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:17] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:17] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:17] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:18] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:18] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:18] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:18] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:18] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:18] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:18] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:18] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:18] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:18] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:18] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:18] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:18] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:18] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 304.500000
[17:59:18] [Server thread/INFO]: Teleported Matrakor to 289.500000, 25.000000, 305.500000
[17:59:18] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /gamemode survival Matrakor
[17:59:18] [Server thread/INFO]: Mode de jeu survie pour Matrakor.
[17:59:19] [Server thread/INFO]: Largage ➀ Il y a un Ă©vĂ©nement largage en cours dans 1m, 0s.
[17:59:21] [Server thread/INFO]: Played sound my_sounds:voice.song_2 to Matrakor
[17:59:23] [User Authenticator #0/INFO]: UUID of player NeastYTB is aad6d16f-7f16-43cc-b106-22798204e556
[17:59:24] [Server thread/INFO]: NeastYTB[/         ip          ] logged in with entity id 985 at ([world]274.6737466482276, 24.9375, 308.6036461744234)
[17:59:24] [Server thread/INFO]: [+] NeastYTB connecté.
[17:59:49] [Server thread/INFO]: Largage ➀ Il y a un Ă©vĂ©nement largage en cours dans 30s.
[17:59:52] [Server thread/INFO]: Teleported Matrakor to 218.500000, 33.000000, 283.500000
[17:59:52] [Server thread/INFO]: An error occured while performing this command !
[17:59:52] [Server thread/INFO]: /animotion This player is not playing an animotion.
[17:59:58] [Server thread/INFO]: NeastYTB issued server command: /heal
[17:59:59] [Server thread/INFO]: Largage ➀ Il y a un Ă©vĂ©nement largage en cours dans 20s.
[18:00:09] [Server thread/INFO]: Largage ➀ Il y a un Ă©vĂ©nement largage en cours dans 10s.
[18:00:12] [Server thread/INFO]: Matrakor issued server command: /is home
[18:00:13] [Server thread/ERROR]: [TempFly] If you are seeing this message there may be a bug. Please contact the tempfly dev with this info: TerritoryHook | onTerritoeyEnter()
[18:00:14] [Server thread/INFO]: Largage ➀ Il y a un Ă©vĂ©nement largage en cours dans 5s.
[18:00:16] [Server thread/INFO]: Largage ➀ Il y a un Ă©vĂ©nement largage en cours dans 3s.
[18:00:18] [Server thread/INFO]: Largage ➀ Il y a un Ă©vĂ©nement largage en cours dans 1s.
[18:00:19] [Server thread/INFO]: Largage ➀ Il n'y a pas suffisamment de joueurs en ligne pour dĂ©marrer l'Ă©vĂ©nement largage.
[18:02:41] [Async Chat Thread - #2/INFO]: :player: Matrakor: j'afk / min
[18:02:45] [Async Chat Thread - #1/INFO]: :player: Matrakor: 10/15min