Paste #127323: NPC

Date: 2024/10/18 03:33:58 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[14:54:16] [Server thread/INFO]: Starting minecraft server version 1.8.8
[14:54:16] [Server thread/INFO]: Loading properties
[14:54:16] [Server thread/INFO]: Default game type: SURVIVAL
[14:54:16] [Server thread/INFO]: This server is running WineSpigot version 1_8_R3 (MC: 1.8.8) (Implementing API version 1.8.8-R0.2-SNAPSHOT)
[14:54:16] [Server thread/INFO]: Debug logging is disabled
[14:54:16] [Server thread/INFO]: Spigot Timings: true - Verbose: true - Interval: 5m - Length: 60m
[14:54:16] [Server thread/INFO]: Using 4 threads for Netty based IO
[14:54:16] [Server thread/INFO]: Server Ping Player Sample Count: 12
[14:54:16] [Server thread/INFO]: Disabling player interaction limiter, your server may be more vulnerable to malicious users
[14:54:16] [Server thread/INFO]: Generating keypair
[14:54:16] [Server thread/INFO]: Starting Minecraft server on *:25577
[14:54:16] [Server thread/INFO]: Using default channel type
[14:54:16] [Server thread/INFO]: Set PluginClassLoader as parallel capable
[14:54:19] [Server thread/INFO]: [CleanroomGenerator] Loading CleanroomGenerator v1.0.0
[14:54:19] [Server thread/INFO]: [WildLoaders] Loading WildLoaders v2024.3
[14:54:19] [Server thread/INFO]: [EternalCraftAnvilToCommand] Loading EternalCraftAnvilToCommand v1.0-SNAPSHOT
[14:54:19] [Server thread/INFO]: [iKoth] Loading iKoth v4.5
[14:54:19] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.3
[14:54:19] [Server thread/INFO]: [WildBuster] Loading WildBuster v2024.3
[14:54:19] [Server thread/INFO]: [PlugMan] Loading PlugMan v2.1.7
[14:54:19] [Server thread/INFO]: [SocialLinks] Loading SocialLinks v1.0-SNAPSHOT
[14:54:19] [Server thread/INFO]: [CommandLog] Loading CommandLog v1.2
[14:54:19] [Server thread/INFO]: [EternalCraftGoldenAppleModify] Loading EternalCraftGoldenAppleModify v1.0-SNAPSHOT
[14:54:19] [Server thread/INFO]: [WildStacker] Loading WildStacker v2024.3
[14:54:19] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags v1.8.2-Release
[14:54:19] [Server thread/INFO]: [WildTools] Loading WildTools v2024.3
[14:54:19] [Server thread/INFO]: [EternalCraftEnchanterToCommand] Loading EternalCraftEnchanterToCommand v1.0-SNAPSHOT
[14:54:19] [Server thread/INFO]: [Realistic_World] Loading Realistic_World v3.8.6
[14:54:19] [Server thread/INFO]: [JoinMessage] Loading JoinMessage v1.0-SNAPSHOT
[14:54:19] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v4.10.2
[14:54:19] [Server thread/INFO]: [ViaVersion] ViaVersion 4.10.2 is now loaded. Registering protocol transformers and injecting...
[14:54:19] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[14:54:19] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[14:54:19] [Server thread/INFO]: [EternalCraftStaffChat] Loading EternalCraftStaffChat v1.0-SNAPSHOT
[14:54:19] [Server thread/INFO]: [CommandDefender] Loading CommandDefender v2.1.7 b35
[14:54:19] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.141
[14:54:20] [Server thread/INFO]: [TimTheEnchanter] Loading TimTheEnchanter v3.0
[14:54:20] [Server thread/INFO]: [VortexPearls] Loading VortexPearls v6.1
[14:54:20] [Server thread/INFO]: [LunarFreeCam] Loading LunarFreeCam v2.0
[14:54:20] [Server thread/INFO]: [ClearLag] Loading ClearLag v3.2.2
[14:54:20] [Server thread/INFO]: [WorldBorder] Loading WorldBorder v1.8.6
[14:54:20] [Server thread/INFO]: [LiteBans] Loading LiteBans v2.15.1
[14:54:21] [Server thread/WARN]: SLF4J: No SLF4J providers were found.
[14:54:21] [Server thread/WARN]: SLF4J: Defaulting to no-operation (NOP) logger implementation
[14:54:21] [Server thread/WARN]: SLF4J: See http://www.slf4j.org/codes.html#noProviders for further details.
[14:54:21] [Server thread/INFO]: [EliteLootbox] Loading EliteLootbox v2.4.1
[14:54:21] [Server thread/INFO]: [Votifier] Loading Votifier v2.7.3
[14:54:21] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v2.5.0-b727
[14:54:21] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.1.0
[14:54:21] [Server thread/INFO]: [EternalCraftInfiniteBuckets] Loading EternalCraftInfiniteBuckets v1.0-SNAPSHOT
[14:54:21] [Server thread/INFO]: [HamsterAPI] Loading HamsterAPI v0.2.4
[14:54:21] [Server thread/INFO]: [MVdWPlaceholderAPI] Loading MVdWPlaceholderAPI v3.1.1
[14:54:21] [Server thread/INFO]: [FastAsyncWorldEdit] Loading FastAsyncWorldEdit v21.03.26-5ff3a9b-1286-22.3.9
[14:54:21] [Server thread/INFO]: [Vouchers] Loading Vouchers v1.8.20-RELEASE
[14:54:21] [Server thread/INFO]: [NoHopper] Loading NoHopper v1.4
[14:54:21] [Server thread/INFO]: [AutoBroadcasting] Loading AutoBroadcasting v1.0-SNAPSHOT
[14:54:21] [Server thread/INFO]: [FeatherBoard] Loading FeatherBoard v3.23.0
[14:54:21] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[14:54:21] [Server thread/INFO]: [SuperMobCoins] Loading SuperMobCoins v2.4
[14:54:21] [Server thread/INFO]: [SimpleRename] Loading SimpleRename v13.8
[14:54:21] [Server thread/INFO]: [NametagEdit] Loading NametagEdit v4.5.23
[14:54:21] [Server thread/INFO]: [AuctionHouse] Loading AuctionHouse v1.4.5
[14:54:21] [Server thread/INFO]: [ChatItem] Loading ChatItem v2.6.1
[14:54:21] [Server thread/INFO]: [PhoenixCratesLite] Loading PhoenixCratesLite v3.7.1
[14:54:21] [Server thread/INFO]: [PlayerVaults] Loading PlayerVaults v3.6.0-bSNAPSHOT
[14:54:21] [Server thread/INFO]: [CraftingStore] Loading CraftingStore v2.9.3
[14:54:21] [Server thread/INFO]: [DinoVoteRewards] Loading DinoVoteRewards v0.4.4
[14:54:21] [Server thread/INFO]: [GUIPlus] Loading GUIPlus v2.94
[14:54:21] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v6.1.9;caf0ad9
[14:54:21] [Server thread/INFO]: [Essentials] Loading Essentials v2.20.1
[14:54:21] [Server thread/INFO]: [LPX] Loading LPX v3.4.0
[14:54:21] [Server thread/INFO]: [spark] Loading spark v1.10.71
[14:54:21] [Server thread/INFO]: [HeadDatabase] Loading HeadDatabase v4.17.0
[14:54:21] [Server thread/INFO]: [Banknotes] Loading Banknotes v1.8.0
[14:54:21] [Server thread/INFO]: [KarhuAC] Loading KarhuAC v2.0-PRE
[14:54:21] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat v2.20.1
[14:54:21] [Server thread/INFO]: [TAB] Loading TAB v4.1.8
[14:54:21] [Server thread/INFO]: [BlockParticles] Loading BlockParticles v1.11.1-RELEASE
[14:54:21] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v6.1.3-SNAPSHOT;c904242
[14:54:21] [Server thread/INFO]: [EssentialsProtect] Loading EssentialsProtect v2.20.1
[14:54:21] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.20.1
[14:54:21] [Server thread/INFO]: [ShopGUIPlus] Loading ShopGUIPlus v1.98.0
[14:54:21] [Server thread/INFO]: [DecentHolograms] Loading DecentHolograms v2.8.11
[14:54:21] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.31-SNAPSHOT (build 3091)
[14:54:21] [Server thread/INFO]: [TradeSystem] Loading TradeSystem v2.6.2
[14:54:21] [Server thread/INFO]: [SuperVanish] Loading SuperVanish v6.2.0
[14:54:21] [Server thread/INFO]: [CrazyEnvoys] Loading CrazyEnvoys v1.4.17.3
[14:54:21] [Server thread/INFO]: [ShopGUIPlus Sell GUI] Loading ShopGUIPlus-SellGUI v1.1.8
[14:54:21] [Server thread/INFO]: [TitleManager] Loading TitleManager v2.3.6
[14:54:21] [Server thread/INFO]: [CombatTagPlus] Loading CombatTagPlus v1.3.1
[14:54:21] [Server thread/INFO]: [Printer] Loading Printer v3.2.2
[14:54:21] [Server thread/INFO]: [SaberFactions] Loading Factions v1.6.9.5-4.1.4-STABLE
[14:54:21] [Server thread/INFO]: [FactionsTop] Loading FactionsTop v6.1.0
[14:54:21] [Server thread/INFO]: [BetterRTP] Loading BetterRTP v3.6.13
[14:54:21] [Server thread/INFO]: [VoidChest-1.16.0] Loading VoidChest v1.16.0
[14:54:21] [Server thread/INFO]: [LunarSandBotRecoded] Loading LunarSandBotRecoded v2.5
[14:54:21] [Server thread/INFO]: [GenBucket] Loading GenBucket v1.0.7
[14:54:21] [Server thread/INFO]: [FlightControl] Loading FlightControl v4
[14:54:21] [Server thread/INFO]: [AdvancedEnchantments] Loading AdvancedEnchantments v9.0.0b81
[14:54:21] [Server thread/INFO]: [ThrowableCreeperEggs] Loading ThrowableCreeperEggs v2.3.0
[14:54:21] [Server thread/INFO]: [CleanroomGenerator] Enabling CleanroomGenerator v1.0.0
[14:54:21] [Server thread/INFO]: [CleanroomGenerator] CleanroomGenerator v1.0.0 enabled
[14:54:21] [Server thread/INFO]: [Realistic_World] Enabling Realistic_World v3.8.6
[14:54:23] [Server thread/WARN]: java.net.UnknownHostException: antiprivacy.yellowphoenix18.de
[14:54:23] [Server thread/WARN]:     at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:196)
[14:54:23] [Server thread/WARN]:     at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:162)
[14:54:23] [Server thread/WARN]:     at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:394)
[14:54:23] [Server thread/WARN]:     at java.net.Socket.connect(Socket.java:606)
[14:54:23] [Server thread/WARN]:     at java.net.Socket.connect(Socket.java:555)
[14:54:23] [Server thread/WARN]:     at sun.net.NetworkClient.doConnect(NetworkClient.java:180)
[14:54:23] [Server thread/WARN]:     at sun.net.www.http.HttpClient.openServer(HttpClient.java:499)
[14:54:23] [Server thread/WARN]:     at sun.net.www.http.HttpClient.openServer(HttpClient.java:594)
[14:54:23] [Server thread/WARN]:     at sun.net.www.http.HttpClient.<init>(HttpClient.java:278)
[14:54:23] [Server thread/WARN]:     at sun.net.www.http.HttpClient.New(HttpClient.java:375)
[14:54:23] [Server thread/WARN]:     at sun.net.www.http.HttpClient.New(HttpClient.java:393)
[14:54:23] [Server thread/WARN]:     at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1240)
[14:54:23] [Server thread/WARN]:     at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1167)
[14:54:23] [Server thread/WARN]:     at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1061)
[14:54:23] [Server thread/WARN]:     at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:995)
[14:54:23] [Server thread/WARN]:     at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1606)
[14:54:23] [Server thread/WARN]:     at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1534)
[14:54:23] [Server thread/WARN]:     at de.yellowphoenix18.antiprivacy.AntiPrivacy.a(AntiPrivacy.java:34)
[14:54:23] [Server thread/WARN]:     at de.yellowphoenix18.antiprivacy.AntiPrivacy.a(AntiPrivacy.java:101)
[14:54:23] [Server thread/WARN]:     at de.yellowphoenix18.realistic.utils.PluginUtils.b(PluginUtils.java:63)
[14:54:23] [Server thread/WARN]:     at de.yellowphoenix18.realistic.utils.PluginUtils.a(PluginUtils.java:56)
[14:54:23] [Server thread/WARN]:     at de.yellowphoenix18.realistic.Realistic.onEnable(Realistic.java:23)
[14:54:23] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:321)
[14:54:23] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:356)
[14:54:23] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:419)
[14:54:23] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.CraftServer.loadPlugin(CraftServer.java:383)
[14:54:23] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.CraftServer.enablePlugins(CraftServer.java:320)
[14:54:23] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.DedicatedServer.init(DedicatedServer.java:204)
[14:54:23] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:630)
[14:54:23] [Server thread/WARN]:     at java.lang.Thread.run(Thread.java:750)
[14:54:23] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.141
[14:54:23] [Thread-10/WARN]: Exception in thread "Thread-10" 
[14:54:23] [Thread-10/WARN]: java.lang.Error: java.util.zip.ZipException: zip file is empty
[14:54:23] [Thread-10/WARN]:     at Updater.a(:149)
[14:54:23] [Thread-10/WARN]:     at java.lang.Thread.run(Thread.java:750)
[14:54:23] [Thread-10/WARN]: Caused by: java.util.zip.ZipException: zip file is empty
[14:54:23] [Thread-10/WARN]:     at java.util.zip.ZipFile.open(Native Method)
[14:54:23] [Thread-10/WARN]:     at java.util.zip.ZipFile.<init>(ZipFile.java:231)
[14:54:23] [Thread-10/WARN]:     at java.util.zip.ZipFile.<init>(ZipFile.java:156)
[14:54:23] [Thread-10/WARN]:     at java.util.zip.ZipFile.<init>(ZipFile.java:170)
[14:54:23] [Thread-10/WARN]:     at Updater.a(:85)
[14:54:23] [Thread-10/WARN]:     ... 1 more
[14:54:23] [Server thread/INFO]:         __    
[14:54:23] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.141
[14:54:23] [Server thread/INFO]:   |___ |      Running on Bukkit - WineSpigot
[14:54:23] [Server thread/INFO]: 
[14:54:23] [Server thread/INFO]: [LuckPerms] Loading configuration...
[14:54:23] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[14:54:23] [Server thread/WARN]: SLF4J: No SLF4J providers were found.
[14:54:23] [Server thread/WARN]: SLF4J: Defaulting to no-operation (NOP) logger implementation
[14:54:23] [Server thread/WARN]: SLF4J: See https://www.slf4j.org/codes.html#noProviders for further details.
[14:54:25] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[14:54:25] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[14:54:25] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[14:54:27] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 4172ms)
[14:54:27] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.1.0
[14:54:27] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v21.03.26-5ff3a9b-1286-22.3.9
[14:54:27] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[14:54:27] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[14:54:27] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[14:54:27] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[14:54:27] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[14:54:27] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[14:54:27] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[14:54:27] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[14:54:27] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[14:54:27] [Server thread/INFO]: **** Beginning UUID conversion, this may take A LONG time ****
[14:54:27] [Server thread/INFO]: Preparing level "world"
[14:54:27] [Server thread/INFO]: -------- World Settings For [world] --------
[14:54:27] [Server thread/INFO]: Experience Merge Radius: 3.0
[14:54:27] [Server thread/INFO]: View Distance: 8
[14:54:27] [Server thread/INFO]: Item Despawn Rate: 6000
[14:54:27] [Server thread/INFO]: Item Merge Radius: 2.5
[14:54:27] [Server thread/INFO]: Chunks to Grow per Tick: 320
[14:54:27] [Server thread/INFO]: Clear tick list: false
[14:54:27] [Server thread/INFO]: Arrow Despawn Rate: 0
[14:54:27] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[14:54:27] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:54:27] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[14:54:27] [Server thread/INFO]: Max Entity Collisions: 4
[14:54:27] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[14:54:27] [Server thread/INFO]: Anti X-Ray: false
[14:54:27] [Server thread/INFO]:     Engine Mode: 1
[14:54:27] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[14:54:27] [Server thread/INFO]:     Replace Blocks: [1, 5]
[14:54:27] [Server thread/INFO]: Cactus Growth Modifier: 800%
[14:54:27] [Server thread/INFO]: Cane Growth Modifier: 800%
[14:54:27] [Server thread/INFO]: Melon Growth Modifier: 800%
[14:54:27] [Server thread/INFO]: Mushroom Growth Modifier: 800%
[14:54:27] [Server thread/INFO]: Pumpkin Growth Modifier: 800%
[14:54:27] [Server thread/INFO]: Sapling Growth Modifier: 800%
[14:54:27] [Server thread/INFO]: Wheat Growth Modifier: 800%
[14:54:27] [Server thread/INFO]: NetherWart Growth Modifier: 800%
[14:54:27] [Server thread/INFO]: Mob Spawn Range: 4
[14:54:27] [Server thread/INFO]: Hopper Transfer: 40 Hopper Check: 40 Hopper Amount: 64
[14:54:27] [Server thread/INFO]: Random Lighting Updates: true
[14:54:27] [Server thread/INFO]: Sending up to 10 chunks per packet
[14:54:27] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 32
[14:54:27] [Server thread/INFO]: Entity Activation Range: An 7 / Mo 6 / Mi 5
[14:54:27] [Server thread/INFO]: Structure Info Saving: true
[14:54:27] [Server thread/INFO]: Max TNT Explosions: 999999
[14:54:27] [Server thread/INFO]: Tile Max Tick Time: 25ms Entity max Tick Time: 25ms
[14:54:27] [Server thread/INFO]: -------- World Settings For [world] --------
[14:54:27] [Server thread/INFO]: World async lighting: true
[14:54:27] [Server thread/INFO]: WorldServer TickNextTick cap set at 10000
[14:54:27] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: false
[14:54:27] [Server thread/INFO]: Fix TNT cannons: true
[14:54:27] [Server thread/INFO]: Keep spawn chunk loaded: true
[14:54:27] [Server thread/INFO]: TNT Entity Height Limit set to Y: 256
[14:54:27] [Server thread/INFO]: Water over lava flow speed: 5
[14:54:27] [Server thread/INFO]: Allow undead horse types to be leashed: false
[14:54:27] [Server thread/INFO]: Falling Block Height Limit set to Y: 255
[14:54:27] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[14:54:27] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[14:54:27] [Server thread/INFO]: Squids will spawn between Y: 0.0 and Y: 255.0
[14:54:27] [Server thread/INFO]: Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[14:54:27] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[14:54:27] [Server thread/INFO]: -------- World Settings For [world] --------
[14:54:27] [Server thread/INFO]: Preparing start region for level 0 (Seed: -7472289191589766727)
[14:54:28] [Server thread/INFO]: [WildLoaders] Enabling WildLoaders v2024.3
[14:54:28] [Server thread/INFO]: [WildLoaders] ******** ENABLE START ********
[14:54:28] [Server thread/INFO]: [WildLoaders] Loading configuration started...
[14:54:28] [Server thread/INFO]: [WildLoaders]  - Found 2 chunk-loaders in config.yml.
[14:54:28] [Server thread/INFO]: [WildLoaders] Loading configuration done (Took 95ms)
[14:54:28] [Server thread/INFO]: [WildLoaders] Loading messages started...
[14:54:28] [Server thread/INFO]: [WildLoaders]  - Found 25 messages in lang.yml.
[14:54:28] [Server thread/INFO]: [WildLoaders] Loading messages done (Took 3ms)
[14:54:28] [Server thread/INFO]: [WildLoaders] ******** ENABLE DONE ********
[14:54:28] [Server thread/INFO]: [EternalCraftAnvilToCommand] Enabling EternalCraftAnvilToCommand v1.0-SNAPSHOT
[14:54:28] [Server thread/INFO]: [iKoth] Enabling iKoth v4.5
[14:54:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ikoth [4.5]
[14:54:28] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[14:54:28] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[14:54:28] [Server thread/INFO]: [WildBuster] Enabling WildBuster v2024.3
[14:54:28] [Server thread/INFO]: [WildBuster] ******** ENABLE START ********
[14:54:28] [Server thread/INFO]: [WildBuster] Loading configuration started...
[14:54:28] [Server thread/INFO]: [WildBuster]  - Found 2 chunk-busters in config.yml.
[14:54:28] [Server thread/INFO]: [WildBuster] Loading configuration done (Took 5ms)
[14:54:28] [Server thread/INFO]: [WildBuster] Loading messages started...
[14:54:28] [Server thread/INFO]: [WildBuster]  - Found 25 messages in lang.yml.
[14:54:28] [Server thread/INFO]: [WildBuster] Loading messages done (Took 1ms)
[14:54:28] [Server thread/INFO]: [WildBuster] ******** ENABLE DONE ********
[14:54:28] [Server thread/INFO]: [PlugMan] Enabling PlugMan v2.1.7
[14:54:28] [Server thread/INFO]: [SocialLinks] Enabling SocialLinks v1.0-SNAPSHOT
[14:54:28] [Server thread/INFO]: [CommandLog] Enabling CommandLog v1.2
[14:54:28] [Server thread/INFO]: There are 2 commands in the ignore list
[14:54:28] [Server thread/INFO]: [EternalCraftGoldenAppleModify] Enabling EternalCraftGoldenAppleModify v1.0-SNAPSHOT
[14:54:28] [Server thread/INFO]: [WildStacker] Enabling WildStacker v2024.3
[14:54:28] [Server thread/INFO]: [WildStacker] ******** ENABLE START ********
[14:54:28] [Server thread/INFO]: [WildStacker] Loading configuration started...
[14:54:28] [Server thread/INFO]: [WildStacker]  - Stacking drops is enabled
[14:54:28] [Server thread/INFO]: [WildStacker]  - Stacking entities is enabled
[14:54:28] [Server thread/INFO]: [WildStacker]  - Stacking spawners is enabled
[14:54:28] [Server thread/INFO]: [WildStacker]  - Stacking barrels is disabled
[14:54:28] [Server thread/INFO]: [WildStacker] Loading configuration done (Took 65ms)
[14:54:28] [Server thread/INFO]: [WildStacker] Loading loot-tables started...
[14:54:28] [Server thread/INFO]: [WildStacker] [donkey.json] Couldn't load item with an invalid material WITHER_ROSE.
[14:54:28] [Server thread/INFO]: [WildStacker] [horse.json] Couldn't load item with an invalid material WITHER_ROSE.
[14:54:28] [Server thread/INFO]: [WildStacker] [mule.json] Couldn't load item with an invalid material WITHER_ROSE.
[14:54:28] [Server thread/INFO]: [WildStacker] [ocelot.json] Couldn't load item with an invalid material WITHER_ROSE.
[14:54:28] [Server thread/INFO]: [WildStacker] [rabbit.json] Couldn't load item with an invalid material WITHER_ROSE.
[14:54:28] [Server thread/INFO]: [WildStacker] [wolf.json] Couldn't load item with an invalid material WITHER_ROSE.
[14:54:28] [Server thread/INFO]: [WildStacker] [zombie_baby.json] Couldn't load item with an invalid material ZOMBIE_HEAD.
[14:54:28] [Server thread/INFO]: [WildStacker] Loading loot-tables done (Took 31ms)
[14:54:28] [Server thread/INFO]: [WildStacker] Loading messages started...
[14:54:28] [Server thread/INFO]: [WildStacker]  - Found 69 messages in lang.yml.
[14:54:28] [Server thread/INFO]: [WildStacker] Loading messages done (Took 2ms)
[14:54:28] [Server thread/INFO]: [WildStacker] ******** ENABLE DONE ********
[14:54:28] [Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
[14:54:28] [Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
[14:54:28] [Server thread/INFO]: [DeluxeTags] 7 tags loaded
[14:54:28] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[14:54:28] [Server thread/INFO]: [DeluxeTags] You are not using a chat plugin that supports PlaceholderAPI!
[14:54:28] [Server thread/INFO]: [DeluxeTags] DeluxeTags will listen to the AsyncPlayerChatEvent to provide compatibility for some chat plugins.
[14:54:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxetags [1.8.2-Release]
[14:54:28] [Server thread/INFO]: [WildTools] Enabling WildTools v2024.3
[14:54:28] [Server thread/INFO]: [WildTools] ******** ENABLE START ********
[14:54:28] [Server thread/INFO]: [WildTools] Loading configuration started...
[14:54:28] [Server thread/INFO]: [WildTools]  - Found 17 tools in config.yml.
[14:54:28] [Server thread/INFO]: [WildTools] Loading configuration done (Took 29ms)
[14:54:28] [Server thread/INFO]: [WildTools] Loading messages started...
[14:54:28] [Server thread/INFO]: [WildTools]  - Found 0 messages in lang.yml.
[14:54:28] [Server thread/INFO]: [WildTools] Loading messages done (Took 3ms)
[14:54:28] [Server thread/INFO]: [WildTools] Couldn't find the tool trench_pickaxe, skipping recipe...
[14:54:28] [Server thread/INFO]: [WildTools] Couldn't find the tool sell_wand, skipping recipe...
[14:54:28] [Server thread/INFO]: [WildTools] ******** ENABLE DONE ********
[14:54:28] [Server thread/INFO]: [EternalCraftEnchanterToCommand] Enabling EternalCraftEnchanterToCommand v1.0-SNAPSHOT
[14:54:28] [Server thread/INFO]: [JoinMessage] Enabling JoinMessage v1.0-SNAPSHOT
[14:54:28] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.10.2
[14:54:28] [Server thread/INFO]: [EternalCraftStaffChat] Enabling EternalCraftStaffChat v1.0-SNAPSHOT
[14:54:28] [Server thread/INFO]: [CommandDefender] Enabling CommandDefender v2.1.7 b35
[14:54:28] [Server thread/INFO]: CommandDefender: File Loader: Loading files...
[14:54:28] [Server thread/INFO]: CommandDefender: Start-up: Registering listeners...
[14:54:28] [Server thread/INFO]: CommandDefender: Start-up: Registering commands...
[14:54:28] [Server thread/INFO]: CommandDefender: Start-up complete (took 11232700000000ms).
[14:54:28] [Server thread/INFO]: [TimTheEnchanter] Enabling TimTheEnchanter v3.0
[14:54:28] [Server thread/INFO]: [Tim] Unused enchantments: DEPTH_STRIDER(8) WildBusterGlow(201) WildStackerGlow(101) LUCK(61) LURE(62) 
[14:54:28] [Server thread/INFO]: [TimTheEnchanter] There are some who call me... Tim?
[14:54:28] [Server thread/INFO]: [VortexPearls] Enabling VortexPearls v6.1
[14:54:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vortexpearls [6.1]
[14:54:28] [Server thread/INFO]: [LunarFreeCam] Enabling LunarFreeCam v2.0
[14:54:28] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[14:54:28] [Server thread/INFO]: [ClearLag] Using version-adapter: LegacyVersionAdapter
[14:54:28] [Server thread/INFO]: [ClearLag] Loading modules...
[14:54:28] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[14:54:28] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[14:54:28] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[14:54:28] [Server thread/INFO]: [WorldBorder] Enabling WorldBorder v1.8.6
[14:54:28] [Server thread/INFO]: [WorldBorder] [CONFIG] Using rectangular/square border, knockback of 3.0 blocks, and timer delay of 5.
[14:54:28] [Server thread/INFO]: [WorldBorder] [CONFIG] Border-checking timed task started.
[14:54:28] [Server thread/INFO]: [WorldBorder] [CONFIG] World "world" has border radius 2500 at X: -0.0 Z: -0.0
[14:54:28] [Server thread/INFO]: [WorldBorder] [CONFIG] World "world_nether" has border radius 2500 at X: 0.1 Z: -0.0
[14:54:28] [Server thread/INFO]: [WorldBorder] [CONFIG] World "world_end" has border radius 10000 at X: 0.0 Z: 0.0
[14:54:28] [Server thread/INFO]: [WorldBorder] [CONFIG] World "flat_end" has border radius 2500 at X: 0.0 Z: 0.0
[14:54:28] [Server thread/INFO]: [WorldBorder] [CONFIG] World "flat_nether" has border radius 2500 at X: 0.0 Z: 0.0
[14:54:28] [Server thread/INFO]: [WorldBorder] [CONFIG] World "kothbuilds" has border radius 350 at X: 1.5 Z: 0.5
[14:54:28] [Server thread/INFO]: [WorldBorder] For reference, the main world's spawn location is at X: 1292.0 Y: 64.0 Z: 529.0
[14:54:28] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.15.1
[14:54:29] [Server thread/INFO]: [LiteBans] Using default database drivers (version:8).
[14:54:29] [Server thread/INFO]: [LiteBans] Using system locale (en)
[14:54:29] [Server thread/INFO]: [LiteBans] Loaded 4 templates from templates.yml!
[14:54:29] [Server thread/INFO]: [LiteBans] Loading SQL driver: mysql 8.0.29 (com.mysql.cj.jdbc.Driver)
[14:54:29] [Server thread/INFO]: [LiteBans] Connecting to database...
[14:54:29] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[14:54:30] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[14:54:30] [Server thread/INFO]: [LiteBans] Connected to MySQL database successfully (1204.4 ms).
[14:54:31] [Server thread/INFO]: [LiteBans] Database connection fully initialized (2131.3 ms).
[14:54:31] [Server thread/INFO]: [LiteBans] v2.15.1 enabled. Startup took 2218 ms.
[14:54:31] [Server thread/INFO]: [EliteLootbox] Enabling EliteLootbox v2.4.1
[14:54:31] [Server thread/INFO]: [NBTAPI] Found Minecraft: v1_8_R3! Trying to find NMS support
[14:54:31] [Server thread/INFO]: [NBTAPI] NMS support 'MC1_8_R3' loaded!
[14:54:31] [Server thread/INFO]: [NBTAPI] Using the plugin 'EliteLootbox' to create a bStats instance!
[14:54:31] [Server thread/INFO]: EliteLootbox: Loaded rankvoucher.yml successfully!
[14:54:31] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[14:54:31] [Server thread/INFO]: [Votifier] Loaded token for website: default
[14:54:31] [Server thread/INFO]: [Votifier] Using NIO transport to accept votes.
[14:54:31] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[14:54:31] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v2.5.0-b727
[14:54:31] [Votifier NIO boss/INFO]: [Votifier] Votifier enabled on socket /0:0:0:0:0:0:0:0:8152.
[14:54:31] [Server thread/INFO]: -------- World Settings For [Builds] --------
[14:54:31] [Server thread/INFO]: Experience Merge Radius: 3.0
[14:54:31] [Server thread/INFO]: View Distance: 8
[14:54:31] [Server thread/INFO]: Item Despawn Rate: 6000
[14:54:31] [Server thread/INFO]: Item Merge Radius: 2.5
[14:54:31] [Server thread/INFO]: Chunks to Grow per Tick: 320
[14:54:31] [Server thread/INFO]: Clear tick list: false
[14:54:31] [Server thread/INFO]: Arrow Despawn Rate: 0
[14:54:31] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[14:54:31] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:54:31] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[14:54:31] [Server thread/INFO]: Max Entity Collisions: 4
[14:54:31] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[14:54:31] [Server thread/INFO]: Anti X-Ray: false
[14:54:31] [Server thread/INFO]:     Engine Mode: 1
[14:54:31] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[14:54:31] [Server thread/INFO]:     Replace Blocks: [1, 5]
[14:54:31] [Server thread/INFO]: Cactus Growth Modifier: 800%
[14:54:31] [Server thread/INFO]: Cane Growth Modifier: 800%
[14:54:31] [Server thread/INFO]: Melon Growth Modifier: 800%
[14:54:31] [Server thread/INFO]: Mushroom Growth Modifier: 800%
[14:54:31] [Server thread/INFO]: Pumpkin Growth Modifier: 800%
[14:54:31] [Server thread/INFO]: Sapling Growth Modifier: 800%
[14:54:31] [Server thread/INFO]: Wheat Growth Modifier: 800%
[14:54:31] [Server thread/INFO]: NetherWart Growth Modifier: 800%
[14:54:31] [Server thread/INFO]: Mob Spawn Range: 4
[14:54:31] [Server thread/INFO]: Hopper Transfer: 40 Hopper Check: 40 Hopper Amount: 64
[14:54:31] [Server thread/INFO]: Random Lighting Updates: true
[14:54:31] [Server thread/INFO]: Sending up to 10 chunks per packet
[14:54:31] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 32
[14:54:31] [Server thread/INFO]: Entity Activation Range: An 7 / Mo 6 / Mi 5
[14:54:31] [Server thread/INFO]: Structure Info Saving: true
[14:54:31] [Server thread/INFO]: Max TNT Explosions: 999999
[14:54:31] [Server thread/INFO]: Tile Max Tick Time: 25ms Entity max Tick Time: 25ms
[14:54:31] [Server thread/INFO]: -------- World Settings For [Builds] --------
[14:54:31] [Server thread/INFO]: World async lighting: true
[14:54:31] [Server thread/INFO]: WorldServer TickNextTick cap set at 10000
[14:54:31] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: false
[14:54:31] [Server thread/INFO]: Fix TNT cannons: true
[14:54:31] [Server thread/INFO]: Keep spawn chunk loaded: true
[14:54:31] [Server thread/INFO]: TNT Entity Height Limit set to Y: 256
[14:54:31] [Server thread/INFO]: Water over lava flow speed: 5
[14:54:31] [Server thread/INFO]: Allow undead horse types to be leashed: false
[14:54:31] [Server thread/INFO]: Falling Block Height Limit set to Y: 255
[14:54:31] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[14:54:31] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[14:54:31] [Server thread/INFO]: Squids will spawn between Y: 0.0 and Y: 255.0
[14:54:31] [Server thread/INFO]: Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[14:54:31] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[14:54:31] [Server thread/INFO]: -------- World Settings For [Builds] --------
[14:54:31] [Server thread/INFO]: Preparing start region for level 1 (Seed: -3769416362014109648)
[14:54:32] [Server thread/INFO]: -------- World Settings For [flat_nether] --------
[14:54:32] [Server thread/INFO]: Experience Merge Radius: 3.0
[14:54:32] [Server thread/INFO]: View Distance: 8
[14:54:32] [Server thread/INFO]: Item Despawn Rate: 6000
[14:54:32] [Server thread/INFO]: Item Merge Radius: 2.5
[14:54:32] [Server thread/INFO]: Chunks to Grow per Tick: 320
[14:54:32] [Server thread/INFO]: Clear tick list: false
[14:54:32] [Server thread/INFO]: Arrow Despawn Rate: 0
[14:54:32] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[14:54:32] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:54:32] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[14:54:32] [Server thread/INFO]: Max Entity Collisions: 4
[14:54:32] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[14:54:32] [Server thread/INFO]: Anti X-Ray: false
[14:54:32] [Server thread/INFO]:     Engine Mode: 1
[14:54:32] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[14:54:32] [Server thread/INFO]:     Replace Blocks: [1, 5]
[14:54:32] [Server thread/INFO]: Cactus Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Cane Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Melon Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Mushroom Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Pumpkin Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Sapling Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Wheat Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: NetherWart Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Mob Spawn Range: 4
[14:54:32] [Server thread/INFO]: Hopper Transfer: 40 Hopper Check: 40 Hopper Amount: 64
[14:54:32] [Server thread/INFO]: Random Lighting Updates: true
[14:54:32] [Server thread/INFO]: Sending up to 10 chunks per packet
[14:54:32] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 32
[14:54:32] [Server thread/INFO]: Entity Activation Range: An 7 / Mo 6 / Mi 5
[14:54:32] [Server thread/INFO]: Structure Info Saving: true
[14:54:32] [Server thread/INFO]: Max TNT Explosions: 999999
[14:54:32] [Server thread/INFO]: Tile Max Tick Time: 25ms Entity max Tick Time: 25ms
[14:54:32] [Server thread/INFO]: -------- World Settings For [flat_nether] --------
[14:54:32] [Server thread/INFO]: World async lighting: true
[14:54:32] [Server thread/INFO]: WorldServer TickNextTick cap set at 10000
[14:54:32] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: false
[14:54:32] [Server thread/INFO]: Fix TNT cannons: true
[14:54:32] [Server thread/INFO]: Keep spawn chunk loaded: true
[14:54:32] [Server thread/INFO]: TNT Entity Height Limit set to Y: 256
[14:54:32] [Server thread/INFO]: Water over lava flow speed: 5
[14:54:32] [Server thread/INFO]: Allow undead horse types to be leashed: false
[14:54:32] [Server thread/INFO]: Falling Block Height Limit set to Y: 255
[14:54:32] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[14:54:32] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[14:54:32] [Server thread/INFO]: Squids will spawn between Y: 0.0 and Y: 255.0
[14:54:32] [Server thread/INFO]: Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[14:54:32] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[14:54:32] [Server thread/INFO]: -------- World Settings For [flat_nether] --------
[14:54:32] [Server thread/INFO]: Preparing start region for level 2 (Seed: -1857227022226751629)
[14:54:32] [Server thread/INFO]: -------- World Settings For [kothbuilds] --------
[14:54:32] [Server thread/INFO]: Experience Merge Radius: 3.0
[14:54:32] [Server thread/INFO]: View Distance: 8
[14:54:32] [Server thread/INFO]: Item Despawn Rate: 6000
[14:54:32] [Server thread/INFO]: Item Merge Radius: 2.5
[14:54:32] [Server thread/INFO]: Chunks to Grow per Tick: 320
[14:54:32] [Server thread/INFO]: Clear tick list: false
[14:54:32] [Server thread/INFO]: Arrow Despawn Rate: 0
[14:54:32] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[14:54:32] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:54:32] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[14:54:32] [Server thread/INFO]: Max Entity Collisions: 4
[14:54:32] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[14:54:32] [Server thread/INFO]: Anti X-Ray: false
[14:54:32] [Server thread/INFO]:     Engine Mode: 1
[14:54:32] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[14:54:32] [Server thread/INFO]:     Replace Blocks: [1, 5]
[14:54:32] [Server thread/INFO]: Cactus Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Cane Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Melon Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Mushroom Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Pumpkin Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Sapling Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Wheat Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: NetherWart Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Mob Spawn Range: 4
[14:54:32] [Server thread/INFO]: Hopper Transfer: 40 Hopper Check: 40 Hopper Amount: 64
[14:54:32] [Server thread/INFO]: Random Lighting Updates: true
[14:54:32] [Server thread/INFO]: Sending up to 10 chunks per packet
[14:54:32] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 32
[14:54:32] [Server thread/INFO]: Entity Activation Range: An 7 / Mo 6 / Mi 5
[14:54:32] [Server thread/INFO]: Structure Info Saving: true
[14:54:32] [Server thread/INFO]: Max TNT Explosions: 999999
[14:54:32] [Server thread/INFO]: Tile Max Tick Time: 25ms Entity max Tick Time: 25ms
[14:54:32] [Server thread/INFO]: -------- World Settings For [kothbuilds] --------
[14:54:32] [Server thread/INFO]: World async lighting: true
[14:54:32] [Server thread/INFO]: WorldServer TickNextTick cap set at 10000
[14:54:32] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: false
[14:54:32] [Server thread/INFO]: Fix TNT cannons: true
[14:54:32] [Server thread/INFO]: Keep spawn chunk loaded: true
[14:54:32] [Server thread/INFO]: TNT Entity Height Limit set to Y: 256
[14:54:32] [Server thread/INFO]: Water over lava flow speed: 5
[14:54:32] [Server thread/INFO]: Allow undead horse types to be leashed: false
[14:54:32] [Server thread/INFO]: Falling Block Height Limit set to Y: 255
[14:54:32] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[14:54:32] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[14:54:32] [Server thread/INFO]: Squids will spawn between Y: 0.0 and Y: 255.0
[14:54:32] [Server thread/INFO]: Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[14:54:32] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[14:54:32] [Server thread/INFO]: -------- World Settings For [kothbuilds] --------
[14:54:32] [Server thread/INFO]: Preparing start region for level 3 (Seed: 3757729152980935157)
[14:54:32] [Server thread/INFO]: -------- World Settings For [Season3] --------
[14:54:32] [Server thread/INFO]: Experience Merge Radius: 3.0
[14:54:32] [Server thread/INFO]: View Distance: 8
[14:54:32] [Server thread/INFO]: Item Despawn Rate: 6000
[14:54:32] [Server thread/INFO]: Item Merge Radius: 2.5
[14:54:32] [Server thread/INFO]: Chunks to Grow per Tick: 320
[14:54:32] [Server thread/INFO]: Clear tick list: false
[14:54:32] [Server thread/INFO]: Arrow Despawn Rate: 0
[14:54:32] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[14:54:32] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:54:32] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[14:54:32] [Server thread/INFO]: Max Entity Collisions: 4
[14:54:32] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[14:54:32] [Server thread/INFO]: Anti X-Ray: false
[14:54:32] [Server thread/INFO]:     Engine Mode: 1
[14:54:32] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[14:54:32] [Server thread/INFO]:     Replace Blocks: [1, 5]
[14:54:32] [Server thread/INFO]: Cactus Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Cane Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Melon Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Mushroom Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Pumpkin Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Sapling Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Wheat Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: NetherWart Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Mob Spawn Range: 4
[14:54:32] [Server thread/INFO]: Hopper Transfer: 40 Hopper Check: 40 Hopper Amount: 64
[14:54:32] [Server thread/INFO]: Random Lighting Updates: true
[14:54:32] [Server thread/INFO]: Sending up to 10 chunks per packet
[14:54:32] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 32
[14:54:32] [Server thread/INFO]: Entity Activation Range: An 7 / Mo 6 / Mi 5
[14:54:32] [Server thread/INFO]: Structure Info Saving: true
[14:54:32] [Server thread/INFO]: Max TNT Explosions: 999999
[14:54:32] [Server thread/INFO]: Tile Max Tick Time: 25ms Entity max Tick Time: 25ms
[14:54:32] [Server thread/INFO]: -------- World Settings For [Season3] --------
[14:54:32] [Server thread/INFO]: World async lighting: true
[14:54:32] [Server thread/INFO]: WorldServer TickNextTick cap set at 10000
[14:54:32] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: false
[14:54:32] [Server thread/INFO]: Fix TNT cannons: true
[14:54:32] [Server thread/INFO]: Keep spawn chunk loaded: true
[14:54:32] [Server thread/INFO]: TNT Entity Height Limit set to Y: 256
[14:54:32] [Server thread/INFO]: Water over lava flow speed: 5
[14:54:32] [Server thread/INFO]: Allow undead horse types to be leashed: false
[14:54:32] [Server thread/INFO]: Falling Block Height Limit set to Y: 255
[14:54:32] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[14:54:32] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[14:54:32] [Server thread/INFO]: Squids will spawn between Y: 0.0 and Y: 255.0
[14:54:32] [Server thread/INFO]: Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[14:54:32] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[14:54:32] [Server thread/INFO]: -------- World Settings For [Season3] --------
[14:54:32] [Server thread/INFO]: Preparing start region for level 4 (Seed: 8974742368176168734)
[14:54:32] [Server thread/INFO]: -------- World Settings For [flat_end] --------
[14:54:32] [Server thread/INFO]: Experience Merge Radius: 3.0
[14:54:32] [Server thread/INFO]: View Distance: 8
[14:54:32] [Server thread/INFO]: Item Despawn Rate: 6000
[14:54:32] [Server thread/INFO]: Item Merge Radius: 2.5
[14:54:32] [Server thread/INFO]: Chunks to Grow per Tick: 320
[14:54:32] [Server thread/INFO]: Clear tick list: false
[14:54:32] [Server thread/INFO]: Arrow Despawn Rate: 0
[14:54:32] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[14:54:32] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[14:54:32] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Feature: 14357617
[14:54:32] [Server thread/INFO]: Max Entity Collisions: 4
[14:54:32] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[14:54:32] [Server thread/INFO]: Anti X-Ray: false
[14:54:32] [Server thread/INFO]:     Engine Mode: 1
[14:54:32] [Server thread/INFO]:     Hidden Blocks: [14, 15, 16, 21, 48, 49, 54, 56, 73, 74, 82, 129, 130]
[14:54:32] [Server thread/INFO]:     Replace Blocks: [1, 5]
[14:54:32] [Server thread/INFO]: Cactus Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Cane Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Melon Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Mushroom Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Pumpkin Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Sapling Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Wheat Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: NetherWart Growth Modifier: 800%
[14:54:32] [Server thread/INFO]: Mob Spawn Range: 4
[14:54:32] [Server thread/INFO]: Hopper Transfer: 40 Hopper Check: 40 Hopper Amount: 64
[14:54:32] [Server thread/INFO]: Random Lighting Updates: true
[14:54:32] [Server thread/INFO]: Sending up to 10 chunks per packet
[14:54:32] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 32
[14:54:32] [Server thread/INFO]: Entity Activation Range: An 7 / Mo 6 / Mi 5
[14:54:32] [Server thread/INFO]: Structure Info Saving: true
[14:54:32] [Server thread/INFO]: Max TNT Explosions: 999999
[14:54:32] [Server thread/INFO]: Tile Max Tick Time: 25ms Entity max Tick Time: 25ms
[14:54:32] [Server thread/INFO]: -------- World Settings For [flat_end] --------
[14:54:32] [Server thread/INFO]: World async lighting: true
[14:54:32] [Server thread/INFO]: WorldServer TickNextTick cap set at 10000
[14:54:32] [Server thread/INFO]: WorldServer TickNextTickList cap always processes redstone: false
[14:54:32] [Server thread/INFO]: Fix TNT cannons: true
[14:54:32] [Server thread/INFO]: Keep spawn chunk loaded: true
[14:54:32] [Server thread/INFO]: TNT Entity Height Limit set to Y: 256
[14:54:32] [Server thread/INFO]: Water over lava flow speed: 5
[14:54:32] [Server thread/INFO]: Allow undead horse types to be leashed: false
[14:54:32] [Server thread/INFO]: Falling Block Height Limit set to Y: 255
[14:54:32] [Server thread/INFO]: Player blocking damage multiplier set to 0.5
[14:54:32] [Server thread/INFO]: Max height for cactus growth 3. Max height for reed growth 3
[14:54:32] [Server thread/INFO]: Squids will spawn between Y: 0.0 and Y: 255.0
[14:54:32] [Server thread/INFO]: Living Entity Despawn Ranges:  Soft: 32 Hard: 128
[14:54:32] [Server thread/INFO]: Remove invalid mob spawner tile entities: true
[14:54:32] [Server thread/INFO]: -------- World Settings For [flat_end] --------
[14:54:32] [Server thread/INFO]: Preparing start region for level 5 (Seed: 206011687966110604)
[14:54:33] [Server thread/INFO]: [Multiverse-Core] 6 - World(s) loaded.
[14:54:33] [Server thread/INFO]: [Multiverse-Core] Version 2.5.0-b727 (API v20) Enabled - By Rigby, fernferret, lithium3141, main-- and dumptruckman
[14:54:33] [Server thread/INFO]: [EternalCraftInfiniteBuckets] Enabling EternalCraftInfiniteBuckets v1.0-SNAPSHOT
[14:54:33] [Server thread/INFO]: [HamsterAPI] Enabling HamsterAPI v0.2.4
[14:54:33] [Server thread/INFO]: [MVdWPlaceholderAPI] Enabling MVdWPlaceholderAPI v3.1.1
[14:54:33] [Server thread/INFO]: [MVdWPlaceholderAPI] Initializing placeholders ...
[14:54:33] [Server thread/INFO]: [MVdWPlaceholderAPI] Sending metrics ...
[14:54:33] [Server thread/INFO]: [Vouchers] Enabling Vouchers v1.8.20-RELEASE
[14:54:33] [Server thread/INFO]: [Vouchers] Loading the Config.yml
[14:54:33] [Server thread/INFO]: [Vouchers] Successfully loaded Config.yml
[14:54:33] [Server thread/INFO]: [Vouchers] Loading the Data.yml
[14:54:33] [Server thread/INFO]: [Vouchers] Successfully loaded Data.yml
[14:54:33] [Server thread/INFO]: [Vouchers] Loading the Messages.yml
[14:54:33] [Server thread/INFO]: [Vouchers] Successfully loaded Messages.yml
[14:54:33] [Server thread/INFO]: [Vouchers] Loading the VoucherCodes.yml
[14:54:33] [Server thread/INFO]: [Vouchers] Successfully loaded VoucherCodes.yml
[14:54:33] [Server thread/INFO]: [NoHopper] Enabling NoHopper v1.4
[14:54:33] [Server thread/INFO]: Plugin successfully enabled
[14:54:33] [Server thread/INFO]: [AutoBroadcasting] Enabling AutoBroadcasting v1.0-SNAPSHOT
[14:54:33] [Server thread/INFO]: Broadcasts loaded: 2
[14:54:33] [Server thread/INFO]: [FeatherBoard] Enabling FeatherBoard v3.23.0
[14:54:33] [Server thread/INFO]: [FeatherBoard] -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
[14:54:33] [Server thread/INFO]: [FeatherBoard] Plugin: FeatherBoard v3.23.0
[14:54:33] [Server thread/INFO]: [FeatherBoard] Framework version: 2017-08
[14:54:33] [Server thread/INFO]: [FeatherBoard] Author: Maximvdw (Maxim Van de Wynckel)
[14:54:33] [Server thread/INFO]: [FeatherBoard] Site: https://www.mvdw-software.com/
[14:54:33] [Server thread/INFO]: [FeatherBoard] -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
[14:54:33] [Server thread/INFO]: [FeatherBoard] Loading database driver ...
[14:54:33] [Server thread/INFO]: [FeatherBoard] Downloading Javax Persistence 2.1.0 ...
[14:54:33] [Server thread/INFO]: [FeatherBoard] Description: Used to database mapping
[14:54:33] [Server thread/ERROR]: [FeatherBoard] An error occured while downloading a required lib.
[14:54:33] [Server thread/WARN]: java.net.UnknownHostException: central.maven.org
[14:54:33] [Server thread/WARN]:     at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:196)
[14:54:33] [Server thread/WARN]:     at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:162)
[14:54:33] [Server thread/WARN]:     at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:394)
[14:54:33] [Server thread/WARN]:     at java.net.Socket.connect(Socket.java:606)
[14:54:33] [Server thread/WARN]:     at java.net.Socket.connect(Socket.java:555)
[14:54:33] [Server thread/WARN]:     at sun.net.NetworkClient.doConnect(NetworkClient.java:180)
[14:54:33] [Server thread/WARN]:     at sun.net.www.http.HttpClient.openServer(HttpClient.java:499)
[14:54:33] [Server thread/WARN]:     at sun.net.www.http.HttpClient.openServer(HttpClient.java:594)
[14:54:33] [Server thread/WARN]:     at sun.net.www.http.HttpClient.<init>(HttpClient.java:278)
[14:54:33] [Server thread/WARN]:     at sun.net.www.http.HttpClient.New(HttpClient.java:375)
[14:54:33] [Server thread/WARN]:     at sun.net.www.http.HttpClient.New(HttpClient.java:393)
[14:54:33] [Server thread/WARN]:     at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1240)
[14:54:33] [Server thread/WARN]:     at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1167)
[14:54:33] [Server thread/WARN]:     at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1061)
[14:54:33] [Server thread/WARN]:     at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:995)
[14:54:33] [Server thread/WARN]:     at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1606)
[14:54:33] [Server thread/WARN]:     at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1534)
[14:54:33] [Server thread/WARN]:     at be.maximvdw.featherboardcore.p.e.a(Unknown Source)
[14:54:33] [Server thread/WARN]:     at be.maximvdw.featherboardcore.g.a.a(LibDownloader.java:106)
[14:54:33] [Server thread/WARN]:     at be.maximvdw.featherboardcore.g.a.a(LibDownloader.java:89)
[14:54:33] [Server thread/WARN]:     at be.maximvdw.featherboard.FeatherBoard.loadDependencies(Unknown Source)
[14:54:33] [Server thread/WARN]:     at be.maximvdw.featherboardcore.BasePlugin.initialize(Unknown Source)
[14:54:33] [Server thread/WARN]:     at be.maximvdw.featherboardcore.BasePlugin.onEnable(Unknown Source)
[14:54:33] [Server thread/WARN]:     at be.maximvdw.featherboard.FeatherBoard.onEnable(Unknown Source)
[14:54:33] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:321)
[14:54:33] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:356)
[14:54:33] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:419)
[14:54:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.CraftServer.loadPlugin(CraftServer.java:383)
[14:54:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.CraftServer.enablePlugins(CraftServer.java:320)
[14:54:33] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.s(MinecraftServer.java:440)
[14:54:33] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.k(MinecraftServer.java:404)
[14:54:33] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.a(MinecraftServer.java:359)
[14:54:33] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.DedicatedServer.init(DedicatedServer.java:268)
[14:54:33] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:630)
[14:54:33] [Server thread/WARN]:     at java.lang.Thread.run(Thread.java:750)
[14:54:33] [Server thread/INFO]: [FeatherBoard] Loading dependency Javax Persistence 2.1.0 ...
[14:54:33] [Server thread/INFO]: [FeatherBoard] Javax Persistence 2.1.0 is now loaded!
[14:54:33] [Server thread/INFO]: [FeatherBoard] Downloading Ebean 2.8.1 ...
[14:54:33] [Server thread/INFO]: [FeatherBoard] Description: Old method for database connection
[14:54:33] [Server thread/ERROR]: [FeatherBoard] An error occured while downloading a required lib.
[14:54:33] [Server thread/WARN]: java.net.UnknownHostException: central.maven.org
[14:54:33] [Server thread/WARN]:     at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:196)
[14:54:33] [Server thread/WARN]:     at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:162)
[14:54:33] [Server thread/WARN]:     at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:394)
[14:54:33] [Server thread/WARN]:     at java.net.Socket.connect(Socket.java:606)
[14:54:33] [Server thread/WARN]:     at java.net.Socket.connect(Socket.java:555)
[14:54:33] [Server thread/WARN]:     at sun.net.NetworkClient.doConnect(NetworkClient.java:180)
[14:54:33] [Server thread/WARN]:     at sun.net.www.http.HttpClient.openServer(HttpClient.java:499)
[14:54:33] [Server thread/WARN]:     at sun.net.www.http.HttpClient.openServer(HttpClient.java:594)
[14:54:33] [Server thread/WARN]:     at sun.net.www.http.HttpClient.<init>(HttpClient.java:278)
[14:54:33] [Server thread/WARN]:     at sun.net.www.http.HttpClient.New(HttpClient.java:375)
[14:54:33] [Server thread/WARN]:     at sun.net.www.http.HttpClient.New(HttpClient.java:393)
[14:54:33] [Server thread/WARN]:     at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1240)
[14:54:33] [Server thread/WARN]:     at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1167)
[14:54:33] [Server thread/WARN]:     at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1061)
[14:54:33] [Server thread/WARN]:     at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:995)
[14:54:33] [Server thread/WARN]:     at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1606)
[14:54:33] [Server thread/WARN]:     at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1534)
[14:54:33] [Server thread/WARN]:     at be.maximvdw.featherboardcore.p.e.a(Unknown Source)
[14:54:33] [Server thread/WARN]:     at be.maximvdw.featherboardcore.g.a.a(LibDownloader.java:106)
[14:54:33] [Server thread/WARN]:     at be.maximvdw.featherboardcore.g.a.a(LibDownloader.java:89)
[14:54:33] [Server thread/WARN]:     at be.maximvdw.featherboard.FeatherBoard.loadDependencies(Unknown Source)
[14:54:33] [Server thread/WARN]:     at be.maximvdw.featherboardcore.BasePlugin.initialize(Unknown Source)
[14:54:33] [Server thread/WARN]:     at be.maximvdw.featherboardcore.BasePlugin.onEnable(Unknown Source)
[14:54:33] [Server thread/WARN]:     at be.maximvdw.featherboard.FeatherBoard.onEnable(Unknown Source)
[14:54:33] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:321)
[14:54:33] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:356)
[14:54:33] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:419)
[14:54:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.CraftServer.loadPlugin(CraftServer.java:383)
[14:54:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_8_R3.CraftServer.enablePlugins(CraftServer.java:320)
[14:54:33] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.s(MinecraftServer.java:440)
[14:54:33] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.k(MinecraftServer.java:404)
[14:54:33] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.a(MinecraftServer.java:359)
[14:54:33] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.DedicatedServer.init(DedicatedServer.java:268)
[14:54:33] [Server thread/WARN]:     at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:630)
[14:54:33] [Server thread/WARN]:     at java.lang.Thread.run(Thread.java:750)
[14:54:33] [Server thread/INFO]: [FeatherBoard] Loading dependency Ebean 2.8.1 ...
[14:54:33] [Server thread/INFO]: [FeatherBoard] Ebean 2.8.1 is now loaded!
[14:54:33] [Server thread/INFO]: [FeatherBoard] Loading configuration ...
[14:54:33] [Server thread/INFO]: [FeatherBoard] Loading messages ...
[14:54:33] [Server thread/INFO]: [FeatherBoard] Loading language file: lang_en
[14:54:33] [Server thread/INFO]: [FeatherBoard] Loading placeholders ...
[14:54:33] [Server thread/INFO]: [FeatherBoard] Downloading City database ...
[14:54:33] [Server thread/INFO]: [FeatherBoard] geolite.maxmind.com
[14:54:33] [Server thread/INFO]: [FeatherBoard] ./plugins/MVdWPlugin/db/GeoLiteCity.dat updated
[14:54:33] [Server thread/INFO]: [FeatherBoard] Downloading Country database ...
[14:54:33] [Server thread/INFO]: [FeatherBoard] geolite.maxmind.com
[14:54:33] [Server thread/INFO]: [FeatherBoard] ./plugins/MVdWPlugin/db/GeoIP.dat updated
[14:54:33] [Server thread/INFO]: [FeatherBoard] Downloading IPV6 database ...
[14:54:33] [Server thread/INFO]: [FeatherBoard] geolite.maxmind.com
[14:54:33] [Server thread/INFO]: [FeatherBoard] ./plugins/MVdWPlugin/db/GeoIPv6.dat updated
[14:54:33] [Server thread/INFO]: [FeatherBoard] Updater disabled.
[14:54:34] [Server thread/ERROR]: [FeatherBoard] java.lang.NoClassDefFoundError: be/maximvdw/placeholderapi/internal/MVdWPlaceholderReplacer
    at be.maximvdw.featherboardcore.placeholders.ai.<init>(MVdWPlaceholderAPIPlaceholder.java:28)
    at be.maximvdw.featherboardcore.placeholders.aC.a(PlaceholderLoader.java:539)
    at be.maximvdw.featherboard.FeatherBoard.initPlaceholders(Unknown Source)
    at be.maximvdw.featherboard.FeatherBoard.loadConfiguration(Unknown Source)
    at be.maximvdw.featherboardcore.BasePlugin.initialize(Unknown Source)
    at be.maximvdw.featherboardcore.BasePlugin.onEnable(Unknown Source)
    at be.maximvdw.featherboard.FeatherBoard.onEnable(Unknown Source)
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:321)
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:356)
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:419)
    at org.bukkit.craftbukkit.v1_8_R3.CraftServer.loadPlugin(CraftServer.java:383)
    at org.bukkit.craftbukkit.v1_8_R3.CraftServer.enablePlugins(CraftServer.java:320)
    at net.minecraft.server.v1_8_R3.MinecraftServer.s(MinecraftServer.java:440)
    at net.minecraft.server.v1_8_R3.MinecraftServer.k(MinecraftServer.java:404)
    at net.minecraft.server.v1_8_R3.MinecraftServer.a(MinecraftServer.java:359)
    at net.minecraft.server.v1_8_R3.DedicatedServer.init(DedicatedServer.java:268)
    at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:630)
    at java.lang.Thread.run(Thread.java:750)
Caused by: java.lang.ClassNotFoundException: be.maximvdw.placeholderapi.internal.MVdWPlaceholderReplacer
    at java.net.URLClassLoader.findClass(URLClassLoader.java:387)
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:102)
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:87)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:418)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:351)
    ... 18 more

[14:54:34] [Server thread/INFO]: [FeatherBoard] Loaded 2592 of the 5013 placholders
[14:54:34] [Server thread/INFO]: [FeatherBoard] Loading Event hooks ...
[14:54:34] [Server thread/INFO]: [FeatherBoard] Loading event hook: Vanilla Death hook ...
[14:54:34] [Server thread/INFO]: [FeatherBoard] Loading event hook: Vanilla Block break hook ...
[14:54:34] [Server thread/INFO]: [FeatherBoard] Loading event hook: Vanilla Block place hook ...
[14:54:34] [Server thread/INFO]: [FeatherBoard] Loading event hook: Vanilla Create portal hook ...
[14:54:34] [Server thread/INFO]: [FeatherBoard] Loading event hook: Vanilla player join ...
[14:54:34] [Server thread/INFO]: [FeatherBoard] Loading event hook: Vanilla player rejoin ...
[14:54:34] [Server thread/INFO]: [FeatherBoard] Loading event hook: Vanilla player first join ...
[14:54:34] [Server thread/INFO]: [FeatherBoard] Loading event hook: Vanilla Combat hook ...
[14:54:34] [Server thread/INFO]: [FeatherBoard] Creating new custom effect: warning
[14:54:34] [Server thread/INFO]: [FeatherBoard]     Lines: 2
[14:54:34] [Server thread/INFO]: [FeatherBoard]     Arguments: 1
[14:54:35] [Server thread/INFO]: [FeatherBoard] Adding scoreboard group 'default' ...
[14:54:35] [Server thread/INFO]: [FeatherBoard] Toggle persistence is disabled!
[14:54:35] [Server thread/INFO]: [FeatherBoard] Adding command 'featherboard'
[14:54:35] [Server thread/INFO]: Cracked by @BlackGiveITA on telegram
[14:54:35] [Server thread/INFO]: [SuperMobCoins] Enabling SuperMobCoins v2.4
[14:54:35] [Server thread/INFO]: [MVdWPlaceholderAPI] SuperMobCoins added custom placeholder {supermobcoins_mobcoins}
[14:54:35] [Server thread/INFO]: [MVdWPlaceholderAPI] SuperMobCoins added custom placeholder {supermobcoins_normal_time}
[14:54:35] [Server thread/INFO]: [MVdWPlaceholderAPI] SuperMobCoins added custom placeholder {supermobcoins_special_time}
[14:54:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: supermobcoins [2.4]
[14:54:35] [Server thread/INFO]: [SimpleRename] Enabling SimpleRename v13.8
[14:54:35] [Server thread/INFO]: SimpleRename enabled!
[14:54:35] [Server thread/INFO]: [NametagEdit] Enabling NametagEdit v4.5.23
[14:54:35] [Server thread/INFO]: [NametagEdit] Successfully loaded using bukkit version: v1_8_R3
[14:54:35] [Server thread/INFO]: [NametagEdit] Found LuckPerms! Hooking in.
[14:54:35] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v1.4.5
[14:54:35] [Server thread/INFO]: [ChatItem] Enabling ChatItem v2.6.1
[14:54:35] [Server thread/INFO]: [ChatItem] Detected server version: v1_8 (Platform: Spigot)
[14:54:35] [Server thread/INFO]: [ChatItem] The plugin ProtocolLib has been detected. Loading Protocollib support ...
[14:54:35] [Server thread/WARN]: [ProtocolLib] [PacketFilterManager] Plugin ChatItem tried to register listener for unknown packet SYSTEM_CHAT[PLAY, SERVER, 100, classNames: [net.minecraft.server.v1_8_R3.PacketPlayOutSystemChat, net.minecraft.network.protocol.game.ClientboundSystemChatPacket] (unregistered)] [direction: from SERVER]
[14:54:35] [Server thread/INFO]: [ChatItem] Manager chosen: PacketEditing (packet), ChatListener (chat)
[14:54:35] [Server thread/INFO]: [ChatItem] Load PlaceholderAPI, MVdWPlaceholderAPI, Vault support.
[14:54:35] [Server thread/INFO]: [ChatItem] Loaded translation for en_gb.
[14:54:35] [Server thread/INFO]: [PhoenixCratesLite] Enabling PhoenixCratesLite v3.7.1
[14:54:35] [Server thread/INFO]: Loading cross version adapter...
[14:54:35] [Server thread/INFO]: CraftLegacy not found, skipping. (v1_8_R3)
[14:54:35] [Server thread/INFO]:   ____    ____                               
[14:54:35] [Server thread/INFO]:  |  _ \  / ___|                              
[14:54:35] [Server thread/INFO]:  | |_) || |       Phoenix Crates Lite v3.7.1      
[14:54:35] [Server thread/INFO]:  |  __/ | |___    https://phoenixplugins.com/
[14:54:35] [Server thread/INFO]:  |_|     \____|                             
[14:54:35] [Server thread/INFO]:                                                  
[14:54:35] [Server thread/INFO]: You are using a Lite version of Phoenix Crates.
[14:54:35] [Server thread/INFO]: Some of the features are locked behind the premium version.
[14:54:35] [Server thread/INFO]: 
[14:54:35] [Server thread/INFO]: If you want to unlock the next level for your server, upgrade now:
[14:54:35] [Server thread/INFO]: https://www.myphoenixstore.com/plans/phoenix-crates
[14:54:35] [Server thread/INFO]: 
[14:54:35] [Server thread/INFO]: Loading settings...
[14:54:35] [Server thread/INFO]: Loading file "config.yml".
[14:54:35] [Server thread/INFO]: File "config.yml" is up to date. Importing configurations.
[14:54:35] [Server thread/INFO]: Checking for possible migrations...
[14:54:35] [Server thread/INFO]: [PhoenixCratesLite] No migrations to run.
[14:54:35] [Server thread/INFO]: Vault founded. Preparing Economy...
[14:54:35] [Server thread/INFO]: Placeholder API founded. Preparing placeholders...
[14:54:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: phoenixcrates [1.0.0]
[14:54:35] [Server thread/INFO]: Loading components...
[14:54:36] [Server thread/INFO]: Loading database...
[14:54:36] [Server thread/WARN]: 4 [Server thread] INFO com.phoenixplugins.phoenixcrates.lib.hikari.HikariDataSource - CyberSQLitePool - Starting...

[14:54:36] [Server thread/WARN]: 79 [Server thread] INFO com.phoenixplugins.phoenixcrates.lib.hikari.pool.PoolBase - CyberSQLitePool - Driver does not support get/set network timeout for connections. (org.sqlite.Conn.getNetworkTimeout()I)

[14:54:36] [Server thread/WARN]: 82 [Server thread] INFO com.phoenixplugins.phoenixcrates.lib.hikari.HikariDataSource - CyberSQLitePool - Start completed.

[14:54:36] [Server thread/INFO]: Loading menus...
[14:54:36] [Server thread/INFO]: Loading file "menus/default_rewards_preview.yml".
[14:54:36] [Server thread/INFO]: File "menus/default_rewards_preview.yml" is up to date. Importing configurations.
[14:54:36] [Server thread/INFO]: Loading file "menus/default_crate_milestones.yml".
[14:54:36] [Server thread/INFO]: File "menus/default_crate_milestones.yml" is up to date. Importing configurations.
[14:54:36] [Server thread/INFO]: Menu "default_rewards_preview" loaded successfully
[14:54:36] [Server thread/INFO]: Menu "default_crate_milestones" loaded successfully
[14:54:36] [Server thread/INFO]: Loading players data...
[14:54:36] [Server thread/INFO]: Loading crates...
[14:54:36] [Server thread/INFO]: Loading file "locations.yml".
[14:54:36] [Server thread/INFO]: File "locations.yml" is up to date. Importing configurations.
[14:54:36] [Server thread/INFO]: Loading file "crates/eventcrate.yml".
[14:54:36] [Server thread/INFO]: File "crates/eventcrate.yml" is up to date. Importing configurations.
[14:54:36] [Server thread/INFO]: Loading file "crates/mysticcrate.yml".
[14:54:36] [Server thread/INFO]: File "crates/mysticcrate.yml" is up to date. Importing configurations.
[14:54:36] [Server thread/INFO]: Loading file "crates/premiumcrate.yml".
[14:54:36] [Server thread/INFO]: File "crates/premiumcrate.yml" is up to date. Importing configurations.
[14:54:36] [Server thread/INFO]: Loading file "crates/ultimatecrate.yml".
[14:54:36] [Server thread/INFO]: File "crates/ultimatecrate.yml" is up to date. Importing configurations.
[14:54:36] [Server thread/INFO]: Loading file "crates/votecrate.yml".
[14:54:36] [Server thread/INFO]: File "crates/votecrate.yml" is up to date. Importing configurations.
[14:54:36] [Server thread/WARN]: [PhoenixCratesLite] There was an attempt to add crates with an invalid type: "random_identifier_1728139753848"!
[14:54:36] [Server thread/INFO]: Loaded 5 types.
[14:54:36] [Server thread/INFO]: Loaded 5 crates.
[14:54:36] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v3.6.0-bSNAPSHOT
[14:54:36] [Server thread/INFO]: [CraftingStore] Enabling CraftingStore v2.9.3
[14:54:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: craftingstore [2.9.3]
[14:54:36] [Server thread/INFO]: [CraftingStore] Hooked with PlaceholderAPI
[14:54:36] [Server thread/INFO]: [CraftingStore] Hooked with Vault
[14:54:36] [Server thread/INFO]: [DinoVoteRewards] Enabling DinoVoteRewards v0.4.4
[14:54:36] [Server thread/INFO]: [DinoVoteRewards] DinoVoteRewards 0.4.4 has been enabled
[14:54:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: dinovoterewards [0.4.4]
[14:54:36] [Server thread/INFO]: [GUIPlus] Enabling GUIPlus v2.94
[14:54:36] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v6.1.9;caf0ad9
[14:54:36] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[14:54:36] [Server thread/INFO]: [WorldEdit] Using com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_8_R3 as the Bukkit adapter
[14:54:36] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.1
[14:54:37] [Server thread/ERROR]: You are running an unsupported server version!
[14:54:37] [Server thread/INFO]: Attempting to convert old kits in config.yml to new kits.yml
[14:54:37] [Server thread/INFO]: No kits found to migrate.
[14:54:37] [Server thread/INFO]: Loaded 853 items from items.csv.
[14:54:37] [Server thread/INFO]: Using locale en
[14:54:37] [Server thread/INFO]: ServerListPingEvent: Spigot iterator API
[14:54:37] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[14:54:37] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[14:54:37] [Server thread/INFO]: Using Vault based permissions (LuckPerms)
[14:54:37] [Server thread/INFO]: [LPX] Enabling LPX v3.4.0
[14:54:38] [Server thread/INFO]: [LPX] License successfully verified!
[14:54:38] [Server thread/INFO]: [spark] Enabling spark v1.10.71
[14:54:38] [Server thread/INFO]: [spark] Using Bukkit scheduler for tick monitoring
[14:54:38] [Server thread/INFO]: [spark] Starting background profiler...
[14:54:38] [Server thread/INFO]: [spark] The async-profiler engine is not supported for your os/arch (windows11/amd64), so the built-in Java engine will be used instead.
[14:54:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.10.71]
[14:54:38] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[14:54:38] [Server thread/INFO]: [MVdWPlaceholderAPI] spark added custom placeholder {spark_*}
[14:54:38] [Server thread/INFO]: [spark] Registered MVdWPlaceholderAPI placeholders
[14:54:38] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.17.0
[14:54:38] [Server thread/INFO]: [HeadDatabase] Leaked by Chan @ BlackSpigot.com
[14:54:38] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[14:54:38] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[14:54:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: hdb [4.17.0]
[14:54:38] [Server thread/INFO]: [Banknotes] Enabling Banknotes v1.8.0
[14:54:38] [Server thread/INFO]: [KarhuAC] Enabling KarhuAC v2.0-PRE
[14:54:38] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.20.1
[14:54:38] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[14:54:38] [Server thread/INFO]: [TAB] Enabling TAB v4.1.8
[14:54:38] [Server thread/INFO]: [TAB] Loaded NMS hook in 58ms
[14:54:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tab [4.1.8]
[14:54:38] [Server thread/INFO]: [TAB] Enabled in 191ms
[14:54:38] [Server thread/INFO]: [BlockParticles] Enabling BlockParticles v1.11.1-RELEASE
[14:54:38] [Server thread/INFO]: [BlockParticles] Loading the config.yml
[14:54:38] [Server thread/INFO]: [BlockParticles] Successfully loaded config.yml
[14:54:38] [Server thread/INFO]: [BlockParticles] Loading the data.yml
[14:54:38] [Server thread/INFO]: [BlockParticles] Successfully loaded data.yml
[14:54:39] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v6.1.3-SNAPSHOT;c904242
[14:54:39] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[14:54:39] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[14:54:39] [Server thread/INFO]: [WorldGuard] (world) Lava fire is blocked.
[14:54:39] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[14:54:39] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[14:54:39] [Server thread/INFO]: [WorldGuard] (Builds) TNT ignition is PERMITTED.
[14:54:39] [Server thread/INFO]: [WorldGuard] (Builds) Lighters are PERMITTED.
[14:54:39] [Server thread/INFO]: [WorldGuard] (Builds) Lava fire is blocked.
[14:54:39] [Server thread/INFO]: [WorldGuard] (Builds) Fire spread is UNRESTRICTED.
[14:54:39] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Builds'
[14:54:39] [Server thread/INFO]: [WorldGuard] (flat_nether) TNT ignition is PERMITTED.
[14:54:39] [Server thread/INFO]: [WorldGuard] (flat_nether) Lighters are PERMITTED.
[14:54:39] [Server thread/INFO]: [WorldGuard] (flat_nether) Lava fire is blocked.
[14:54:39] [Server thread/INFO]: [WorldGuard] (flat_nether) Fire spread is UNRESTRICTED.
[14:54:39] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'flat_nether'
[14:54:39] [Server thread/INFO]: [WorldGuard] (kothbuilds) TNT ignition is PERMITTED.
[14:54:39] [Server thread/INFO]: [WorldGuard] (kothbuilds) Lighters are PERMITTED.
[14:54:39] [Server thread/INFO]: [WorldGuard] (kothbuilds) Lava fire is blocked.
[14:54:39] [Server thread/INFO]: [WorldGuard] (kothbuilds) Fire spread is UNRESTRICTED.
[14:54:39] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'kothbuilds'
[14:54:39] [Server thread/INFO]: [WorldGuard] (Season3) TNT ignition is PERMITTED.
[14:54:39] [Server thread/INFO]: [WorldGuard] (Season3) Lighters are PERMITTED.
[14:54:39] [Server thread/INFO]: [WorldGuard] (Season3) Lava fire is blocked.
[14:54:39] [Server thread/INFO]: [WorldGuard] (Season3) Fire spread is UNRESTRICTED.
[14:54:39] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Season3'
[14:54:39] [Server thread/INFO]: [WorldGuard] (flat_end) TNT ignition is PERMITTED.
[14:54:39] [Server thread/INFO]: [WorldGuard] (flat_end) Lighters are PERMITTED.
[14:54:39] [Server thread/INFO]: [WorldGuard] (flat_end) Lava fire is blocked.
[14:54:39] [Server thread/INFO]: [WorldGuard] (flat_end) Fire spread is UNRESTRICTED.
[14:54:39] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'flat_end'
[14:54:39] [Server thread/INFO]: [WorldGuard] Loading region data...
[14:54:39] [Server thread/INFO]: [EssentialsProtect] Enabling EssentialsProtect v2.20.1
[14:54:39] [Server thread/INFO]: Continuing to enable Protect.
[14:54:39] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[14:54:39] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.1
[14:54:39] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[14:54:39] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.98.0
[14:54:39] [Server thread/INFO]: [Spigotunlocked.com] - COSMO
[14:54:39] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.11
[14:54:39] [Server thread/INFO]: [NBTAPI] Found Minecraft: v1_8_R3! Trying to find NMS support
[14:54:39] [Server thread/INFO]: [NBTAPI] NMS support 'MC1_8_R3' loaded!
[14:54:39] [Server thread/INFO]: [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[14:54:39] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.31-SNAPSHOT (build 3091)
[14:54:39] [Server thread/INFO]: [Citizens] Loading external libraries
[14:54:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[14:54:40] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[14:54:40] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.6.2
[14:54:40] [Server thread/INFO]:  
[14:54:40] [Server thread/INFO]: __________________________________________________________
[14:54:40] [Server thread/INFO]:  
[14:54:40] [Server thread/INFO]:                        TradeSystem [2.6.2]
[14:54:40] [Server thread/INFO]:  
[14:54:40] [Server thread/INFO]: Status:
[14:54:40] [Server thread/INFO]:  
[14:54:40] [Server thread/INFO]: MC-Version: Unknown (1_8_R3 (MC: 1.8.8))
[14:54:40] [Server thread/INFO]:  
[14:54:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tradesystem [1.2]
[14:54:40] [Server thread/INFO]:   > Loading sounds
[14:54:40] [Server thread/INFO]:   > Loading blacklist
[14:54:40] [Server thread/INFO]:     ...got 3 blocked item(s)
[14:54:40] [Server thread/INFO]:   > Loading layouts
[14:54:40] [Server thread/INFO]:     ...got 4 layout(s)
[14:54:40] [Server thread/INFO]:   > Queuing database initializing task
[14:54:41] [Server thread/INFO]:  
[14:54:41] [Server thread/INFO]: Finished (365ms)
[14:54:41] [Server thread/INFO]:  
[14:54:41] [Server thread/INFO]: __________________________________________________________
[14:54:41] [Server thread/INFO]:  
[14:54:41] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.0
[14:54:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: supervanish [6.2.0]
[14:54:41] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI
[14:54:41] [Server thread/INFO]: [MVdWPlaceholderAPI] SuperVanish added custom placeholder {supervanish_isvanished}
[14:54:41] [Server thread/INFO]: [MVdWPlaceholderAPI] SuperVanish added custom placeholder {supervanish_vanishedplayers}
[14:54:41] [Server thread/INFO]: [MVdWPlaceholderAPI] SuperVanish added custom placeholder {supervanish_playercount}
[14:54:41] [Server thread/INFO]: [SuperVanish] Hooked into MVdWPlaceholderAPI
[14:54:41] [Server thread/INFO]: [SuperVanish] Hooked into Essentials
[14:54:41] [Server thread/INFO]: [SuperVanish] Hooked into Citizens
[14:54:41] [Server thread/INFO]: [CrazyEnvoys] Enabling CrazyEnvoys v1.4.17.3
[14:54:41] [Server thread/INFO]: [CrazyEnvoys] Loading the config.yml
[14:54:41] [Server thread/INFO]: [CrazyEnvoys] Successfully loaded config.yml
[14:54:41] [Server thread/INFO]: [CrazyEnvoys] Loading the messages.yml
[14:54:41] [Server thread/INFO]: [CrazyEnvoys] Successfully loaded messages.yml
[14:54:41] [Server thread/INFO]: [CrazyEnvoys] Loading the data.yml
[14:54:41] [Server thread/INFO]: [CrazyEnvoys] Successfully loaded data.yml
[14:54:41] [Server thread/INFO]: [CrazyEnvoys] Loading custom files.
[14:54:41] [Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Common.yml.
[14:54:41] [Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Epic.yml.
[14:54:41] [Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Legendary.yml.
[14:54:41] [Server thread/INFO]: [CrazyEnvoys] Finished loading custom files.
[14:54:41] [Server thread/INFO]: [CrazyEnvoys] Loadednull hologram hook.
[14:54:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: crazyenvoys [1.4.17.3]
[14:54:41] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyEnvoys added custom placeholder {crazyenvoys_cooldown}
[14:54:41] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyEnvoys added custom placeholder {crazyenvoys_time_left}
[14:54:41] [Server thread/INFO]: [MVdWPlaceholderAPI] CrazyEnvoys added custom placeholder {crazyenvoys_crates_left}
[14:54:41] [Server thread/INFO]: [ShopGUIPlus Sell GUI] Enabling ShopGUIPlus-SellGUI v1.1.8
[14:54:41] [Server thread/INFO]: [ShopGUIPlus Sell GUI] Your server is running version '1_8_R3'.
[14:54:41] [Server thread/INFO]: [ShopGUIPlus Sell GUI] *-*
[14:54:41] [Server thread/INFO]: [ShopGUIPlus Sell GUI] ShopGUIPlus SellGUI
[14:54:41] [Server thread/INFO]: [ShopGUIPlus Sell GUI] Made by Mackenzie Molloy
[14:54:41] [Server thread/INFO]: [ShopGUIPlus Sell GUI] *-*
[14:54:41] [Server thread/INFO]: [TitleManager] Enabling TitleManager v2.3.6
[14:54:41] [Server thread/INFO]: [CombatTagPlus] Enabling CombatTagPlus v1.3.1
[14:54:41] [Server thread/INFO]: [Printer] Enabling Printer v3.2.2
[14:54:41] [Server thread/INFO]: [Printer] config.yml has initialized.
[14:54:41] [Server thread/INFO]: [Printer] messages.yml has initialized.
[14:54:41] [Server thread/INFO]: [Printer] prices.yml has initialized.
[14:54:41] [Server thread/INFO]: [Printer] Found NMS Version: v1_8_R3
[14:54:41] [Server thread/INFO]: [Printer] Successfully hooked into Citizens
[14:54:41] [Server thread/WARN]: [Printer] Factions jar not found!
[14:54:41] [Server thread/INFO]: [Printer] Successfully hooked into ShopGUIPlus
[14:54:41] [Server thread/INFO]: [Printer] Successfully hooked packet listeners into ProtocolLib
[14:54:41] [Server thread/INFO]: [Printer] Printer v3.2.2 has been loaded
[14:54:41] [Server thread/INFO]: [SaberFactions] Enabling Factions v1.6.9.5-4.1.4-STABLE
[14:54:41] [Server thread/INFO]: [SaberFactions] === ENABLE START ===
[14:54:42] [Server thread/INFO]: [SaberFactions] Loaded 1 players
[14:54:42] [Server thread/INFO]: [SaberFactions] Loaded 4 Factions
[14:54:42] [Server thread/INFO]: [SaberFactions] Loading board from disk
[14:54:42] [Server thread/INFO]: [SaberFactions] Loaded 10163 board locations
[14:54:42] [Server thread/INFO]: [SaberFactions] Economy integration through Vault plugin successful.
[14:54:42] [Server thread/INFO]: [SaberFactions] NOTE: Economy is disabled. You can enable it with the command: f config econEnabled true
[14:54:42] [Server thread/INFO]: [SaberFactions] CoreX Integration Starting!
[14:54:42] [Server thread/INFO]: [SaberFactions] Enabling 17 CoreX Features...
[14:54:42] [Server thread/INFO]: [SaberFactions] Loaded 1 timers into list!
[14:54:42] [Server thread/INFO]: [SaberFactions] Minecraft Version 1.8 found, Title Fadeouttime etc will not be configurable.
[14:54:42] [Server thread/INFO]: [SaberFactions] Found FactionsTop plugin. Disabling our own /f top command.
[14:54:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: factionsuuid [1.6.9.5-4.1.4-STABLE]
[14:54:42] [Server thread/INFO]: [SaberFactions] Successfully registered placeholders with PlaceholderAPI.
[14:54:42] [Server thread/INFO]: [SaberFactions] Found MVdWPlaceholderAPI. Adding hooks.
[14:54:42] [Server thread/INFO]: [SaberFactions] === ENABLE DONE (Took 639.034ms) ===
[14:54:42] [Server thread/INFO]: [Printer] Successfully hooked into FactionsUUID
[14:54:42] [Server thread/INFO]: [FactionsTop] Enabling FactionsTop v6.1.0
[14:54:42] [Server thread/INFO]: [FactionsBridge][LOG] Found Factions_SaberFactions!
[14:54:42] [Server thread/INFO]: [FactionsBridge][LOG] Matched '4.0.2-RC (9)'!
[14:54:42] [Server thread/INFO]: [FactionsBridge][INFO] =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[14:54:42] [Server thread/INFO]: [FactionsBridge][LOG] Hooking into API for SaberFactions!
[14:54:42] [Server thread/INFO]: [FactionsBridge][INFO] =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[14:54:42] [Server thread/INFO]: [FactionsBridge][INFO] =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[14:54:42] [Server thread/INFO]: [FactionsBridge][LOG] This plugin uses bStats to track non-specific server data.
[14:54:42] [Server thread/INFO]: [FactionsBridge][LOG] Go to '/plugins/bStats/' to change this if you do not consent.
[14:54:42] [Server thread/INFO]: [FactionsBridge][LOG] With thanks to: https://bstats.org
[14:54:42] [Server thread/INFO]: [FactionsBridge][ERROR] Thank you, Callum
[14:54:42] [Server thread/INFO]: [FactionsBridge][INFO] =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[14:54:42] [Server thread/INFO]: [FactionsBridge][LOG] FactionsBridge started in 22 milliseconds without errors.
[14:54:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: factionstop [6.1.0]
[14:54:43] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.13
[14:54:43] [Server thread/INFO]: [BetterRTP] Cooldown = 1200
[14:54:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: betterrtp [3.6.13]
[14:54:43] [Server thread/INFO]: [VoidChest-1.16.0] Enabling VoidChest v1.16.0
[14:54:43] [Server thread/INFO]: [VoidChest-1.16.0] Plugin attempting to load now...
[14:54:43] [Server thread/INFO]: [VoidChest-1.16.0] End of debugging.
[14:54:43] [Server thread/INFO]: [VoidChest-1.16.0] YML files loaded.
[14:54:43] [Server thread/INFO]: [VoidChest-1.16.0] End of debugging.
[14:54:43] [Server thread/INFO]: [VoidChest-1.16.0] messages.yml file fully loaded.
[14:54:43] [Server thread/INFO]: [VoidChest-1.16.0] End of debugging.
[14:54:43] [Server thread/INFO]: [VoidChest-1.16.0] Attempting to load voidchest files in memory.
[14:54:43] [Server thread/INFO]: [VoidChest-1.16.0] End of debugging.
[14:54:43] [Server thread/INFO]: [VoidChest-1.16.0] VoidChest file: default successfully loaded in memory.
[14:54:43] [Server thread/INFO]: [VoidChest-1.16.0] End of debugging.
[14:54:43] [Server thread/INFO]: [VoidChest-1.16.0] Attempting to load voidchest items in memory.
[14:54:43] [Server thread/INFO]: Currently loaded files: 1
[14:54:43] [Server thread/INFO]: [VoidChest-1.16.0] End of debugging.
[14:54:43] [Server thread/INFO]: [VoidChest-1.16.0] Loaded voidchest item for: default
[14:54:43] [Server thread/INFO]: [VoidChest-1.16.0] End of debugging.
[14:54:43] [Server thread/INFO]: [VoidChest-1.16.0] Attempted registering the following tasks: voidchest-purge, hologram, data-purge, sell-message
[14:54:43] [Server thread/INFO]: [VoidChest-1.16.0] End of debugging.
[14:54:43] [Server thread/INFO]: [LunarSandBotRecoded] Enabling LunarSandBotRecoded v2.5
[14:54:43] [Server thread/INFO]: Successfully hooked SaberFactions
[14:54:43] [Server thread/INFO]: [!] Successfully loaded 0 SandBots
[14:54:43] [Server thread/INFO]: [GenBucket] Enabling GenBucket v1.0.7
[14:54:43] [Server thread/INFO]: [GenBucket] Hooked into FactionsUUID/SavageFactions
[14:54:43] [Server thread/INFO]: [GenBucket] Hooked into WorldGuard 6
[14:54:43] [Server thread/INFO]: [GenBucket] Hooked into WorldBorder
[14:54:43] [Server thread/INFO]: [GenBucket] Hooked into Minecraft 1.8-1.12
[14:54:43] [Server thread/INFO]: [FlightControl] Enabling FlightControl v4
[14:54:43] [Server thread/INFO]: [FlightControl] Hooked with Factions, CombatTagPlus, SuperVanish, and WorldGuard.
[14:54:43] [Server thread/INFO]: [AdvancedEnchantments] Enabling AdvancedEnchantments v9.0.0b81
[14:54:43] [Server thread/INFO]: [Spigotunlocked.com] - COSMO
[14:54:43] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WildStacker.
[14:54:43] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WildTools.
[14:54:43] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuard.
[14:54:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: advancedenchantments [1.0.0]
[14:54:43] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into PlaceholderAPI.
[14:54:43] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into ProtocolLib.
[14:54:43] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into Essentials.
[14:54:43] [Server thread/INFO]: [AdvancedEnchantments] Loaded 3 armor sets.
[14:54:43] [Server thread/INFO]: [AdvancedEnchantments] Loaded 3 weapons.
[14:54:44] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into economy plugin (Vault)
[14:54:44] [Server thread/INFO]: [ThrowableCreeperEggs] Enabling ThrowableCreeperEggs v2.3.0
[14:54:44] [Server thread/WARN]: Could not register alias sell because it contains commands that do not exist: economyshopgui:sellall $1-
[14:54:44] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[14:54:44] [Server thread/INFO]: Done (16.661s)! For help, type "help" or "?"
[14:54:44] [Server thread/INFO]: Timings Reset
[14:54:44] [Server thread/INFO]: (FAWE) Detected class org.bukkit.event.block.BlockExplodeEvent
[14:54:44] [Craft Scheduler Thread - 4/INFO]: [LunarSandBot] SandBots data saved successfully
[14:54:44] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.8.x (47)
[14:54:44] [Server thread/WARN]: [ViaVersion] This version of Minecraft is extremely outdated and support for it has reached its end of life. You will still be able to run Via on this Minecraft version, but we are unlikely to provide any further fixes or help with problems specific to legacy Minecraft versions. Please consider updating to give your players a better experience and to avoid issues that have long been fixed.
[14:54:44] [Server thread/WARN]: [ViaVersion] You are running an outdated Java version, please update it to at least Java 17 (your version is 1.8.0_421).
[14:54:44] [Server thread/WARN]: [ViaVersion] Starting with Minecraft 1.21, ViaVersion will no longer officially be compatible with this version of Java, only offering unsupported compatibility builds.
[14:54:44] [Server thread/INFO]: [Banknotes] Found economy provider Essentials
[14:54:44] [Craft Scheduler Thread - 8/INFO]: Fetching version information...
[14:54:44] [Server thread/INFO]: Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[14:54:44] [Server thread/INFO]: [PlayerVaults] ** Vaults have already been converted to UUIDs. If this is incorrect, shutdown your server and rename the plugins\PlayerVaults\uuidvaults directory.
[14:54:44] [Craft Scheduler Thread - 5/INFO]: [PlayerVaults] We didn't find an update!
[14:54:44] [Craft Scheduler Thread - 15/ERROR]: [TradeSystem] Database could not be started: [SQLITE_ERROR] SQL error or missing database (near "ON": syntax error)
[14:54:44] [Craft Scheduler Thread - 14/INFO]: [VortexPearls] -------------------------------------
[14:54:44] [Craft Scheduler Thread - 14/INFO]: [VortexPearls] VortexPearls has been enabled!
[14:54:44] [Craft Scheduler Thread - 14/INFO]: [VortexPearls] Current version: v6.1
[14:54:44] [Craft Scheduler Thread - 14/INFO]: [VortexPearls] NMS Handler: v1_8_R3
[14:54:44] [Craft Scheduler Thread - 14/INFO]: [VortexPearls] -------------------------------------
[14:54:44] [Craft Scheduler Thread - 9/INFO]: [ShopGUIPlus Sell GUI] You are running the LATEST release.
[14:54:44] [Craft Scheduler Thread - 7/INFO]: [HeadDatabase] Could not download database, Attempting to use the backup database!
[14:54:44] [Craft Scheduler Thread - 14/INFO]: [DecentHolograms] Loading holograms... 
[14:54:44] [Server thread/INFO]: (FAWE) Plugin 'WorldGuard' found. Using it now.
[14:54:44] [Server thread/INFO]: (FAWE) Plugin 'FactionsUUID' found. Using it now.
[14:54:44] [Server thread/INFO]: [WildStacker] Loading providers started...
[14:54:44] [Server thread/INFO]: [WildStacker]  - Couldn't find any spawners providers, using default one.
[14:54:44] [Server thread/INFO]: [WildStacker] Using Vault as an economy provider.
[14:54:44] [Craft Scheduler Thread - 14/WARN]: [DecentHolograms] Cannot retrieve World from value world_nether! It's neither a valid name nor UUID.
[14:54:44] [Server thread/INFO]: [ShopGUIPlus] Registered spawners support for WildStacker.
[14:54:44] [Server thread/INFO]: [WildStacker] Found ShopGUIPlus - Hooked as SpawnerProvider!
[14:54:44] [Server thread/INFO]: [WildStacker] 
[14:54:44] [Server thread/INFO]: [WildStacker] Detected FastAsyncWorldEdit - Disabling ticks limiter for items...
[14:54:44] [Server thread/INFO]: [WildStacker] Loading providers done (Took 30ms)
[14:54:44] [Server thread/INFO]: Auto broadcasting..
[14:54:44] [Server thread/INFO]: Broadcasting message0
[14:54:44] [Server thread/INFO]: 
[14:54:44] [Server thread/INFO]:                                    VOTE
[14:54:44] [Server thread/INFO]: 
[14:54:44] [Server thread/INFO]:      Voting helps enhance player engagement,
[14:54:44] [Server thread/INFO]:       improve server visibility, and maintain a
[14:54:44] [Server thread/INFO]:       thriving community within faction servers.
[14:54:44] [Server thread/INFO]: 
[14:54:44] [Server thread/INFO]:           Use /vote to earn FREE rewards.
[14:54:44] [Server thread/INFO]: 
[14:54:44] [Server thread/INFO]: [WildTools] Loading providers started...
[14:54:44] [Craft Scheduler Thread - 14/INFO]: [DecentHolograms] Loaded 27 holograms!
[14:54:44] [Server thread/INFO]: [WildTools]  - Using ShopGUIPlus as PricesProvider.
[14:54:44] [Server thread/INFO]: [WildTools]  - Using SavageFactions as FactionsProvider for tnt banks.
[14:54:44] [Server thread/INFO]: [WildTools]  - Couldn't find any factions providers for tnt banks, using default one.
[14:54:44] [Server thread/INFO]: [WildTools] Using Vault as an economy provider.
[14:54:44] [Server thread/INFO]: [WildTools] Loading providers done (Took 22ms)
[14:54:44] [Server thread/INFO]: [Citizens] Loaded 3 NPCs.
[14:54:44] [Server thread/INFO]: [WildBuster] Loading database started...
[14:54:44] [Server thread/INFO]: [WildBuster]  - Found 0 player-busters in files.
[14:54:44] [Server thread/INFO]: [WildBuster] Loading database done (Took 1ms)
[14:54:44] [Server thread/INFO]: [WildBuster] Loading providers started...
[14:54:44] [Server thread/INFO]: [WildBuster]  - Using v1_8_R3 adapter.
[14:54:44] [Server thread/INFO]: [WildBuster]  - Using FactionsUUID as FactionsProvider.
[14:54:44] [Server thread/INFO]: [WildBuster]  - Using WorldGuard as ClaimsProvider.
[14:54:44] [Server thread/INFO]: [WildBuster] Loading providers done (Took 5ms)
[14:54:44] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[14:54:45] [Server thread/INFO]: [WildStacker] Starting to load entities...
[14:54:45] [Server thread/INFO]: [WildStacker] Loading entities done! Took 2 ms.
[14:54:45] [Server thread/INFO]: [WildStacker] Starting to load items...
[14:54:45] [Server thread/INFO]: [WildStacker] Loading items done! Took 1 ms.
[14:54:45] [Server thread/INFO]: [WildStacker] Starting to load spawners...
[14:54:45] [Server thread/INFO]: [WildStacker] Loading spawners done! Took 1 ms.
[14:54:45] [Server thread/INFO]: [WildStacker] Starting to load barrels...
[14:54:45] [Server thread/INFO]: [WildStacker] Loading barrels done! Took 0 ms.
[14:54:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bungee [2.3]
[14:54:45] [Craft Scheduler Thread - 14/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[14:54:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: essentials [1.5.2]
[14:54:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mvdw [2.0.0]
[14:54:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.8]
[14:54:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.7.3]
[14:54:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[14:54:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.8.3]
[14:54:45] [Server thread/INFO]: 7 placeholder hook(s) registered!
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] Attempt on registering the hologram type.
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] End of debugging.
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] Hologram type hooked as: DecentHolograms
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] End of debugging.
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] Attempt on registering the bank type.
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] End of debugging.
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] Bank type is invalid, no bank will be used at this point and all bank features will be disabled.
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] End of debugging.
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] Attempt on registering the tnt bank type.
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] End of debugging.
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] Path was set correctly and tnt bank type selected is: Factions attempting to hook now.
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] End of debugging.
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] Attempting to load player datas.
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] End of debugging.
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] Emptied storages and loaded to stats a size of: 0 player data
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] End of debugging.
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] Load Data: Data for: Glaoi have been removed.
[14:54:45] [Server thread/INFO]: Player owned: 0 voidchests.
[14:54:45] [Server thread/INFO]: Booster: 1.0, No active booster
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] End of debugging.
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] Starting a hook attempt for economy...
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] End of debugging.
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] Path was set correctly and economy selected is: Vault, VaultEconomy{name=Vault, version=1.7.3-b131} attempting to hook now.
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] End of debugging.
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] Starting a hook attempt for sell mode...
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] End of debugging.
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] Event details: VoidChestShopGUIPlusEconomy{name=ShopGUIPlus, version=1.98.0}
[14:54:45] [Server thread/INFO]: [VoidChest-1.16.0] End of debugging.
[14:54:46] [Server thread/INFO]:  ___  __    ________  ________  ___  ___  ___  ___     
[14:54:46] [Server thread/INFO]: |\  \|\  \ |\   __  \|\   __  \|\  \|\  \|\  \|\  \    
[14:54:46] [Server thread/INFO]: \ \  \/  /|\ \  \|\  \ \  \|\  \ \  \\\  \ \  \\\  \   
[14:54:46] [Server thread/INFO]:  \ \   ___  \ \   __  \ \   _  _\ \   __  \ \  \\\  \  
[14:54:46] [Server thread/INFO]:   \ \  \\ \  \ \  \ \  \ \  \\  \\ \  \ \  \ \  \\\  \ 
[14:54:46] [Server thread/INFO]:    \ \__\\ \__\ \__\ \__\ \__\\ _\\ \__\ \__\ \_______\
[14:54:46] [Server thread/INFO]:     \|__| \|__|\|__|\|__|\|__|\|__|\|__|\|__|\|_______|
[14:54:46] [Server thread/INFO]: Version: 2.7.5-fix | 450
[14:54:46] [Server thread/INFO]: Github: https://github.com/Araykal/Open-Karhu
[14:54:46] [Server thread/INFO]: FolderC:\Users\ruhan\Documents\NEW FACTION SERVER SEASON 2\plugins\KarhuAC\libs\ failed to create, maybe it's already there!
[14:54:46] [Server thread/INFO]: > Tasker initialized
[14:54:46] [Server thread/INFO]: > Threads initialized
[14:54:46] [Server thread/INFO]: > Loading file config.yml
[14:54:46] [Server thread/INFO]: > Loading file checks.yml
[14:54:46] [Server thread/INFO]: > PacketEvents settings setup
[14:54:46] [Server thread/INFO]: > PacketEvents loaded V_1_8_8
[14:54:46] [Server thread/INFO]: > Events initialized
[14:54:46] [Server thread/INFO]: > Managers initialized
[14:54:46] [Server thread/INFO]: > Commands initialized
[14:54:46] [Server thread/INFO]: > SQLite initialized
[14:54:46] [Server thread/INFO]: > Connection to SQLite has been established.
[14:54:46] [Server thread/INFO]: > SQLite table already has COORDS and WORLD columns
[14:54:46] [Server thread/INFO]: > TPS counter & Tick handler initialized
[14:54:46] [Server thread/INFO]: > ChunkManager initialized
[14:54:46] [Server thread/INFO]: Finished loading in 283ms
[14:54:46] [Server thread/INFO]: > Starting world chunk load...
[14:54:46] [Server thread/INFO]: > ChunkManager is going to cache 256 chunks from world world
[14:54:46] [Server thread/INFO]: > ChunkManager cached 256 chunks from world world
[14:54:46] [Server thread/INFO]: > ChunkManager is going to cache 256 chunks from world Builds
[14:54:46] [Server thread/INFO]: > ChunkManager cached 256 chunks from world Builds
[14:54:46] [Server thread/INFO]: > ChunkManager is going to cache 1 chunks from world flat_nether
[14:54:46] [Server thread/INFO]: > ChunkManager cached 1 chunks from world flat_nether
[14:54:46] [Server thread/INFO]: > ChunkManager is going to cache 256 chunks from world kothbuilds
[14:54:46] [Server thread/INFO]: > ChunkManager cached 256 chunks from world kothbuilds
[14:54:46] [Server thread/INFO]: > ChunkManager is going to cache 256 chunks from world Season3
[14:54:46] [Server thread/INFO]: > ChunkManager cached 256 chunks from world Season3
[14:54:46] [Server thread/INFO]: > ChunkManager is going to cache 0 chunks from world flat_end
[14:54:46] [Server thread/INFO]: > ChunkManager cached 0 chunks from world flat_end
[14:54:46] [Server thread/INFO]: > Finished chunk load in 4ms
[14:54:46] [Server thread/INFO]: > Your server had 1025 chunks pre-loaded, karhu cached 1025 chunks
[14:54:47] [Server thread/INFO]: [FlightControl] Yay! Version 4.9.21 is available for update. Perform "/fc update" to update and visit https://www.spigotmc.org/resources/flightcontrol.55168/ to view the feature changes (the config automatically updates).
[14:54:48] [Craft Scheduler Thread - 7/INFO]: [HeadDatabase] Successfully loaded 78456 heads!
[14:54:48] [Craft Scheduler Thread - 7/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.98.0 ]================================
[14:54:49] [Server thread/INFO]: [ShopGUIPlus]  
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for HeadDatabase.
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] Using WildStacker for spawners support.
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] Loaded 14 main menu items.
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'miscellaneous' with 22 items.
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'ores' with 8 items.
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks' with 38 items.
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'pots' with 4 items.
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'decorations' with 50 items.
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'tools' with 15 items.
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'dyes' with 16 items.
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'food' with 19 items.
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'spawners' with 9 items.
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'farming' with 10 items.
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'armor' with 24 items.
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'raiding' with 21 items.
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'drops' with 18 items.
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] Loaded 13 shops with total of 254 items.
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] Loaded 7 sounds.
[14:54:49] [Server thread/INFO]: [ShopGUIPlus]  
[14:54:49] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[14:54:49] [Server thread/INFO]: [VoidChest-1.16.0] Plugin loaded in 2.435 seconds
[14:54:49] [Server thread/INFO]: [VoidChest-1.16.0] End of debugging.
[14:54:49] [Craft Scheduler Thread - 0/WARN]: [HeadDatabase] You are using an outdated version!
[14:54:49] [Craft Scheduler Thread - 0/WARN]: [HeadDatabase] Latest version: 4.20.4. You are on version: 4.17.0.
[14:54:49] [Craft Scheduler Thread - 0/WARN]: [HeadDatabase] Update here: https://www.spigotmc.org/resources/head-database.14280/
[14:55:31] [Netty Server IO #1/INFO]: [packetevents] Unable to grab ViaVersion client version for player!
[14:55:33] [Thread-52/WARN]: [LuckPerms] Processing login for Glaoi took 1654ms.
[14:55:33] [Thread-52/INFO]: UUID of player Glaoi is 4d057b04-4de9-33a9-8008-91f6e0553d50
[14:55:34] [Server thread/INFO]: [VoidChest-1.16.0] Join listener: Data for: Glaoi have been removed.
[14:55:34] [Server thread/INFO]: Player owned: 0 voidchests.
[14:55:34] [Server thread/INFO]: Booster: 1.0, No active booster
[14:55:34] [Server thread/INFO]: [VoidChest-1.16.0] End of debugging.
[14:55:34] [Server thread/INFO]: Glaoi[/127.0.0.1:49208] logged in with entity id 462 at ([world]-25.341018429808653, 82.0, -4.6144630403752025)
[14:55:34] [Server thread/INFO]: [ChatItem] Loading ViaVersion support ...
[14:55:35] [Server thread/INFO]: There is an envoy EVENT happening in 20s.
[14:55:37] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /gmc
[14:55:40] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /shop
[14:55:45] [Server thread/INFO]: There is an envoy EVENT happening in 10s.
[14:55:50] [Server thread/INFO]: There is an envoy EVENT happening in 5s.
[14:55:52] [Server thread/INFO]: There is an envoy EVENT happening in 3s.
[14:55:54] [Server thread/INFO]: There is an envoy EVENT happening in 1s.
[14:55:55] [Server thread/INFO]: An envoy event has just STARTED. 57 crates have spawned around spawn for 10m.
[14:55:55] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /shop
[14:56:02] [Server thread/INFO]: [NBTAPI] Found Spigot: v1_8_R3! Trying to find NMS support
[14:56:02] [Server thread/INFO]: [NBTAPI] NMS support 'MC1_8_R3' loaded!
[14:56:02] [Server thread/INFO]: [NBTAPI] Found Gson: class com.google.gson.Gson
[14:56:02] [Server thread/INFO]: [NBTAPI] Using the plugin 'CleanroomGenerator' to create a bStats instance!
[14:56:03] [Thread-58/WARN]: [NBTAPI] The NBT-API located at 'package me.darz.iKoth.utils' seems to be outdated!
[14:56:03] [Thread-58/WARN]: [NBTAPI] Current Version: '2.10.0' Newest Version: 2.13.2'
[14:56:03] [Thread-58/WARN]: [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[14:56:08] [Server thread/INFO]: [NBTAPI] Found Spigot: v1_8_R3! Trying to find NMS support
[14:56:08] [Server thread/INFO]: [NBTAPI] NMS support 'MC1_8_R3' loaded!
[14:56:08] [Server thread/INFO]: [NBTAPI] Found Gson: class com.google.gson.Gson
[14:56:09] [Thread-59/WARN]: [NBTAPI] The NBT-API at 'package me.badbones69.vouchers.nbtapi' seems to be outdated!
[14:56:09] [Thread-59/WARN]: [NBTAPI] Current Version: '2.8.0' Newest Version: 2.13.2'
[14:56:09] [Thread-59/WARN]: [NBTAPI] Please update the nbt-api or the plugin that contains the api!
[14:56:11] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /v
[14:56:15] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /gmc
[14:56:17] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /fly
[14:56:25] [Server thread/INFO]: De-opped Glaoi
[14:56:26] [Server thread/INFO]: Could not de-op Glaoi
[14:56:27] [Server thread/INFO]: Could not de-op Glaoi
[14:56:30] [Server thread/INFO]: Opped Glaoi
[14:56:33] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /fly
[14:56:37] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /gmc
[14:56:47] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /lp editor
[14:57:07] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /fly
[14:57:09] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /op
[14:57:14] [Server thread/INFO]: [Glaoi: De-opped Glaoi]
[14:57:14] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /deop Glaoi
[14:57:18] [Server thread/INFO]: [Glaoi: Could not de-op Glaoi]
[14:57:18] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /deop Glaoi
[14:57:20] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /op
[14:57:24] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /op
[14:57:29] [Server thread/INFO]: Opped Glaoi
[14:57:32] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /fly
[14:57:33] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /v
[14:57:36] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /v
[14:57:46] [Craft Scheduler Thread - 11/INFO]: [LiteBans] A plugin update is available! Your version: 2.15.1, latest version: 2.16.1
[14:57:46] [Craft Scheduler Thread - 11/INFO]: [LiteBans] Updates can be downloaded from here:
[14:57:46] [Craft Scheduler Thread - 11/INFO]: [LiteBans] https://www.spigotmc.org/resources/litebans.3715/
[14:57:49] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /gmc
[14:57:57] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /v
[14:58:34] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /lp user Glaoi parent set owner
[14:58:36] [luckperms-worker-10/INFO]: [LuckPerms] [Messaging] Sending log with id: e311e8ed-13ff-4f11-9258-ac305efcee18
[14:58:36] [luckperms-command-executor/INFO]: [LP] LOG > (Glaoi@guardianfactions) [U] (glaoi)
[14:58:36] [luckperms-command-executor/INFO]: [LP] LOG > parent set owner
[14:58:41] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /v
[14:58:43] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /fly
[14:58:44] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /gmc
[14:58:46] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /v
[14:58:58] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /gen
[14:59:10] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /shop
[14:59:16] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /npc sel
[14:59:20] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /npc skin Villager
[14:59:40] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /npc sel
[14:59:41] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /npc skin Villager
[14:59:43] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /v
[14:59:44] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /v
[14:59:45] [Server thread/INFO]: Auto broadcasting..
[14:59:45] [Server thread/INFO]: Broadcasting message1
[14:59:45] [Server thread/INFO]: 
[14:59:45] [Server thread/INFO]:                                         DISCORD
[14:59:45] [Server thread/INFO]: 
[14:59:45] [Server thread/INFO]:     We invite you to join our vibrant community on Discord!
[14:59:45] [Server thread/INFO]:         Keep UPDATED with the latest news and events.
[14:59:45] [Server thread/INFO]: 
[14:59:45] [Server thread/INFO]:                Use /discord to join the Discord.
[14:59:45] [Craft Scheduler Thread - 12/INFO]: [LunarSandBot] SandBots data saved successfully
[14:59:45] [Server thread/INFO]: 
[14:59:45] [Server thread/INFO]: 
[14:59:48] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /save-allw
[14:59:51] [Server thread/INFO]: [Glaoi: Saved the world]
[14:59:51] [Spigot Async Task Thread - 0/INFO]: Glaoi issued server command: /save-all
[14:59:52] [Server thread/INFO]: [Glaoi: Stopping the server]
[14:59:52] [Server thread/INFO]: Stopping server
[14:59:52] [Server thread/INFO]: [ThrowableCreeperEggs] Disabling ThrowableCreeperEggs v2.3.0
[14:59:52] [Server thread/INFO]: [AdvancedEnchantments] Disabling AdvancedEnchantments v9.0.0b81
[14:59:52] [Server thread/INFO]: [FlightControl] Disabling FlightControl v4
[14:59:52] [Server thread/INFO]: [GenBucket] Disabling GenBucket v1.0.7
[14:59:52] [Server thread/INFO]: [LunarSandBotRecoded] Disabling LunarSandBotRecoded v2.5
[14:59:52] [Server thread/INFO]: [VoidChest-1.16.0] Disabling VoidChest v1.16.0
[14:59:52] [Server thread/INFO]: [FactionsTop] Disabling FactionsTop v6.1.0
[14:59:52] [Server thread/INFO]: [SaberFactions] Disabling Factions v1.6.9.5-4.1.4-STABLE
[14:59:52] [Server thread/INFO]: [SaberFactions] ===== Shutdown Start =====
[14:59:52] [Server thread/INFO]: [FactionData] Saving test's Data to the disk
[14:59:52] [Server thread/INFO]: [SaberFactions] Shutdown Successful!
[14:59:52] [Server thread/INFO]: [Printer] Disabling Printer v3.2.2
[14:59:52] [Server thread/INFO]: [Printer] Deactivating all printing users
[14:59:52] [Server thread/INFO]: [Printer] Printer v3.2.2 has been unloaded
[14:59:52] [Server thread/INFO]: [CombatTagPlus] Disabling CombatTagPlus v1.3.1
[14:59:52] [Server thread/INFO]: [TitleManager] Disabling TitleManager v2.3.6
[14:59:53] [Server thread/INFO]: [ShopGUIPlus Sell GUI] Disabling ShopGUIPlus-SellGUI v1.1.8
[14:59:53] [Server thread/INFO]: [CrazyEnvoys] Disabling CrazyEnvoys v1.4.17.3
[14:59:53] [Server thread/INFO]: [SuperVanish] Disabling SuperVanish v6.2.0
[14:59:53] [Server thread/INFO]: [TradeSystem] Disabling TradeSystem v2.6.2
[14:59:53] [Server thread/INFO]:  
[14:59:53] [Server thread/INFO]: __________________________________________________________
[14:59:53] [Server thread/INFO]:  
[14:59:53] [Server thread/INFO]:                        TradeSystem [2.6.2]
[14:59:53] [Server thread/INFO]:  
[14:59:53] [Server thread/INFO]: Status:
[14:59:53] [Server thread/INFO]:  
[14:59:53] [Server thread/INFO]: MC-Version: Unknown (1_8_R3 (MC: 1.8.8))
[14:59:53] [Server thread/INFO]:  
[14:59:53] [Server thread/INFO]:   > Cancelling all active trades
[14:59:53] [Server thread/INFO]:  
[14:59:53] [Server thread/INFO]: Finished (2ms)
[14:59:53] [Server thread/INFO]:  
[14:59:53] [Server thread/INFO]: __________________________________________________________
[14:59:53] [Server thread/INFO]:  
[14:59:53] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.31-SNAPSHOT (build 3091)
[14:59:53] [Server thread/INFO]: [DecentHolograms] Disabling DecentHolograms v2.8.11
[14:59:53] [Server thread/INFO]: [ShopGUIPlus] Disabling ShopGUIPlus v1.98.0
[14:59:53] [Server thread/INFO]: Disabling EssentialsSpawn v2.20.1
[14:59:53] [Server thread/INFO]: Disabling EssentialsProtect v2.20.1
[14:59:53] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v6.1.3-SNAPSHOT;c904242
[14:59:53] [Server thread/INFO]: [WorldGuard] Shutting down executor and waiting for any pending tasks...
[14:59:53] [Server thread/INFO]: [BlockParticles] Disabling BlockParticles v1.11.1-RELEASE
[14:59:53] [Server thread/INFO]: [TAB] Disabling TAB v4.1.8
[14:59:53] [Server thread/INFO]: [TAB] Disabled in 0ms
[14:59:53] [Server thread/INFO]: Disabling EssentialsChat v2.20.1
[14:59:53] [Server thread/INFO]: [KarhuAC] Disabling KarhuAC v2.0-PRE
[14:59:53] [Server thread/INFO]: [Banknotes] Disabling Banknotes v1.8.0
[14:59:53] [Server thread/INFO]: [HeadDatabase] Disabling HeadDatabase v4.17.0
[14:59:53] [Server thread/INFO]: [spark] Disabling spark v1.10.71
[14:59:53] [Server thread/INFO]: [LPX] Disabling LPX v3.4.0
[14:59:53] [Server thread/INFO]: Disabling Essentials v2.20.1
[14:59:53] [Server thread/INFO]: [Vault] [Economy] Essentials Economy unhooked.
[14:59:53] [Server thread/INFO]: [WorldEdit] Disabling WorldEdit v6.1.9;caf0ad9
[14:59:53] [Server thread/INFO]: [GUIPlus] Disabling GUIPlus v2.94
[14:59:53] [Server thread/INFO]: [DinoVoteRewards] Disabling DinoVoteRewards v0.4.4
[14:59:53] [Server thread/INFO]: [DinoVoteRewards] DinoVote 0.4.4 has been disabled
[14:59:53] [Server thread/INFO]: [CraftingStore] Disabling CraftingStore v2.9.3
[14:59:53] [Server thread/INFO]: [PlayerVaults] Disabling PlayerVaults v3.6.0-bSNAPSHOT
[14:59:53] [Server thread/INFO]: [PhoenixCratesLite] Disabling PhoenixCratesLite v3.7.1
[14:59:53] [Server thread/INFO]: [ChatItem] Disabling ChatItem v2.6.1
[14:59:53] [Server thread/INFO]: [AuctionHouse] Disabling AuctionHouse v1.4.5
[14:59:53] [Server thread/INFO]: [NametagEdit] Disabling NametagEdit v4.5.23
[14:59:53] [Server thread/INFO]: [SimpleRename] Disabling SimpleRename v13.8
[14:59:53] [Server thread/INFO]: SimpleRename disabled!
[14:59:53] [Server thread/INFO]: [SuperMobCoins] Disabling SuperMobCoins v2.4
[14:59:53] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b131
[14:59:53] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion vault
[14:59:53] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin Vault was disabled.
[14:59:53] [Server thread/INFO]: [FeatherBoard] Disabling FeatherBoard v3.23.0
[14:59:53] [Server thread/INFO]: [FeatherBoard] Cancelling all tasks ...
[14:59:53] [Server thread/INFO]: [AutoBroadcasting] Disabling AutoBroadcasting v1.0-SNAPSHOT
[14:59:53] [Server thread/INFO]: [NoHopper] Disabling NoHopper v1.4
[14:59:53] [Server thread/INFO]: Plugin successfully disabled
[14:59:53] [Server thread/INFO]: [Vouchers] Disabling Vouchers v1.8.20-RELEASE
[14:59:53] [Server thread/INFO]: [FastAsyncWorldEdit] Disabling FastAsyncWorldEdit v21.03.26-5ff3a9b-1286-22.3.9
[14:59:53] [Server thread/INFO]: [MVdWPlaceholderAPI] Disabling MVdWPlaceholderAPI v3.1.1
[14:59:53] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion mvdw
[14:59:53] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin MVdWPlaceholderAPI was disabled.
[14:59:53] [Server thread/INFO]: [HamsterAPI] Disabling HamsterAPI v0.2.4
[14:59:53] [Server thread/INFO]: [EternalCraftInfiniteBuckets] Disabling EternalCraftInfiniteBuckets v1.0-SNAPSHOT
[14:59:53] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v5.1.0
[14:59:53] [Server thread/INFO]: [Multiverse-Core] Disabling Multiverse-Core v2.5.0-b727
[14:59:53] [Server thread/INFO]: [Votifier] Disabling Votifier v2.7.3
[14:59:55] [Server thread/INFO]: [Votifier] Votifier disabled.
[14:59:55] [Server thread/INFO]: [EliteLootbox] Disabling EliteLootbox v2.4.1
[14:59:55] [Server thread/INFO]: EliteLootbox: Saved rankvoucher lootbox rewards!
[14:59:55] [Server thread/INFO]: [LiteBans] Disabling LiteBans v2.15.1
[14:59:55] [Server thread/INFO]: [LiteBans] litebans-pool - Shutdown initiated...
[14:59:55] [Server thread/INFO]: [LiteBans] litebans-pool - Shutdown completed.
[14:59:55] [Server thread/INFO]: [LiteBans] v2.15.1 disabled.
[14:59:55] [Server thread/INFO]: [WorldBorder] Disabling WorldBorder v1.8.6
[14:59:55] [Server thread/INFO]: [WorldBorder] [CONFIG] Border-checking timed task stopped.
[14:59:55] [Server thread/INFO]: [ClearLag] Disabling ClearLag v3.2.2
[14:59:55] [Server thread/INFO]: [ClearLag] Clearlag is now disabled!
[14:59:55] [Server thread/INFO]: [LunarFreeCam] Disabling LunarFreeCam v2.0
[14:59:55] [Server thread/INFO]: [VortexPearls] Disabling VortexPearls v6.1
[14:59:55] [Server thread/INFO]: [TimTheEnchanter] Disabling TimTheEnchanter v3.0
[14:59:55] [Server thread/INFO]: [TimTheEnchanter] I *warned* you, but did you listen to me? Oh, no, you *knew*, didn't you? Oh, it's just a harmless little *bunny*, isn't it? 
[14:59:55] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.141
[14:59:55] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[14:59:55] [Server thread/INFO]: [LuckPerms] Closing messaging service...
[14:59:55] [Server thread/INFO]: [LuckPerms] Closing storage...
[14:59:55] [Server thread/INFO]: [LuckPerms] Goodbye!
[14:59:55] [Server thread/INFO]: [CommandDefender] Disabling CommandDefender v2.1.7 b35
[14:59:55] [Server thread/INFO]: [EternalCraftStaffChat] Disabling EternalCraftStaffChat v1.0-SNAPSHOT
[14:59:55] [Server thread/INFO]: [ViaVersion] Disabling ViaVersion v4.10.2
[14:59:55] [Server thread/INFO]: [ViaVersion] ViaVersion is disabling, if this is a reload and you experience issues consider rebooting.
[14:59:55] [Server thread/INFO]: [JoinMessage] Disabling JoinMessage v1.0-SNAPSHOT
[14:59:55] [Server thread/INFO]: [Realistic_World] Disabling Realistic_World v3.8.6
[14:59:55] [Server thread/INFO]: [EternalCraftEnchanterToCommand] Disabling EternalCraftEnchanterToCommand v1.0-SNAPSHOT
[14:59:55] [Server thread/INFO]: [WildTools] Disabling WildTools v2024.3
[14:59:55] [Server thread/INFO]: [DeluxeTags] Disabling DeluxeTags v1.8.2-Release
[14:59:55] [Server thread/INFO]: [WildStacker] Disabling WildStacker v2024.3
[14:59:55] [Server thread/INFO]: [WildStacker] Cancelling tasks...
[14:59:55] [Server thread/INFO]: [WildStacker] Shutting down stacking service...
[14:59:55] [Server thread/INFO]: [WildStacker] Performing entity&items save
[14:59:55] [Server thread/INFO]: [WildStacker] Shutting down database executor
[14:59:55] [Server thread/INFO]: [WildStacker] Clearing database...
[14:59:55] [Server thread/INFO]: [WildStacker] Stopping executor...
[14:59:55] [Server thread/INFO]: [EternalCraftGoldenAppleModify] Disabling EternalCraftGoldenAppleModify v1.0-SNAPSHOT
[14:59:55] [Server thread/INFO]: [CommandLog] Disabling CommandLog v1.2
[14:59:55] [Server thread/INFO]: [SocialLinks] Disabling SocialLinks v1.0-SNAPSHOT
[14:59:55] [Server thread/INFO]: [PlugMan] Disabling PlugMan v2.1.7
[14:59:55] [Server thread/INFO]: [WildBuster] Disabling WildBuster v2024.3
[14:59:55] [Server thread/INFO]: [WildBuster] Saving database started...
[14:59:55] [Server thread/INFO]: [WildBuster]  - Saved 0 player-busters to files.
[14:59:55] [Server thread/INFO]: [WildBuster] Saving database done (Took 1ms)
[14:59:55] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.11.3
[14:59:55] [Server thread/INFO]: [iKoth] Disabling iKoth v4.5
[14:59:55] [Server thread/INFO]: [EternalCraftAnvilToCommand] Disabling EternalCraftAnvilToCommand v1.0-SNAPSHOT
[14:59:55] [Server thread/INFO]: [WildLoaders] Disabling WildLoaders v2024.3
[14:59:55] [Server thread/INFO]: [CleanroomGenerator] Disabling CleanroomGenerator v1.0.0
[14:59:55] [Server thread/INFO]: Saving players
[14:59:55] [Server thread/INFO]: Glaoi lost connection: Server is now restarting
[14:59:55] [Server thread/INFO]: Saving worlds
[14:59:55] [Server thread/INFO]: Saving chunks for level 'world'/Overworld
[14:59:55] [Server thread/INFO]: Saving chunks for level 'Builds'/Overworld
[14:59:55] [Server thread/INFO]: Saving chunks for level 'flat_nether'/Nether
[14:59:55] [Server thread/INFO]: Saving chunks for level 'kothbuilds'/Overworld
[14:59:55] [Server thread/INFO]: Saving chunks for level 'Season3'/Overworld
[14:59:55] [Server thread/INFO]: Saving chunks for level 'flat_end'/The End
[14:59:55] [Server thread/INFO]: Saving usercache.json