Paste #105896: DenizenMetaBot Auto-Repaste Of log From Alex121

Date: 2023/02/01 14:02:01 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[21:39:42] [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'
[21:39:46] [Worker-Main-3/INFO]: Loaded 7 recipes
[21:39:49] [Server thread/INFO]: Starting minecraft server version 1.18.2
[21:39:49] [Server thread/INFO]: Loading properties
[21:39:50] [Server thread/INFO]: This server is running CraftBukkit version 3498-Spigot-b081915-10ba1be (MC: 1.18.2) (Implementing API version 1.18.2-R0.1-SNAPSHOT)
[21:39:50] [Server thread/INFO]: Debug logging is disabled
[21:39:50] [Server thread/INFO]: Server Ping Player Sample Count: 12
[21:39:50] [Server thread/INFO]: Using 4 threads for Netty based IO
[21:39:50] [Server thread/INFO]: Default game type: SURVIVAL
[21:39:50] [Server thread/INFO]: Generating keypair
[21:39:50] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25572
[21:39:50] [Server thread/INFO]: Using epoll channel type
[21:39:51] [Server thread/ERROR]: Ambiguous plugin name `BuycraftX' for files `plugins/BuycraftX.jar' and `plugins/BuycraftX (1).jar' in `plugins'
[21:39:51] [Server thread/ERROR]: Could not load 'plugins/bstat.jar' in folder 'plugins'
org.bukkit.plugin.InvalidDescriptionException: Invalid plugin.yml
    at org.bukkit.plugin.java.JavaPluginLoader.getPluginDescription(JavaPluginLoader.java:178) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:144) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_18_R2.CraftServer.loadPlugins(CraftServer.java:407) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:232) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1007) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at java.lang.Thread.run(Thread.java:833) [?:?]
Caused by: java.util.zip.ZipException: zip file is empty
    at java.util.zip.ZipFile$Source.zerror(ZipFile.java:1598) ~[?:?]
    at java.util.zip.ZipFile$Source.findEND(ZipFile.java:1382) ~[?:?]
    at java.util.zip.ZipFile$Source.initCEN(ZipFile.java:1477) ~[?:?]
    at java.util.zip.ZipFile$Source.<init>(ZipFile.java:1315) ~[?:?]
    at java.util.zip.ZipFile$Source.get(ZipFile.java:1277) ~[?:?]
    at java.util.zip.ZipFile$CleanableResource.<init>(ZipFile.java:709) ~[?:?]
    at java.util.zip.ZipFile.<init>(ZipFile.java:243) ~[?:?]
    at java.util.zip.ZipFile.<init>(ZipFile.java:172) ~[?:?]
    at java.util.jar.JarFile.<init>(JarFile.java:347) ~[?:?]
    at java.util.jar.JarFile.<init>(JarFile.java:318) ~[?:?]
    at java.util.jar.JarFile.<init>(JarFile.java:284) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader.getPluginDescription(JavaPluginLoader.java:166) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    ... 6 more
[21:39:51] [Server thread/WARN]: Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[21:39:57] [Server thread/WARN]: Legacy plugin MythicLib v0.0.1-SNAPSHOT does not specify an api-version.
[21:39:57] [Server thread/WARN]: Legacy plugin JoinEffect v3 does not specify an api-version.
[21:39:58] [Server thread/WARN]: Legacy plugin eRankUP v1.1.3 does not specify an api-version.
[21:39:59] [Server thread/ERROR]: Could not load 'plugins/MMOItems-6.8.2 (1).jar' in folder 'plugins'
org.bukkit.plugin.InvalidPluginException: java.lang.NoClassDefFoundError: io/lumine/mythic/lib/api/util/ui/FriendlyFeedbackPalette
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:149) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:394) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:301) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_18_R2.CraftServer.loadPlugins(CraftServer.java:407) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:232) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1007) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at java.lang.Thread.run(Thread.java:833) [?:?]
Caused by: java.lang.NoClassDefFoundError: io/lumine/mythic/lib/api/util/ui/FriendlyFeedbackPalette
    at java.lang.Class.forName0(Native Method) ~[?:?]
    at java.lang.Class.forName(Class.java:467) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:67) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:145) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    ... 7 more
Caused by: java.lang.ClassNotFoundException: io.lumine.mythic.lib.api.util.ui.FriendlyFeedbackPalette
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:147) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:99) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    at java.lang.Class.forName0(Native Method) ~[?:?]
    at java.lang.Class.forName(Class.java:467) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:67) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:145) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    ... 7 more
[21:39:59] [Server thread/INFO]: [MythicLib] Loading MythicLib v0.0.1-SNAPSHOT
[21:39:59] [Server thread/INFO]: [CrucialAPI] Loading CrucialAPI v2.1.7
[21:39:59] [Server thread/INFO]: [MyTrip] Loading MyTrip v0.7.5
[21:39:59] [Server thread/INFO]: [SmartInvs] Loading SmartInvs v1.2.7
[21:39:59] [Server thread/INFO]: [EpicPluginLib] Loading EpicPluginLib v2.1
[21:39:59] [Server thread/INFO]: [NBTAPI] Loading NBTAPI v2.9.2
[21:39:59] [Server thread/INFO]: [NBTAPI] bStats disabled
[21:39:59] [Server thread/INFO]: [NBTAPI] Update check disabled
[21:39:59] [Server thread/INFO]: [NBTAPI] Found Spigot: v1_18_R2! Trying to find NMS support
[21:39:59] [Server thread/INFO]: [NBTAPI] NMS support 'MC1_18_R2' loaded!
[21:39:59] [Server thread/INFO]: [NBTAPI] Found Gson: class com.google.gson.Gson
[21:39:59] [Server thread/INFO]: [JoinEffect] Loading JoinEffect v3
[21:39:59] [Server thread/INFO]: [MiniMOTD] Loading MiniMOTD v2.0.5
[21:39:59] [Server thread/INFO]: [CommandDefender] Loading CommandDefender v2.1.2 b26
[21:39:59] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.3.86
[21:39:59] [Server thread/INFO]: [ClearLag] Loading ClearLag v3.2.2
[21:39:59] [Server thread/INFO]: [HoloDropsX] Loading HoloDropsX v3.0.0
[21:39:59] [Server thread/INFO]: [SetSpawn] Loading SetSpawn v3.6
[21:39:59] [Server thread/INFO]: [SimpleBackpack] Loading SimpleBackpack v4
[21:39:59] [Server thread/INFO]: [BuycraftX] Loading BuycraftX v12.0.8
[21:39:59] [Server thread/INFO]: [RealisticSurvival] Loading RealisticSurvival v1.2.3
[21:39:59] [Server thread/INFO]: [LoneLibs] Loading LoneLibs v1.0.23
[21:39:59] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v4.8.0-SNAPSHOT-b539
[21:40:00] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.18.2) has not yet been tested! Proceed with caution.
[21:40:01] [Server thread/INFO]: [LibsDisguises] Loading LibsDisguises v10.0.31
[21:40:01] [Server thread/INFO]: [AutoPluginLoader] Loading AutoPluginLoader v1.2.6
[21:40:01] [Server thread/INFO]: [SkinsRestorer] Loading SkinsRestorer v14.2.8
[21:40:01] [Server thread/INFO]: [Instruments] Loading Instruments v1.8
[21:40:01] [Server thread/INFO]: [BlockParticles] Loading BlockParticles v1.12-Build#15
[21:40:01] [Server thread/INFO]: [AureliumSkills] Loading AureliumSkills vBeta 1.2.10
[21:40:02] [Server thread/INFO]: [OpenAudioMc] Loading OpenAudioMc v6.7.7
[21:40:02] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.1
[21:40:02] [Server thread/INFO]: [NametagEdit] Loading NametagEdit v4.5.5
[21:40:02] [Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v3.0.0-SNAPSHOT-b205
[21:40:02] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags v1.8.2-Release
[21:40:02] [Server thread/INFO]: [LPC] Loading LPC v3.2.0
[21:40:02] [Server thread/INFO]: [ClearLagTimer] Loading ClearLagTimer vBuild 34
[21:40:02] [Server thread/INFO]: [ChatEmojis] Loading ChatEmojis v1.3.4
[21:40:02] [Server thread/INFO]: [UltimateChairs] Loading UltimateChairs v1.4.2
[21:40:02] [Server thread/INFO]: [UltimateChairs] Registered WorldGuard flag 'allow-chair-sitting'.
[21:40:02] [Server thread/INFO]: [BetonQuest] Loading BetonQuest v1.12.9
[21:40:02] [Server thread/INFO]: [ItemsAdder] Loading ItemsAdder v3.3.1
[21:40:02] [Server thread/INFO]: [MythicMobs] Loading MythicMobs v5.0.2-a86da3b0
[21:40:02] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[21:40:02] [Server thread/INFO]: [Quests] Loading Quests v3.10.1
[21:40:02] [Server thread/INFO]: [DeadlyDisasters] Loading DeadlyDisasters v8.2
[21:40:02] [Server thread/INFO]: [UltraBar] Loading UltraBar v2.3.1.1
[21:40:02] [Server thread/INFO]: [NexEngine] Loading NexEngine v2.1.2 build-15/03/2022
[21:40:02] [Server thread/INFO]: [NexEngine_CustomEffects] Loading NexEngine_CustomEffects v1.0.0
[21:40:02] [Server thread/INFO]: [ExcellentEnchants] Loading ExcellentEnchants v3.1.4
[21:40:02] [Server thread/INFO]: [BetterRTP] Loading BetterRTP v3.2.1-4
[21:40:02] [Server thread/INFO]: [PlayMoreSounds] Loading PlayMoreSounds v4.1.1
[21:40:02] [Server thread/INFO]: [Crawling] Loading Crawling v5.2.2-SNAPSHOT
[21:40:02] [Server thread/INFO]: [Crawling] Found WorldGuard 7+
[21:40:02] [Server thread/INFO]: [Crawling] Pre-check for WorldGuard custom flag registration
[21:40:02] [Server thread/INFO]: [TitleManager] Loading TitleManager v2.3.6
[21:40:02] [Server thread/INFO]: [Essentials] Loading Essentials v2.19.4
[21:40:02] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[21:40:02] [Server thread/INFO]: [BankPlus] Loading BankPlus v3.9
[21:40:02] [Server thread/INFO]: [eRankUP] Loading eRankUP v1.1.3
[21:40:02] [Server thread/INFO]: [Jackpot] Loading Jackpot v1.0
[21:40:02] [Server thread/INFO]: [BountyHunters] Loading BountyHunters v2.2.6
[21:40:02] [Server thread/INFO]: [ItemEdit] Loading ItemEdit v3.0.7
[21:40:02] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.1-b861
[21:40:02] [Server thread/INFO]: [FastAsyncWorldEdit] Loading FastAsyncWorldEdit v2.1.1-SNAPSHOT-133;05f80f2
[21:40:05] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@5442023c]
[21:40:05] [Server thread/INFO]: [DeathCoordinates] Loading DeathCoordinates v1.11.1
[21:40:05] [Server thread/INFO]: [TradeSystem] Loading TradeSystem v2.1.0
[21:40:05] [Server thread/INFO]: [PlayerAuctions] Loading PlayerAuctions v1.11.1
[21:40:05] [Server thread/INFO]: [DeluxeMenus] Loading DeluxeMenus v1.13.6-DEV-null
[21:40:05] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup successfully!
[21:40:05] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.6+1cff55f
[21:40:05] [Server thread/INFO]: [MarriageMaster] Loading MarriageMaster v2.6.8-Release
[21:40:05] [Server thread/INFO]: [MarriageMaster] PCGF-PluginLib not installed. Switching to standalone mode!
[21:40:05] [Server thread/INFO]: [MarriageMaster] File "/IMessage.jar" extracted successfully!
[21:40:05] [Server thread/INFO]: [EvenMoreFish] Loading EvenMoreFish v1.5.0.1
[21:40:05] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2805)
[21:40:05] [Server thread/INFO]: [ExcellentCrates] Loading ExcellentCrates v4.0.3.6
[21:40:06] [Server thread/INFO]: [ModelEngine] Loading ModelEngine vR2.5.1
[21:40:06] [Server thread/INFO]: [ProtectionStones] Loading ProtectionStones v2.9.1
[21:40:06] [Server thread/INFO]: [CommandNPC] Loading CommandNPC v2.1.2
[21:40:06] [Server thread/INFO]: [CMILib] Loading CMILib v1.1.2.0
[21:40:06] [Server thread/INFO]: [Jobs] Loading Jobs v5.0.2.1
[21:40:06] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.3.86
[21:40:07] [Server thread/INFO]:         __    
[21:40:07] [Server thread/INFO]:   |    |__)   LuckPerms v5.3.86
[21:40:07] [Server thread/INFO]:   |___ |      Running on Bukkit - CraftBukkit
[21:40:07] [Server thread/INFO]: 
[21:40:07] [Server thread/INFO]: [LuckPerms] Loading configuration...
[21:40:08] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[21:40:09] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[21:40:09] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[21:40:10] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 4483ms)
[21:40:10] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.23
[21:40:10] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v4.8.0-SNAPSHOT-b539
[21:40:10] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread.
[21:40:10] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.1.2 build-15/03/2022
[21:40:10] [Server thread/INFO]: [NexEngine] Loaded NMS version: V1_18_R2
[21:40:10] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[21:40:10] [Server thread/INFO]: [NexEngine] Successfully hooked with Vault!
[21:40:10] [Server thread/INFO]: [NexEngine] Found 0 external module(s).
[21:40:10] [Server thread/INFO]: [NexEngine] Plugin loaded in 295 ms!
[21:40:10] [Server thread/INFO]: [NexEngine_CustomEffects] Enabling NexEngine_CustomEffects v1.0.0
[21:40:10] [Server thread/INFO]: [NexEngine_CustomEffects] Powered by: NexEngine
[21:40:10] [Server thread/INFO]: [NexEngine_CustomEffects] Found 0 external module(s).
[21:40:11] [Server thread/INFO]: [NexEngine_CustomEffects] Plugin loaded in 103 ms!
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Enabling ExcellentEnchants v3.1.4
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Powered by: NexEngine
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Tiers Loaded: 6
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Found 0 external module(s).
[21:40:11] [Server thread/WARN]: [NexEngine] Loaded class su.nightexpress.excellentenchants.nms.V1_18_R2 from ExcellentEnchants v3.1.4 which is not a depend or softdepend of this plugin.
[21:40:11] [Server thread/INFO]: [NexEngine] Enabling player block place tracker...
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_breaking
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_misfortune
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: divine_touch
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: haste
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: lucky_miner
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: replanter
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: silk_chest
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: smelter
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: telekinesis
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: treasures
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bane_of_netherspawn
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ice_aspect
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: infernus
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: venom
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: exhaust
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: wither
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: paralyze
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: exp_hunter
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: decapitator
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cutter
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: confusion
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: double_strike
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: nimble
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: blindness
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: vampire
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cure
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rage
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: scavenger
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: surprise
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: thrifty
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: thunder
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: village_defender
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rocket
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: flame_walker
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: hardened
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cold_steel
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: self_destruction
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: saturation
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: aquaman
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: night_vision
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bunny_hop
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: sonic
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: regrowth
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: poisoned_arrows
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: withered_arrows
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Enchants Registered: 45
[21:40:11] [Server thread/INFO]: [ExcellentEnchants] Plugin loaded in 961 ms!
[21:40:12] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[21:40:12] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[21:40:12] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[21:40:12] [Server thread/INFO]: [NexEngine] Successfully hooked with SuperPerms permissions
[21:40:12] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[21:40:12] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[21:40:12] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[21:40:12] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[21:40:12] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[21:40:12] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.1.1-SNAPSHOT-133;05f80f2
[21:40:12] [Server thread/INFO]: LZ4 Compression Binding loaded successfully
[21:40:12] [Server thread/INFO]: ZSTD Compression Binding loaded successfully
[21:40:12] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[21:40:12] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[21:40:13] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_18_R2.PaperweightFaweAdapter as the Bukkit adapter
[21:40:15] [Server thread/WARN]: An update for FastAsyncWorldEdit is available. You are 215 build(s) out of date.
You are running build 133, the latest version is build 348.
Update at https://www.spigotmc.org/resources/13932/
[21:40:15] [Server thread/INFO]: Preparing level "world"
[21:40:17] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[21:40:28] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:28] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:28] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:28] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:28] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:28] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:40:28] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:40:28] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:28] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:28] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:28] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:28] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:28] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:28] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:28] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:28] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:28] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:28] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:28] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:28] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:28] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:28] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:28] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:40:29] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:40:29] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:30] [Worker-Main-3/INFO]: Preparing spawn area: 6%
[21:40:30] [Worker-Main-4/INFO]: Preparing spawn area: 29%
[21:40:31] [Worker-Main-4/INFO]: Preparing spawn area: 36%
[21:40:31] [Worker-Main-3/INFO]: Preparing spawn area: 46%
[21:40:32] [Worker-Main-3/INFO]: Preparing spawn area: 57%
[21:40:32] [Worker-Main-3/INFO]: Preparing spawn area: 71%
[21:40:33] [Worker-Main-3/INFO]: Preparing spawn area: 86%
[21:40:33] [Worker-Main-4/INFO]: Preparing spawn area: 97%
[21:40:33] [Server thread/INFO]: Time elapsed: 16051 ms
[21:40:33] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[21:40:34] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:34] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:40:34] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:35] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:35] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:36] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:36] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:40:37] [Worker-Main-3/INFO]: Preparing spawn area: 2%
[21:40:37] [Worker-Main-4/INFO]: Preparing spawn area: 12%
[21:40:38] [Worker-Main-3/INFO]: Preparing spawn area: 30%
[21:40:38] [Worker-Main-3/INFO]: Preparing spawn area: 80%
[21:40:39] [Server thread/INFO]: Time elapsed: 5393 ms
[21:40:39] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[21:40:40] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:40] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:40:40] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:40] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:40:41] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:40:41] [Worker-Main-3/INFO]: Preparing spawn area: 9%
[21:40:42] [Worker-Main-3/INFO]: Preparing spawn area: 37%
[21:40:42] [Worker-Main-3/INFO]: Preparing spawn area: 89%
[21:40:42] [Server thread/INFO]: Time elapsed: 3576 ms
[21:40:42] [Server thread/INFO]: [MythicLib] Enabling MythicLib v0.0.1-SNAPSHOT
[21:40:42] [Server thread/INFO]: [MythicLib] MythicLib has been enabled!
[21:40:42] [Server thread/INFO]: [CrucialAPI] Enabling CrucialAPI v2.1.7
[21:40:42] [Server thread/INFO]: CrucialAPI is now enabled (Version: 2.1.7) made by [ChafficPlugins].
[21:40:42] [Server thread/INFO]: [MyTrip] Enabling MyTrip v0.7.5
[21:40:42] [Server thread/INFO]: Successfully connected to CrucialAPI.
[21:40:42] [Server thread/INFO]: Successfully created MDMA (key: MDMA9e64b1e7-94e7-4c43-aafd-1b9a2f23773cdrug)
[21:40:42] [Server thread/INFO]: Successfully created Weed (key: Weedc2cef703-210a-4038-87f3-e19fc7db6eb5drug)
[21:40:42] [Server thread/INFO]: Successfully created Codein (key: Codeinc1891fab-9d34-48e0-a611-44afe34f3386drug)
[21:40:42] [Server thread/INFO]: Successfully created LSD (key: LSD46ee017a-1c69-41dc-ac2a-2fbddad97388drug)
[21:40:42] [Server thread/INFO]: Successfully created Tilidine (key: Tilidine9f5aad89-98df-4bb9-8a12-b98ade8d20d9drug)
[21:40:42] [Server thread/INFO]: Successfully created drug_set (key: drug_set2e116c45-8bd6-4297-a8c1-98041c08d39cdrug_tool)
[21:40:42] [Server thread/INFO]: Successfully created drug_test (key: drug_test764d1358-32d9-4f8b-af6c-c5d64de2bfd0drug_tool)
[21:40:42] [Server thread/INFO]: Successfully created anti_toxin (key: anti_toxin8000f544-c0db-4af2-aea5-80fa8bc53aaadrug_tool)
[21:40:42] [Server thread/INFO]: MyTrip is now enabled (Version: 0.7.5) made by [ChafficPlugins].
[21:40:42] [Server thread/INFO]: [SmartInvs] Enabling SmartInvs v1.2.7
[21:40:42] [Server thread/INFO]: [EpicPluginLib] Enabling EpicPluginLib v2.1
[21:40:42] [Server thread/INFO]: [EpicPluginLib] Dependency found: PlayMoreSounds.
[21:40:42] [Server thread/INFO]: [EpicPluginLib] Lib enabled successfully.
[21:40:42] [Server thread/INFO]: [EpicPluginLib] EpicPluginLib is using bStats as metrics collector.
[21:40:42] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.9.2
[21:40:42] [Server thread/INFO]: [NBTAPI] Adding listeners...
[21:40:42] [Server thread/INFO]: [NBTAPI] Gson:
[21:40:42] [Server thread/INFO]: [NBTAPI] Checking bindings...
[21:40:43] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[21:40:43] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[21:40:43] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[21:40:43] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[21:40:43] [Server thread/INFO]: [JoinEffect] Enabling JoinEffect v3
[21:40:43] [Server thread/INFO]: [JoinEffect] JoinEffect v3 has been successfully enabled!
[21:40:43] [Server thread/INFO]: [JoinEffect] Version 3 Supports 11.3+
[21:40:44] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.0.5
[21:40:44] [Server thread/WARN]: ======================================================
[21:40:44] [Server thread/WARN]:  MiniMOTD works better if you use Paper as your server
[21:40:44] [Server thread/WARN]:  software.
[21:40:44] [Server thread/WARN]:  
[21:40:44] [Server thread/WARN]:  Spigot does not include the necessary APIs for all
[21:40:44] [Server thread/WARN]:  of MiniMOTD's features to operate. MiniMOTD was
[21:40:44] [Server thread/WARN]:  designed to work with Paper and it's expanded API
[21:40:44] [Server thread/WARN]:  for full compatibility.
[21:40:44] [Server thread/WARN]:  
[21:40:44] [Server thread/WARN]:  Get Paper from https://papermc.io/downloads
[21:40:44] [Server thread/WARN]: ======================================================
[21:40:44] [Server thread/INFO]: [CommandDefender] Enabling CommandDefender v2.1.2 b26
[21:40:44] [Server thread/INFO]: CommandDefender: ~ Initiating start-up procedure ~
[21:40:44] [Server thread/INFO]: CommandDefender: File Loader: Loading files...
[21:40:44] [Server thread/INFO]: CommandDefender: Start-up: Registering listeners...
[21:40:44] [Server thread/INFO]: CommandDefender: Start-up: Registering commands...
[21:40:44] [Server thread/INFO]: CommandDefender: Start-up: Running misc procedures...
[21:40:44] [Server thread/INFO]: CommandDefender: ~ Start-up complete, took 11ms ~
[21:40:44] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[21:40:44] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[21:40:44] [Server thread/INFO]: [ClearLag] Loading modules...
[21:40:44] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (net.minecraft.server.v1_18_R2.MinecraftServer)
[21:40:44] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[21:40:44] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[21:40:44] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[21:40:44] [Server thread/INFO]: [HoloDropsX] Enabling HoloDropsX v3.0.0
[21:40:44] [Thread-13/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.18]...
[21:40:44] [Thread-13/INFO]: [ClearLag] No updates found!
[21:40:44] [Server thread/INFO]: [SetSpawn] Enabling SetSpawn v3.6
[21:40:44] [Server thread/INFO]: [SetSpawn] Enabled!
[21:40:44] [Server thread/INFO]: [SimpleBackpack] Enabling SimpleBackpack v4
[21:40:45] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[21:40:45] [Server thread/INFO]: [BuycraftX] Validating your server key...
[21:40:46] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[21:40:46] [Server thread/INFO]: [RealisticSurvival] Enabling RealisticSurvival v1.2.3
[21:40:48] [Server thread/INFO]: [RealisticSurvival] Registered warming enchant!
[21:40:48] [Server thread/INFO]: [RealisticSurvival] Registered cooling enchant!
[21:40:48] [Server thread/INFO]: [RealisticSurvival] Registered ozzy_liner enchant!
[21:40:48] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.31
[21:40:48] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-10.0.31-Free.jar
[21:40:48] [Server thread/INFO]: [LibsDisguises] Discovered nms version: v1_18_R2
[21:40:48] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1119
[21:40:48] [Server thread/INFO]: [LibsDisguises] Build Date: 09/08/2022 06:41
[21:40:48] [Server thread/WARN]: [LibsDisguises] If you own the plugin, place the premium jar downloaded from https://www.spigotmc.org/resources/libs-disguises.32453/ in plugins/LibsDisguises/
[21:40:48] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[21:40:59] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[21:40:59] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[21:40:59] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[21:40:59] [Server thread/INFO]: [AutoPluginLoader] Enabling AutoPluginLoader v1.2.6
[21:40:59] [Server thread/INFO]: [AutoPluginLoader] Plugin has successfully loaded. (Took 5ms)
[21:40:59] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v14.2.8
[21:40:59] [Server thread/INFO]: [SkinsRestorer] Detected Minecraft v1_18_R2, using MappingSpigotSkinRefresher.
[21:41:00] [Server thread/INFO]: [Instruments] Enabling Instruments v1.8
[21:41:00] [Server thread/INFO]: [Instruments] bStats: true plugin ver: 1.8
[21:41:00] [Server thread/INFO]: [BlockParticles] Enabling BlockParticles v1.12-Build#15
[21:41:00] [Server thread/INFO]: [BlockParticles] Loading the config.yml
[21:41:00] [Server thread/INFO]: [BlockParticles] Successfully loaded config.yml
[21:41:00] [Server thread/INFO]: [BlockParticles] Loading the data.yml
[21:41:00] [Server thread/INFO]: [BlockParticles] Successfully loaded data.yml
[21:41:00] [Server thread/INFO]: [AureliumSkills] Enabling AureliumSkills vBeta 1.2.10
[21:41:00] [Server thread/INFO]: [AureliumSkills] Vault Support Enabled!
[21:41:00] [Server thread/INFO]: [AureliumSkills] Loaded 183 config options in 1 ms
[21:41:00] [Server thread/INFO]: [AureliumSkills] Loaded 284 sources and 10 tags in 44ms
[21:41:00] [Server thread/INFO]: [AureliumSkills] Loading languages...
[21:41:02] [Server thread/INFO]: [AureliumSkills] Loaded 14 languages in 1428ms
[21:41:02] [Server thread/INFO]: [AureliumSkills] Loaded 30 pattern rewards and 0 level rewards
[21:41:02] [Server thread/INFO]: [AureliumSkills] Loaded 3 menus, 9 items, and 5 templates in 67 ms
[21:41:02] [Server thread/INFO]: [AureliumSkills] Loaded 78 Ability Options in 18ms
[21:41:02] [Server thread/INFO]: [AureliumSkills] Loaded 32 loot entries in 4 pools and 2 tables
[21:41:02] [Server thread/INFO]: [AureliumSkills] Loaded 3 blocked worlds.
[21:41:02] [Server thread/INFO]: [AureliumSkills] Aurelium Skills has been enabled
[21:41:02] [Server thread/INFO]: [NBTAPI] Found Spigot: v1_18_R2! Trying to find NMS support
[21:41:02] [Server thread/INFO]: [NBTAPI] NMS support 'MC1_18_R2' loaded!
[21:41:02] [Server thread/INFO]: [NBTAPI] Found Gson: class com.google.gson.Gson
[21:41:02] [Server thread/INFO]: [OpenAudioMc] Enabling OpenAudioMc v6.7.7
[21:41:02] [Server thread/INFO]: [OpenAudioMc] Initializing build 582 by Mats
[21:41:02] [Server thread/INFO]: [OpenAudioMc] Using the main config file..
[21:41:02] [Server thread/INFO]: [OpenAudioMc] Starting configuration module
[21:41:02] [Server thread/INFO]: [OpenAudioMc] Using the main config file..
[21:41:02] [Server thread/INFO]: [OpenAudioMc] Starting configuration module
[21:41:02] [Server thread/INFO]: [OpenAudioMc] Skipped 28/28 migrations.
[21:41:02] [Server thread/INFO]: [OpenAudioMc] ModuleLoaderService: Loading modules from /home/container/plugins/OpenAudioMc/modules
[21:41:02] [Server thread/INFO]: [OpenAudioMc] Initializing socket connector
[21:41:03] [Server thread/INFO]: [OpenAudioMc] Starting authentication module
[21:41:03] [Server thread/INFO]: [OpenAudioMc] This server already has an account, skipping sign up.
[21:41:03] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Adding spigot tables
[21:41:03] [Server thread/INFO]: [OpenAudioMc] Registering storage table for Alias
[21:41:03] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (alias<->Alias.java)
[21:41:03] [Server thread/INFO]: [OpenAudioMc] Registering storage table for ClientDataStore
[21:41:03] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (client_data_store<->ClientDataStore.java)
[21:41:03] [Server thread/INFO]: [OpenAudioMc] Registering storage table for MojangProfile
[21:41:03] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (mojang_profile<->MojangProfile.java)
[21:41:03] [Server thread/INFO]: [OpenAudioMc] Registering storage table for RegionProperties
[21:41:03] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (region_properties<->RegionProperties.java)
[21:41:03] [Server thread/INFO]: [OpenAudioMc] Registering storage table for Speaker
[21:41:03] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (speaker<->Speaker.java)
[21:41:03] [Server thread/INFO]: [OpenAudioMc] Registering storage table for StoredWorldChunk
[21:41:03] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (stored_world_chunk<->StoredWorldChunk.java)
[21:41:03] [Server thread/INFO]: [OpenAudioMc] Registering storage table for TimedRegionProperties
[21:41:03] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (timed_region_properties<->TimedRegionProperties.java)
[21:41:03] [Server thread/INFO]: [OpenAudioMc] Registering storage table for MediaRule
[21:41:03] [Server thread/INFO]: [OpenAudioMc] DatabaseService: Registering class <-> table (media_rule<->MediaRule.java)
[21:41:03] [Server thread/INFO]: [OpenAudioMc] Initializing account details
[21:41:04] [Server thread/INFO]: [OpenAudioMc] The server is empty! ignoring voice chat.
[21:41:04] [Server thread/INFO]: [OpenAudioMc] Loading aliases...
[21:41:04] [Server thread/INFO]: [OpenAudioMc] Loaded 0 aliases
[21:41:04] [Server thread/INFO]: [OpenAudioMc] Detected version type: MODERN
[21:41:04] [Server thread/INFO]: [OpenAudioMc] Enabling the 1.13 speaker system
[21:41:04] [Server thread/INFO]: [OpenAudioMc] Using ip: 150.136.116.100
[21:41:04] [Server thread/INFO]: [OpenAudioMc] Attempting to start a cdn injector at port 8050. Timeout=5-seconds
[21:41:04] [Server thread/INFO]: [OpenAudioMc] Attempting to start a cdn injector at port 7700. Timeout=5-seconds
[21:41:04] [Server thread/INFO]: [OpenAudioMc] Continuing without the RestDirect feature! None of the listed ports were accessible or available. Please contact support, your server/host might not be compatible!
[21:41:04] [Server thread/INFO]: [OpenAudioMc] Starting and loading took 66514MS
[21:41:04] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.1
[21:41:04] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[21:41:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: oa [1.0.0]
[21:41:04] [Server thread/INFO]: [NametagEdit] Enabling NametagEdit v4.5.5
[21:41:04] [Server thread/INFO]: [NametagEdit] Found LuckPerms! Hooking in.
[21:41:04] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v3.0.0-SNAPSHOT-b205
[21:41:05] [Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
[21:41:05] [Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
[21:41:05] [Server thread/INFO]: [DeluxeTags] 8 tags loaded
[21:41:05] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[21:41:05] [Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
[21:41:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxetags [1.8.2-Release]
[21:41:05] [Server thread/INFO]: [DeluxeTags] ----------------------------
[21:41:05] [Server thread/INFO]: [DeluxeTags]      DeluxeTags Updater
[21:41:05] [Server thread/INFO]: [DeluxeTags]  
[21:41:05] [Server thread/INFO]: [DeluxeTags] You are running 1.8.2-Release
[21:41:05] [Server thread/INFO]: [DeluxeTags] The latest version
[21:41:05] [Server thread/INFO]: [DeluxeTags] of DeluxeTags!
[21:41:05] [Server thread/INFO]: [DeluxeTags]  
[21:41:05] [Server thread/INFO]: [DeluxeTags] ----------------------------
[21:41:05] [Server thread/INFO]: [LPC] Enabling LPC v3.2.0
[21:41:05] [Server thread/INFO]: [LPC] Hooked into PlaceholderAPI.
[21:41:05] [Server thread/INFO]: [ClearLagTimer] Enabling ClearLagTimer vBuild 34
[21:41:05] [Server thread/INFO]: 
[21:41:05] [Server thread/INFO]: [ClearLagTimer] Build 34, a free resource by Norska - Thanks for downloading!
[21:41:05] [Server thread/INFO]: 
[21:41:05] [Server thread/INFO]: [ChatEmojis] Enabling ChatEmojis v1.3.4
[21:41:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: chatemojis [1.3.4]
[21:41:05] [Server thread/INFO]: [UltimateChairs] Enabling UltimateChairs v1.4.2
[21:41:05] [Server thread/INFO]: [BetonQuest] Enabling BetonQuest v1.12.9
[21:41:06] [Server thread/INFO]: [BetonQuest] Using SQLite for storing data!
[21:41:06] [Server thread/INFO]: [BetonQuest] Configuration up to date!
[21:41:06] [Thread-18/INFO]: [UltimateChairs] There is a new update available!
[21:41:06] [Thread-18/INFO]: [UltimateChairs] Download it from here: https://www.spigotmc.org/resources/ultimatechairs.80434/
[21:41:06] [Server thread/INFO]: [BetonQuest] Hooking into ProtocolLib
[21:41:06] [Server thread/INFO]: [BetonQuest] Hooking into PlaceholderAPI
[21:41:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: betonquest [1.12.9]
[21:41:06] [Server thread/INFO]: [BetonQuest] Hooking into HolographicDisplays
[21:41:06] [Server thread/INFO]: [BetonQuest] Hooking into Vault
[21:41:06] [Server thread/INFO]: [BetonQuest] Hooking into FastAsyncWorldEdit
[21:41:06] [Server thread/INFO]: [BetonQuest] BetonQuest succesfully enabled!
[21:41:06] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v3.3.1
[21:41:06] [Server thread/INFO]: [NBTAPI] Found Spigot: v1_18_R2! Trying to find NMS support
[21:41:06] [Server thread/INFO]: [NBTAPI] NMS support 'MC1_18_R2' loaded!
[21:41:06] [Server thread/INFO]: [NBTAPI] Found Gson: class com.google.gson.Gson
[21:41:07] [Server thread/INFO]: [ItemsAdder] 
  ___  ___        __        __   __   ___  __      ItemsAdder 3.3.1
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     LoneLibs 1.0.23
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     CraftBukkit 3498-Spigot-b081915-10ba1be (MC: 1.18.2)
                                               
[21:41:07] [Server thread/INFO]: [ItemsAdder] LightAPI not installed, please install it to see blocks emitting light: https://a.devs.beer/lightapi-new
[21:41:08] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.0.2-a86da3b0
[21:41:08] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Spigot (MC: 1.18.2)...
[21:41:08] [Server thread/INFO]: [MythicMobs] The server is running Spigot; disabled PaperSpigot exclusive functionality
[21:41:09] [Server thread/INFO]: [MythicMobs] MythicMobs ModelEngine Support has been enabled!
[21:41:09] [Server thread/INFO]: [MythicMobs] MythicMobs HolographicDisplays Support has been enabled!
[21:41:09] [Server thread/INFO]: [MythicMobs] MythicMobs LibsDisguises Support has been enabled!
[21:41:09] [Server thread/INFO]: [MythicMobs] MythicMobs MythicLib Support has been enabled!
[21:41:09] [Server thread/INFO]: [MythicMobs] MythicMobs PlaceholderAPI Support has been enabled!
[21:41:09] [Server thread/INFO]: [MythicMobs] Loaded ProtocolLib packet handlers
[21:41:09] [Server thread/INFO]: [MythicMobs] MythicMobs ProtocolLib Support has been enabled!
[21:41:09] [Server thread/INFO]: [MythicMobs] MythicMobs Vault Support has been enabled!
[21:41:09] [Server thread/WARN]: [MythicMobs] Failed to enable support for WorldGuard. Is it up to date?
[21:41:09] [Server thread/WARN]: java.lang.NullPointerException: WorldGuard is not enabled, unable to access the platform.
[21:41:09] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkNotNull(Preconditions.java:907)
[21:41:09] [Server thread/WARN]:     at com.sk89q.worldguard.WorldGuard.getPlatform(WorldGuard.java:101)
[21:41:09] [Server thread/WARN]:     at io.lumine.mythic.bukkit.compatibility.WorldGuardSupport$WorldGuardSeven.<init>(WorldGuardSupport.java:72)
[21:41:09] [Server thread/WARN]:     at io.lumine.mythic.bukkit.compatibility.WorldGuardSupport.<init>(WorldGuardSupport.java:55)
[21:41:09] [Server thread/WARN]:     at io.lumine.mythic.bukkit.compatibility.CompatibilityManager.lambda$new$21(CompatibilityManager.java:65)
[21:41:09] [Server thread/WARN]:     at io.lumine.mythic.bukkit.compatibility.CompatibilityManager.registerCompatibility(CompatibilityManager.java:96)
[21:41:09] [Server thread/WARN]:     at io.lumine.mythic.bukkit.compatibility.CompatibilityManager.<init>(CompatibilityManager.java:65)
[21:41:09] [Server thread/WARN]:     at io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:145)
[21:41:09] [Server thread/WARN]:     at io.lumine.mythic.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:73)
[21:41:09] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[21:41:09] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342)
[21:41:09] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480)
[21:41:09] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_18_R2.CraftServer.enablePlugin(CraftServer.java:518)
[21:41:09] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_18_R2.CraftServer.enablePlugins(CraftServer.java:432)
[21:41:09] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:612)
[21:41:09] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:414)
[21:41:09] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:263)
[21:41:09] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1007)
[21:41:09] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304)
[21:41:09] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[21:41:09] [Server thread/INFO]: [MythicMobs] Loading Mob Registry...
[21:41:09] [Server thread/INFO]: [MythicMobs] Base directory /home/container/plugins/MythicMobs/SavedData
[21:41:09] [Server thread/INFO]: [MythicMobs] Module directory /home/container/plugins/MythicMobs/SavedData/worlds
[21:41:09] [Server thread/INFO]: [MythicMobs] LOADED
[21:41:10] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Mechanic line 'onDamaged{auraName=landresist;d=40;damageMods="FALL<&sp>0"}' in 'Unknown': Custom damage modifiers require MythicMobs Premium to use.
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.5to2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.5to2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.5to2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.1to15>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.1to15>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.x>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.zlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.xlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.z>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.xlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.z>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.x>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.zlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.xlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.z>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.xlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.z>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.x>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.zlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.xlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.z>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.xlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:10] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.z>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:11] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.x>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:11] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:11] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.zlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:11] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.x>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:11] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:11] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.zlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:11] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.xlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:11] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:11] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.z>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:11] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.xlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:11] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:11] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.z>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:11] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.5>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 63 mobs.
[21:41:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[21:41:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[21:41:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 199 skills.
[21:41:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 random spawns.
[21:41:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 32 mythic items.
[21:41:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[21:41:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[21:41:11] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[21:41:11] [Server thread/ERROR]: [MythicMobs] Plugin MythicMobs v5.0.2-a86da3b0 has failed to register events for class io.lumine.mythic.bukkit.adapters.BukkitSkillTriggers because com/destroystokyo/paper/event/entity/CreeperIgniteEvent does not exist.
[21:41:11] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[21:41:11] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.0.2 (build a86da3b0) has been successfully loaded!
[21:41:11] [Server thread/INFO]: [NexEngine] Successfully hooked with MythicMobs!
[21:41:11] [Server thread/INFO]: [BetonQuest] Hooking into MythicMobs
[21:41:11] [Server thread/INFO]: [Quests] Enabling Quests v3.10.1
[21:41:11] [Server thread/INFO]: [Quests] Your server is running version 1.18
[21:41:11] [Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[21:41:11] [Server thread/INFO]: [BetonQuest] Hooking into Quests
[21:41:11] [Server thread/WARN]: [BetonQuest] There was an unexpected error while hooking into Quests 3.10.1 (BetonQuest 1.12.9, Spigot 3498-Spigot-b081915-10ba1be (MC: 1.18.2))! me/blackvein/quests/Quests
java.lang.NoClassDefFoundError: me/blackvein/quests/Quests
    at pl.betoncraft.betonquest.compatibility.quests.QuestsIntegrator.hook(QuestsIntegrator.java:27) ~[?:?]
    at pl.betoncraft.betonquest.compatibility.Compatibility.hook(Compatibility.java:157) ~[?:?]
    at pl.betoncraft.betonquest.compatibility.Compatibility.onPluginEnable(Compatibility.java:127) ~[?:?]
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:589) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:576) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:349) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_18_R2.CraftServer.enablePlugin(CraftServer.java:518) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at org.bukkit.craftbukkit.v1_18_R2.CraftServer.enablePlugins(CraftServer.java:432) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:612) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:414) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:263) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1007) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at java.lang.Thread.run(Thread.java:833) [?:?]
Caused by: java.lang.ClassNotFoundException: me.blackvein.quests.Quests
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:147) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:99) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    ... 21 more
[21:41:11] [Server thread/WARN]: [BetonQuest] BetonQuest will work correctly, except for that single integration. You can turn it off by setting 'hook.quests' to false in config.yml file.
[21:41:11] [Server thread/INFO]: [DeadlyDisasters] Enabling DeadlyDisasters v8.2
[21:41:11] [Server thread/INFO]: [DeadlyDisasters] Successfully hooked into World Guard
[21:41:11] [Server thread/INFO]: [DeadlyDisasters] Checking for update...
[21:41:11] [Server thread/INFO]: [DeadlyDisasters] This plugin will anonymously send data about errors which helps improve the plugin for everybody. You can opt out of data sharing by setting the 'opt-out-error-sharing' field in the config to true.
[21:41:11] [Server thread/INFO]: [UltraBar] Enabling UltraBar v2.3.1.1
[21:41:11] [Server thread/INFO]: [UltraBar] PlaceholderAPI detected. PlaceholderAPI addon activated.
[21:41:11] [Server thread/INFO]: [UltraBar] Your server is running version v1_18_R2!
[21:41:11] [ForkJoinPool.commonPool-worker-1/INFO]: [DeadlyDisasters]: A new update is available! (10.3) Update now at https://www.spigotmc.org/resources/deadly-disasters.90806/
[21:41:11] [Server thread/INFO]: [UltraBar] UltraBar is enabled and running fine! V: 2.3.1.1
[21:41:11] [Server thread/INFO]: [UltraBar] Bstat metrics is disabled for this plugin.
[21:41:11] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.2.1-4
[21:41:12] [Server thread/INFO]: [PlayMoreSounds] Enabling PlayMoreSounds v4.1.1
[21:41:12] [Server thread/INFO]: [PlayMoreSounds] -> Configurations loaded.
[21:41:12] [Server thread/INFO]: [PlayMoreSounds] -> 3 listeners loaded.
[21:41:12] [Server thread/INFO]: [PlayMoreSounds] -> Commands loaded.
[21:41:12] [Server thread/INFO]: [PlayMoreSounds] ============================================
[21:41:12] [Server thread/INFO]: [PlayMoreSounds] PlayMoreSounds has been enabled
[21:41:12] [Server thread/INFO]: [PlayMoreSounds] 1190 sounds available on 1.18.2
[21:41:12] [Server thread/INFO]: [PlayMoreSounds] ============================================
[21:41:12] [Server thread/INFO]: [PlayMoreSounds] PlayMoreSounds is using bStats as metrics collector.
[21:41:12] [Server thread/INFO]: [Crawling] Enabling Crawling v5.2.2-SNAPSHOT
[21:41:12] [Server thread/WARN]: UUID of added entity already exists: EntityFallingBlock['Falling Block'/213, l='ServerLevel[world]', x=0.50, y=0.00, z=0.50]
[21:41:12] [Server thread/INFO]: [TitleManager] Enabling TitleManager v2.3.6
[21:41:12] [Server thread/INFO]: [Essentials] Enabling Essentials v2.19.4
[21:41:13] [Server thread/INFO]: [Essentials] You are running a server with limited API functionality. EssentialsX will still work, but certain features may be disabled.
[21:41:13] [Server thread/INFO]: Attempting to convert old kits in config.yml to new kits.yml
[21:41:13] [Server thread/INFO]: No kits found to migrate.
[21:41:13] [Server thread/INFO]: Loaded 36926 items from items.json.
[21:41:13] [Server thread/INFO]: Using locale en_US
[21:41:13] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[21:41:13] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[21:41:13] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[21:41:13] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[21:41:13] [Server thread/INFO]: [BankPlus] Enabling BankPlus v3.9
[21:41:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bankplus [3.9]
[21:41:13] [Server thread/INFO]: 
[21:41:13] [Server thread/INFO]: BankPlus Plugin Enabled!
[21:41:13] [Server thread/INFO]: Running on version 3.9
[21:41:13] [Server thread/INFO]: Made by Pulsi_
[21:41:13] [Server thread/INFO]: 
[21:41:13] [Server thread/INFO]: [eRankUP] Enabling eRankUP v1.1.3
[21:41:13] [Server thread/INFO]: ***********************************
[21:41:13] [Server thread/INFO]: [INFO] [eRankUP] Vault activated
[21:41:13] [Server thread/INFO]: [SUCCESS] [eRankUP] Messages loaded
[21:41:13] [Server thread/INFO]: [SUCCESS] [eRankUP] Config loaded
[21:41:13] [Server thread/INFO]: [SUCCESS] [eRankUP] Gui loaded
[21:41:13] [Server thread/INFO]: [INFO] [eRankUP] Loading ranks files
[21:41:13] [Server thread/WARN]: SKULLCREATOR API - Using the legacy bukkit API with 1.13+ bukkit versions is not supported!
[21:41:13] [Server thread/INFO]: [INFO] [eRankUP] RANK Rank1 LOADED
[21:41:13] [Server thread/INFO]: [INFO] [eRankUP] RANK Rank2 LOADED
[21:41:13] [Server thread/INFO]: [INFO] [eRankUP] RANK Rank3 LOADED
[21:41:13] [Server thread/INFO]: [INFO] [eRankUP] RANK Rank4 LOADED
[21:41:13] [Server thread/INFO]: [INFO] [eRankUP] RANK Rank5 LOADED
[21:41:13] [Server thread/INFO]: [INFO] [eRankUP] RANK Rank6 LOADED
[21:41:13] [Server thread/INFO]: [INFO] [eRankUP] RANK Rank7 LOADED
[21:41:13] [Server thread/INFO]: [INFO] [eRankUP] RANK Rank8 LOADED
[21:41:13] [Server thread/INFO]: [INFO] [eRankUP] RANK Rank9 LOADED
[21:41:13] [Server thread/INFO]: [INFO] [eRankUP] RANK Rank10 LOADED
[21:41:13] [Server thread/INFO]: [INFO] [eRankUP] RANK Rank11 LOADED
[21:41:13] [Server thread/INFO]: [INFO] [eRankUP] RANK Rank12 LOADED
[21:41:13] [Server thread/INFO]: [INFO] [eRankUP] RANK Rank13 LOADED
[21:41:13] [Server thread/INFO]: [INFO] [eRankUP] RANK Rank14 LOADED
[21:41:13] [Server thread/INFO]: [INFO] [eRankUP] RANK Rank15 LOADED
[21:41:13] [Server thread/INFO]: [INFO] [eRankUP] RANK Rank16 LOADED
[21:41:13] [Server thread/INFO]: [INFO] [eRankUP] RANK Rank17 LOADED
[21:41:13] [Server thread/INFO]: [INFO] [eRankUP] RANK Rank18 LOADED
[21:41:13] [Server thread/INFO]: [INFO] [eRankUP] RANK Rank19 LOADED
[21:41:13] [Server thread/INFO]: [INFO] [eRankUP] RANK Rank20 LOADED
[21:41:13] [Server thread/INFO]: [INFO] [eRankUP] RANK Rank21 LOADED
[21:41:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: erankup [1.0.7]
[21:41:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: skill [1.0.7]
[21:41:14] [Server thread/INFO]: [INFO] [eRankUP] PlaceholdersAPI activated
[21:41:14] [Server thread/INFO]: *********************
[21:41:14] [Server thread/INFO]: [Jackpot] Enabling Jackpot v1.0
[21:41:14] [Server thread/INFO]: [BountyHunters] Enabling BountyHunters v2.2.6
[21:41:14] [Server thread/INFO]: [BountyHunters] Detected Server Version: v1_18_R2
[21:41:14] [Server thread/ERROR]: [BountyHunters] Your server version is not handled with NMS.
[21:41:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bountyhunters [1.0]
[21:41:14] [Server thread/INFO]: [BountyHunters] Hooked onto PlaceholderAPI
[21:41:14] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.0.7
[21:41:14] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[21:41:14] [Server thread/INFO]: [ItemEdit] Hooking into PlaceholderApi
[21:41:14] [Server thread/INFO]: [ItemEdit] Hooked into PlaceHolderAPI:
[21:41:14] [Server thread/INFO]: [ItemEdit] placeholders:
[21:41:14] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[21:41:14] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[21:41:14] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[21:41:14] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[21:41:14] [Server thread/INFO]: [ItemEdit]       Values: inventory, equip, inventoryandequip, hand, offhand, head, chest, legs, feet
[21:41:14] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[21:41:14] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[21:41:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: itemedit [1.0]
[21:41:14] [Server thread/INFO]: [ItemEdit] Hooking into MythicMobs
[21:41:14] [Server thread/INFO]: [ItemEdit] # Enabled (took 140 ms)
[21:41:14] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[21:41:14] [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--].
[21:41:14] [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.
[21:41:14] [Server thread/INFO]: Preparing start region for dimension minecraft:2
[21:41:25] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:41:25] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:41:25] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:41:25] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:41:25] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:41:25] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:41:25] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:41:25] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:41:25] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:41:25] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:41:25] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:41:25] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:41:25] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:41:25] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:41:25] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:41:25] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:41:25] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:41:25] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:41:25] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:41:25] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:41:25] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[21:41:25] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[21:41:25] [Worker-Main-4/INFO]: Preparing spawn area: 15%
[21:41:26] [Worker-Main-3/INFO]: Preparing spawn area: 44%
[21:41:26] [Worker-Main-3/INFO]: Preparing spawn area: 68%
[21:41:27] [Worker-Main-4/INFO]: Preparing spawn area: 99%
[21:41:27] [Server thread/INFO]: Time elapsed: 12556 ms
[21:41:27] [Server thread/INFO]: Could not set generator for world 'world': Plugin 'OpenTerrainGenerator' does not exist
[21:41:27] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: spawn
[21:41:27] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[21:41:27] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: spawn_the_end
[21:41:27] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[21:41:27] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: spawn_nether
[21:41:27] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[21:41:27] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Spawn
[21:41:27] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[21:41:27] [Server thread/INFO]: [Multiverse-Core] 4 - World(s) loaded.
[21:41:27] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[21:41:27] [Server thread/INFO]: [DeathCoordinates] Enabling DeathCoordinates v1.11.1
[21:41:27] [Server thread/INFO]: [DeathCoordinates] Has been enabled! Version: 1.11.1
[21:41:27] [Server thread/INFO]: [DeathCoordinates] Thanks for using my plugin!  ~Ajneb97
[21:41:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deathcoordinates [1.11.1]
[21:41:27] [Server thread/INFO]: There is a new version available. (1.12.1)
[21:41:27] [Server thread/INFO]: You can download it at: https://www.spigotmc.org/resources/43318/
[21:41:27] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.1.0
[21:41:27] [Server thread/INFO]:  
[21:41:27] [Server thread/INFO]: __________________________________________________________
[21:41:27] [Server thread/INFO]:  
[21:41:27] [Server thread/INFO]:                        TradeSystem [2.1.0]
[21:41:27] [Server thread/INFO]:  
[21:41:27] [Server thread/INFO]: Status:
[21:41:27] [Server thread/INFO]:  
[21:41:27] [Server thread/INFO]: MC-Version: 1.18.2 (R0.1-SNAPSHOT, Spigot)
[21:41:27] [Server thread/INFO]:  
[21:41:27] [Server thread/INFO]:   > Loading sounds
[21:41:27] [Server thread/INFO]:   > Loading blacklist
[21:41:27] [Server thread/INFO]:     ...got 1 blocked item(s)
[21:41:27] [Server thread/INFO]:   > Loading layouts
[21:41:27] [Server thread/INFO]:     ...got 1 layout(s)
[21:41:27] [Server thread/INFO]:   > Database logging is disabled
[21:41:28] [Server thread/INFO]:  
[21:41:28] [Server thread/INFO]: Finished (245ms)
[21:41:28] [Server thread/INFO]:  
[21:41:28] [Server thread/INFO]: __________________________________________________________
[21:41:28] [Server thread/INFO]:  
[21:41:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tradesystem [1.1]
[21:41:28] [Server thread/INFO]: [PlayerAuctions] Enabling PlayerAuctions v1.11.1
[21:41:28] [Server thread/INFO]: [PlayerAuctions] Vault found, now enabling PlayerAuctions...
[21:41:28] [Server thread/INFO]: [PlayerAuctions] Found 15 config files to load!
[21:41:28] [Server thread/INFO]: [PlayerAuctions] Found PlaceholderAPI integrating support...
[21:41:28] [Server thread/INFO]: [PlayerAuctions] Permissions plugin found!
[21:41:28] [Server thread/INFO]: [PlayerAuctions] Economy plugin found!
[21:41:28] [Server thread/INFO]: [PlayerAuctions] Chat plugin found!
[21:41:29] [Server thread/INFO]: [PlayerAuctions] SQLite database is enabling...
[21:41:29] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.6-DEV-null
[21:41:29] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[21:41:30] [Server thread/INFO]: [DeluxeMenus] 22 GUI menus loaded!
[21:41:30] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[21:41:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.6-DEV-null]
[21:41:30] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.6+1cff55f
[21:41:30] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[21:41:30] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[21:41:30] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[21:41:30] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[21:41:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[21:41:30] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[21:41:30] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[21:41:30] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[21:41:30] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[21:41:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[21:41:30] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[21:41:30] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[21:41:30] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[21:41:30] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[21:41:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[21:41:30] [Server thread/INFO]: [WorldGuard] (2) TNT ignition is PERMITTED.
[21:41:30] [Server thread/INFO]: [WorldGuard] (2) Lighters are PERMITTED.
[21:41:30] [Server thread/INFO]: [WorldGuard] (2) Lava fire is PERMITTED.
[21:41:30] [Server thread/INFO]: [WorldGuard] (2) Fire spread is UNRESTRICTED.
[21:41:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world '2'
[21:41:30] [Server thread/INFO]: [WorldGuard] Loading region data...
[21:41:30] [Server thread/INFO]: [NexEngine] Successfully hooked with WorldGuard!
[21:41:30] [Server thread/INFO]: [OpenAudioMc] Turns out you have WorldGuard installed! enabling regions and the region tasks..
[21:41:30] [Server thread/INFO]: [OpenAudioMc] Enabling the newer 1.13 regions
[21:41:30] [Server thread/INFO]: [BetonQuest] Hooking into WorldGuard
[21:41:30] [Server thread/INFO]: [MarriageMaster] Enabling MarriageMaster v2.6.8-Release
[21:41:30] [Server thread/INFO]: [MarriageMaster] Starting Marriage Master in standalone mode!
[21:41:30] [Server thread/INFO]: [MarriageMaster] Config file successfully loaded.
[21:41:30] [Server thread/INFO]: [MarriageMaster] No compatible backpack plugin found.
[21:41:30] [Server thread/INFO]: [MarriageMaster] Language file successfully loaded. Language: English  Author: GeorgH93
[21:41:30] [Server thread/INFO]: MarriageMaster-Connection-Pool - Starting...
[21:41:30] [Server thread/INFO]: MarriageMaster-Connection-Pool - Start completed.
[21:41:30] [Thread-22/INFO]: [MarriageMaster] Loading marriages ...
[21:41:30] [Thread-22/INFO]: [MarriageMaster] Marriages loaded
[21:41:30] [Thread-22/INFO]: [MarriageMaster] Loading priests ...
[21:41:30] [Thread-22/INFO]: [MarriageMaster] Priests loaded
[21:41:30] [Thread-22/INFO]: [MarriageMaster] Loading players ...
[21:41:30] [Thread-22/INFO]: [MarriageMaster] Players loaded
[21:41:30] [Thread-22/INFO]: [MarriageMaster] Writing marriages into cache ...
[21:41:30] [Thread-22/INFO]: [MarriageMaster] Marriages loaded into cache
[21:41:30] [Thread-22/INFO]: [MarriageMaster] Loading homes ...
[21:41:30] [Thread-22/INFO]: [MarriageMaster] Homes loaded
[21:41:31] [Server thread/INFO]: [MarriageMaster] Item name language file successfully loaded. Language: english  Author: GeorgH93
[21:41:31] [Server thread/INFO]: [MarriageMaster] Loading item translations ...
[21:41:31] [Server thread/INFO]: [MarriageMaster] Finished loading item translations for 828 items.
[21:41:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: marriagemaster [2.6.8-Release]
[21:41:31] [Server thread/INFO]: [MarriageMaster] PlaceholderAPI hook was successfully registered!
[21:41:31] [Server thread/INFO]: [MarriageMaster]  Marriage Master has been enabled!  :) 
[21:41:31] [Server thread/INFO]: [EvenMoreFish] Enabling EvenMoreFish v1.5.0.1
[21:41:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: emf [1.5.0.1]
[21:41:31] [Server thread/INFO]: EvenMoreFish by Oheers : Enabled
[21:41:31] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2805)
[21:41:31] [Server thread/INFO]: [Spigotunlocked.net] - COSMO
[21:41:31] [Server thread/INFO]: [Citizens] Loading external libraries
[21:41:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[21:41:32] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[21:41:32] [Server thread/INFO]: [NexEngine] Successfully hooked with Citizens!
[21:41:32] [Server thread/INFO]: [BetonQuest] Hooking into Citizens
[21:41:32] [Server thread/INFO]: [ItemsAdder] Registered Citizens NPC Trait: customentity
[21:41:32] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.0.3.6
[21:41:32] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[21:41:32] [Server thread/INFO]: [ExcellentCrates] Successfully hooked with HolographicDisplays!
[21:41:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: excellentcrates [4.0.3.6]
[21:41:32] [Server thread/INFO]: [ExcellentCrates] Successfully hooked with PlaceholderAPI!
[21:41:32] [Server thread/INFO]: [ExcellentCrates] Found 0 external module(s).
[21:41:32] [Server thread/INFO]: [ExcellentCrates] Loaded 1 animation configs.
[21:41:32] [Server thread/INFO]: [ExcellentCrates] Loaded 3 crate keys.
[21:41:32] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[21:41:32] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 185 ms!
[21:41:32] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR2.5.1
[21:41:32] [Server thread/INFO]: [ModelEngine] Mythic Mobs v5 loaded
[21:41:32] [Server thread/INFO]: [Model Engine] Engine Activated.
[21:41:32] [Server thread/INFO]: [Model Engine] Generator Activated.
[21:41:32] [Server thread/INFO]: [Model Engine] Resource Pack generated.
[21:41:32] [Server thread/INFO]: 
[21:41:32] [Server thread/INFO]: [Model Engine]--Generating fallen_knight.
[21:41:33] [Server thread/INFO]: 
[21:41:33] [Server thread/INFO]: [Model Engine]--Generating fallen_knight2.
[21:41:33] [Server thread/INFO]: 
[21:41:33] [Server thread/INFO]: [Model Engine]--Generating fallen_knight3.
[21:41:33] [Server thread/INFO]: 
[21:41:33] [Server thread/INFO]: [Model Engine]--Generating fsoldier_fireexplosion.
[21:41:33] [Server thread/INFO]: 
[21:41:33] [Server thread/INFO]: [Model Engine]--Generating npcgreeting.
[21:41:33] [Server thread/INFO]: 
[21:41:33] [Server thread/INFO]: [Model Engine]--Generating soldier_fireblade.
[21:41:33] [Server thread/INFO]: 
[21:41:33] [Server thread/INFO]: [Model Engine]--Generating soldier_thrustblade.
[21:41:33] [Server thread/INFO]: 
[21:41:33] [Server thread/INFO]: [Model Engine]--Generating soldierplosion_reources.
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Generating statue_knighta.
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Generating adventurer.
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Generating anchor.
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Generating king.
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Generating lootbag.
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Generating minecart.
[21:41:34] [Server thread/INFO]: [Model Engine]----Warning: Unusual eye height.
[21:41:34] [Server thread/INFO]: [Model Engine]------Reason: Eye height is under ground level. [0.0]
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Generating miner.
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Generating pirate.
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Generating tap.
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Generating tavern.
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Generating throne.
[21:41:34] [Server thread/INFO]: [Model Engine]----Warning: Unusual eye height.
[21:41:34] [Server thread/INFO]: [Model Engine]------Reason: Eye height is under ground level. [0.0]
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Registered soldier_thrustblade [0.125, 0.1875] (0.1875)
[21:41:34] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: []
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Registered minecart [1.1875, 1.0625] (0.0)
[21:41:34] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: []
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Registered tap [1.0, 1.6875] (1.0625)
[21:41:34] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: []
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Registered lootbag [1.1875, 1.1875] (0.7745536)
[21:41:34] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: []
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Registered fsoldier_fireexplosion [0.375, 0.125] (2.8125)
[21:41:34] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: []
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Registered adventurer [1.375, 2.0625] (1.90625)
[21:41:34] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, alone, greet, fidget]
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Registered fallen_knight3 [0.75, 2.1875] (1.8125)
[21:41:34] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [xd, psoum, idle3, saltoland1, idle2, idle, walk, run, run_aggressive, run_resources, walk2, run_b, activate, idlestatic, salto, jump, hurt1, hurt2, hurt3, attack1, attack2, attack3a, attack3b, attack3c, attack4, attack5, attack6, attract, attack7, leap1, land1, leap2, land2, leap3, land3front, land3uppercut, base, deathb, death, basexdd, run3, death2, death3]
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Registered statue_knighta [0.875, 2.25] (1.70625)
[21:41:34] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [xd, death]
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Registered miner [0.875, 2.125] (1.6876764)
[21:41:34] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, alone, greet, fidget]
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Registered npcgreeting [1.0, 0.75] (0.75)
[21:41:34] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: []
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Registered anchor [1.125, 1.625] (0.8125)
[21:41:34] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: []
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Registered soldier_fireblade [0.125, 0.1875] (0.1875)
[21:41:34] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: []
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Registered king [1.0, 2.125] (1.8125)
[21:41:34] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, alone, fidget, greet]
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Registered fallen_knight [0.75, 2.1875] (1.70625)
[21:41:34] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [xd, saltoland1, idle, idle_combat, idle_parrying, walk, walk_parrying, parry_trigger_reousrces, idle_parrying_stance, parrying_to_normal, run, run_aggressive, run_fast, run_stop, run_roll, roll_attack_1, roll_attack_2, roll_attack_3, runaggressive_idle, hurt1, hurt2, hurt3, hurt4, hurtb3, parry_trigger1, parry_trigger2, quickparry1, quickparry2, activate_legs, activate_body, activate_arms, activate_xd, salto, jump, atkpose2, atkpose, idlecombatpose, backstep, backstep_parrying, sidestep_right, sidestep_left, attack1, attack1_parrying, attack1_parried, attack1_parried_parrying, attack2, attack2_parrying, attack2_parrying_start, attack2_start, attack2_parried, attack2_parried_parrying, attack3, attack3_parrying, attack3_parried, attack3_parried_parrying, attack3a, attack3a_legs, attack3b, attack3c, attack3e, attack5_channel, attack5, attack5_fast, attack8, attackb1, attackb2, attackb3_a, attackb3_b, hurtbad1, hurtbad2, hurtbad3, hurtbad4, hurtverybad1, hurtverybad2, hurtverybad3, hurtverybad4, leap1, land1, leap2, land2, leap3b, leap3, land3front, death, deathb, death2, idlestatic]
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Registered soldierplosion_reources [0.75, 0.75] (1.8125)
[21:41:34] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: []
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Registered fallen_knight2 [0.75, 2.1875] (1.70625)
[21:41:34] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [xd, idle_reaper, saltoland1, idle_warden, idle, idle_combat, walk, walk2, run, run_aggressive, run_fast, run_stop, run_roll, roll_attack_1, roll_attack_2, roll_attack_3, roll_attack_cloak, run_resources, walk_calm, run_b, idle_runaggressive_legs, idle_runaggressive_body, idle_runaggresive_legs2, runaggressive_idle, hurt1, hurt2, hurt3, hurt4, hurtb3, activate, salto, jump, atkpose2, atkpose, idlecombatpose, backstep, sidestep_right, sidestep_left, attack, attack1_corrector, attack1_resourcesxd, attack2, attack2_corrector, attack1XD, attack2XD, attack3a, attack3a_legs, attack3b, attack3c, attack3cresources, attack5_channel, attack4, attack4b, attack5, attack5_fast, attack6_channel, attack6_cast, attack7_channel, attack7_cast, attack8, attackb1, attackb2, attackb3_a, attackb3_b, hurtbad1, hurtbad2, hurtbad3, hurtbad4, leap1, land1, land3, leap2, land2, leap3b, leap3, land3front, ravage_cast, death, death2, idlestatic, recursos inferior]
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Registered throne [1.25, 2.375] (0.0)
[21:41:34] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: []
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Registered pirate [0.875, 2.0625] (1.71875)
[21:41:34] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, alone, greet, fidget]
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [Model Engine]--Registered tavern [0.875, 2.0] (1.7330217)
[21:41:34] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, alone, greet, fidget]
[21:41:34] [Server thread/INFO]: 
[21:41:34] [Server thread/INFO]: [ProtectionStones] Enabling ProtectionStones v2.9.1
[21:41:34] [Server thread/INFO]: [WorldGuard] Registering session handler dev.espi.protectionstones.flags.GreetingFlagHandler
[21:41:34] [Server thread/INFO]: [WorldGuard] Registering session handler dev.espi.protectionstones.flags.FarewellFlagHandler
[21:41:34] [Server thread/INFO]: [ProtectionStones] PlaceholderAPI support enabled!
[21:41:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: protectionstones [2.9.1]
[21:41:34] [Server thread/INFO]: [ProtectionStones] LuckPerms support enabled!
[21:41:34] [Server thread/INFO]: [ProtectionStones] Protection Stone Blocks:
[21:41:34] [Server thread/INFO]: [ProtectionStones] - EMERALD_ORE (64)
[21:41:35] [Server thread/INFO]: [ProtectionStones] Building region cache...
[21:41:35] [Server thread/INFO]: [ProtectionStones] Building UUID cache... (if slow change async-load-uuid-cache in the config to true)
[21:41:35] [Server thread/INFO]: [ProtectionStones] Checking if PS regions have been updated to UUIDs...
[21:41:35] [Server thread/INFO]: [ProtectionStones] ProtectionStones has successfully started!
[21:41:36] [Server thread/INFO]: [CommandNPC] Enabling CommandNPC v2.1.2
[21:41:36] [Server thread/INFO]: [CommandNPC] Vault compatible economy found! Economy support for CommandNPC has been enabled.
[21:41:36] [Server thread/INFO]: [CommandNPC] Initiating Database
[21:41:36] [Thread-23/INFO]: [CommandNPC] Loading commands complete!
[21:41:36] [Server thread/INFO]: [CommandNPC] Injecting command info into Citizens.
[21:41:36] [Server thread/INFO]: [CommandNPC] Checking config for update checker
[21:41:36] [Server thread/INFO]: [CommandNPC] CommandNPC successfully loaded!
[21:41:36] [Server thread/INFO]: [CMILib] Enabling CMILib v1.1.2.0
[21:41:37] [Server thread/INFO]: Server version: v1_18_R2 - 1.18.2 - spigot
[21:41:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [1.1.2.0]
[21:41:38] [Server thread/INFO]: PlaceholderAPI hooked.
[21:41:38] [Server thread/INFO]: Updated (EN) language file. Took 107ms
[21:41:38] [Server thread/INFO]: [Jobs] Enabling Jobs v5.0.2.1
[21:41:38] [Server thread/INFO]: ------------- Jobs -------------
[21:41:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jobsr [5.0.2.1]
[21:41:38] [Server thread/INFO]: PlaceholderAPI hooked.
[21:41:38] [Server thread/INFO]: Connected to database (SqLite)
[21:41:38] [Server thread/INFO]: Loaded 8 titles
[21:41:38] [Server thread/INFO]: Loaded 69 protected blocks timers
[21:41:38] [Server thread/INFO]: Loaded 1229 custom item names
[21:41:38] [Server thread/INFO]: Loaded 75 custom entity names
[21:41:38] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[21:41:38] [Server thread/INFO]: Loaded 38 custom enchant names
[21:41:38] [Server thread/INFO]: Loaded 16 custom color names
[21:41:38] [Server thread/INFO]: Loaded 8 jobs
[21:41:38] [Server thread/INFO]: Loaded 0 boosted items
[21:41:38] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[21:41:38] [Server thread/INFO]: [Jobs] Loaded 1 schedulers!
[21:41:38] [Server thread/INFO]: Preloaded 9 players data in 0.0
[21:41:38] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[21:41:38] [Server thread/INFO]: [Jobs] WorldGuard detected.
[21:41:38] [Server thread/INFO]: Your MythicMobs version is not supported by Jobs! Supported versions: 4.9.1+
[21:41:38] [Server thread/INFO]: Loading explorer data
[21:41:38] [Server thread/INFO]: Loaded explorer data (146) in 8 ms
[21:41:38] [Server thread/INFO]: Plugin has been enabled successfully.
[21:41:38] [Server thread/INFO]: ------------------------------------
[21:41:38] [Server thread/INFO]: [BetonQuest] Hooking into Jobs
[21:41:38] [Server thread/INFO]: [BetonQuest] Registered Conditions [nujobs_canlevel,nujobs_hasjob,nujobs_jobfull,nujobs_joblevel]
[21:41:38] [Server thread/INFO]: [BetonQuest] Registered Events [nujobs_addexp,nujobs_addlevel,nujobs_dellevel,nujobs_joinjob,nujobs_leavejob,nujobs_setlevel]
[21:41:38] [Server thread/INFO]: [BetonQuest] Registered Objectives [nujobs_joinjob,nujobs_leavejob,nujobs_levelup,nujobs_payment]
[21:41:39] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[21:41:39] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[21:41:39] [Server thread/INFO]: Done (84.028s)! For help, type "help"
[21:41:39] [Craft Scheduler Thread - 1/INFO]: [NexEngine] Loading player placed blocks in async mode...
[21:41:39] [Server thread/WARN]: [FastAsyncWorldEdit] Loaded class com.sk89q.worldguard.protection.association.RegionAssociable from WorldGuard v7.0.6+1cff55f which is not a depend or softdepend of this plugin.
[21:41:39] [Server thread/INFO]: Plugin 'WorldGuard' found. Using it now.
[21:41:39] [Server thread/INFO]: Attempting to use plugin 'WorldGuard'
[21:41:39] [Server thread/INFO]: [BetonQuest] Hooked into ProtocolLib, PlaceholderAPI, HolographicDisplays, Vault, FastAsyncWorldEdit, MythicMobs, WorldGuard, Citizens, Jobs!
[21:41:39] [Craft Scheduler Thread - 1/WARN]: [RealisticSurvival] Plugin RealisticSurvival v1.2.3 generated an exception while executing task 35
java.lang.NumberFormatException: For input string: "1.24-RELEASE"
    at jdk.internal.math.FloatingDecimal.readJavaFormatString(FloatingDecimal.java:2054) ~[?:?]
    at jdk.internal.math.FloatingDecimal.parseDouble(FloatingDecimal.java:110) ~[?:?]
    at java.lang.Double.parseDouble(Double.java:651) ~[?:?]
    at java.lang.Double.valueOf(Double.java:614) ~[?:?]
    at me.val_mobile.utils.Utils.getNumberFromUpdate(Utils.java:746) ~[?:?]
    at me.val_mobile.misc.UpdateChecker.lambda$checkUpdate$1(UpdateChecker.java:60) ~[?:?]
    at me.val_mobile.misc.UpdateChecker.lambda$getVersion$0(UpdateChecker.java:46) ~[?:?]
    at org.bukkit.craftbukkit.v1_18_R2.scheduler.CraftTask.run(CraftTask.java:82) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at org.bukkit.craftbukkit.v1_18_R2.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:54) [spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) [?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) [?:?]
    at java.lang.Thread.run(Thread.java:833) [?:?]
[21:41:39] [Craft Scheduler Thread - 5/INFO]: [AureliumSkills] New update available! You are on version Beta 1.2.10, latest version is Beta 1.3.12
[21:41:39] [Craft Scheduler Thread - 5/INFO]: [AureliumSkills] Download it on Spigot:
[21:41:39] [Craft Scheduler Thread - 5/INFO]: [AureliumSkills] https://spigotmc.org/resources/81069
[21:41:39] [Craft Scheduler Thread - 2/INFO]: [SkinsRestorer] ----------------------------------------------
[21:41:39] [Craft Scheduler Thread - 2/INFO]: [SkinsRestorer]     +==================+
[21:41:39] [Craft Scheduler Thread - 2/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[21:41:39] [Craft Scheduler Thread - 2/INFO]: [SkinsRestorer]     |------------------|
[21:41:39] [Craft Scheduler Thread - 2/INFO]: [SkinsRestorer]     |  Standalone Mode |
[21:41:39] [Craft Scheduler Thread - 2/INFO]: [SkinsRestorer]     +==================+
[21:41:39] [Craft Scheduler Thread - 2/INFO]: [SkinsRestorer] ----------------------------------------------
[21:41:39] [Craft Scheduler Thread - 2/INFO]: [SkinsRestorer]     Current version: 14.2.8
[21:41:39] [Craft Scheduler Thread - 2/INFO]: [SkinsRestorer]     This is the latest version!
[21:41:39] [Craft Scheduler Thread - 2/INFO]: [SkinsRestorer] ----------------------------------------------
[21:41:39] [Server thread/INFO]: [BetonQuest] There are 5 conditions, 32 events, 1 objectives and 2 conversations loaded from 2 packages.
[21:41:39] [Server thread/INFO]: [ItemsAdder] [Pack] Extracting internal contents from .jar
[21:41:39] [Craft Scheduler Thread - 5/INFO]: [ItemsAdder] [License] Spigot product licensed to: KiritoKun90 (286865)
[21:41:39] [Server thread/INFO]: [ItemsAdder] [Pack] DONE extracting internal contents from .jar
[21:41:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: quests [3.10.1]
[21:41:40] [Craft Scheduler Thread - 6/INFO]: [Quests] A new version 3.13.2 was found on Spigot (your version: 3.10.1). Please update me! <3 - Link: https://get.leonardobishop.com/quests
[21:41:40] [Server thread/ERROR]: [Quests] Plugin Quests v3.10.1 has failed to register events for class com.leonardobishop.quests.bukkit.tasktype.type.dependent.MythicMobsKillingType because io/lumine/xikage/mythicmobs/api/bukkit/events/MythicMobDeathEvent does not exist.
[21:41:40] [Server thread/INFO]: [Quests] 36 task types have been registered.
[21:41:40] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[21:41:40] [Server thread/INFO]: [Quests] 63 quests have been registered.
[21:41:40] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[21:41:40] [PMSAddon Runner/INFO]: [PlayMoreSounds] Starting Regions Handler v1.2 addon.
[21:41:40] [Craft Scheduler Thread - 3/INFO]: [Essentials] Fetching version information...
[21:41:40] [PMSAddon Runner/INFO]: [PlayMoreSounds] Starting WorldGuard Regions v1.1 addon.
[21:41:40] [Craft Scheduler Thread - 8/INFO]: **********************************************
[21:41:40] [Craft Scheduler Thread - 8/INFO]: [ERROR]               [eRankUP]
[21:41:40] [Craft Scheduler Thread - 8/INFO]: [ERROR] The plugin has a new version available. 
[21:41:40] [Craft Scheduler Thread - 8/INFO]: **********************************************
[21:41:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pa [1.0.0]
[21:41:40] [Craft Scheduler Thread - 2/INFO]: [PlayerAuctions] Loading auction items...
[21:41:40] [PMSAddon Runner/INFO]: [PlayMoreSounds] Starting Sound Factors v1.0 addon.
[21:41:40] [Server thread/ERROR]: [NexEngine] Invalid/Unloaded world for: '-2798.0,103.0,-2255.0,0.0,0.0,Spawn' location!
[21:41:40] [Server thread/ERROR]: [NexEngine] Invalid/Unloaded world for: '-2795.0,103.0,-2252.0,0.0,0.0,Spawn' location!
[21:41:40] [Server thread/ERROR]: [NexEngine] Invalid/Unloaded world for: '-2798.0,103.0,-2249.0,0.0,0.0,Spawn' location!
[21:41:40] [Server thread/INFO]: [ExcellentCrates] Loaded 3 crates.
[21:41:40] [Craft Scheduler Thread - 8/INFO]: [Model Engine] Generating zipped resource pack.
[21:41:40] [Server thread/INFO]: [Jobs] Successfully linked with Vault.
[21:41:40] [Craft Scheduler Thread - 6/INFO]: New version of CMILib was detected. Please update it
[21:41:40] [Server thread/INFO]: [MythicMobs] ✓Using HolographicDisplays plugin for holograms
[21:41:40] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Mechanic line 'lockmodel{l=false;delay=32}' in 'Unknown': Failed to load custom mechanic LOCKMODEL
[21:41:40] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Mechanic line 'lockmodel{l=false;delay=32}' in 'Unknown': Failed to load custom mechanic LOCKMODEL
[21:41:40] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Mechanic line 'lockmodel{l=true;delay=10}' in 'Unknown': Failed to load custom mechanic LOCKMODEL
[21:41:40] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Mechanic line 'lockmodel{l=false;delay=1}' in 'Unknown': Failed to load custom mechanic LOCKMODEL
[21:41:40] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:40] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:40] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:40] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:40] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:40] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:40] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:40] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:40] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:40] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:40] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:40] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:40] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:40] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Mechanic line 'lockmodel{l=true;delay=10}' in 'Unknown': Failed to load custom mechanic LOCKMODEL
[21:41:40] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:40] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:40] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Mechanic line 'lockmodel{l=true;delay=40}' in 'Unknown': Failed to load custom mechanic LOCKMODEL
[21:41:40] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:40] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Mechanic line 'lockmodel{l=true;delay=40}' in 'Unknown': Failed to load custom mechanic LOCKMODEL
[21:41:40] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:40] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Mechanic line 'lockmodel{l=true;delay=40}' in 'Unknown': Failed to load custom mechanic LOCKMODEL
[21:41:40] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:40] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Mechanic line 'lockmodel{l=true;delay=40}' in 'Unknown': Failed to load custom mechanic LOCKMODEL
[21:41:40] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:40] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:40] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:40] [Craft Scheduler Thread - 8/INFO]: [Model Engine] Resource pack zipped.
[21:41:41] [Server thread/INFO]: [Citizens] Loaded 31 NPCs.
[21:41:41] [Craft Scheduler Thread - 8/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[21:41:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.7.0]
[21:41:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: localtime [1.2]
[21:41:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[21:41:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.0]
[21:41:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.2]
[21:41:41] [Server thread/INFO]: 5 placeholder hook(s) registered! 3 placeholder hook(s) have an update available.
[21:41:41] [Server thread/INFO]: [HolographicDisplays] Found a new version available: v3.0.0
[21:41:41] [Server thread/INFO]: [HolographicDisplays] Download it on Bukkit Dev:
[21:41:41] [Server thread/INFO]: [HolographicDisplays] https://dev.bukkit.org/projects/holographic-displays
[21:41:41] [Craft Scheduler Thread - 3/WARN]: [Essentials] There is a new EssentialsX version available for download: 2.19.7.
[21:41:41] [Craft Scheduler Thread - 3/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html?branch=stable
[21:41:41] [Server thread/INFO]: com.mojang.authlib.GameProfile@4eeab3f0[id=<null>,name=JoanFo,properties={},legacy=false] (/37.223.127.187:64196) lost connection: Disconnected
[21:41:41] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder] Loaded 7 items
[21:41:41] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder] Used 0/188 REAL block IDs
[21:41:41] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder] Used 0/750 REAL_NOTE block IDs
[21:41:41] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder] Used 0/63 REAL_TRANSPARENT block IDs
[21:41:41] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder] Used 0/127 REAL_WIRE block IDs
[21:41:41] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder] Used 0/14 FIRE block IDs
[21:41:41] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder] Used 6/6608 font_images
[21:41:41] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder] [Init] Loaded 1 categories
[21:41:41] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder] [Init] Loaded successfully.
[21:41:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: img [1.0.1]
[21:41:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: iaplayerstat [1.0.1]
[21:41:41] [Server thread/INFO]: [ItemsAdder] Reloading ItemsAdder Custom Entities Citizens NPCs
[21:41:41] [Server thread/INFO]: [Mythic] Reloading plugin...
[21:41:41] [Server thread/INFO]: [MythicMobs] Mythic beginning reload procedure...
[21:41:42] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Mechanic line 'onDamaged{auraName=landresist;d=40;damageMods="FALL<&sp>0"}' in 'Unknown': Custom damage modifiers require MythicMobs Premium to use.
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.5to2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.5to2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.5to2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.1to15>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.1to15>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1.3to1.6>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.4>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.x>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.zlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.xlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.z>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.xlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.z>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.x>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.zlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.xlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.z>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.xlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.z>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.x>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.zlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.xlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.z>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.xlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.z>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.x>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.zlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.x>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.zlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.xlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.z>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.var.xlocxd>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.z>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.1to1.5>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/INFO]: [MythicMobs] ✓ Loaded 63 mobs.
[21:41:42] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[21:41:42] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[21:41:42] [Server thread/INFO]: [MythicMobs] ✓ Loaded 199 skills.
[21:41:42] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 random spawns.
[21:41:42] [Server thread/INFO]: [MythicMobs] ✓ Loaded 32 mythic items.
[21:41:42] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[21:41:42] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[21:41:42] [Server thread/INFO]: [Mythic] Mythic has finished reloading!
[21:41:42] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[21:41:42] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Mechanic line 'lockmodel{l=false;delay=32}' in 'Unknown': Failed to load custom mechanic LOCKMODEL
[21:41:42] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Mechanic line 'lockmodel{l=false;delay=32}' in 'Unknown': Failed to load custom mechanic LOCKMODEL
[21:41:42] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Mechanic line 'lockmodel{l=true;delay=10}' in 'Unknown': Failed to load custom mechanic LOCKMODEL
[21:41:42] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Mechanic line 'lockmodel{l=false;delay=1}' in 'Unknown': Failed to load custom mechanic LOCKMODEL
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Mechanic line 'lockmodel{l=true;delay=10}' in 'Unknown': Failed to load custom mechanic LOCKMODEL
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Mechanic line 'lockmodel{l=true;delay=40}' in 'Unknown': Failed to load custom mechanic LOCKMODEL
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Mechanic line 'lockmodel{l=true;delay=40}' in 'Unknown': Failed to load custom mechanic LOCKMODEL
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Mechanic line 'lockmodel{l=true;delay=40}' in 'Unknown': Failed to load custom mechanic LOCKMODEL
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Mechanic line 'lockmodel{l=true;delay=40}' in 'Unknown': Failed to load custom mechanic LOCKMODEL
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:42] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder 'idle': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[21:41:43] [Craft Scheduler Thread - 1/INFO]: [BuycraftX] Fetching all due players...
[21:41:43] [Craft Scheduler Thread - 1/INFO]: [BuycraftX] Fetched due players (0 found).
[21:41:43] [Server thread/INFO]: [OpenAudioMc] New Identity = c-ss7sOnOR1GMS4bwqRIlPuTH
[21:41:44] [Server thread/INFO]: [ClearLagTimer] Attempting hooks...
[21:41:44] [Server thread/INFO]: [ClearLagTimer] Hooked into PlaceholderAPI!
[21:41:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: clearlagtimer [Build 34]
[21:41:44] [Server thread/INFO]: [ClearLagTimer] Successfully performed 1 hooks!
[21:41:44] [Server thread/INFO]:  
[21:41:44] [Server thread/INFO]:  [ClearLagTimer] New update available!
[21:41:44] [Server thread/INFO]:  Current version: Build 34 with latest being Build 35a!
[21:41:44] [Server thread/INFO]:  
[21:41:44] [Server thread/INFO]:  SpigotMC -> https://norska.dev/r/spigot/clt/
[21:41:44] [Server thread/INFO]:  Polymart -> https://norska.dev/r/polymart/clt/
[21:41:44] [Server thread/INFO]:  
[21:42:06] [User Authenticator #1/INFO]: UUID of player JoanFo is b374ad51-9db5-4b79-b855-e269d798b82a
[21:42:08] [Server thread/INFO]: JoanFo[/37.223.127.187:64224] logged in with entity id 311 at ([world]274.80489831414684, 63.0, 307.965824410022)
[21:42:08] [Craft Scheduler Thread - 5/INFO]: [LocalTime] Couldn't get JoanFo's timezone. Will use default timezone.
[21:42:09] [Server thread/ERROR]: [ItemsAdder]  
[21:42:09] [Server thread/ERROR]: [ItemsAdder] Another plugin is trying to load a resourcepack. Please disable it in the other plugin config.
[21:42:09] [Server thread/ERROR]: [ItemsAdder] URL: https://drive.google.com/uc?id=1PxCHW7uLzS1N8hyHnTIQPRINk20BxI3ixport=download
[21:42:09] [Server thread/ERROR]: [ItemsAdder] Minecraft only supports 1 server resourcepack.
[21:42:09] [Server thread/ERROR]: [ItemsAdder] To use more than 1 resourcepack you have to merge them, please refer to the ItemsAdder wiki
[21:42:09] [Server thread/ERROR]: [ItemsAdder] to know how to merge resource packs.
[21:42:09] [Server thread/ERROR]: [ItemsAdder]  
[21:42:10] [Server thread/WARN]: [BetonQuest] Task #1689 for BetonQuest v1.12.9 generated an exception
java.lang.NullPointerException: Cannot invoke "org.bukkit.Location.clone()" because the return value of "net.citizensnpcs.api.npc.NPC.getStoredLocation()" is null
    at pl.betoncraft.betonquest.compatibility.citizens.CitizensHologram.updateHologramsForPlayers(CitizensHologram.java:250) ~[?:?]
    at pl.betoncraft.betonquest.compatibility.citizens.CitizensHologram.updateHolograms(CitizensHologram.java:204) ~[?:?]
    at pl.betoncraft.betonquest.compatibility.citizens.CitizensHologram.run(CitizensHologram.java:76) ~[?:?]
    at org.bukkit.craftbukkit.v1_18_R2.scheduler.CraftTask.run(CraftTask.java:82) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at org.bukkit.craftbukkit.v1_18_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:415) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1285) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:429) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1237) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1047) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at java.lang.Thread.run(Thread.java:833) [?:?]
[21:42:14] [Server thread/WARN]: [BetonQuest] Task #1689 for BetonQuest v1.12.9 generated an exception
java.lang.NullPointerException: Cannot invoke "org.bukkit.Location.clone()" because the return value of "net.citizensnpcs.api.npc.NPC.getStoredLocation()" is null
    at pl.betoncraft.betonquest.compatibility.citizens.CitizensHologram.updateHologramsForPlayers(CitizensHologram.java:250) ~[?:?]
    at pl.betoncraft.betonquest.compatibility.citizens.CitizensHologram.updateHolograms(CitizensHologram.java:204) ~[?:?]
    at pl.betoncraft.betonquest.compatibility.citizens.CitizensHologram.run(CitizensHologram.java:76) ~[?:?]
    at org.bukkit.craftbukkit.v1_18_R2.scheduler.CraftTask.run(CraftTask.java:82) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at org.bukkit.craftbukkit.v1_18_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:415) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1285) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:429) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1237) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1047) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at java.lang.Thread.run(Thread.java:833) [?:?]
[21:42:19] [Server thread/WARN]: [BetonQuest] Task #1689 for BetonQuest v1.12.9 generated an exception
java.lang.NullPointerException: Cannot invoke "org.bukkit.Location.clone()" because the return value of "net.citizensnpcs.api.npc.NPC.getStoredLocation()" is null
    at pl.betoncraft.betonquest.compatibility.citizens.CitizensHologram.updateHologramsForPlayers(CitizensHologram.java:250) ~[?:?]
    at pl.betoncraft.betonquest.compatibility.citizens.CitizensHologram.updateHolograms(CitizensHologram.java:204) ~[?:?]
    at pl.betoncraft.betonquest.compatibility.citizens.CitizensHologram.run(CitizensHologram.java:76) ~[?:?]
    at org.bukkit.craftbukkit.v1_18_R2.scheduler.CraftTask.run(CraftTask.java:82) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at org.bukkit.craftbukkit.v1_18_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:415) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1285) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:429) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1237) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1047) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at java.lang.Thread.run(Thread.java:833) [?:?]
[21:42:23] [Server thread/INFO]: Stopping the server
[21:42:23] [Server thread/INFO]: Stopping server
[21:42:23] [Server thread/INFO]: [Jobs] Disabling Jobs v5.0.2.1
[21:42:23] [Server thread/INFO]: ------------- Jobs -------------
[21:42:23] [Jobs-DatabaseSaveTask/INFO]: Database save task shutdown!
[21:42:23] [Jobs-BufferedPaymentThread/INFO]: Buffered payment thread shutdown.
[21:42:23] [Server thread/INFO]: ------------------------------------
[21:42:23] [Server thread/INFO]: [CMILib] Disabling CMILib v1.1.2.0
[21:42:23] [Server thread/INFO]: [CommandNPC] Disabling CommandNPC v2.1.2
[21:42:23] [Server thread/INFO]: [ProtectionStones] Disabling ProtectionStones v2.9.1
[21:42:23] [Server thread/INFO]: [ModelEngine] Disabling ModelEngine vR2.5.1
[21:42:23] [Server thread/INFO]: [Model Engine] Core shut down.
[21:42:23] [Server thread/INFO]: [ExcellentCrates] Disabling ExcellentCrates v4.0.3.6
[21:42:23] [Server thread/INFO]: [ExcellentCrates] [Citizens Hook] Unregistered listeners
[21:42:23] [Server thread/INFO]: [ExcellentCrates] Auto-save: Saved 1 online users | 0 offline users.
[21:42:23] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.30-SNAPSHOT (build 2805)
[21:42:23] [Server thread/INFO]: [EvenMoreFish] Disabling EvenMoreFish v1.5.0.1
[21:42:23] [Server thread/INFO]: EvenMoreFish by Oheers : Disabled
[21:42:23] [Server thread/INFO]: [MarriageMaster] Disabling MarriageMaster v2.6.8-Release
[21:42:23] [Server thread/INFO]: [MarriageMaster] PlaceholderAPI hook was successfully unregistered!
[21:42:23] [Server thread/INFO]: [MarriageMaster] Cleaning database cache.
[21:42:23] [Server thread/INFO]: [MarriageMaster] Database cache cleaned.
[21:42:23] [Server thread/INFO]: MarriageMaster-Connection-Pool - Shutdown initiated...
[21:42:23] [Server thread/INFO]: MarriageMaster-Connection-Pool - Shutdown completed.
[21:42:23] [Server thread/INFO]: [MarriageMaster]  Marriage Master has been disabled.  :( 
[21:42:23] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.6+1cff55f
[21:42:23] [Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[21:42:23] [Server thread/INFO]: [DeluxeMenus] Disabling DeluxeMenus v1.13.6-DEV-null
[21:42:23] [Server thread/INFO]: [PlayerAuctions] Disabling PlayerAuctions v1.11.1
[21:42:23] [Server thread/INFO]: [TradeSystem] Disabling TradeSystem v2.1.0
[21:42:23] [Server thread/INFO]:  
[21:42:23] [Server thread/INFO]: __________________________________________________________
[21:42:23] [Server thread/INFO]:  
[21:42:23] [Server thread/INFO]:                        TradeSystem [2.1.0]
[21:42:23] [Server thread/INFO]:  
[21:42:23] [Server thread/INFO]: Status:
[21:42:23] [Server thread/INFO]:  
[21:42:23] [Server thread/INFO]: MC-Version: 1.18.2 (R0.1-SNAPSHOT, Spigot)
[21:42:23] [Server thread/INFO]:  
[21:42:23] [Server thread/INFO]:   > Cancelling all active trades
[21:42:23] [Server thread/INFO]:  
[21:42:23] [Server thread/INFO]: Finished (1ms)
[21:42:23] [Server thread/INFO]:  
[21:42:23] [Server thread/INFO]: __________________________________________________________
[21:42:23] [Server thread/INFO]:  
[21:42:23] [Server thread/INFO]: [DeathCoordinates] Disabling DeathCoordinates v1.11.1
[21:42:23] [Server thread/INFO]: [DeathCoordinates] Has been disabled! Version: 1.11.1
[21:42:23] [Server thread/INFO]: [FastAsyncWorldEdit] Disabling FastAsyncWorldEdit v2.1.1-SNAPSHOT-133;05f80f2
[21:42:23] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[21:42:23] [Server thread/INFO]: [Multiverse-Core] Disabling Multiverse-Core v4.3.1-b861
[21:42:23] [Server thread/INFO]: [ItemEdit] Disabling ItemEdit v3.0.7
[21:42:23] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion: itemedit
[21:42:23] [Server thread/INFO]: [BountyHunters] Disabling BountyHunters v2.2.6
[21:42:23] [Server thread/INFO]: [Jackpot] Disabling Jackpot v1.0
[21:42:23] [Server thread/INFO]: [eRankUP] Disabling eRankUP v1.1.3
[21:42:23] [Server thread/INFO]: [BankPlus] Disabling BankPlus v3.9
[21:42:23] [Server thread/INFO]: 
[21:42:23] [Server thread/INFO]: BankPlus Disabling Plugin!
[21:42:23] [Server thread/INFO]: 
[21:42:23] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b131
[21:42:23] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion: vault
[21:42:23] [Server thread/INFO]: [Essentials] Disabling Essentials v2.19.4
[21:42:23] [Server thread/INFO]: [TitleManager] Disabling TitleManager v2.3.6
[21:42:23] [Server thread/INFO]: [Crawling] Disabling Crawling v5.2.2-SNAPSHOT
[21:42:23] [Server thread/INFO]: [PlayMoreSounds] Disabling PlayMoreSounds v4.1.1
[21:42:23] [Server thread/INFO]: [BetterRTP] Disabling BetterRTP v3.2.1-4
[21:42:23] [Server thread/INFO]: [ExcellentEnchants] Disabling ExcellentEnchants v3.1.4
[21:42:23] [Server thread/INFO]: [ExcellentEnchants] All enchants are unregistered.
[21:42:23] [Server thread/INFO]: [NexEngine_CustomEffects] Disabling NexEngine_CustomEffects v1.0.0
[21:42:23] [Server thread/INFO]: [NexEngine] Disabling NexEngine v2.1.2 build-15/03/2022
[21:42:23] [Server thread/INFO]: [NexEngine] Disabling player block place tracker...
[21:42:23] [PMSAddon Stopper/INFO]: [PlayMoreSounds] Stopping Regions Handler v1.2 addon.
[21:42:23] [PMSAddon Stopper/INFO]: [PlayMoreSounds] Stopping WorldGuard Regions v1.1 addon.
[21:42:23] [PMSAddon Stopper/INFO]: [PlayMoreSounds] Stopping Sound Factors v1.0 addon.
[21:42:23] [Server thread/INFO]: [UltraBar] Disabling UltraBar v2.3.1.1
[21:42:23] [Server thread/INFO]: [UltraBar] Saving tracked bars to file.
[21:42:23] [Server thread/INFO]: [UltraBar] Save complete!
[21:42:23] [Server thread/INFO]: [UltraBar] UltraBar was successfully disabled!
[21:42:23] [Server thread/INFO]: [DeadlyDisasters] Disabling DeadlyDisasters v8.2
[21:42:23] [Server thread/INFO]: [Quests] Disabling Quests v3.10.1
[21:42:23] [Server thread/INFO]: [MythicMobs] Disabling MythicMobs v5.0.2-a86da3b0
[21:42:23] [Server thread/INFO]: [MythicMobs] Disabling Mythic Mobs...
[21:42:23] [Server thread/INFO]: [MythicMobs] All active settings have been saved.
[21:42:23] [Server thread/INFO]: [MythicMobs] UNLOADED
[21:42:23] [Server thread/INFO]: [ItemsAdder] Disabling ItemsAdder v3.3.1
[21:42:23] [Server thread/INFO]: [ItemsAdder] Saving custom entities...
[21:42:23] [Server thread/INFO]: [ItemsAdder] Saved 0 custom entities successfully!
[21:42:23] [Server thread/ERROR]: Error occurred while disabling ItemsAdder v3.3.1 (Is it up to date?)
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[?:?]
    at net.citizensnpcs.api.CitizensAPI.getTraitFactory(CitizensAPI.java:172) ~[?:?]
    at dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.unregister(SourceFile:45) ~[?:?]
    at dev.lone.itemsadder.Main.onDisable(SourceFile:660) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(JavaPluginLoader.java:367) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:501) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.disablePlugins(SimplePluginManager.java:493) ~[spigot-api-1.18.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_18_R2.CraftServer.disablePlugins(CraftServer.java:452) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.MinecraftServer.t(MinecraftServer.java:899) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.dedicated.DedicatedServer.t(DedicatedServer.java:717) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1086) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.18.2-R0.1-SNAPSHOT.jar:3498-Spigot-b081915-10ba1be]
    at java.lang.Thread.run(Thread.java:833) [?:?]
[21:42:23] [Server thread/INFO]: [BetonQuest] Disabling BetonQuest v1.12.9
[21:42:23] [Server thread/INFO]: [BetonQuest] BetonQuest succesfully disabled!
[21:42:23] [Server thread/INFO]: [UltimateChairs] Disabling UltimateChairs v1.4.2
[21:42:23] [Server thread/INFO]: [ChatEmojis] Disabling ChatEmojis v1.3.4
[21:42:23] [Server thread/INFO]: [ClearLagTimer] Disabling ClearLagTimer vBuild 34
[21:42:23] [Server thread/INFO]: [LPC] Disabling LPC v3.2.0
[21:42:23] [Server thread/INFO]: [DeluxeTags] Disabling DeluxeTags v1.8.2-Release
[21:42:23] [Server thread/INFO]: [HolographicDisplays] Disabling HolographicDisplays v3.0.0-SNAPSHOT-b205
[21:42:23] [Server thread/INFO]: [NametagEdit] Disabling NametagEdit v4.5.5
[21:42:23] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.11.1
[21:42:23] [Server thread/INFO]: [OpenAudioMc] Disabling OpenAudioMc v6.7.7
[21:42:23] [Server thread/INFO]: [OpenAudioMc] Shutting down
[21:42:23] [Server thread/INFO]: [OpenAudioMc] Saving world cache...
[21:42:23] [Server thread/INFO]: [OpenAudioMc] Stopped OpenAudioMc. Goodbye.
[21:42:23] [Server thread/INFO]: [AureliumSkills] Disabling AureliumSkills vBeta 1.2.10
[21:42:23] [Server thread/INFO]: [BlockParticles] Disabling BlockParticles v1.12-Build#15
[21:42:23] [Server thread/INFO]: [Instruments] Disabling Instruments v1.8
[21:42:23] [Server thread/INFO]: [SkinsRestorer] Disabling SkinsRestorer v14.2.8
[21:42:23] [Server thread/INFO]: [AutoPluginLoader] Disabling AutoPluginLoader v1.2.6
[21:42:23] [Server thread/INFO]: [LibsDisguises] Disabling LibsDisguises v10.0.31
[21:42:23] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v4.8.0-SNAPSHOT-b539
[21:42:23] [Server thread/INFO]: [LoneLibs] Disabling LoneLibs v1.0.23
[21:42:23] [Server thread/INFO]: [RealisticSurvival] Disabling RealisticSurvival v1.2.3
[21:42:23] [Server thread/INFO]: [BuycraftX] Disabling BuycraftX v12.0.8
[21:42:23] [Server thread/INFO]: [SimpleBackpack] Disabling SimpleBackpack v4
[21:42:23] [Server thread/INFO]: [SetSpawn] Disabling SetSpawn v3.6
[21:42:23] [Server thread/INFO]: [SetSpawn] Disabled!
[21:42:23] [Server thread/INFO]: [HoloDropsX] Disabling HoloDropsX v3.0.0
[21:42:23] [Server thread/INFO]: [ClearLag] Disabling ClearLag v3.2.2
[21:42:23] [Server thread/INFO]: [ClearLag] Clearlag is now disabled!
[21:42:23] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.3.86
[21:42:23] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[21:42:23] [Server thread/INFO]: [LuckPerms] Closing storage...
[21:42:23] [Server thread/INFO]: [LuckPerms] Goodbye!
[21:42:23] [Server thread/INFO]: [CommandDefender] Disabling CommandDefender v2.1.2 b26
[21:42:23] [Server thread/INFO]: [MiniMOTD] Disabling MiniMOTD v2.0.5
[21:42:23] [Server thread/INFO]: [JoinEffect] Disabling JoinEffect v3
[21:42:23] [Server thread/INFO]: [JoinEffect] JoinEffect has been successfully disabled!
[21:42:23] [Server thread/INFO]: [NBTAPI] Disabling NBTAPI v2.9.2
[21:42:23] [Server thread/INFO]: [EpicPluginLib] Disabling EpicPluginLib v2.1
[21:42:23] [Server thread/INFO]: [SmartInvs] Disabling SmartInvs v1.2.7
[21:42:23] [Server thread/INFO]: [MyTrip] Disabling MyTrip v0.7.5
[21:42:23] [Server thread/INFO]: Saving files...
[21:42:23] [Server thread/INFO]: Saved tools.
[21:42:23] [Server thread/INFO]: Saved drugs.
[21:42:23] [Server thread/INFO]: Saved player data.
[21:42:23] [Server thread/INFO]: [CrucialAPI] Disabling CrucialAPI v2.1.7
[21:42:23] [Server thread/INFO]: CrucialAPI is now disabled.
[21:42:23] [Server thread/INFO]: [MythicLib] Disabling MythicLib v0.0.1-SNAPSHOT
[21:42:23] [Server thread/INFO]: [MythicLib] MythicLib has been disabled.
[21:42:23] [Server thread/INFO]: Saving players
[21:42:23] [Server thread/INFO]: JoanFo lost connection: Server closed
[21:42:23] [Server thread/INFO]: JoanFo left the game.
[21:42:24] [Server thread/INFO]: Saving worlds