Paste #104364: DenizenMetaBot Auto-Repaste Of log From kFxDaKing

Date: 2022/12/22 07:19:50 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[16:17:31] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[16:17:31] [ServerMain/INFO]: Reloading ResourceManager: Default, bukkit
[16:17:32] [Worker-Main-2/INFO]: Loaded 7 recipes
[16:17:32] [Server thread/INFO]: Starting minecraft server version 1.18.1
[16:17:32] [Server thread/INFO]: Loading properties
[16:17:32] [Server thread/INFO]: This server is running Purpur version git-Purpur-1566 (MC: 1.18.1) (Implementing API version 1.18.1-R0.1-SNAPSHOT) (Git: 133b3e1 on HEAD)
[16:17:33] [Server thread/INFO]: Server Ping Player Sample Count: 12
[16:17:33] [Server thread/INFO]: Using 4 threads for Netty based IO
[16:17:33] [Server thread/WARN]: [Pufferfish] To improve performance, timings have been disabled by default
[16:17:33] [Server thread/WARN]: [Pufferfish] You can still use timings by using /timings on, but they will not start on server startup unless you set timings.really-enabled to true in paper.yml
[16:17:33] [Server thread/WARN]: [Pufferfish] If you would like to disable this message, either set timings.really-enabled to true or timings.enabled to false.
[16:17:33] [Server thread/WARN]: [Pufferfish] SIMD operations are available for your server, but are not configured!
[16:17:33] [Server thread/WARN]: [Pufferfish] To enable additional optimizations, add "--add-modules=jdk.incubator.vector" to your startup flags, BEFORE the "-jar".
[16:17:33] [Server thread/INFO]: Default game type: SURVIVAL
[16:17:33] [Server thread/INFO]: Generating keypair
[16:17:33] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25560
[16:17:33] [Server thread/INFO]: Using epoll channel type
[16:17:33] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[16:17:33] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[16:17:33] [Server thread/ERROR]: Ambiguous plugin name `CMILib' for files `plugins/CMILib1.2.0.2.jar' and `plugins/CMILib1.2.3.2.jar' in `plugins'
[16:17:33] [Server thread/ERROR]: Ambiguous plugin name `CMILib' for files `plugins/CMILib1.2.3.3.jar' and `plugins/CMILib1.2.0.2.jar' in `plugins'
[16:17:33] [Server thread/ERROR]: Ambiguous plugin name `CMILib' for files `plugins/CMILib1.2.3.6.jar' and `plugins/CMILib1.2.3.3.jar' in `plugins'
[16:17:33] [Server thread/ERROR]: Ambiguous plugin name `CMILib' for files `plugins/CMILib1.2.0.3.jar' and `plugins/CMILib1.2.3.6.jar' in `plugins'
[16:17:33] [Server thread/ERROR]: Ambiguous plugin name `CMILib' for files `plugins/CMILib1.2.1.1.jar' and `plugins/CMILib1.2.0.3.jar' in `plugins'
[16:17:33] [Server thread/ERROR]: Ambiguous plugin name `CMILib' for files `plugins/CMILib1.2.3.1.jar' and `plugins/CMILib1.2.1.1.jar' in `plugins'
[16:17:33] [Server thread/ERROR]: Ambiguous plugin name `CMILib' for files `plugins/CMILib1.2.1.0.jar' and `plugins/CMILib1.2.3.1.jar' in `plugins'
[16:17:33] [Server thread/ERROR]: Ambiguous plugin name `CMILib' for files `plugins/CMILib1.2.3.0.jar' and `plugins/CMILib1.2.1.0.jar' in `plugins'
[16:17:33] [Server thread/ERROR]: Ambiguous plugin name `CMILib' for files `plugins/CMILib1.2.0.1.jar' and `plugins/CMILib1.2.3.0.jar' in `plugins'
[16:17:33] [Server thread/ERROR]: Ambiguous plugin name `CMILib' for files `plugins/CMILib1.2.0.4.jar' and `plugins/CMILib1.2.0.1.jar' in `plugins'
[16:17:33] [Server thread/ERROR]: Ambiguous plugin name `CMILib' for files `plugins/CMILib1.1.2.6.jar' and `plugins/CMILib1.2.0.4.jar' in `plugins'
[16:17:33] [Server thread/ERROR]: Ambiguous plugin name `CMILib' for files `plugins/CMILib1.1.2.4.jar' and `plugins/CMILib1.1.2.6.jar' in `plugins'
[16:17:33] [Server thread/ERROR]: Ambiguous plugin name `CMILib' for files `plugins/CMILib1.2.3.5.jar' and `plugins/CMILib1.1.2.4.jar' in `plugins'
[16:17:33] [Server thread/ERROR]: Ambiguous plugin name `CMILib' for files `plugins/CMILib1.2.4.1.jar' and `plugins/CMILib1.2.3.5.jar' in `plugins'
[16:17:33] [Server thread/ERROR]: Ambiguous plugin name `CMILib' for files `plugins/CMILib1.1.2.5.jar' and `plugins/CMILib1.2.4.1.jar' in `plugins'
[16:17:33] [Server thread/ERROR]: Ambiguous plugin name `CMILib' for files `plugins/CMILib1.2.2.0.jar' and `plugins/CMILib1.1.2.5.jar' in `plugins'
[16:17:33] [Server thread/ERROR]: Ambiguous plugin name `CMILib' for files `plugins/CMILib1.2.1.2.jar' and `plugins/CMILib1.2.2.0.jar' in `plugins'
[16:17:33] [Server thread/ERROR]: Ambiguous plugin name `CMILib' for files `plugins/CMILib1.2.3.7.jar' and `plugins/CMILib1.2.1.2.jar' in `plugins'
[16:17:33] [Server thread/ERROR]: Ambiguous plugin name `CMILib' for files `plugins/CMILib1.1.2.3.jar' and `plugins/CMILib1.2.3.7.jar' in `plugins'
[16:17:33] [Server thread/ERROR]: [STDERR] [org.bukkit.craftbukkit.v1_18_R1.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[16:17:36] [Server thread/WARN]: Legacy plugin CommandsToDiscord v1.0 does not specify an api-version.
[16:17:36] [Server thread/WARN]: Legacy plugin MineStore v2.1 does not specify an api-version.
[16:17:36] [Server thread/WARN]: Legacy plugin MinicraftLectern v1.0 does not specify an api-version.
[16:17:37] [Server thread/INFO]: [InventoryRollbackPlus] Loading InventoryRollbackPlus v1.6.5
[16:17:37] [Server thread/INFO]: [Chunky] Loading Chunky v1.2.164
[16:17:37] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.1
[16:17:37] [Server thread/INFO]: [AntiAFKPlus] Loading AntiAFKPlus v3.11
[16:17:37] [Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v3.0.0-SNAPSHOT
[16:17:37] [Server thread/INFO]: [PyroLib] Loading PyroLib v1.0.2
[16:17:37] [Server thread/INFO]: [BestTools] Loading BestTools v2.0.1
[16:17:37] [Server thread/INFO]: [Insights] Loading Insights v6.10.0
[16:17:37] [Server thread/INFO]: [CommandsToDiscord] Loading CommandsToDiscord v1.0
[16:17:37] [Server thread/INFO]: [Quests] Loading Quests v3.9.2
[16:17:37] [Server thread/INFO]: [ChristmasCalendar] Loading ChristmasCalendar v0.0.8
[16:17:37] [Server thread/INFO]: [EasyBackupCore] Loading EasyBackupCore v3.3.6
[16:17:37] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v4.5.1-SNAPSHOT
[16:17:37] [Server thread/INFO]: [ViaVersion] ViaVersion 4.5.1-SNAPSHOT is now loaded, injecting!
[16:17:37] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading 1.12 -> 1.13 mappings...
[16:17:37] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.13 -> 1.13.2 mappings...
[16:17:37] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.13.2 -> 1.14 mappings...
[16:17:37] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.14 -> 1.15 mappings...
[16:17:37] [Via-Mappingloader-4/INFO]: [ViaVersion] Loading 1.15 -> 1.16 mappings...
[16:17:37] [Via-Mappingloader-5/INFO]: [ViaVersion] Loading 1.16 -> 1.16.2 mappings...
[16:17:37] [Via-Mappingloader-6/INFO]: [ViaVersion] Loading 1.16.2 -> 1.17 mappings...
[16:17:37] [Via-Mappingloader-7/INFO]: [ViaVersion] Loading 1.17 -> 1.18 mappings...
[16:17:37] [Via-Mappingloader-8/INFO]: [ViaVersion] Loading 1.18 -> 1.19 mappings...
[16:17:37] [Via-Mappingloader-9/INFO]: [ViaVersion] Loading 1.19 -> 1.19.3 mappings...
[16:17:37] [Server thread/INFO]: [FireLibs] Loading FireLibs v2.3.6
[16:17:37] [Server thread/INFO]: [NBTAPI] Loading NBTAPI v2.9.0-SNAPSHOT
[16:17:37] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_18_R1! Trying to find NMS support
[16:17:37] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_18_R1' loaded!
[16:17:37] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[16:17:37] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'InventoryRollbackPlus' to create a bStats instance!
[16:17:37] [Server thread/INFO]: [ViaBackwards] Loading ViaBackwards v4.5.1-SNAPSHOT
[16:17:37] [Server thread/INFO]: [ViaBackwards] Loading translations...
[16:17:38] [Via-Mappingloader-1/INFO]: [ViaBackwards] Loading 1.10 -> 1.9.4 mappings...
[16:17:38] [Via-Mappingloader-10/INFO]: [ViaBackwards] Loading 1.11 -> 1.10 mappings...
[16:17:38] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[16:17:38] [Via-Mappingloader-10/INFO]: [ViaBackwards] Loading 1.12 -> 1.11 mappings...
[16:17:38] [Thread-9/WARN]: [NBTAPI] [NBTAPI] The NBT-API at 'package de.tr7zw.nbtapi' seems to be outdated!
[16:17:38] [Thread-9/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.9.0-SNAPSHOT' Newest Version: 2.11.1'
[16:17:38] [Thread-9/WARN]: [NBTAPI] [NBTAPI] Please update the nbt-api or the plugin that contains the api!
[16:17:38] [Via-Mappingloader-10/INFO]: [ViaBackwards] Loading 1.13.2 -> 1.13 mappings...
[16:17:38] [Via-Mappingloader-10/INFO]: [ViaBackwards] Loading 1.15 -> 1.14 mappings...
[16:17:38] [Via-Mappingloader-3/INFO]: [ViaBackwards] Loading 1.14 -> 1.13.2 mappings...
[16:17:39] [Via-Mappingloader-2/INFO]: [ViaBackwards] Loading 1.16.2 -> 1.16 mappings...
[16:17:39] [Via-Mappingloader-1/INFO]: [ViaBackwards] Loading 1.17 -> 1.16.2 mappings...
[16:17:39] [Via-Mappingloader-3/INFO]: [ViaBackwards] Loading 1.16 -> 1.15 mappings...
[16:17:39] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.9
[16:17:39] [Via-Mappingloader-4/INFO]: [ViaBackwards] Loading 1.18 -> 1.17 mappings...
[16:17:39] [Via-Mappingloader-7/INFO]: [ViaBackwards] Loading 1.19 -> 1.18 mappings...
[16:17:39] [Via-Mappingloader-2/INFO]: [ViaBackwards] Loading 1.19.3 -> 1.19 mappings...
[16:17:39] [Via-Mappingloader-9/INFO]: [ViaBackwards] Loading 1.13 -> 1.12 mappings...
[16:17:39] [Server thread/INFO]: [KixsChatGames] Loading KixsChatGames v1.8.7
[16:17:39] [Server thread/INFO]: [SirBlobman Core] Loading SirBlobmanCore v2.3.4
[16:17:39] [Server thread/INFO]: [SirBlobman Core] Successfully loaded 129 language(s)
[16:17:39] [Server thread/INFO]: [SirBlobman Core] Successfully loaded 129 language(s)
[16:17:39] [Server thread/INFO]: [ClearLag] Loading ClearLag v3.2.2
[16:17:39] [Server thread/INFO]: [MineStore] Loading MineStore v2.1
[16:17:39] [Server thread/INFO]: [JSEngine] Loading JSEngine v3.1.1
[16:17:39] [Server thread/INFO]: [Leastereggs] Loading Leastereggs v1.0-SNAPSHOT
[16:17:39] [Server thread/INFO]: [spark] Loading spark v1.7.2
[16:17:39] [Server thread/INFO]: [ChunkyBorder] Loading ChunkyBorder v1.0.64
[16:17:39] [Server thread/INFO]: [EasyBackup] Loading EasyBackup v3.3.7
[16:17:39] [Server thread/INFO]: [Votifier] Loading Votifier v2.7.3
[16:17:39] [Server thread/INFO]: [MinicraftLectern] Loading MinicraftLectern v1.0
[16:17:39] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v4.8.0-SNAPSHOT-b540
[16:17:39] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.18.1) has not yet been tested! Proceed with caution.
[16:17:40] [Server thread/INFO]: [LibsDisguises] Loading LibsDisguises v10.0.31
[16:17:40] [Server thread/INFO]: [KixsAutoAnnouncerPremium] Loading KixsAutoAnnouncerPremium v1.3.3
[16:17:40] [Server thread/INFO]: [Vouchers] Loading Vouchers v1.9
[16:17:40] [Server thread/INFO]: [LumberJack] Loading LumberJack v5.0.0
[16:17:40] [Server thread/INFO]: [zTournament] Loading zTournament v1.0.3.3
[16:17:40] [Server thread/INFO]: [mnKDA] Loading mnKDA v1.0.3
[16:17:40] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-CMI
[16:17:40] [Server thread/INFO]: [Vehicles] Loading Vehicles v13.1
[16:17:41] [Server thread/INFO]: [MoneyPouch] Loading MoneyPouch v3.6.1
[16:17:41] [Server thread/INFO]: [FarmLimiter] Loading FarmLimiter v1.5.1
[16:17:41] [Server thread/INFO]: [SkinsRestorer] Loading SkinsRestorer v14.2.4
[16:17:41] [Server thread/INFO]: [AdvancedLottery] Loading AdvancedLottery v11.5
[16:17:41] [Server thread/INFO]: [ShopGUIPlus] Loading ShopGUIPlus v1.68.1
[16:17:41] [Server thread/INFO]: [PinataParty] Loading PinataParty v2.40.0
[16:17:41] [Server thread/INFO]: [SecuredNetwork] Loading SecuredNetwork v3.1
[16:17:41] [Server thread/INFO]: [CommandPanels] Loading CommandPanels v3.17.2.2
[16:17:41] [Server thread/INFO]: [LiteBans] Loading LiteBans v2.8.12
[16:17:41] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.2-SNAPSHOT-b867
[16:17:41] [Server thread/INFO]: [FastAsyncWorldEdit] Loading FastAsyncWorldEdit v2.0.0-SNAPSHOT-63;5fc0de0
[16:17:42] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@78cdbb1c]
[16:17:42] [Server thread/INFO]: [TradeSystem] Loading TradeSystem v2.0.10
[16:17:42] [Server thread/INFO]: [MobsToEggs] Loading MobsToEggs v1.5.5_5
[16:17:42] [Server thread/INFO]: [DeluxeMenus] Loading DeluxeMenus v1.13.4-Release
[16:17:42] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup successfully!
[16:17:42] [Server thread/INFO]: [SuperbVote] Loading SuperbVote v0.5.4
[16:17:42] [Server thread/INFO]: [TAB] Loading TAB v3.1.1-pre1
[16:17:42] [Server thread/INFO]: [DailyShop] Loading DailyShop v3.7
[16:17:42] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.1.0-SNAPSHOT+2189-bc63119
[16:17:42] [Server thread/INFO]: [Images] Loading Images v2.2.4
[16:17:42] [Server thread/INFO]: [NexEngine] Loading NexEngine v2.1.1 build-11/02/2022
[16:17:42] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v20.4
[16:17:42] [Server thread/INFO]: [WorldGuardExtraFlags] Loading WorldGuardExtraFlags v4.1.5-SNAPSHOT
[16:17:42] [Server thread/INFO]: [Wild] Loading Wild v2.29-7da6164
[16:17:42] [Server thread/INFO]: [BeastTokens] Loading BeastTokens v3.10.1
[16:17:42] [Server thread/INFO]: [Skript] Loading Skript v2.6
[16:17:42] [Server thread/INFO]: [PyroFishingPro] Loading PyroFishingPro v4.6.6
[16:17:42] [Server thread/INFO]: [SkQuery] Loading SkQuery v4.1.5
[16:17:42] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.29-SNAPSHOT (build 2490)
[16:17:42] [Server thread/INFO]: [DiscordSRV] Loading DiscordSRV v1.24.0
[16:17:42] [Server thread/INFO]: [AlonsoLeaderboards] Loading AlonsoLeaderboards v1.4-BETA
[16:17:42] [Server thread/INFO]: [ExcellentCrates] Loading ExcellentCrates v4.0.3.6
[16:17:42] [Server thread/INFO]: [RePlant] Loading RePlant v2.3.0
[16:17:42] [Server thread/INFO]: [ChestShop] Loading ChestShop v3.12 (build 307)
[16:17:42] [Server thread/INFO]: [ChestShop] WorldGuard version 7.1.0-SNAPSHOT+2189-bc63119 loaded.
[16:17:42] [Server thread/INFO]: [AdvancedRegionMarket] Loading AdvancedRegionMarket v3.3.7
[16:17:42] [Server thread/INFO]: [AlonsoLevels] Loading AlonsoLevels v2.2.3-BETA
[16:17:42] [Server thread/INFO]: [OreAnnouncer] Loading OreAnnouncer v2.8.3
[16:17:42] [Server thread/INFO]: [OreAnnouncer] Loading libraries of OreAnnouncer v2.8.3, this may take a while
[16:17:52] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jar-relocator
[16:17:52] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for asm
[16:17:52] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for asm-commons
[16:17:52] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for gson
[16:17:52] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for h2
[16:17:52] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for HikariCP
[16:17:52] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jdbi3-core
[16:17:52] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for antlr4-runtime
[16:17:52] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for geantyref
[16:17:52] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for caffeine
[16:17:52] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jdbi3-stringtemplate4
[16:17:52] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for ST4
[16:17:52] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for antlr-runtime
[16:17:52] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for jdbi3-sqlobject
[16:17:52] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for slf4j-api
[16:17:52] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for slf4j-simple
[16:17:52] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for mariadb-java-client
[16:17:52] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for mysql-connector-java
[16:17:52] [Server thread/INFO]: [OreAnnouncer] Verifying checksum for postgresql
[16:17:52] [Server thread/INFO]: [mnEventTracker] Loading mnEventTracker v1.1
[16:17:52] [Server thread/INFO]: [Lands] Loading Lands v5.27.4
[16:17:52] [Server thread/WARN]: [Lands] [Config] Incorrect particle value: visualization.typewilderness.particle. Using default now.
[16:17:52] [Server thread/WARN]: [Lands] [Config] Incorrect particle value: visualization.typeown.particle. Using default now.
[16:17:52] [Server thread/WARN]: [Lands] [Config] Incorrect particle value: visualization.typetrusted.particle. Using default now.
[16:17:52] [Server thread/WARN]: [Lands] [Config] Incorrect particle value: visualization.typeuntrusted.particle. Using default now.
[16:17:52] [Server thread/WARN]: [Lands] [Config] Incorrect particle value: visualization.typeselection.particle. Using default now.
[16:17:53] [Server thread/INFO]: [Lands] Added flag 'lands-claim' to the plugin WorldGuard.
[16:17:53] [Server thread/WARN]: [Lands] [levels.yml] The option 'creation.level' in nations.yml is invalid. The level with the index '5' does not exist. Using latest instead.
[16:17:53] [Server thread/INFO]: [PvPManager] Loading PvPManager v3.16
[16:17:53] [Server thread/INFO]: [PlayerWarps] Loading PlayerWarps v6.18.1
[16:17:53] [Server thread/INFO]: [AuctionHouse] Loading AuctionHouse v2.58.0
[16:17:53] [Server thread/INFO]: [CWR] Loading CyberWorldReset v1.2.0
[16:17:53] [Server thread/INFO]: [bMysteryBlocks] Loading bMysteryBlocks v2.0.3
[16:17:53] [Server thread/INFO]: [AdvancedEnchantments] Loading AdvancedEnchantments v8.9.2
[16:17:53] [Server thread/INFO]: [Hyperstones] Loading Hyperstones v1.5.5
[16:17:53] [Server thread/INFO]: [CMILib] Loading CMILib v1.1.2.3
[16:17:53] [Server thread/INFO]: [Jobs] Loading Jobs v5.0.1.0
[16:17:53] [Server thread/INFO]: [Plan] Loading Plan v5.4 build 1583
[16:17:53] [Server thread/INFO]: [CMI] Loading CMI v9.1.0.6
[16:17:53] [Server thread/INFO]: [EpicSpawners] Loading EpicSpawners v7.2.6
[16:17:53] [Server thread/INFO]: [PlugManX] Loading PlugManX v2.2.7
[16:17:53] [Server thread/INFO]: true
[16:17:53] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[16:17:53] [Server thread/INFO]: [FireLibs] Enabling FireLibs v2.3.6
[16:17:53] [Server thread/INFO]:   ______ _          _      _ _         
[16:17:53] [Server thread/INFO]:  |  ____(_)        | |    (_) |        
[16:17:53] [Server thread/INFO]:  | |__   _ _ __ ___| |     _| |__  ___ 
[16:17:53] [Server thread/INFO]:  |  __| | | '__/ _ \ |    | | '_ \/ __|
[16:17:53] [Server thread/INFO]:  | |    | | | |  __/ |____| | |_) \__ \
[16:17:53] [Server thread/INFO]:  |_|    |_|_|  \___|______|_|_.__/|___/
[16:17:53] [Server thread/INFO]: Loading..
[16:17:53] [Server thread/INFO]:  - Loading config.yml... Successful!
[16:17:53] [Server thread/INFO]:  - Loading NSM Adapter.. Version: v1_18_R1
[16:17:53] [Server thread/INFO]:    - NSM Adapter found..
[16:17:53] [Server thread/INFO]: [FireLibs] Enabled plugin with version 2.3.6 by Firestone82
[16:17:53] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.9
[16:17:53] [Server thread/INFO]:         __    
[16:17:53] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.9
[16:17:53] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[16:17:53] [Server thread/INFO]: 
[16:17:53] [Server thread/INFO]: [LuckPerms] Loading configuration...
[16:17:54] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MARIADB]
[16:17:54] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[16:17:54] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[16:17:54] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[16:17:54] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[16:17:54] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[16:17:55] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1935ms)
[16:17:55] [Server thread/INFO]: [SirBlobman Core] Enabling SirBlobmanCore v2.3.4
[16:17:55] [Server thread/INFO]: [JSEngine] Enabling JSEngine v3.1.1
[16:17:55] [Server thread/INFO]: [JSEngine] JSEngine version 3.1.1 is Enabled
[16:17:55] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v4.8.0-SNAPSHOT-b540
[16:17:55] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread.
[16:17:55] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-CMI
[16:17:55] [Server thread/WARN]: [Vault] Loaded class com.Zrips.CMI.Modules.Economy.Economy from CMI v9.1.0.6 which is not a depend or softdepend of this plugin.
[16:17:55] [Server thread/INFO]: [Vault] [Economy] CMI Economy found: Waiting
[16:17:55] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[16:17:55] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-CMI
[16:17:55] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[16:17:55] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.0.0-SNAPSHOT-63;5fc0de0
[16:17:55] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[16:17:55] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[16:17:55] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[16:17:55] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[16:17:55] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_18_R1.PaperweightFaweAdapter as the Bukkit adapter
[16:17:55] [Server thread/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 269 build(s) out of date.
You are running build 63, the latest version is build 332.
Update at https://www.spigotmc.org/resources/13932/
[16:17:55] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.1.1 build-11/02/2022
[16:17:55] [Server thread/INFO]: [NexEngine] Loaded NMS version: V1_18_R1
[16:17:55] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[16:17:55] [Server thread/INFO]: [NexEngine] Successfully hooked with CMIEconomy economy
[16:17:55] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[16:17:56] [Server thread/INFO]: [NexEngine] Successfully hooked with Vault!
[16:17:56] [Server thread/INFO]: [NexEngine] Found 0 external module(s).
[16:17:56] [Server thread/INFO]: [NexEngine] Plugin loaded in 54 ms!
[16:17:56] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.2.7
[16:17:56] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[16:17:56] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[16:17:56] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord or Velocity, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[16:17:56] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[16:17:56] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[16:17:56] [Server thread/INFO]: Preparing level "world"
[16:17:57] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[16:17:57] [Server thread/INFO]: Time elapsed: 99 ms
[16:17:57] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[16:17:57] [Server thread/INFO]: Time elapsed: 64 ms
[16:17:57] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[16:17:57] [Server thread/INFO]: Time elapsed: 22 ms
[16:17:57] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.5
[16:17:57] [Server thread/WARN]: [InventoryRollbackPlus] Time zone "GMT+2" in config.yml is invalid. Defaulting to "UTC"
[16:17:57] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: MySQL
[16:17:57] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[16:17:57] [Server thread/INFO]: [Chunky] Enabling Chunky v1.2.164
[16:17:57] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.1
[16:17:57] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.viaversion.viaversion.api.type.Type from ViaVersion v4.5.1-SNAPSHOT which is not a depend or softdepend of this plugin.
[16:17:57] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[16:17:57] [Server thread/INFO]: [AntiAFKPlus] Enabling AntiAFKPlus v3.11
[16:17:57] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v3.0.0-SNAPSHOT
[16:17:57] [Server thread/INFO]: [PyroLib] Enabling PyroLib v1.0.2
[16:17:57] [Server thread/INFO]: [BestTools] Enabling BestTools v2.0.1
[16:17:57] [Server thread/INFO]: [BestTools] Building the <Block,Tool> map took 1 ms
[16:17:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: besttools [2.0.1]
[16:17:57] [Server thread/INFO]: [Insights] Enabling Insights v6.10.0
[16:17:58] [Server thread/INFO]: [Insights] Loaded limit 'block-limit-lands.yml'
[16:17:58] [Server thread/INFO]: [Insights] Loaded limit 'disabled-blocks.yml'
[16:17:58] [Server thread/INFO]: [Insights] Unregistered listener of 'BlockFromToEvent'
[16:17:58] [Server thread/INFO]: [Insights] Unregistered listener of 'LeavesDecayEvent'
[16:17:58] [Server thread/INFO]: [Insights] Unregistered listener of 'FluidLevelChangeEvent'
[16:17:58] [Server thread/INFO]: [Insights] Unregistered listener of 'SpongeAbsorbEvent'
[16:17:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: insights [6.10.0]
[16:17:58] [Server thread/INFO]: [CommandsToDiscord] Enabling CommandsToDiscord v1.0*
[16:17:58] [Server thread/INFO]: [Quests] Enabling Quests v3.9.2
[16:17:58] [Server thread/ERROR]: [Quests] [Server thread] INFO com.leonardobishop.quests.libs.hikaricp.HikariDataSource - quests-hikari - Starting...
[16:17:58] [Server thread/ERROR]: [Quests] [Server thread] INFO com.leonardobishop.quests.libs.hikaricp.HikariDataSource - quests-hikari - Start completed.
[16:17:58] [Server thread/INFO]: [Quests] Your server is running version 1.18
[16:17:58] [Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[16:17:58] [Server thread/INFO]: [ChristmasCalendar] Enabling ChristmasCalendar v0.0.8
[16:17:58] [Server thread/INFO]: [EasyBackupCore] Enabling EasyBackupCore v3.3.6
[16:17:58] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.5.1-SNAPSHOT
[16:17:58] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.9.0-SNAPSHOT
[16:17:58] [Server thread/INFO]: [NBTAPI] Adding listeners...
[16:17:58] [Server thread/INFO]: [NBTAPI] Gson:
[16:17:58] [Server thread/INFO]: [NBTAPI] Checking bindings...
[16:17:58] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[16:17:58] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[16:17:58] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[16:17:58] [Server thread/INFO]: [NBTAPI] TileTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] MergeTileSubCompoundTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] RemovingKeys: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] EmptyItemTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] DirectApplyTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] EntityCustomNbtInjectorTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] TypeTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] NBTFileTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] SpawnEntityCustomNbtInjectorTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] SubCompoundsTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] GameprofileTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] EqualsTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] EntityTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] StreamTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] ItemConvertionTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] EntityCustomNbtPersistentTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] ChunkNBTPersistentTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] MergeTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] GetterSetterTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] TilesCustomNBTInjectorTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] WorldDataTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] IteratorTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] BlockNBTTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] ListTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] ItemMergingTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] TilesCustomNBTPersistentTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] ForEachTest: Ok
[16:17:58] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[16:17:58] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.5.1-SNAPSHOT
[16:17:58] [Server thread/INFO]: [KixsChatGames] Enabling KixsChatGames v1.8.7
[16:17:58] [Server thread/INFO]: 
[16:17:58] [Server thread/INFO]: --------------------------------------
[16:17:58] [Server thread/INFO]:      Kix's Chat Games by kixmc
[16:17:58] [Server thread/INFO]:      Starting on version 1.8.7
[16:17:58] [Server thread/INFO]: --------------------------------------
[16:17:58] [Server thread/INFO]: 
[16:17:58] [Server thread/WARN]: [KixsChatGames] Loaded class me.clip.placeholderapi.expansion.PlaceholderExpansion from PlaceholderAPI v2.11.1 which is not a depend or softdepend of this plugin.
[16:17:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: kixschatgames [1.8.7]
[16:17:58] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[16:17:58] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[16:17:58] [Server thread/INFO]: [ClearLag] Loading modules...
[16:17:58] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (net.minecraft.server.v1_18_R1.MinecraftServer)
[16:17:58] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[16:17:58] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[16:17:58] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[16:17:58] [Thread-18/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.18]...
[16:17:58] [Server thread/INFO]: [MineStore] Enabling MineStore v2.1*
[16:17:58] [Server thread/INFO]: [MineStore] PlaceholdersAPI has been found! Adding expansion...
[16:17:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: minestore [V2.0]
[16:17:58] [Server thread/INFO]: [MineStore] Starting Server at 33312
[16:17:58] [Server thread/INFO]: [Leastereggs] Enabling Leastereggs v1.0-SNAPSHOT
[16:17:58] [Thread-18/INFO]: [ClearLag] No updates found!
[16:17:59] [Server thread/INFO]: [EasterEggs] Loading PlaceholderAPI hook...
[16:17:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: eastereggs [1.0.0]
[16:17:59] [Server thread/INFO]: [EasterEggs] Plugin has been enabled!
[16:17:59] [Server thread/INFO]: [spark] Enabling spark v1.7.2
[16:17:59] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[16:17:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.7.2]
[16:17:59] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[16:17:59] [Server thread/INFO]: [ChunkyBorder] Enabling ChunkyBorder v1.0.64
[16:17:59] [Server thread/INFO]: [EasyBackup] Enabling EasyBackup v3.3.7
[16:17:59] [Server thread/INFO]: [EasyBackup] -------------------------------------------------------------
[16:17:59] [Server thread/INFO]: [EasyBackup]  _____                 ______            _                
[16:17:59] [Server thread/INFO]: [EasyBackup] |  ___|                | ___ \          | |               
[16:17:59] [Server thread/INFO]: [EasyBackup] | |__  __ _ ___ _   _  | |_/ / __ _  ___| | ___   _ _ __  
[16:17:59] [Server thread/INFO]: [EasyBackup] |  __|/ _` / __| | | | | ___ \/ _` |/ __| |/ / | | | '_ \ 
[16:17:59] [Server thread/INFO]: [EasyBackup] | |__| (_| \__ \ |_| | | |_/ / (_| | (__|   <| |_| | |_) |
[16:17:59] [Server thread/INFO]: [EasyBackup] \____/\__,_|___/\__, | \____/ \__,_|\___|_|\_\\__,_| .__/ 
[16:17:59] [Server thread/INFO]: [EasyBackup]                  __/ |                             | |    
[16:17:59] [Server thread/INFO]: [EasyBackup]                 |___/                              |_|    
[16:17:59] [Server thread/INFO]: [EasyBackup] 
[16:17:59] [Server thread/INFO]: [EasyBackup] EasyBackup v3.3.7
[16:17:59] [Server thread/INFO]: [EasyBackup] Made by Forseth11, JarFiles
[16:17:59] [Server thread/INFO]: [EasyBackup]  
[16:17:59] [Server thread/INFO]: [EasyBackup] Loading...
[16:17:59] [Server thread/INFO]: [EasyBackup] Starting TaskManager...
[16:17:59] [Server thread/INFO]: [EasyBackup] Initializing Encryption Algorithms. This may take a while...
[16:18:00] [Server thread/INFO]: [EasyBackup] Loading Configurations...
[16:18:00] [Server thread/INFO]: [EasyBackup] Successfully loaded configurations: general.yml, messages.yml, action-bar.yml, backup.yml, cleaner.yml, mysql.yml, notifications.yml, upload-services.yml
[16:18:00] [Server thread/INFO]: [EasyBackup] Initializing Modules loader...
[16:18:00] [Server thread/INFO]: [EasyBackup] It appears that you are running Java 17.0.2. Unfortunately, third party addons aren't supported yet!
[16:18:00] [Server thread/INFO]: [EasyBackup] Default addons are still supported but require EasyBackupCore to be installed.
[16:18:00] [Server thread/INFO]: [EasyBackup] Enabling API...
[16:18:00] [Server thread/INFO]: [EasyBackup] Debug: CoreTask Starting Task
[16:18:02] [Server thread/INFO]: [EasyBackup] Loading Managers...
[16:18:02] [Server thread/INFO]: [EasyBackup] Loaded DropBox Uploader
[16:18:02] [Server thread/INFO]: [EasyBackup] Loaded GoogleDrive Uploader
[16:18:02] [Server thread/INFO]: [EasyBackup] Loaded FTP Uploader
[16:18:02] [Server thread/INFO]: [EasyBackup] Loading EasyBackup schedule (CRON).
[16:18:02] [Server thread/INFO]: [EasyBackup] Schedule applied: 0 0 3 * * ? (at 03:00)
[16:18:02] [Server thread/INFO]: [EasyBackup] Loading Listeners...
[16:18:02] [Server thread/INFO]: [EasyBackup] Debug: Registered Listener: dz!
[16:18:02] [Server thread/INFO]: [EasyBackup] Loading Commands...
[16:18:02] [Server thread/INFO]: [EasyBackup] Starting LagMeter...
[16:18:02] [Server thread/INFO]: [EasyBackup] Starting backup tasks
[16:18:02] [Server thread/INFO]: [EasyBackup] Debug: UpdateChecker Starting Task
[16:18:02] [Server thread/INFO]: [EasyBackup] Debug: UpdateChecker Checking for plugin updates
[16:18:02] [Server thread/INFO]: [EasyBackup]  
[16:18:02] [Server thread/INFO]: [EasyBackup] EasyBackup has been loaded successfully (1)
[16:18:02] [Server thread/INFO]: [EasyBackup] Thank you very much for using EasyBackup
[16:18:02] [Server thread/INFO]: [EasyBackup] -------------------------------------------------------------
[16:18:02] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[16:18:02] [Server thread/INFO]: [Votifier] Loaded token for website: default
[16:18:02] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[16:18:02] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[16:18:02] [Server thread/INFO]: [MinicraftLectern] Enabling MinicraftLectern v1.0*
[16:18:02] [Server thread/INFO]: [MinicraftLectern] Enabled.
[16:18:02] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.31
[16:18:02] [Server thread/ERROR]: [LibsDisguises] Please update from MC 1.18 and MC 1.18.1! You should be using 1.18.2! Support will eventually be dropped for your specific version!
[16:18:02] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0%0]:9003.
[16:18:02] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-10.0.27-Premium.jar
[16:18:02] [Server thread/INFO]: [LibsDisguises] Discovered nms version: v1_18_R1
[16:18:02] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1119
[16:18:02] [Server thread/INFO]: [LibsDisguises] Build Date: 09/08/2022 06:41
[16:18:02] [Server thread/INFO]: [LibsDisguises] Found a premium Lib's Disguises jar (v10.0.27, build #1035, created 23/12/2021 04:30)
[16:18:02] [Server thread/INFO]: [LibsDisguises] Registered to: 778052 (29)
[16:18:02] [Server thread/INFO]: [LibsDisguises] Premium enabled, thank you for supporting Lib's Disguises!
[16:18:09] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[16:18:09] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[16:18:09] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[16:18:09] [Server thread/INFO]: [KixsAutoAnnouncerPremium] Enabling KixsAutoAnnouncerPremium v1.3.3
[16:18:09] [Server thread/INFO]: --------------------------------------
[16:18:09] [Server thread/INFO]:     kix's auto announcer premium
[16:18:09] [Server thread/INFO]:       enabled on version 1.3.3
[16:18:09] [Server thread/INFO]: --------------------------------------
[16:18:09] [Server thread/INFO]: [Kix's Auto Announcer ++] Data files loaded successfully.
[16:18:09] [Server thread/INFO]: [Kix's Auto Announcer ++] Loaded 5 broadcasts.
[16:18:09] [Server thread/INFO]: [Vouchers] Enabling Vouchers v1.9
[16:18:09] [Server thread/INFO]: [Vouchers] Loading the Config.yml
[16:18:09] [Server thread/INFO]: [Vouchers] Successfully loaded Config.yml
[16:18:09] [Server thread/INFO]: [Vouchers] Loading the Data.yml
[16:18:09] [Server thread/INFO]: [Vouchers] Successfully loaded Data.yml
[16:18:09] [Server thread/INFO]: [Vouchers] Loading the Messages.yml
[16:18:09] [Server thread/INFO]: [Vouchers] Successfully loaded Messages.yml
[16:18:09] [Server thread/INFO]: [Vouchers] Loading the VoucherCodes.yml
[16:18:09] [Server thread/INFO]: [Vouchers] Successfully loaded VoucherCodes.yml
[16:18:09] [Server thread/INFO]: [LumberJack] Enabling LumberJack v5.0.0
[16:18:09] [Server thread/WARN]: [LumberJack] Loaded class me.clip.placeholderapi.expansion.PlaceholderExpansion from PlaceholderAPI v2.11.1 which is not a depend or softdepend of this plugin.
[16:18:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: lumberjack [5.0.0]
[16:18:09] [Server thread/INFO]: [zTournament] Enabling zTournament v1.0.3.3
[16:18:09] [Server thread/INFO]: [zTournament v1.0.3.3] === ENABLE START ===
[16:18:09] [Server thread/INFO]: [zTournament v1.0.3.3] Plugin Version V1.0.3.3
[16:18:09] [Server thread/INFO]: [zTournament v1.0.3.3] Loaded NMS 1.18 !
[16:18:09] [Server thread/INFO]: [zTournament v1.0.3.3] /home/container/plugins/zTournament/config.json loaded successfully !
[16:18:09] [Server thread/INFO]: [zTournament v1.0.3.3] /home/container/plugins/zTournament/lang.json loaded successfully !
[16:18:09] [Server thread/INFO]: [zTournament v1.0.3.3] /home/container/plugins/zTournament/tournaments.json loaded successfully !
[16:18:09] [Server thread/INFO]: [zTournament v1.0.3.3] Number of arenas available: 1
[16:18:09] [Server thread/INFO]: [zTournament v1.0.3.3] /home/container/plugins/zTournament/kits.yml loaded successfully !
[16:18:09] [Server thread/INFO]: [zTournament v1.0.3.3] Loading 1 kits
[16:18:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ztournament [1.0.3.3]
[16:18:09] [Server thread/INFO]: [zTournament v1.0.3.3] Successful loading of PlaceholderAPI.
[16:18:09] [Server thread/INFO]: [zTournament v1.0.3.3] Loading 2 inventories
[16:18:09] [Server thread/INFO]: [zTournament v1.0.3.3] Loading 1 commands
[16:18:09] [Server thread/INFO]: [zTournament v1.0.3.3] === ENABLE DONE (26ms) ===
[16:18:09] [Server thread/INFO]: [mnKDA] Enabling mnKDA v1.0.3
[16:18:09] [Server thread/INFO]:                   _  _______          
[16:18:09] [Server thread/INFO]:                  | |/ /  __ \   /\    
[16:18:09] [Server thread/INFO]:   _ __ ___  _ __ | ' /| |  | | /  \   
[16:18:09] [Server thread/INFO]:  | '_ ` _ \| '_ \|  < | |  | |/ /\ \  
[16:18:09] [Server thread/INFO]:  | | | | | | | | | . \| |__| / ____ \ 
[16:18:09] [Server thread/INFO]:  |_| |_| |_|_| |_|_|\_\_____/_/    \_\
[16:18:09] [Server thread/INFO]: Loading..
[16:18:09] [Server thread/INFO]:  - Loading config.yml... Successful!
[16:18:09] [Server thread/INFO]:  - Loading lang.yml... Successful!
[16:18:09] [Server thread/INFO]:  - Debug mode is disabled!
[16:18:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mnkda [1.0.3]
[16:18:09] [Server thread/INFO]:  - Connecting database 116.202.225.174... Successful!
[16:18:09] [Server thread/INFO]: [mnKDA] Enabled plugin with version 1.0.3 by Firestone82
[16:18:09] [Server thread/INFO]: [Vehicles] Enabling Vehicles v13.1
[16:18:11] [Server thread/INFO]: [Vehicles] Vehicles >> lang.yml loaded.
[16:18:11] [Server thread/INFO]: [MoneyPouch] Enabling MoneyPouch v3.6.1
[16:18:11] [Server thread/INFO]: [MoneyPouch] Your server is running version v1_18_R1.
[16:18:11] [Server thread/INFO]: [MoneyPouch] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[16:18:11] [Server thread/INFO]: [FarmLimiter] Enabling FarmLimiter v1.5.1
[16:18:11] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v14.2.4
[16:18:11] [Server thread/INFO]: [SkinsRestorer] Detected Minecraft v1_18_R1, using MappingSpigotSkinRefresher.
[16:18:11] [Server thread/INFO]: [SkinsRestorer] -------------------------/Warning\-------------------------
[16:18:11] [Server thread/INFO]: [SkinsRestorer] This plugin is running in PROXY mode!
[16:18:11] [Server thread/INFO]: [SkinsRestorer] You have to do all configuration at config file
[16:18:11] [Server thread/INFO]: [SkinsRestorer] inside your BungeeCord/Velocity server.
[16:18:11] [Server thread/INFO]: [SkinsRestorer] (<proxy>/plugins/SkinsRestorer/)
[16:18:11] [Server thread/INFO]: [SkinsRestorer] -------------------------\Warning/-------------------------
[16:18:11] [Server thread/INFO]: [AdvancedLottery] Enabling AdvancedLottery v11.5
[16:18:11] [Server thread/INFO]: [AdvancedLottery] Detected server running on 1.13 or newer version
[16:18:11] [Server thread/INFO]: [AdvancedLottery] Hooked into vault!
[16:18:11] [Server thread/INFO]: [AdvancedLottery] Successfully hooked into PlaceholderAPI!
[16:18:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: AdvancedLottery [2.0]
[16:18:11] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.68.1
[16:18:11] [ForkJoinPool.commonPool-worker-1/INFO]: [AdvancedLottery] ---------------------------------
[16:18:11] [ForkJoinPool.commonPool-worker-1/INFO]: [AdvancedLottery] There is a new version: v12.4
[16:18:11] [ForkJoinPool.commonPool-worker-1/INFO]: [AdvancedLottery] You are running v11.5
[16:18:11] [ForkJoinPool.commonPool-worker-1/INFO]: [AdvancedLottery] Please download the new version at https://www.spigotmc.org/resources/lottery.43668/
[16:18:11] [ForkJoinPool.commonPool-worker-1/INFO]: [AdvancedLottery] ---------------------------------
[16:18:11] [Server thread/INFO]: [PinataParty] Enabling PinataParty v2.40.0
[16:18:11] [Server thread/INFO]: [PinataParty] Registering hooks...
[16:18:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pinataparty [2.40.0]
[16:18:11] [Server thread/INFO]: [PinataParty] Hooked onto PlaceholderAPI
[16:18:11] [Server thread/INFO]: [PinataParty] Hooked onto Votifier
[16:18:11] [Server thread/WARN]: [PinataParty] GlowAPI and/or PacketListenerAPI not found! Rainbow glow will not work! Download and install them from https://www.spigotmc.org/resources/2930/ and https://www.spigotmc.org/resources/19422/
[16:18:11] [Server thread/INFO]: [PinataParty] Hooked onto Vault
[16:18:11] [Server thread/INFO]: [PinataParty] Registering files...
[16:18:11] [Server thread/INFO]: [PinataParty] Registering commands...
[16:18:11] [Server thread/INFO]: [PinataParty] Registering listeners...
[16:18:11] [Server thread/INFO]: [PinataParty] Loading saved data...
[16:18:11] [Server thread/INFO]: [PinataParty] Starting data save task...
[16:18:11] [Server thread/INFO]: [PinataParty] Attempting bStats and updater...
[16:18:11] [Server thread/INFO]: [PinataParty] Plugin registered to 778052 | 822175684
[16:18:11] [Server thread/INFO]: [PinataParty] Done and enabled in 19.77ms
[16:18:11] [Server thread/INFO]: [SecuredNetwork] Enabling SecuredNetwork v3.1
[16:18:11] [Server thread/INFO]: [SecuredNetwork] [SecuredNetwork] Thank you for downloading SecuredNetwork!
[16:18:11] [Server thread/INFO]: [CommandPanels] Enabling CommandPanels v3.17.2.2
[16:18:11] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.17.2.2 Plugin Loading...
[16:18:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: commandpanels [1.0.0]
[16:18:11] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.17.2.2 Plugin Loaded!
[16:18:11] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.8.12
[16:18:11] [LiteBans-0/INFO]: [LiteBans] Downloading GeoIP API...
[16:18:11] [LiteBans-0/INFO]: [LiteBans] Downloading GeoIP database (GeoLite2-Country.mmdb)...
[16:18:11] [LiteBans-0/WARN]: [LiteBans] GeoIP download URL has not yet been configured.
[16:18:11] [LiteBans-0/WARN]: [LiteBans] https://gitlab.com/ruany/LiteBans/-/wikis/GeoIP#geoip-download-issue
[16:18:11] [Server thread/INFO]: [LiteBans] Loading SQL driver: mariadb 2.5.2 (org.mariadb.jdbc.Driver)
[16:18:11] [Server thread/INFO]: [LiteBans] Connecting to database...
[16:18:11] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[16:18:11] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[16:18:11] [Server thread/INFO]: [LiteBans] Connected to MariaDB database successfully (22.7 ms).
[16:18:11] [Server thread/INFO]: [LiteBans] Database connection fully initialized (25.4 ms).
[16:18:11] [Server thread/INFO]: [LiteBans] v2.8.12 enabled. Startup took 169 ms.
[16:18:11] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.2-SNAPSHOT-b867
[16:18:11] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.2-SNAPSHOT-b867" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[16:18:11] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[16:18:12] [Server thread/INFO]: Could not set generator for world 'IrisTest': Plugin 'Iris' does not exist
[16:18:12] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: IrisTest
[16:18:12] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[16:18:12] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: spawn
[16:18:12] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[16:18:12] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: test
[16:18:12] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[16:18:12] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: testword
[16:18:12] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[16:18:12] [Server thread/INFO]: Preparing start region for dimension minecraft:spawnproject
[16:18:12] [Server thread/INFO]: Preparing spawn area: 0%
[16:18:12] [Server thread/INFO]: Time elapsed: 160 ms
[16:18:12] [Server thread/INFO]: Preparing start region for dimension minecraft:resource_world
[16:18:12] [Server thread/INFO]: Preparing spawn area: 0%
[16:18:12] [Server thread/INFO]: Time elapsed: 165 ms
[16:18:12] [Server thread/INFO]: Preparing start region for dimension minecraft:event
[16:18:12] [Server thread/INFO]: Time elapsed: 50 ms
[16:18:12] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[16:18:13] [Server thread/INFO]: Time elapsed: 124 ms
[16:18:13] [Server thread/INFO]: Preparing start region for dimension minecraft:rpgworld
[16:18:13] [Server thread/INFO]: Time elapsed: 43 ms
[16:18:13] [Server thread/INFO]: [Multiverse-Core] 8 - World(s) loaded.
[16:18:13] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[16:18:13] [Server thread/INFO]: [Multiverse-Core] Version 4.3.2-SNAPSHOT-b867 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[16:18:13] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.0.10
[16:18:13] [Server thread/INFO]:  
[16:18:13] [Server thread/INFO]: __________________________________________________________
[16:18:13] [Server thread/INFO]:  
[16:18:13] [Server thread/INFO]:                        TradeSystem [2.0.10]
[16:18:13] [Server thread/INFO]:  
[16:18:13] [Server thread/INFO]: Status:
[16:18:13] [Server thread/INFO]:  
[16:18:13] [Server thread/INFO]: MC-Version: 1.18.1 (R0.1-SNAPSHOT, Purpur)
[16:18:13] [Server thread/INFO]:  
[16:18:13] [Server thread/INFO]:   > Loading sounds
[16:18:13] [Server thread/INFO]:   > Loading blacklist
[16:18:13] [Server thread/INFO]:     ...got 3 blocked item(s)
[16:18:13] [Server thread/INFO]:   > Loading layouts
[16:18:13] [Server thread/INFO]:     ...got 3 layout(s)
[16:18:13] [Server thread/INFO]:   > Database logging is disabled
[16:18:13] [Server thread/INFO]:  
[16:18:13] [Server thread/INFO]: Finished (145ms)
[16:18:13] [Server thread/INFO]:  
[16:18:13] [Server thread/INFO]: __________________________________________________________
[16:18:13] [Server thread/INFO]:  
[16:18:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tradesystem [1.1]
[16:18:13] [Server thread/INFO]: [MobsToEggs] Enabling MobsToEggs v1.5.5_5
[16:18:13] [Server thread/INFO]: [MobsToEggs] Loading MobsToEggs v1.5.5_5!
[16:18:13] [Server thread/INFO]: [MobsToEggs] Loading language: EN
[16:18:13] [Server thread/INFO]: [MobsToEggs] Loading cost type: economy
[16:18:13] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.4-Release
[16:18:13] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[16:18:13] [Server thread/INFO]: [DeluxeMenus] 2 GUI menus loaded!
[16:18:13] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[16:18:13] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[16:18:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.4-Release]
[16:18:13] [Server thread/INFO]: [SuperbVote] Enabling SuperbVote v0.5.4
[16:18:13] [Server thread/ERROR]: [SuperbVote] SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
[16:18:13] [Server thread/ERROR]: [SuperbVote] SLF4J: Defaulting to no-operation (NOP) logger implementation
[16:18:13] [Server thread/ERROR]: [SuperbVote] SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[16:18:13] [Server thread/INFO]: [SuperbVote] Using clip's PlaceholderAPI to provide extra placeholders.
[16:18:13] [Server thread/INFO]: [TAB] Enabling TAB v3.1.1-pre1
[16:18:13] [Server thread/INFO]: [TAB] Server version: 1.18.1 (v1_18_R1)
[16:18:13] [Server thread/INFO]: [TAB] Loaded NMS hook in 12ms
[16:18:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tab [3.1.1-pre1]
[16:18:13] [Server thread/INFO]: [TAB] Enabled in 66ms
[16:18:13] [Server thread/INFO]: [DailyShop] Enabling DailyShop v3.7
[16:18:13] [Server thread/INFO]: [DailyShop] Hooked to Vault
[16:18:13] [Server thread/INFO]: [DailyShop] Hooked to PlaceholderAPI
[16:18:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: DailyShop [3.7]
[16:18:13] [Server thread/INFO]: [DailyShop] Hooked to ShopGUIPlus
[16:18:13] [Server thread/INFO]: [DailyShop] Reading lang.yml...
[16:18:13] [Server thread/INFO]: [DailyShop] Imported lang.yml in 15 ms
[16:18:13] [Server thread/INFO]: [DailyShop] Reading settings.yml... 
[16:18:13] [Server thread/INFO]: [DailyShop] Imported settings.yml in 1 ms
[16:18:13] [Server thread/INFO]: [DailyShop] Reading priceModifiers.yml...
[16:18:13] [Server thread/INFO]: [DailyShop] Loaded 1 modifiers
[16:18:13] [Server thread/INFO]: [DailyShop] Imported priceModifier.yml in 4 ms
[16:18:13] [Server thread/INFO]: [DailyShop] Importing database data...
[16:18:13] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_18_R1! Trying to find NMS support
[16:18:13] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_18_R1' loaded!
[16:18:13] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[16:18:14] [Server thread/INFO]: [DailyShop] Imported database data in 95 ms
[16:18:14] [Thread-21/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package io.github.divios.dependencies.nbt.nbtapi' seems to be outdated!
[16:18:14] [Thread-21/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.9.2-SNAPSHOT' Newest Version: 2.11.1'
[16:18:14] [Thread-21/WARN]: [NBTAPI] [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)!
[16:18:14] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.1.0-SNAPSHOT+2189-bc63119
[16:18:14] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[16:18:14] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[16:18:14] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[16:18:14] [Server thread/INFO]: [WorldGuard] (SpawnProject) TNT ignition is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (SpawnProject) Lighters are PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (SpawnProject) Lava fire is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (SpawnProject) Fire spread is UNRESTRICTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SpawnProject'
[16:18:14] [Server thread/INFO]: [WorldGuard] (resource_world) TNT ignition is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (resource_world) Lighters are PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (resource_world) Lava fire is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (resource_world) Fire spread is UNRESTRICTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'resource_world'
[16:18:14] [Server thread/INFO]: [WorldGuard] (event) TNT ignition is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (event) Lighters are PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (event) Lava fire is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (event) Fire spread is UNRESTRICTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'event'
[16:18:14] [Server thread/INFO]: [WorldGuard] (Spawn) Blacklist loaded with 2 entries.
[16:18:14] [Server thread/INFO]: [WorldGuard] (Spawn) TNT ignition is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (Spawn) Lighters are PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (Spawn) Lava fire is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (Spawn) Fire spread is UNRESTRICTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn'
[16:18:14] [Server thread/INFO]: [WorldGuard] (rpgworld) TNT ignition is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (rpgworld) Lighters are PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (rpgworld) Lava fire is PERMITTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] (rpgworld) Fire spread is UNRESTRICTED.
[16:18:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'rpgworld'
[16:18:14] [Server thread/INFO]: [WorldGuard] Loading region data...
[16:18:14] [Server thread/INFO]: [NexEngine] Successfully hooked with WorldGuard!
[16:18:14] [Server thread/INFO]: [Images] Enabling Images v2.2.4
[16:18:14] [Server thread/INFO]: [Images] ProtocolLib detected. Enabling generic packet handling...
[16:18:14] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v20.4
[16:18:14] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[16:18:14] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[16:18:14] [Server thread/INFO]: --------------------
[16:18:14] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[16:18:14] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[16:18:14] [Server thread/INFO]: --------------------
[16:18:14] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.1.5-SNAPSHOT
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[16:18:14] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[16:18:14] [Server thread/INFO]: [Wild] Enabling Wild v2.29-7da6164
[16:18:14] [Server thread/INFO]: [BeastTokens] Enabling BeastTokens v3.10.1
[16:18:14] [Server thread/INFO]: [BeastTokens] [NBTAPI] Found Spigot: v1_18_R1! Trying to find NMS support
[16:18:14] [Server thread/INFO]: [BeastTokens] [NBTAPI] NMS support 'MC1_18_R1' loaded!
[16:18:14] [Server thread/INFO]: [BeastTokens] [NBTAPI] Found Gson: class com.google.gson.Gson
[16:18:14] [Server thread/INFO]: [me.mraxetv.beasttokens.sqllib.hikari.HikariDataSource] Mysql - HikariPool - Starting...
[16:18:14] [Server thread/INFO]: [me.mraxetv.beasttokens.sqllib.hikari.HikariDataSource] Mysql - HikariPool - Start completed.
[16:18:14] [Server thread/INFO]: » Tokens « The connection to MySQL is made!
[16:18:14] [Server thread/INFO]: » Tokens « Loading PlaceHolderAPI expansion!
[16:18:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: beasttokens [1.1]
[16:18:14] [Server thread/INFO]: [BeastTokens] /Token command aliases [tokens, btoken, coins, bcoins, coin, bcoin, gem, gems, mobcoins] are registered.
[16:18:14] [Server thread/INFO]: [BeastTokens] /BeastToken command aliases [beasttokenadmin, beasttokensa, beasttokena, bta, tokenadmin, tokensadmin] are registered.
[16:18:14] [Server thread/INFO]: [BeastTokens] Version 3.10.1 : has been enabled!
[16:18:14] [Server thread/INFO]: [Skript] Enabling Skript v2.6
[16:18:14] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] A new version of Skript is available: 2.6.4 (you're currently running 2.6)
[16:18:14] [ForkJoinPool.commonPool-worker-1/INFO]: Download it at: <aqua><u><link:https://github.com/SkriptLang/Skript/releases/download/2.6.4/Skript-2.6.4.jar>https://github.com/SkriptLang/Skript/releases/download/2.6.4/Skript-2.6.4.jar
[16:18:18] [Server thread/INFO]: [Skript] Loaded 143127 aliases in 3649ms
[16:18:18] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[16:18:18] [Server thread/INFO]: [PyroFishingPro] Enabling PyroFishingPro v4.6.6
[16:18:29] [Server thread/INFO]: [PyroFishingPro] Successfully hooked into WorldGuard.
[16:18:29] [Server thread/INFO]: [PyroFishingPro] Successfully hooked into PlaceholderAPI.
[16:18:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: PyroFishingPro [4.6.6]
[16:18:29] [Server thread/INFO]: [PyroFishingPro] Loaded 124 Custom Fish successfully.
[16:18:29] [Server thread/INFO]: [PyroFishingPro] Loaded 1 fishing baits.
[16:18:29] [Server thread/INFO]: [SkQuery] Enabling SkQuery v4.1.5
[16:18:29] [Server thread/INFO]: [skQuery] Locating classes from SkQuery...
[16:18:29] [Server thread/INFO]: [skQuery] Beginning to process a total of 121 from SkQuery
[16:18:29] [Server thread/INFO]: [skQuery] Out of 121 classes, 121 classes were loaded from SkQuery
[16:18:29] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.29-SNAPSHOT (build 2490)
[16:18:29] [Server thread/WARN]: [NexEngine] Loaded class net.citizensnpcs.api.trait.TraitInfo from Citizens v2.0.29-SNAPSHOT (build 2490) which is not a depend or softdepend of this plugin.
[16:18:29] [Server thread/INFO]: [NexEngine] Successfully hooked with Citizens!
[16:18:29] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.24.0
[16:18:29] [Server thread/INFO]: [AlonsoLeaderboards] Enabling AlonsoLeaderboards v1.4-BETA
[16:18:29] [Server thread/INFO]: [AlonsoLeaderboards] Hex colors are available!
[16:18:29] [Server thread/INFO]:     _   _                  _                _         _                      _    
[16:18:29] [Server thread/INFO]:    /_\ | |___ _ _  ___ ___| |   ___ __ _ __| |___ _ _| |__  ___  __ _ _ _ __| |___
[16:18:29] [Server thread/INFO]:   / _ \| / _ \ ' \(_-</ _ \ |__/ -_) _` / _` / -_) '_| '_ \/ _ \/ _` | '_/ _` (_-<
[16:18:29] [Server thread/INFO]:  /_/ \_\_\___/_||_/__/\___/____\___\__,_\__,_\___|_| |_.__/\___/\__,_|_| \__,_/__/
[16:18:29] [Server thread/INFO]: 
[16:18:29] [Server thread/INFO]:    Running plugin AlonsoLeaderboards v1.4-BETA
[16:18:29] [Server thread/INFO]:    Server running Purpur version git-Purpur-1566 (MC: 1.18.1)
[16:18:29] [Server thread/INFO]:    (Implementing API version git-Purpur-1566 (MC: 1.18.1))
[16:18:29] [Server thread/INFO]:    (Developed by  AlonsoAliaga - Thanks for using my plugin ❤)
[16:18:29] [Server thread/INFO]:    (If you loved the plugin consider leaving a review and mentioning your server IP in it!
[16:18:29] [Server thread/INFO]: 
[16:18:29] [Server thread/INFO]: 
[16:18:29] [Server thread/INFO]: =====================================================================================
[16:18:29] [Server thread/INFO]: [AlonsoLeaderboards] You are using not using Spigot (probably CRAFTBUKKIT). Plugin might have
[16:18:29] [Server thread/INFO]: [AlonsoLeaderboards] errors and not work properly. Consider using SPIGOT!
[16:18:29] [Server thread/INFO]: =====================================================================================
[16:18:29] [Server thread/INFO]: 
[16:18:29] [Server thread/INFO]: [AlonsoLeaderboards] BungeeCord action bar available. Hooking..
[16:18:29] [Server thread/INFO]: [AlonsoLeaderboards] ProtocolLib found! Hooking..
[16:18:29] [Server thread/INFO]: [Auto-update] Configuration config.yml is up-to-date!
[16:18:29] [Server thread/INFO]: [AlonsoLeaderboards] PlaceholderAPI found! Hooking..
[16:18:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: alonsoleaderboards [1.4-BETA]
[16:18:29] [Server thread/INFO]: [AlonsoLeaderboards] Loading placed leaderboards..
[16:18:29] [Server thread/INFO]: [AlonsoLeaderboards] LeaderboardExpansion for 'fish-fish' successfully registered!
[16:18:29] [Server thread/INFO]: [AlonsoLeaderboards] LeaderboardExpansion for 'fish-level' successfully registered!
[16:18:29] [Server thread/INFO]: [AlonsoLeaderboards] LeaderboardExpansion for 'playtime-h' successfully registered!
[16:18:29] [Server thread/INFO]: [AlonsoLeaderboards] LeaderboardExpansion for 'token-top' successfully registered!
[16:18:29] [Server thread/INFO]: [AlonsoLeaderboards] LeaderboardExpansion for 'a-level' successfully registered!
[16:18:29] [Server thread/INFO]: [AlonsoLeaderboards] LeaderboardExpansion for 'fish-tour' successfully registered!
[16:18:29] [Server thread/INFO]: [AlonsoLeaderboards] LeaderboardExpansion for 'mn-kda' successfully registered!
[16:18:29] [Server thread/INFO]: [AlonsoLeaderboards] LeaderboardExpansion for 'token-balance' successfully registered!
[16:18:29] [Server thread/INFO]: [AlonsoLeaderboards] LeaderboardExpansion for 'mn-kills' successfully registered!
[16:18:29] [Server thread/INFO]: [AlonsoLeaderboards] LeaderboardExpansion for 'cmi-balance' successfully registered!
[16:18:29] [Server thread/INFO]: [AlonsoLeaderboards] LeaderboardExpansion for 'eco-balance' successfully registered!
[16:18:29] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.0.3.6
[16:18:29] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[16:18:29] [Server thread/INFO]: [ExcellentCrates] Successfully hooked with HolographicDisplays!
[16:18:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: excellentcrates [4.0.3.6]
[16:18:29] [Server thread/INFO]: [ExcellentCrates] Successfully hooked with PlaceholderAPI!
[16:18:29] [pool-90-thread-1/WARN]: [DiscordSRV] 

The current build of DiscordSRV is outdated by 313 commits! Get the latest build at your favorite distribution center.

Spigot: https://www.spigotmc.org/resources/discordsrv.18494/
Github: https://github.com/DiscordSRV/DiscordSRV/releases
Direct Download: https://get.discordsrv.com

[16:18:29] [Server thread/INFO]: [ExcellentCrates] Found 0 external module(s).
[16:18:30] [Server thread/INFO]: [ExcellentCrates] Loaded 5 animation configs.
[16:18:30] [Server thread/INFO]: [ExcellentCrates] Loaded 7 crate keys.
[16:18:30] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[16:18:30] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 144 ms!
[16:18:30] [Server thread/INFO]: [RePlant] Enabling RePlant v2.3.0
[16:18:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[16:18:30] [Server thread/INFO]: [RePlant] Using language 'en'
[16:18:30] [Server thread/INFO]: [RePlant] [ACF] Enabled Asynchronous Tab Completion Support!
[16:18:30] [Server thread/INFO]: [ChestShop] Enabling ChestShop v3.12 (build 307)
[16:18:30] [Server thread/INFO]: [ChestShop] Found locales ar, it, es, el, hu, fr, pl, cs, pt_br, ja, sv, da, es_mx, sr, tr, nl, zh_tw, af, ko, no, vi, ro, he, ru, ca, zh, de, fi, en, uk
[16:18:30] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[16:18:30] [Server thread/INFO]: [ChestShop] Using CMIEconomy as the Economy provider now.
[16:18:30] [Server thread/INFO]: [ChestShop] Vault loaded!
[16:18:30] [Server thread/INFO]: [ChestShop] Using Paper's BlockDestroyEvent instead of the BlockPhysicsEvent!
[16:18:30] [Server thread/INFO]: [ChestShop] Auto-updater is disabled. If you want the plugin to automatically download new releases then set 'TURN_OFF_UPDATES' to 'false' in your config.yml!
[16:18:30] [Server thread/INFO]: [AdvancedRegionMarket] Enabling AdvancedRegionMarket v3.3.7
[16:18:30] [Server thread/INFO]: [AdvancedRegionMarket] Using WorldGuard7 adapter
[16:18:30] [Server thread/INFO]: [AdvancedRegionMarket] Using WorldEdit7 adapter
[16:18:30] [Server thread/INFO]: [AdvancedRegionMarket] Using MC 1.14 sign adapter
[16:18:30] [Server thread/INFO]: [AdvancedRegionMarket] Regions loaded!
[16:18:30] [Server thread/INFO]: [AdvancedRegionMarket] Programmed by Alex9849
[16:18:30] [Server thread/INFO]: [AdvancedRegionMarket] I'm always searching for better translations of AdvancedRegionMarket. If you've translated the plugin it would be very nice if you would send me your translation via spigot private message! :)
[16:18:30] [Server thread/INFO]: [AlonsoLevels] Enabling AlonsoLevels v2.2.3-BETA
[16:18:30] [Server thread/INFO]: [AlonsoLevels] Max health Attribute check found. Using it..
[16:18:30] [Server thread/INFO]: [AlonsoLevels] Inventory title with support for more than 32 characters. Skipping..
[16:18:30] [Server thread/INFO]: [AlonsoLevels] Hex colors are available! Ready for RGB..
[16:18:30] [Server thread/INFO]: [AlonsoLevels] Old constructor for HoverEvent found! Using it..
[16:18:30] [Server thread/INFO]: [AlonsoLevels] New sendTitle method found! Using it..
[16:18:30] [Server thread/INFO]: [AlonsoLevels] New setUnbreakable method found! Using it..
[16:18:30] [Server thread/INFO]: [AlonsoLevels] New isUnbreakable method found! Using it..
[16:18:30] [Server thread/INFO]:     _   _                  _                _    
[16:18:30] [Server thread/INFO]:    /_\ | |___ _ _  ___ ___| |   _____ _____| |___
[16:18:30] [Server thread/INFO]:   / _ \| / _ \ ' \(_-</ _ \ |__/ -_) V / -_) (_-<
[16:18:30] [Server thread/INFO]:  /_/ \_\_\___/_||_/__/\___/____\___|\_/\___|_/__/
[16:18:30] [Server thread/INFO]: 
[16:18:30] [Server thread/INFO]:    Running plugin AlonsoLevels v2.2.3-BETA (v1_18)
[16:18:30] [Server thread/INFO]:    Server running Purpur version git-Purpur-1566 (MC: 1.18.1)
[16:18:30] [Server thread/INFO]:    (Implementing API version git-Purpur-1566 (MC: 1.18.1))
[16:18:30] [Server thread/INFO]:    (Developed by  AlonsoAliaga - Thanks for using my plugin ❤)
[16:18:30] [Server thread/INFO]:    Join our official discord server for support in alonsoaliaga.com/discord
[16:18:30] [Server thread/INFO]:    (If you loved the plugin consider leaving a review and mentioning your server IP in it!
[16:18:30] [Server thread/INFO]: 
[16:18:30] [Server thread/INFO]: ==============================================================================================
[16:18:30] [Server thread/INFO]: [AlonsoLevels] This is not a error! This is just a warning to keep in mind if you have issues!
[16:18:30] [Server thread/INFO]: [AlonsoLevels] You are using a Paper fork (Purpur). This plugin was made for Spigot
[16:18:30] [Server thread/INFO]: [AlonsoLevels] but was (in most cases) tested with different builds of Paper and Purpur.
[16:18:30] [Server thread/INFO]: [AlonsoLevels] Spigot and forks API are really similar and should be compatible, however there are
[16:18:30] [Server thread/INFO]: [AlonsoLevels] some cases in which they aren't compatible. If you have issues report them to the
[16:18:30] [Server thread/INFO]: [AlonsoLevels] developer instead of reviewing 1 star. Thanks in advanced!
[16:18:30] [Server thread/INFO]: [AlonsoLevels] Join us in our official support server on alonsoaliaga.com/discord
[16:18:30] [Server thread/INFO]: ==============================================================================================
[16:18:30] [Server thread/INFO]: 
[16:18:30] [Server thread/INFO]: [AlonsoLevels] BungeeCord action bar available. Hooking..
[16:18:30] [Server thread/INFO]: [AlonsoLevels] ProtocolLib found! Checking..
[16:18:30] [Server thread/INFO]: [Auto-update] Configuration is up-to-date!
[16:18:30] [Server thread/INFO]: [AlonsoLevels] [HikariCP] Using com.mysql.cj.jdbc.MysqlDataSource for source class name..
[16:18:30] [Server thread/INFO]: [com.alonsoaliaga.alonsolevels.libraries.hikari.HikariDataSource] HikariPool-1 - Starting...
[16:18:30] [Server thread/INFO]: [com.alonsoaliaga.alonsolevels.libraries.hikari.HikariDataSource] HikariPool-1 - Start completed.
[16:18:30] [Server thread/INFO]: [AlonsoLevels] [MySQL] Attempting to create 'alonsolevels' table..
[16:18:30] [Server thread/INFO]: [AlonsoLevels] [MySQL] Table 'alonsolevels' has been created if didn't exist.
[16:18:30] [Server thread/INFO]: [AlonsoLevels] GameProfile field is available for heads. Hooking..
[16:18:30] [Server thread/INFO]: [AlonsoLevels] Server name has been selected as 'Survival'
[16:18:30] [Server thread/INFO]: [AlonsoLevels] Config files are (re)loading.. Timestamp: Negative | Negative
[16:18:30] [Server thread/INFO]: [AlonsoLevels] Formula for experience is not enabled. Attempting to load data from levels.yml file..
[16:18:30] [Server thread/INFO]: [AlonsoLevels] '1309' value is: -1
[16:18:30] [Server thread/INFO]: [AlonsoLevels] Successfully loaded 100 levels!
[16:18:30] [Server thread/INFO]: [AlonsoLevels] Loaded 100 normal rewards in 4 pages.
[16:18:30] [Server thread/INFO]: [AlonsoLevels] Veteran section is not enabled in configuration. Skipping veteran rewards..
[16:18:30] [Server thread/INFO]: [AlonsoLevels] Section for 'Normal multipliers' called 'Normal' in multipliers.yml is invalid. Skipping..
[16:18:30] [Server thread/INFO]: [AlonsoLevels] Loaded 0 normal multipliers.
[16:18:30] [Server thread/INFO]: [AlonsoLevels] Veteran section is not enabled in configuration. Skipping veteran multipliers..
[16:18:30] [Server thread/INFO]: [AlonsoLevels] Leaderboard is enabled! Loading..
[16:18:30] [Server thread/INFO]: [AlonsoLevels] PlaceholderAPI found! Hooking..
[16:18:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: alonsolevels [2.2.3-BETA]
[16:18:30] [Server thread/INFO]: [AlonsoLevels] VaultMultiplier wasn't found! Skipping..
[16:18:30] [Server thread/INFO]: [OreAnnouncer] Enabling OreAnnouncer v2.8.3
[16:18:30] [Server thread/INFO]: [OreAnnouncer] Initializing OreAnnouncer v2.8.3
[16:18:31] [Server thread/ERROR]: [OreAnnouncer] [Server thread] INFO com.alessiodp.oreannouncer.libs.hikari.HikariDataSource - HikariPool-1 - Starting...
[16:18:31] [Server thread/ERROR]: [OreAnnouncer] [Server thread] INFO com.alessiodp.oreannouncer.libs.hikari.HikariDataSource - HikariPool-1 - Start completed.
[16:18:31] [Server thread/INFO]: [OreAnnouncer] Hooked into DiscordSRV
[16:18:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: oreannouncer [2.8.3]
[16:18:31] [Server thread/INFO]: [OreAnnouncer] Hooked into PlaceholderAPI
[16:18:31] [Server thread/INFO]: [OreAnnouncer] OreAnnouncer v2.8.3 enabled
[16:18:31] [Server thread/INFO]: [mnEventTracker] Enabling mnEventTracker v1.1
[16:18:31] [Server thread/INFO]:  - Loading config.yml... Successful!
[16:18:31] [Server thread/INFO]: [Lands] Enabling Lands v5.27.4
[16:18:31] [Server thread/INFO]: [Lands]  _                        _      
[16:18:31] [Server thread/INFO]: [Lands] | |                      | |     
[16:18:31] [Server thread/INFO]: [Lands] | |      __ _  _ __    __| | ___ 
[16:18:31] [Server thread/INFO]: [Lands] | |     / _` || '_ \  / _` |/ __|
[16:18:31] [Server thread/INFO]: [Lands] | |____| (_| || | | || (_| |\__ \
[16:18:31] [Server thread/INFO]: [Lands] \_____/ \__,_||_| |_| \__,_||___/
[16:18:31] [Server thread/INFO]: [Lands] Version: 5.27.4 Previous: 5.27.4
[16:18:31] [Server thread/INFO]: [Lands] Server: 1.18.x running Paper
[16:18:31] [Server thread/INFO]: [Lands] Licensed to: 778052
[16:18:31] [Server thread/INFO]: [Lands] Experiencing issues or having questions? Join our Discord!
[16:18:31] [Server thread/INFO]: [Lands] Discord: https://discord.gg/B4MAJVk
[16:18:31] [Server thread/INFO]: [Lands] Wiki: https://github.com/Angeschossen/Lands/wiki
[16:18:31] [Server thread/INFO]: [Lands]  
[16:18:31] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated HolographicDisplays as hologram manager.
[16:18:31] [Server thread/INFO]: [Lands] Connecting to MySQL database...
[16:18:31] [Server thread/INFO]: [Lands] Setting up tables...
[16:18:31] [Server thread/INFO]: [Lands] Your SQL DBMS version: 5.5.5-10.4.24-MariaDB-1:10.4.24+maria~bionic-log (MySQL) Wiki: https://github.com/Angeschossen/Lands/wiki/Database
[16:18:31] [Server thread/INFO]: [Lands] Successfully connected to SQL database.
[16:18:31] [Server thread/INFO]: [Lands] Performing initial data load.
[16:18:31] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:MIDNIGHT - MINECRAFT(706834768914022472)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「👋」fivem-info(751171873517338625)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「🚧」minecraft-info(751171946745561160)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「🌀」vip(706938640688742440)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「💬」give-log(797824377717653566)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「💬」admin-log(890260964346310707)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「💬」ban-log(751492044798558218)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「💬」old-achat(706917534175330332)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「💬」surv-chat(947988906459152406)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「💬」ore-announcer(947992534280466442)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「💬」surv-spam(947992941140512778)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「🔰」info(772867499217518692)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「🔰」příkazy(773708868433346580)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「🔰」časy-banů-mutů(783689016125030400)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「💬」ateam-chat(944693983605575720)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:helper-nabory(961587404588855336)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:pikošky-z-chatu(965697473224011826)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「📰」omluvenky(865264169280471050)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「💬」admin-info(806225388907921418)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「🔔」updates(887573510774476852)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「🔧」veci-pro-techniky(806541610388029450)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「💬」tiktok(928759046461341746)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:blacklist(1017380492133281802)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「💬」dev-chat(803188272054009876)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「🤖」bot(709788769968062494)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「🔰」dev-log(814927761793351730)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「💬」backup(850034201138430052)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:permise-surv(859939670477897749)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:survival-list(784382213662703626)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:survival-plugins(848925862199689286)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:survival-vip(860800280563154954)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:survival-todo(874979910186328084)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「🎫」založit-ticket(707240041088548884)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:web-ticket(914115932761239562)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「👋」vítej(706834769643569164)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「📢」info(706969779314884699)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「💻」change-log(706919822847508500)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「🔔」oznámení(706917374581800960)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「💯」top-voters(992365757277143051)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「📉」status(763857218398978078)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「🎆」eventy(742005410688401458)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「📋」pravidla-minecraft(706957090102575235)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「📋」pravidla-discord(810266620487270430)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「✅」vote(706981337050906704)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「💬」hlavní-chat(706839775344066575)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「❌」nahlašování-chyb(706918000334471289)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「👍」pochvala-hráčů(710225206399991849)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「👎」nahlašování-hráčů(747102573189660808)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「🔐」žádost-o-unban(912791187293888573)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「✍」unban-formulář(912784307851001866)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「🔐」vyjádření-k-unbanu(801759055897952267)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「🤔」dotazy-o-serveru(794302777295634454)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「💯」rozdělení-ateamu(796761709871628288)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「✍」žádost-do-ateamu(800420738124480512)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「📞」pozvánky-na-pohovor(710221787249508409)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「👍」pochvala-ateamu(758653986348990494)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「👎」stížnosti-na-ateam(710221731817586768)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「❗」bot-commands(706971775405391963)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「📲」screenshoty(706953603364945941)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「🧆」chálky(843840156963438613)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「🔥」pc-setups(844681107916193825)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「😂」meme(926902428685705236)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「🎥」tiktoky(904842096077332510)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「🛒」aukční-síň(882001450568388638)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「📉」prodám(758655840285622282)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「📈」koupím(758655780630036530)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「💡」nápady(710048513236402247)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:「📋」hlasování(710048666362183710)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:adminchat(1043568522363678750)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-3825(1043971527609176144)
[16:18:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console channel ID was invalid, not forwarding console output
[16:18:32] [Server thread/INFO]: [Lands] There are currently 1545 created land(s).
[16:18:32] [Server thread/INFO]: [Lands] Initial data load took 979 ms.
[16:18:32] [Server thread/INFO]: [PvPManager] Enabling PvPManager v3.16
[16:18:32] [Server thread/INFO]: [PvPManager] Loaded 1 players from users file
[16:18:32] [Server thread/INFO]: [PvPManager] WorldGuard Found! Enabling Support For WorldGuard Regions
[16:18:32] [Server thread/INFO]: [PvPManager] Vault Found! Using it for currency related features
[16:18:32] [Server thread/WARN]: [PvPManager] It is recommended you disable combat tagging(set to 0s) in Lands config as it can cause conflicts
[16:18:32] [Server thread/INFO]: [PvPManager] Lands Found! Hooked successfully
[16:18:32] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: PvPManager
[16:18:32] [Server thread/INFO]: [PvPManager] PlaceholderAPI Found! Hooked successfully
[16:18:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pvpmanager [3.16]
[16:18:32] [Server thread/INFO]: [PvPManager] LibsDisguises Found! Using it to disable disguises
[16:18:32] [Server thread/INFO]: [PvPManager] TAB Found! Using TAB to change prefixes instead of scoreboards
[16:18:32] [Server thread/INFO]: [PvPManager] NPCs are supported in this version! (Version: v1_18_R1)
[16:18:32] [Server thread/INFO]: [PvPManager] Auto Respawn is supported in this version! Using 1.15+ gamerules
[16:18:32] [Server thread/INFO]: [PvPManager] PvPManager Enabled (56 ms)
[16:18:32] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v6.18.1
[16:18:32] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[16:18:33] [Server thread/INFO]: [PlayerWarps] Found 19 config files to load!
[16:18:33] [Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[16:18:33] [Server thread/INFO]: [PlayerWarps] Economy plugin found! (CMIEconomy)
[16:18:33] [Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[16:18:33] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[16:18:33] [Server thread/INFO]: [PlayerWarps] MySQL database is enabling...
[16:18:33] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[16:18:33] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[16:18:33] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[16:18:33] [DiscordSRV - Initialization/INFO]: [DiscordSRV] No chat plugin hooks enabled
[16:18:33] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[16:18:33] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v2.58.0
[16:18:33] [Server thread/INFO]:  
[16:18:33] [Server thread/INFO]: =============================
[16:18:33] [Server thread/INFO]: AuctionHouse 2.58.0 by Kiran Hart
[16:18:33] [Server thread/INFO]: Action: Enabling...
[16:18:33] [Server thread/INFO]: [TweetyCore] Hooked into AuctionHouse.
[16:18:34] [Server thread/INFO]: connecting to 116.202.225.174 : 3306
[16:18:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: auctionhouse [1.0.0]
[16:18:34] [Server thread/INFO]: =============================
[16:18:34] [Server thread/INFO]:  
[16:18:34] [Server thread/INFO]: [CWR] Enabling CyberWorldReset v1.2.0
[16:18:34] [Server thread/INFO]: [CWR] ―――――――――――――――――――――――――――――――――――――――――――――――
[16:18:34] [Server thread/INFO]: [CWR] ╭━━━╮╱╱╱╭╮╱╱╱╱╱╱╭╮╭╮╭╮╱╱╱╱╭╮╱╱╭┳━━━╮╱╱╱╱╱╱╱╱╭╮
[16:18:34] [Server thread/INFO]: [CWR] ┃╭━╮┃╱╱╱┃┃╱╱╱╱╱╱┃┃┃┃┃┃╱╱╱╱┃┃╱╱┃┃╭━╮┃╱╱╱╱╱╱╱╭╯╰╮
[16:18:34] [Server thread/INFO]: [CWR] ┃┃╱╰╋╮╱╭┫╰━┳━━┳━┫┃┃┃┃┣━━┳━┫┃╭━╯┃╰━╯┣━━┳━━┳━┻╮╭╯
[16:18:34] [Server thread/INFO]: [CWR] ┃┃╱╭┫┃╱┃┃╭╮┃┃━┫╭┫╰╯╰╯┃╭╮┃╭┫┃┃╭╮┃╭╮╭┫┃━┫━━┫┃━┫┃
[16:18:34] [Server thread/INFO]: [CWR] ┃╰━╯┃╰━╯┃╰╯┃┃━┫┃╰╮╭╮╭┫╰╯┃┃┃╰┫╰╯┃┃┃╰┫┃━╋━━┃┃━┫╰╮
[16:18:34] [Server thread/INFO]: [CWR] ╰━━━┻━╮╭┻━━┻━━┻╯╱╰╯╰╯╰━━┻╯╰━┻━━┻╯╰━┻━━┻━━┻━━┻━╯
[16:18:34] [Server thread/INFO]: [CWR] ╱╱╱╱╭━╯┃  Authors: Kihsomray, CroaBeast
[16:18:34] [Server thread/INFO]: [CWR] ╱╱╱╱╰━━╯  Version: 1.2.0 [Premium]
[16:18:34] [Server thread/INFO]: [CWR] ―――――――――――――――――――――――――――――――――――――――――――――――
[16:18:34] [Server thread/INFO]: [CWR] 
[16:18:34] [Server thread/INFO]: [CWR] Loading YAML files...
[16:18:34] [Server thread/INFO]: [CWR] Loaded file config.yml.
[16:18:34] [Server thread/INFO]: [CWR] Loaded file lang.yml.
[16:18:34] [Server thread/INFO]: [CWR] Loaded file worlds.yml.
[16:18:34] [Server thread/INFO]: [CWR] Loaded file worlds-old.yml.
[16:18:34] [Server thread/INFO]: [CWR] Loaded file plugin-data.yml.
[16:18:34] [Server thread/INFO]: [CWR] Loaded 5 files in 7ms.
[16:18:34] [Server thread/INFO]: [CWR] 
[16:18:34] [Server thread/INFO]: [CWR] Loading world configurations...
[16:18:34] [Server thread/INFO]: [CWR] Loaded world 'world_nether'.
[16:18:34] [Server thread/INFO]: [CWR] Loaded world 'world_the_end'.
[16:18:34] [Server thread/INFO]: [CWR] Loaded world 'resource_world'.
[16:18:34] [Server thread/INFO]: [CWR] Loaded 3 worlds in 11ms.
[16:18:34] [Server thread/INFO]: [CWR] 
[16:18:34] [Server thread/INFO]: [CWR] Loading events...
[16:18:34] [Server thread/INFO]: [CWR] Loaded events in 5ms.
[16:18:34] [Server thread/INFO]: [CWR] 
[16:18:34] [Server thread/INFO]: [CWR] CWR recognizes Multiverse is ENABLED.
[16:18:34] [Server thread/INFO]: [CWR] 
[16:18:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cwr [1.2.0]
[16:18:34] [Server thread/INFO]: [CWR] Loaded CWR v1.2.0 in 85ms.
[16:18:34] [Server thread/INFO]: [CWR] ―――――――――――――――――――――――――――――――――――――――――――――――
[16:18:34] [Server thread/INFO]: [bMysteryBlocks] Enabling bMysteryBlocks v2.0.3
[16:18:34] [Server thread/INFO]:   _     __  __           _                  ____  _            _        
[16:18:34] [Server thread/INFO]:  | |   |  \/  |         | |                |  _ \| |          | |       
[16:18:34] [Server thread/INFO]:  | |__ | \  / |_   _ ___| |_ ___ _ __ _   _| |_) | | ___   ___| | _____ 
[16:18:34] [Server thread/INFO]:  | '_ \| |\/| | | | / __| __/ _ \ '__| | | |  _ <| |/ _ \ / __| |/ / __|
[16:18:34] [Server thread/INFO]:  | |_) | |  | | |_| \__ \ ||  __/ |  | |_| | |_) | | (_) | (__|   <\__ \
[16:18:34] [Server thread/INFO]:  |_.__/|_|  |_|\__, |___/\__\___|_|   \__, |____/|_|\___/ \___|_|\_\___/
[16:18:34] [Server thread/INFO]:                 __/ |                  __/ |                            
[16:18:34] [Server thread/INFO]:                |___/                  |___/
[16:18:34] [Server thread/INFO]: Loading..
[16:18:34] [Server thread/INFO]:  - Loading data.yml... Successful!
[16:18:34] [Server thread/INFO]:  - Loading config.yml... Successful!
[16:18:34] [Server thread/INFO]:  - Loading lang.yml... Successful!
[16:18:34] [Server thread/INFO]:  - Connecting sql database data.db... Successful!
[16:18:34] [Server thread/INFO]:  - Hologram provider selected: CMI
[16:18:34] [Server thread/INFO]:  - Loading blocks
[16:18:34] [Server thread/INFO]:    - Loading block gold... Successful
[16:18:34] [Server thread/INFO]:    - Loading block diamond... Successful
[16:18:34] [Server thread/INFO]:    - Loading block core... Successful
[16:18:34] [Server thread/INFO]: [bMysteryBlocks] Enabled plugin with version 2.0.3 by Firestone82
[16:18:34] [Server thread/INFO]: [AdvancedEnchantments] Enabling AdvancedEnchantments v8.9.2
[16:18:34] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuard.
[16:18:34] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuardExtraFlags.
[16:18:34] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into PlaceholderAPI.
[16:18:34] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into ProtocolLib.
[16:18:34] [Server thread/INFO]: [AdvancedEnchantments] Loaded 7 armor sets.
[16:18:34] [Server thread/INFO]: [AdvancedEnchantments] Loaded 5 weapons.
[16:18:34] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into economy plugin (Vault)
[16:18:34] [Server thread/INFO]: [Hyperstones] Enabling Hyperstones v1.5.5
[16:18:34] [Server thread/INFO]: [HyperStones] Loading lang.yml
[16:18:34] [Server thread/INFO]: [HyperStones] Loading blacklist.yml
[16:18:34] [Server thread/INFO]: [HyperStones] Cleared cache from old data.
[16:18:34] [Server thread/INFO]: [HyperStones] Initializing chances
[16:18:34] [Server thread/INFO]: [HyperStones] Initializing item lore info
[16:18:34] [Server thread/INFO]: [HyperStones] Initializing disabled items
[16:18:34] [Server thread/INFO]: [HyperStones] Failed to load EXAMPLE_ITEM: No enum constant org.bukkit.Material.EXAMPLE_ITEM
[16:18:34] [Server thread/INFO]: [HyperStones] Initializing enabled items
[16:18:34] [Server thread/INFO]: [HyperStones] ------Armors------
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled CARVED_PUMPKIN
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled DIAMOND_HELMET
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled DIAMOND_CHESTPLATE
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled DIAMOND_LEGGINGS
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled DIAMOND_BOOTS
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled IRON_HELMET
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled IRON_CHESTPLATE
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled IRON_LEGGINGS
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled IRON_BOOTS
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled LEATHER_HELMET
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled LEATHER_CHESTPLATE
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled LEATHER_LEGGINGS
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled LEATHER_BOOTS
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled CHAINMAIL_HELMET
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled CHAINMAIL_CHESTPLATE
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled CHAINMAIL_LEGGINGS
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled CHAINMAIL_BOOTS
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled GOLDEN_HELMET
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled GOLDEN_CHESTPLATE
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled GOLDEN_LEGGINGS
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled GOLDEN_BOOTS
[16:18:34] [Server thread/INFO]: [HyperStones] ------Weapons------
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled BOW
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled DIAMOND_SWORD
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled IRON_SWORD
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled GOLDEN_SWORD
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled STONE_SWORD
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled WOODEN_SWORD
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled DIAMOND_AXE
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled IRON_AXE
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled GOLDEN_AXE
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled STONE_AXE
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled WOODEN_AXE
[16:18:34] [Server thread/INFO]: [HyperStones] ------Tools------
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled DIAMOND_HOE
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled IRON_HOE
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled GOLDEN_HOE
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled STONE_HOE
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled WOODEN_HOE
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled DIAMOND_SHOVEL
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled IRON_SHOVEL
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled GOLDEN_SHOVEL
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled STONE_SHOVEL
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled WOODEN_SHOVEL
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled DIAMOND_PICKAXE
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled IRON_PICKAXE
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled GOLDEN_PICKAXE
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled STONE_PICKAXE
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled WOODEN_PICKAXE
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled TRIDENT
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled CROSSBOW
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled NETHERITE_SWORD
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled NETHERITE_AXE
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled NETHERITE_HOE
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled NETHERITE_SHOVEL
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled NETHERITE_PICKAXE
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled NETHERITE_HELMET
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled NETHERITE_CHESTPLATE
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled NETHERITE_LEGGINGS
[16:18:34] [Server thread/INFO]: [HyperStones] Enabled NETHERITE_BOOTS
[16:18:34] [Server thread/INFO]: [HyperStones] Loading Mobs drop chances
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded DEFAULT
[16:18:34] [Server thread/INFO]: [HyperStones] Loading Blocks drop chances
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded DEFAULT
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded GRASS_BLOCK
[16:18:34] [Server thread/INFO]: [HyperStones] Loading per-level-chances
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 1
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 2
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 3
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 4
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 5
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 6
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 7
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 8
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 9
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 10
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 11
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 12
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 13
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 14
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 15
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 16
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 17
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 18
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 19
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 20
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 21
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 22
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 23
[16:18:34] [Server thread/INFO]: [HyperStones] Loaded custom chances for level 24
[16:18:34] [Server thread/INFO]: [HyperStones] Initializing particle levels
[16:18:34] [ForkJoinPool.commonPool-worker-3/INFO]: [HyperStones] There is a new update of HyperStones available (1.5.8)
[16:18:34] [Server thread/INFO]: [HyperStones] Using standard features. (Version found: v1_18_R1)
[16:18:34] [Server thread/INFO]: [HyperStones] Vault plugin hooked, economy features are now enabled.
[16:18:34] [Server thread/INFO]: [HyperStones] Plugin loaded in 45ms.
[16:18:34] [Server thread/INFO]: [CMILib] Enabling CMILib v1.1.2.3
[16:18:35] [Server thread/INFO]: Server version: v1_18_R1 - 1.18.1 - paper
[16:18:35] [Server thread/INFO]: CMI hooked.
[16:18:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [1.1.2.3]
[16:18:35] [Server thread/INFO]: PlaceholderAPI hooked.
[16:18:35] [Server thread/INFO]: Updated (EN) language file. Took 27ms
[16:18:35] [Server thread/INFO]: [Jobs] Enabling Jobs v5.0.1.0
[16:18:35] [Server thread/INFO]: ------------- Jobs -------------
[16:18:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jobsr [5.0.1.0]
[16:18:35] [Server thread/INFO]: PlaceholderAPI hooked.
[16:18:35] [Server thread/INFO]: Connected to database (MySQL)
[16:18:37] [Server thread/INFO]: Loaded 8 titles
[16:18:37] [Server thread/INFO]: Loaded 86 protected blocks timers
[16:18:37] [Server thread/INFO]: Loaded 1228 custom item names
[16:18:37] [Server thread/INFO]: Loaded 75 custom entity names
[16:18:37] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[16:18:37] [Server thread/INFO]: Loaded 38 custom enchant names
[16:18:37] [Server thread/INFO]: Loaded 16 custom color names
[16:18:37] [Server thread/INFO]: Loaded 4 shop items
[16:18:37] [Server thread/INFO]: Loaded 12 quests for Fisherman
[16:18:37] [Server thread/INFO]: Loaded 20 quests for Farmer
[16:18:37] [Server thread/INFO]: Loaded 21 quests for Miner
[16:18:37] [Server thread/INFO]: Loaded 26 quests for Hunter
[16:18:37] [Server thread/INFO]: Loaded 15 quests for Digger
[16:18:37] [Server thread/INFO]: Loaded 20 quests for Woodcutter
[16:18:37] [Server thread/INFO]: Loaded 6 jobs
[16:18:37] [Server thread/INFO]: Loaded 0 boosted items
[16:18:38] [Server thread/INFO]: Loaded 3573 furnace for reassigning.
[16:18:38] [Server thread/INFO]: Loaded 364 brewing for reassigning.
[16:18:38] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[16:18:38] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[16:18:38] [Server thread/INFO]: Preloaded 5533 players data in 0.05
[16:18:38] [Server thread/INFO]: [Jobs] WorldGuard detected.
[16:18:39] [Server thread/INFO]: [Jobs] Loading (100001) BP
[16:18:39] [Server thread/INFO]: [Jobs] Loading (200002) BP
[16:18:40] [Server thread/INFO]: [Jobs] Loading (300003) BP
[16:18:40] [Server thread/INFO]: [Jobs] Loading (400004) BP
[16:18:40] [Server thread/INFO]: [Jobs] Loading (500005) BP
[16:18:40] [Server thread/INFO]: [Jobs] Loading (600006) BP
[16:18:40] [Server thread/INFO]: [Jobs] Loading (700007) BP
[16:18:40] [Server thread/INFO]: [Jobs] Loading (800008) BP
[16:18:40] [Server thread/INFO]: [Jobs] Loading (900009) BP
[16:18:41] [Server thread/INFO]: [Jobs] Loading (1000010) BP
[16:18:41] [Server thread/INFO]: [Jobs] Loading (1100011) BP
[16:18:41] [Server thread/INFO]: [Jobs] Loading (1200012) BP
[16:18:41] [Server thread/INFO]: [Jobs] Loaded 1223465 block protection entries. 2946ms
[16:18:41] [Server thread/INFO]: Plugin has been enabled successfully.
[16:18:41] [Server thread/INFO]: ------------------------------------
[16:18:41] [Server thread/INFO]: [Plan] Enabling Plan v5.4 build 1583
[16:18:41] [Server thread/INFO]: [Plan] 
[16:18:41] [Server thread/INFO]: [Plan]            ██▌
[16:18:41] [Server thread/INFO]: [Plan]      ██▌   ██▌
[16:18:41] [Server thread/INFO]: [Plan]   ██▌██▌██▌██▌  Player Analytics
[16:18:41] [Server thread/INFO]: [Plan]   ██▌██▌██▌██▌  v5.4 build 1583
[16:18:41] [Server thread/INFO]: [Plan] 
[16:18:41] [Server thread/INFO]: [Plan] Locale: 'English' by AuroraLS3
[16:18:41] [Server thread/INFO]: [Plan] Downloading MySQL Driver, this may take a while...
[16:18:41] [Server thread/WARN]: [Plan] Loaded class com.alessiodp.oreannouncer.libs.mysql.cj.jdbc.Driver from OreAnnouncer v2.8.3 which is not a depend or softdepend of this plugin.
[16:18:41] [Server thread/INFO]: [Plan] Database: Making sure schema is up to date..
[16:18:41] [Server thread/INFO]: [Plan] Database: Ready for operation.
[16:18:41] [Server thread/INFO]: [Plan] MySQL-database connection established.
[16:18:41] [Server thread/INFO]: [Plan] WebServer was not initialized. (WebServer.DisableWebServer: true)
[16:18:41] [Server thread/INFO]: [Plan] Loading server identifying information
[16:18:43] [Plan Non critical-pool-3/INFO]: [Plan] Proxy server detected in the database - Proxy Webserver address is 'http://116.202.225.161:30471'.
[16:18:43] [Server thread/INFO]: [Plan] Registered extension: DiscordSRV
[16:18:43] [Server thread/INFO]: [DiscordSRV] API listener com.djrapitops.extension.DiscordSRVListener subscribed (2 methods)
[16:18:43] [Server thread/INFO]: [Plan] Registered extension: Jobs
[16:18:43] [Server thread/WARN]: [Plan] Loaded class me.angeschossen.lands.api.integration.LandsIntegration from Lands v5.27.4 which is not a depend or softdepend of this plugin.
[16:18:43] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: Plan
[16:18:43] [Server thread/INFO]: [Plan] Registered extension: Lands
[16:18:43] [Server thread/INFO]: [Plan] Registered extension: Litebans
[16:18:43] [Server thread/INFO]: [Plan] Registered extension: LuckPerms
[16:18:43] [Server thread/INFO]: [Plan] Registered extension: nuVotifier
[16:18:43] [Server thread/INFO]: [Plan] Registered extension: PlaceholderAPI
[16:18:43] [Server thread/INFO]: [Plan] Registered extension: SuperbVote
[16:18:43] [Server thread/INFO]: [Plan] Registered extension: Economy (Vault)
[16:18:43] [Server thread/INFO]: [Plan] Registered extension: Permission Groups (Vault)
[16:18:43] [Server thread/INFO]: [Plan] Registered extension: ViaVersion
[16:18:43] [Server thread/INFO]: [Plan] Player Analytics Enabled.
[16:18:43] [Server thread/INFO]: [CMI] Enabling CMI v9.1.0.6
[16:18:43] [Server thread/INFO]: ┏━━━┓ ┏━┓┏━┓ ┏━━┓
[16:18:43] [Server thread/INFO]: ┃┏━┓┃ ┃ ┗┛ ┃ ┗┫┣┛
[16:18:43] [Server thread/INFO]: ┃┃ ┗┛ ┃┏┓┏┓┃  ┃┃ 
[16:18:43] [Server thread/INFO]: ┃┃ ┏┓ ┃┃┃┃┃┃  ┃┃ 
[16:18:43] [Server thread/INFO]: ┃┗━┛┃ ┃┃┃┃┃┃ ┏┫┣┓
[16:18:43] [Server thread/INFO]: ┗━━━┛ ┗┛┗┛┗┛ ┗━━┛
[16:18:43] [Server thread/INFO]: _______________________________________________________
[16:18:43] [Server thread/INFO]:   Integrating PaperSpigot async methods
[16:18:43] [Server thread/INFO]:   Citizens found.
[16:18:43] [Server thread/INFO]:   52 Enabled and 4 Disabled modules
[16:18:43] [Server thread/INFO]:   Votifier found. Enabling vote listeners
[16:18:43] [Server thread/INFO]:   Loaded (5) portals into memory. Took 10ms
[16:18:43] [Server thread/INFO]:   Permission plugin: LuckPerms5.4.9
[16:18:43] [Server thread/INFO]:   Initialized Cipher256 AES
[16:18:43] [Server thread/INFO]:   Loaded (59) regular alias into memory. Took 23ms
[16:18:43] [Server thread/INFO]:   Loaded (5) custom text's into memory. Took 1ms
[16:18:43] [Server thread/INFO]:   Detected Java17
[16:18:43] [Server thread/WARN]: [CMI] Loaded class com.alessiodp.oreannouncer.libs.mysql.cj.jdbc.Driver from OreAnnouncer v2.8.3 which is not a depend or softdepend of this plugin.
[16:18:43] [Server thread/INFO]:   5.5.5-10.4.24-MariaDB-1:10.4.24+maria~bionic-log data base type detected
[16:18:44] [Server thread/INFO]:   Started MySQL data base. Took 741ms
[16:18:44] [Server thread/INFO]:   Vault was found - Enabling capabilities. Economy: CMIEconomy
[16:18:44] [Server thread/INFO]:   Loaded (48) holograms into memory. Took 25ms
[16:18:44] [Server thread/INFO]:   Loaded (5) warning categories into memory. Took 1ms
[16:18:44] [Server thread/INFO]:   Loaded (3) warning commands into memory. Took 0ms
[16:18:44] [Server thread/INFO]:   Loaded (134) custom mob heads into memory. Took 12ms
[16:18:44] [Server thread/INFO]:   Loaded (0) cooldowns into memory. Took 16ms
[16:18:44] [Server thread/INFO]:   Loaded (1) jails into memory. Took 1ms
[16:18:44] [Server thread/INFO]:   Enabling BungeeCord Support
[16:18:44] [Server thread/INFO]:   Initializing BungeeCord
[16:18:44] [Server thread/INFO]:   Loaded (6) kits into memory. Took 10ms
[16:18:44] [Server thread/INFO]:   Loaded (7) ranks into memory. Took 9ms
[16:18:44] [Server thread/INFO]:   Loaded (1) playtime rewards into memory. Took 0ms
[16:18:45] [Server thread/INFO]:   
[16:18:45] [Server thread/INFO]: Attention! Found 58 duplicates in database. Same name, different UUID. This can cause some minor issues. Please remove one of them from database with /cmi removeuser [uuid] or /cmi removeuser duplicates 
[16:18:45] [Server thread/INFO]: lukasek13 8b5a41ca-b1e6-33bc-b36c-7cd7174fb725 last seen: 280 dní 22 hodin 23 min 31 sek  
[16:18:45] [Server thread/INFO]: lukasek13 c23c56e8-02a7-4dae-8fb4-9fa8ea207dc5 last seen: Unknown 
[16:18:45] [Server thread/INFO]: davajka 55f4e887-000c-3930-b73e-f5e62f2b94e4 last seen: 148 dní 6 hodin 49 min 47 sek  
[16:18:45] [Server thread/INFO]: davajka 88d83469-74d6-4cc7-bb2d-59a064523d9d last seen: Unknown 
[16:18:45] [Server thread/INFO]: davajka 55f4e887-000c-3930-b73e-f5e62f2b94e4 last seen: 148 dní 6 hodin 49 min 47 sek  
[16:18:45] [Server thread/INFO]: davajka 92647900-db2c-4150-b6f7-401a1f77b584 last seen: Unknown 
[16:18:45] [Server thread/INFO]: davajka 55f4e887-000c-3930-b73e-f5e62f2b94e4 last seen: 148 dní 6 hodin 49 min 47 sek  
[16:18:45] [Server thread/INFO]: davajka 34960634-4a2b-49df-9436-37a54725a77c last seen: Unknown 
[16:18:45] [Server thread/INFO]: davajka 55f4e887-000c-3930-b73e-f5e62f2b94e4 last seen: 148 dní 6 hodin 49 min 47 sek  
[16:18:45] [Server thread/INFO]: davajka 5783b0a5-d290-428d-a158-4aefc2f4504e last seen: Unknown 
[16:18:45] [Server thread/INFO]: idksus a14a8e14-f996-3ad3-afad-7fd6026782b0 last seen: 35 dní 20 hodin 10 min 29 sek  
[16:18:45] [Server thread/INFO]: idksus 8de16321-71e4-4467-9d77-8a5c7829c9ce last seen: Unknown 
[16:18:45] [Server thread/INFO]: kotatko158 edd629af-9864-3bec-99ce-6a8dc80b46ad last seen: 95 dní 1 hodina 47 min 47 sek  
[16:18:45] [Server thread/INFO]: kotatko158 6aa19892-66cd-4e9a-8af5-ecdb8a1fba55 last seen: Unknown 
[16:18:45] [Server thread/INFO]: OvEc007 b3af943e-5a3c-3681-99e3-7a2622983c4c last seen: 135 dní 4 hodin 39 min 20 sek  
[16:18:45] [Server thread/INFO]: OvEc007 88cbad00-45ea-4009-9d78-556cfbca8f4f last seen: Unknown 
[16:18:45] [Server thread/INFO]: matytryx 90503dc5-537a-3f12-8f64-3a50e66abf5d last seen: 66 dní 20 hodin 53 min 45 sek  
[16:18:45] [Server thread/INFO]: matytryx 115c3966-451f-4d27-ac70-4df107ec5bd8 last seen: Unknown 
[16:18:45] [Server thread/INFO]: matytryx 90503dc5-537a-3f12-8f64-3a50e66abf5d last seen: 66 dní 20 hodin 53 min 45 sek  
[16:18:45] [Server thread/INFO]: matytryx 03f46ba7-ddf7-4ca0-b488-2d989b0e3265 last seen: Unknown 
[16:18:45] [Server thread/INFO]: davajka 55f4e887-000c-3930-b73e-f5e62f2b94e4 last seen: 148 dní 6 hodin 49 min 47 sek  
[16:18:45] [Server thread/INFO]: davajka ee96d928-6094-4c65-9b2f-0f83475bf344 last seen: Unknown 
[16:18:45] [Server thread/INFO]: pluhy124 0958eb3c-7638-3a69-a0e6-1da7683420b9 last seen: 4 dní 3 hodin 25 min 25 sek  
[16:18:45] [Server thread/INFO]: pluhy124 d3ec951a-8839-4582-92b1-0f33c97e0bfa last seen: Unknown 
[16:18:45] [Server thread/INFO]: Draxl be75ec1b-5149-348b-b1ab-ba7c5039faae last seen: 160 dní 4 hodin 23 min 29 sek  
[16:18:45] [Server thread/INFO]: Draxl ba311835-3750-483a-8481-ccb6b804d228 last seen: Unknown 
[16:18:45] [Server thread/INFO]: admenmedem 7bde70ce-16f5-3035-9fbf-75d498d95b8b last seen: 59 dní 22 hodin 17 min 6 sek  
[16:18:45] [Server thread/INFO]: admenmedem 01bddd16-a32d-4a8f-9f8c-efb2b9cb2c7e last seen: Unknown 
[16:18:45] [Server thread/INFO]: admenmedem 7bde70ce-16f5-3035-9fbf-75d498d95b8b last seen: 59 dní 22 hodin 17 min 6 sek  
[16:18:45] [Server thread/INFO]: admenmedem c3061633-a02b-458e-a220-0f0f0ac8d366 last seen: Unknown 
[16:18:45] [Server thread/INFO]: admenmedem 7bde70ce-16f5-3035-9fbf-75d498d95b8b last seen: 59 dní 22 hodin 17 min 6 sek  
[16:18:45] [Server thread/INFO]: admenmedem 5c3f42ef-32e2-43d5-bec4-7c7a29f5ca52 last seen: Unknown 
[16:18:45] [Server thread/INFO]: foxianecek 2561ceb3-04db-3cf4-97f9-5a01eded16a5 last seen: 231 dní 54 min 2 sek  
[16:18:45] [Server thread/INFO]: foxianecek 8bbc6572-6e9e-4dc2-87dd-1cf4d2fa7165 last seen: Unknown 
[16:18:45] [Server thread/INFO]: foxianecek 2561ceb3-04db-3cf4-97f9-5a01eded16a5 last seen: 231 dní 54 min 2 sek  
[16:18:45] [Server thread/INFO]: foxianecek e4b63d9a-1c4b-45e2-b73b-efa4eb8b1978 last seen: Unknown 
[16:18:45] [Server thread/INFO]: Hagrid158 b2ff6a5e-780a-3c62-961a-9d965325ad4f last seen: 222 dní 4 hodin 58 min 47 sek  
[16:18:45] [Server thread/INFO]: Hagrid158 23f0c0f8-b075-432b-b5f7-ef7f6630efd0 last seen: Unknown 
[16:18:45] [Server thread/INFO]: Axel 5127ad28-4b25-36e7-b148-3cb8ce4705c6 last seen: 215 dní 23 hodin 2 min 56 sek  
[16:18:45] [Server thread/INFO]: Axel e963c05a-909a-43cc-9a33-b35c88335442 last seen: Unknown 
[16:18:45] [Server thread/INFO]: Tom3219 91ed3d2a-1ba9-33c6-8dc6-d1735874c386 last seen: 2 dní 19 hodin 1 min 5 sek  
[16:18:45] [Server thread/INFO]: Tom3219 9e8899b2-3eaa-4912-b3a0-a27cf3c950aa last seen: Unknown 
[16:18:45] [Server thread/INFO]: svg_Axel 9b0185cd-966e-3562-aaa0-7c9663b41440 last seen: 179 dní 21 hodin 14 min 49 sek  
[16:18:45] [Server thread/INFO]: svg_Axel 9d7db9ff-844a-4302-9441-c2ba2934a948 last seen: Unknown 
[16:18:45] [Server thread/INFO]: svg_Axel 9b0185cd-966e-3562-aaa0-7c9663b41440 last seen: 179 dní 21 hodin 14 min 49 sek  
[16:18:45] [Server thread/INFO]: svg_Axel 1ea5053d-3d05-4f52-a70f-ea00c66e375c last seen: Unknown 
[16:18:45] [Server thread/INFO]: medvidekpu234 5aa24ec6-e29f-3d31-b46d-d678f313a5f3 last seen: 42 dní 22 hodin 14 min 18 sek  
[16:18:45] [Server thread/INFO]: medvidekpu234 efc747f3-0b7b-40d4-80b0-cb21c6c43c63 last seen: Unknown 
[16:18:45] [Server thread/INFO]: judasosmi 756f04a2-4f5d-3f79-9710-91741c54eda2 last seen: 1 den 22 hodin 3 min 54 sek  
[16:18:45] [Server thread/INFO]: judasosmi df8b3b80-9c17-4301-93ea-702be5964c8f last seen: Unknown 
[16:18:45] [Server thread/INFO]: And 32 more...
[16:18:45] [Server thread/INFO]:   Loaded (5595) player data into memory. Took 253ms
[16:18:45] [Server thread/INFO]:   Loaded (27505) playtime records into memory. Took 223ms
[16:18:45] [Server thread/INFO]:   Loaded (5038) playtime reward records into memory. Took 33ms
[16:18:45] [Server thread/INFO]:   Loaded (32) custom alias into memory. Took 2ms
[16:18:45] [Server thread/INFO]:   Registered events. Took 78ms
[16:18:45] [Server thread/INFO]:   Loaded (0) event action commands into memory. Took 2ms
[16:18:45] [Server thread/INFO]:   Updated (EN) language file. Took 98ms
[16:18:45] [Server thread/INFO]:   Loaded (245) worth values into memory. Took 12ms
[16:18:45] [Server thread/INFO]:   Loaded (23) warps into memory. Took 5ms
[16:18:45] [Server thread/INFO]:   Vault permissions was found - Enabling capabilities.
[16:18:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmi [9.1.0.6]
[16:18:45] [Server thread/INFO]:   PlaceholderAPI hooked.
[16:18:45] [Server thread/INFO]:   PlaceholderAPI was found - Enabling capabilities.
[16:18:45] [Server thread/INFO]:   Jobs was found - Enabling capabilities.
[16:18:45] [Server thread/INFO]:   Starting world timer.
[16:18:45] [Server thread/INFO]:   Initializing world manager.
[16:18:45] [Server thread/INFO]:   Loaded (6) schedules into memory. Took 9ms
[16:18:45] [Server thread/INFO]:   Loaded GeoIP
[16:18:45] [Server thread/INFO]:   Loaded (16) skin cache entries into memory. Took 1ms
[16:18:45] [Server thread/INFO]:   Found DiscordSRV
[16:18:45] [Server thread/INFO]: [DiscordSRV] API listener com.Zrips.CMI.Modules.DiscordSRV.DiscordSRVListener subscribed (4 methods)
[16:18:45] [Server thread/INFO]: [CMI] Preloading playtimetop statistics
[16:18:45] [Server thread/INFO]:   Version 9.1.0.6 has been enabled
[16:18:45] [Server thread/INFO]: ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
[16:18:45] [Server thread/INFO]: [Vault][Economy] CMI Economy hooked.
[16:18:45] [Server thread/INFO]: [EpicSpawners] Enabling EpicSpawners v7.2.6
[16:18:45] [Server thread/INFO]:  
[16:18:45] [Server thread/INFO]: =============================
[16:18:45] [Server thread/INFO]: EpicSpawners 7.2.6 by Songoda <3!
[16:18:45] [Server thread/INFO]: Action: Enabling...
[16:18:45] [Server thread/INFO]: [EpicSpawners] Loaded locale "en_US"
[16:18:45] [Server thread/INFO]: [SongodaCore] [SongodaCore] Hooked EpicSpawners.
[16:18:45] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: EpicSpawners
[16:18:45] [Server thread/INFO]: [EpicSpawners] Data handler connected using SQLite.
[16:18:45] [Server thread/INFO]: =============================
[16:18:45] [Server thread/INFO]:  
[16:18:46] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[16:18:46] [Server thread/INFO]: Running delayed init tasks
[16:18:46] [Craft Scheduler Thread - 5 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[16:18:46] [Server thread/WARN]: [FastAsyncWorldEdit] Loaded class com.sk89q.worldguard.protection.association.RegionAssociable from WorldGuard v7.1.0-SNAPSHOT+2189-bc63119 which is not a depend or softdepend of this plugin.
[16:18:46] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[16:18:46] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[16:18:46] [Craft Scheduler Thread - 9 - AdvancedLottery/INFO]: [AdvancedLottery] Connecting to database!
[16:18:46] [Craft Scheduler Thread - 9 - AdvancedLottery/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[16:18:46] [Craft Scheduler Thread - 23 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[16:18:46] [Craft Scheduler Thread - 9 - AdvancedLottery/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[16:18:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: quests [3.9.2]
[16:18:46] [Server thread/WARN]: [Quests] Loaded class net.coreprotect.CoreProtect from CoreProtect v20.4 which is not a depend or softdepend of this plugin.
[16:18:46] [Craft Scheduler Thread - 9 - AdvancedLottery/INFO]: [AdvancedLottery] Successfully connected!
[16:18:46] [Craft Scheduler Thread - 9 - AdvancedLottery/INFO]: [AdvancedLottery] New column money_won already exists
[16:18:46] [Craft Scheduler Thread - 31 - Plan/INFO]: [Plan] Storing sessions that were preserved before previous shutdown.
[16:18:46] [Craft Scheduler Thread - 5 - InventoryRollbackPlus/INFO]: 
===============================================================================
A minor update to InventoryRollbackPlus is available!
Download at https://www.spigotmc.org/resources/inventoryrollbackplus-1-8-1-16-x.85811/
(current: 1.6.5, latest: 1.6.8)
===============================================================================
[16:18:46] [Craft Scheduler Thread - 9 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[16:18:46] [Craft Scheduler Thread - 5 - Vault/INFO]: [Vault] Checking for Updates ... 
[16:18:46] [Craft Scheduler Thread - 13 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[16:18:46] [Craft Scheduler Thread - 13 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[16:18:46] [Craft Scheduler Thread - 13 - SkinsRestorer/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[16:18:46] [Craft Scheduler Thread - 13 - SkinsRestorer/INFO]: [SkinsRestorer]     |------------------|
[16:18:46] [Craft Scheduler Thread - 13 - SkinsRestorer/INFO]: [SkinsRestorer]     |    Proxy Mode    |
[16:18:46] [Craft Scheduler Thread - 13 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[16:18:46] [Craft Scheduler Thread - 13 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[16:18:46] [Craft Scheduler Thread - 13 - SkinsRestorer/INFO]: [SkinsRestorer]     Current version: 14.2.4
[16:18:46] [Craft Scheduler Thread - 13 - SkinsRestorer/INFO]: [SkinsRestorer]     This is the latest version!
[16:18:46] [Craft Scheduler Thread - 13 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[16:18:46] [Craft Scheduler Thread - 18 - SuperbVote/INFO]: [SuperbVote] A new version of SuperbVote (0.5.5) is available.
[16:18:46] [Craft Scheduler Thread - 18 - SuperbVote/INFO]: [SuperbVote] Download it from https://www.spigotmc.org/resources/superbvote.11626/
[16:18:46] [Craft Scheduler Thread - 4 - Quests/INFO]: [Quests] A new version 3.13.2 was found on Spigot (your version: 3.9.2). Please update me! <3 - Link: https://get.leonardobishop.com/quests
[16:18:46] [Craft Scheduler Thread - 15 - BeastTokens/INFO]: [BeastTokens] There is a new update available.
[16:18:46] [Craft Scheduler Thread - 19 - SirBlobmanCore/INFO]: [SirBlobman Core]  
[16:18:46] [Craft Scheduler Thread - 19 - SirBlobmanCore/INFO]: [SirBlobman Core] [Update Checker] A possible update was found for plugin 'SirBlobmanCore'.
[16:18:46] [Craft Scheduler Thread - 19 - SirBlobmanCore/INFO]: [SirBlobman Core] [Update Checker] Current Version: 2.3.4
[16:18:46] [Craft Scheduler Thread - 19 - SirBlobmanCore/INFO]: [SirBlobman Core] [Update Checker] New Version: 2.6.0.18
[16:18:46] [Craft Scheduler Thread - 19 - SirBlobmanCore/INFO]: [SirBlobman Core] [Update Checker] Download Link: https://www.spigotmc.org/resources/83189/
[16:18:46] [Craft Scheduler Thread - 20 - Plan/INFO]: [Plan] ----------------------------------------
[16:18:46] [Craft Scheduler Thread - 20 - Plan/INFO]: [Plan] New Release (5.5.2144) is available https://github.com/plan-player-analytics/Plan/releases
[16:18:46] [Craft Scheduler Thread - 20 - Plan/INFO]: [Plan] ----------------------------------------
[16:18:46] [Server thread/WARN]: [Quests] Loaded class net.citizensnpcs.api.event.NPCRightClickEvent from Citizens v2.0.29-SNAPSHOT (build 2490) which is not a depend or softdepend of this plugin.
[16:18:46] [Server thread/WARN]: [Quests] Loaded class net.brcdev.shopgui.event.ShopPostTransactionEvent from ShopGUIPlus v1.68.1 which is not a depend or softdepend of this plugin.
[16:18:46] [Server thread/INFO]: [Quests] 35 task types have been registered.
[16:18:46] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[16:18:46] [Craft Scheduler Thread - 5 - Vault/INFO]: [Vault] No new version available
[16:18:46] [Craft Scheduler Thread - 30 - AuctionHouse/INFO]: [AukčníSíň] A new update is available for Auction House
[16:18:46] [Craft Scheduler Thread - 12 - zTournament/INFO]: [zTournament v1.0.3.3] New update available. Your version: 1.0.3.3, latest version: 1.0.4.2
[16:18:46] [Craft Scheduler Thread - 12 - zTournament/INFO]: [zTournament v1.0.3.3] Download plugin here: https://groupez.dev/resources/3
[16:18:47] [Server thread/INFO]: [Quests] 1270 quests have been registered.
[16:18:47] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.18/1.18.1 (757)
[16:18:47] [Server thread/INFO]: [DailyShop] Importing data from shops directory...
[16:18:47] [Server thread/INFO]: [DailyShop] Updated shop of name drops with 106 items
[16:18:47] [Server thread/INFO]: [DailyShop] Data imported successfully in 40 ms
[16:18:47] [Server thread/INFO]: [Skript] Loading variables...
[16:18:47] [Server thread/INFO]: [Skript] Loaded 263 variables in 0.0 seconds
[16:18:47] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[16:18:47] [Server thread/WARN]: [Skript] No scripts were found, maybe you should write some ;) (config.sk, line 210: databases:')
[16:18:47] [Server thread/INFO]: [Skript] Finished loading.
[16:18:47] [Server thread/INFO]: [ExcellentCrates] Loaded 12 crates.
[16:18:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pw [1.0.0]
[16:18:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: discordsrv [1.24.0]
[16:18:47] [Server thread/INFO]: [Jobs] Successfully linked with Vault.
[16:18:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: plan [5.4 build 1583]
[16:18:47] [Server thread/WARN]: [Insights] Loaded class me.angeschossen.lands.api.integration.LandsIntegration from Lands v5.27.4 which is not a depend or softdepend of this plugin.
[16:18:47] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: Insights
[16:18:47] [Server thread/INFO]: [Insights] Registered listener of addon 'Lands'
[16:18:47] [Server thread/INFO]: [Insights] Loaded addon 'Lands' v1.0.0
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.68.1 ]================================
[16:18:47] [Server thread/INFO]: [ShopGUIPlus]  
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] No external spawner plugins registered, using built-in spawners support.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Loaded 32 main menu items.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'ores' with 27 items.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'banners' with 73 items.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'decoration' with 111 items.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'farmfood' with 80 items.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'mobdrops' with 29 items.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'stairs' with 32 items.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks' with 58 items.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'brewing' with 21 items.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'heads' with 174 items.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'slabs' with 36 items.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'enchantbooks' with 61 items.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'misc' with 25 items.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'redstone' with 21 items.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks12' with 58 items.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks16' with 72 items.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'potions' with 45 items.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'wood' with 73 items.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks17' with 32 items.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Loaded 18 shops with total of 1028 items.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[16:18:47] [Server thread/INFO]: [ShopGUIPlus]  
[16:18:47] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[16:18:48] [Server thread/INFO]: [Citizens] Loaded 26 NPCs.
[16:18:48] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[16:18:48] [Server thread/INFO]: [Lands] Successfully added region provider: WorldGuard Type: SERVER
[16:18:48] [Server thread/INFO]: --------------------------------------------------------
[16:18:48] [Server thread/INFO]: 
[16:18:48] [Server thread/INFO]: Thank you for purchasing Auction House, it means a lot
[16:18:48] [Server thread/INFO]:  - Kiran Hart
[16:18:48] [Server thread/INFO]: 
[16:18:48] [Server thread/INFO]: --------------------------------------------------------
[16:18:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bmysteryblocks [2.0.3]
[16:18:48] [Server thread/WARN]: [PlaceholderAPI] Loaded class io.minimum.minecraft.superbvote.SuperbVote from SuperbVote v0.5.4 which is not a depend or softdepend of this plugin.
[16:18:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: superbvote [1.3.0]
[16:18:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[16:18:48] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-CMI which is not a depend or softdepend of this plugin.
[16:18:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.7.0]
[16:18:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.2]
[16:18:48] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.luckperms.api.LuckPerms from LuckPerms v5.4.9 which is not a depend or softdepend of this plugin.
[16:18:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.1-R2]
[16:18:48] [Server thread/INFO]: 5 placeholder hook(s) registered! 4 placeholder hook(s) have an update available.
[16:18:48] [Server thread/INFO]: [PlaceholderAPI] An update for PlaceholderAPI (v2.11.2) is available at:
[16:18:48] [Server thread/INFO]: [PlaceholderAPI] https://www.spigotmc.org/resources/placeholderapi.6245/
[16:18:48] [Server thread/WARN]: [BestTools] *********************************************************
[16:18:48] [Server thread/WARN]: [BestTools] * There is a new version of BestTools available!
[16:18:48] [Server thread/WARN]: [BestTools] *  
[16:18:48] [Server thread/WARN]: [BestTools] * Your version:   2.0.1
[16:18:48] [Server thread/WARN]: [BestTools] * Latest version: 2.2.0
[16:18:48] [Server thread/WARN]: [BestTools] *  
[16:18:48] [Server thread/WARN]: [BestTools] * Please update to the newest version.
[16:18:48] [Server thread/WARN]: [BestTools] *  
[16:18:48] [Server thread/WARN]: [BestTools] * Download:
[16:18:48] [Server thread/WARN]: [BestTools] *   https://www.spigotmc.org/resources/besttools.81490/
[16:18:48] [Server thread/WARN]: [BestTools] *********************************************************
[16:18:48] [Server thread/INFO]: [KixsChatGames Updater] You are running an outdated version of Kix's Chat Games. Version 2.0.1 is available; you're on 1.8.7! Download at www.spigotmc.org/resources/85143/updates
[16:18:48] [Server thread/INFO]: [KixsAutoAnnouncer ++ Updater] You are running an outdated version of KAA++. Version 1.3.7 is available; you're on 1.3.3! Download at www.spigotmc.org/resources/68425/updates
[16:18:48] [Server thread/WARN]: [ViaVersion] There is a newer plugin version available: 4.5.1, you're on: 4.5.1-SNAPSHOT
[16:18:48] [Server thread/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[16:18:48] [Server thread/INFO]: Done (75.288s)! For help, type "help"
[16:18:48] [Server thread/INFO]: Timings Reset
[16:18:48] [Craft Scheduler Thread - 25 - AlonsoLeaderboards/INFO]: [AlonsoLeaderboards] Checking for updates...
[16:18:48] [Craft Scheduler Thread - 25 - AlonsoLeaderboards/INFO]: [AlonsoLeaderboards] Plugin up-to-date! You have the latest version!
[16:18:48] [Thread-60/INFO]: --------------------
[16:18:48] [Thread-60/INFO]: [CoreProtect] Version 21.3 is now available.
[16:18:48] [Thread-60/INFO]: [CoreProtect] Download: www.coreprotect.net/download/
[16:18:48] [Thread-60/INFO]: --------------------
[16:18:57] [User Authenticator #1/INFO]: UUID of player hanz336 is 6ab5ff3b-0389-3c18-9205-72ca579eda7e
[16:18:58] [Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PURPUR - THIS IS NOT A BUG OR A CRASH  - git-Purpur-1566 (MC: 1.18.1) ---
[16:18:58] [Watchdog Thread/ERROR]: The server has not responded for 10 seconds! Creating thread dump
[16:18:58] [Watchdog Thread/ERROR]: ------------------------------
[16:18:58] [Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Purpur!):
[16:18:58] [Watchdog Thread/ERROR]: ------------------------------
[16:18:58] [Watchdog Thread/ERROR]: Current Thread: Server thread
[16:18:58] [Watchdog Thread/ERROR]:     PID: 24 | Suspended: false | Native: false | State: RUNNABLE
[16:18:58] [Watchdog Thread/ERROR]:     Stack:
[16:18:58] [Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerChunkCache.getChunkAtIfLoadedImmediately(ServerChunkCache.java:488)
[16:18:58] [Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getChunkIfLoadedImmediately(Level.java:626)
[16:18:58] [Watchdog Thread/ERROR]:         net.minecraft.world.entity.Entity.move(Entity.java:1128)
[16:18:58] [Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.handleRelativeFrictionAndCalculateMovement(LivingEntity.java:2898)
[16:18:58] [Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.travel(LivingEntity.java:2853)
[16:18:58] [Watchdog Thread/ERROR]:         net.minecraft.world.entity.player.Player.travel(Player.java:1639)
[16:18:58] [Watchdog Thread/ERROR]:         Citizens-2.0.29-b2490.jar//net.citizensnpcs.nms.v1_18_R1.entity.EntityHumanNPC.h(EntityHumanNPC.java:506)
[16:18:58] [Watchdog Thread/ERROR]:         Citizens-2.0.29-b2490.jar//net.citizensnpcs.nms.v1_18_R1.entity.EntityHumanNPC.moveWithFallDamage(EntityHumanNPC.java:405)
[16:18:58] [Watchdog Thread/ERROR]:         Citizens-2.0.29-b2490.jar//net.citizensnpcs.nms.v1_18_R1.entity.EntityHumanNPC.l(EntityHumanNPC.java:178)
[16:18:58] [Watchdog Thread/ERROR]:         Citizens-2.0.29-b2490.jar//net.citizensnpcs.nms.v1_18_R1.util.NMSImpl.playerTick(NMSImpl.java:1010)
[16:18:58] [Watchdog Thread/ERROR]:         Citizens-2.0.29-b2490.jar//net.citizensnpcs.util.NMS.playerTick(NMS.java:465)
[16:18:58] [Watchdog Thread/ERROR]:         Citizens-2.0.29-b2490.jar//net.citizensnpcs.util.PlayerUpdateTask.run(PlayerUpdateTask.java:56)
[16:18:58] [Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_18_R1.scheduler.CraftTask.run(CraftTask.java:101)
[16:18:58] [Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_18_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[16:18:58] [Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1584)
[16:18:58] [Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:519)
[16:18:58] [Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1507)
[16:18:58] [Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1294)
[16:18:58] [Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$1(MinecraftServer.java:322)
[16:18:58] [Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda$3962/0x00000008014422d0.run(Unknown Source)
[16:18:58] [Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:833)
[16:18:58] [Watchdog Thread/ERROR]: ------------------------------
[16:18:58] [Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PURPUR - THIS IS NOT A BUG OR A CRASH ---
[16:18:58] [Watchdog Thread/ERROR]: ------------------------------
[16:19:03] [Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PURPUR - THIS IS NOT A BUG OR A CRASH  - git-Purpur-1566 (MC: 1.18.1) ---
[16:19:03] [Watchdog Thread/ERROR]: The server has not responded for 15 seconds! Creating thread dump
[16:19:03] [Watchdog Thread/ERROR]: ------------------------------
[16:19:03] [Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Purpur!):
[16:19:03] [Watchdog Thread/ERROR]: ------------------------------
[16:19:03] [Watchdog Thread/ERROR]: Current Thread: Server thread
[16:19:03] [Watchdog Thread/ERROR]:     PID: 24 | Suspended: false | Native: false | State: RUNNABLE
[16:19:03] [Watchdog Thread/ERROR]:     Stack:
[16:19:03] [Watchdog Thread/ERROR]:         net.minecraft.world.entity.Entity.move(Entity.java:1127)
[16:19:03] [Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.handleRelativeFrictionAndCalculateMovement(LivingEntity.java:2898)
[16:19:03] [Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.travel(LivingEntity.java:2853)
[16:19:03] [Watchdog Thread/ERROR]:         net.minecraft.world.entity.player.Player.travel(Player.java:1639)
[16:19:03] [Watchdog Thread/ERROR]:         Citizens-2.0.29-b2490.jar//net.citizensnpcs.nms.v1_18_R1.entity.EntityHumanNPC.h(EntityHumanNPC.java:506)
[16:19:03] [Watchdog Thread/ERROR]:         Citizens-2.0.29-b2490.jar//net.citizensnpcs.nms.v1_18_R1.entity.EntityHumanNPC.moveWithFallDamage(EntityHumanNPC.java:405)
[16:19:03] [Watchdog Thread/ERROR]:         Citizens-2.0.29-b2490.jar//net.citizensnpcs.nms.v1_18_R1.entity.EntityHumanNPC.l(EntityHumanNPC.java:178)
[16:19:03] [Watchdog Thread/ERROR]:         Citizens-2.0.29-b2490.jar//net.citizensnpcs.nms.v1_18_R1.util.NMSImpl.playerTick(NMSImpl.java:1010)
[16:19:03] [Watchdog Thread/ERROR]:         Citizens-2.0.29-b2490.jar//net.citizensnpcs.util.NMS.playerTick(NMS.java:465)
[16:19:03] [Watchdog Thread/ERROR]:         Citizens-2.0.29-b2490.jar//net.citizensnpcs.util.PlayerUpdateTask.run(PlayerUpdateTask.java:56)
[16:19:03] [Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_18_R1.scheduler.CraftTask.run(CraftTask.java:101)
[16:19:03] [Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_18_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[16:19:03] [Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1584)
[16:19:03] [Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:519)
[16:19:03] [Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1507)
[16:19:03] [Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1294)
[16:19:03] [Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$1(MinecraftServer.java:322)
[16:19:03] [Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda$3962/0x00000008014422d0.run(Unknown Source)
[16:19:03] [Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:833)
[16:19:03] [Watchdog Thread/ERROR]: ------------------------------
[16:19:03] [Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PURPUR - THIS IS NOT A BUG OR A CRASH ---
[16:19:03] [Watchdog Thread/ERROR]: ------------------------------
[16:19:08] [Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PURPUR - THIS IS NOT A BUG OR A CRASH  - git-Purpur-1566 (MC: 1.18.1) ---
[16:19:08] [Watchdog Thread/ERROR]: The server has not responded for 20 seconds! Creating thread dump
[16:19:08] [Watchdog Thread/ERROR]: ------------------------------
[16:19:08] [Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Purpur!):
[16:19:08] [Watchdog Thread/ERROR]: ------------------------------
[16:19:08] [Watchdog Thread/ERROR]: Current Thread: Server thread
[16:19:08] [Watchdog Thread/ERROR]:     PID: 24 | Suspended: false | Native: false | State: RUNNABLE
[16:19:08] [Watchdog Thread/ERROR]:     Stack:
[16:19:08] [Watchdog Thread/ERROR]:         net.minecraft.world.entity.Entity.move(Entity.java:1127)
[16:19:08] [Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.handleRelativeFrictionAndCalculateMovement(LivingEntity.java:2898)
[16:19:08] [Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.travel(LivingEntity.java:2853)
[16:19:08] [Watchdog Thread/ERROR]:         net.minecraft.world.entity.player.Player.travel(Player.java:1639)
[16:19:08] [Watchdog Thread/ERROR]:         Citizens-2.0.29-b2490.jar//net.citizensnpcs.nms.v1_18_R1.entity.EntityHumanNPC.h(EntityHumanNPC.java:506)
[16:19:08] [Watchdog Thread/ERROR]:         Citizens-2.0.29-b2490.jar//net.citizensnpcs.nms.v1_18_R1.entity.EntityHumanNPC.moveWithFallDamage(EntityHumanNPC.java:405)
[16:19:08] [Watchdog Thread/ERROR]:         Citizens-2.0.29-b2490.jar//net.citizensnpcs.nms.v1_18_R1.entity.EntityHumanNPC.l(EntityHumanNPC.java:178)
[16:19:08] [Watchdog Thread/ERROR]:         Citizens-2.0.29-b2490.jar//net.citizensnpcs.nms.v1_18_R1.util.NMSImpl.playerTick(NMSImpl.java:1010)
[16:19:08] [Watchdog Thread/ERROR]:         Citizens-2.0.29-b2490.jar//net.citizensnpcs.util.NMS.playerTick(NMS.java:465)
[16:19:08] [Watchdog Thread/ERROR]:         Citizens-2.0.29-b2490.jar//net.citizensnpcs.util.PlayerUpdateTask.run(PlayerUpdateTask.java:56)
[16:19:08] [Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_18_R1.scheduler.CraftTask.run(CraftTask.java:101)
[16:19:08] [Watchdog Thread/ERROR]:         org.bukkit.craftbukkit.v1_18_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[16:19:08] [Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1584)
[16:19:08] [Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:519)
[16:19:08] [Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1507)
[16:19:08] [Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1294)
[16:19:08] [Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$1(MinecraftServer.java:322)
[16:19:08] [Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda$3962/0x00000008014422d0.run(Unknown Source)
[16:19:08] [Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:833)
[16:19:08] [Watchdog Thread/ERROR]: ------------------------------
[16:19:08] [Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PURPUR - THIS IS NOT A BUG OR A CRASH ---
[16:19:08] [Watchdog Thread/ERROR]: ------------------------------