Paste #104027: Unnamed Server Log Paste

Date: 2022/12/15 10:15:45 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
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096


[17:38:33] [ServerMain/INFO]: Building unoptimized datafixer
[17:38:34] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[17:38:36] [ServerMain/INFO]: Loaded 7 recipes
[17:38:37] [Server thread/INFO]: Starting minecraft server version 1.19.3
[17:38:37] [Server thread/INFO]: Loading properties
[17:38:37] [Server thread/INFO]: This server is running Pufferfish version git-Pufferfish-48 (MC: 1.19.3) (Implementing API version 1.19.3-R0.1-SNAPSHOT) (Git: 3218691 on HEAD)
[17:38:37] [Server thread/INFO]: Server Ping Player Sample Count: 12
[17:38:37] [Server thread/INFO]: Using 4 threads for Netty based IO
[17:38:37] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 2 worker threads, and gen parallelism of 2 threads
[17:38:37] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 256 bits (int)
[17:38:37] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 256 bits (float)
[17:38:37] [Server thread/INFO]: [Pufferfish] SIMD operations detected as functional. Will replace some operations with faster versions.
[17:38:37] [Server thread/INFO]: Default game type: SURVIVAL
[17:38:37] [Server thread/INFO]: Generating keypair
[17:38:38] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:2243
[17:38:38] [Server thread/INFO]: Using epoll channel type
[17:38:38] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[17:38:38] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[17:38:38] [Server thread/ERROR]: Ambiguous plugin name `Vouchers' for files `plugins/Vouchers (1).jar' and `plugins/Vouchers (2).jar' in `plugins'
[17:38:38] [Server thread/ERROR]: [STDERR] [org.bukkit.craftbukkit.v1_19_R2.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[17:38:44] [Server thread/WARN]: Legacy plugin NPCLibPlugin v2.11.1-SNAPSHOT does not specify an api-version.
[17:38:44] [Server thread/WARN]: Legacy plugin PebbleAntiVPN v1.5 does not specify an api-version.
[17:38:44] [Server thread/WARN]: Legacy plugin AWD v2.6.3 beta does not specify an api-version.
[17:38:44] [Server thread/WARN]: Legacy plugin OpenInventory v1.2 does not specify an api-version.
[17:38:44] [Server thread/WARN]: Legacy plugin StaffChat v2.3 does not specify an api-version.
[17:38:44] [Server thread/INFO]: [NexEngine] Loading 1 libraries... please wait
[17:38:44] [Server thread/INFO]: [NexEngine] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[17:38:44] [Server thread/INFO]: [NexEngine] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[17:38:45] [Server thread/INFO]: [] Initialize logging service
[17:38:45] [Server thread/WARN]: Legacy plugin DeluxeCombat_Addon_WG v0.9 does not specify an api-version.
[17:38:45] [Server thread/INFO]: [InventoryRollbackPlus] Loading InventoryRollbackPlus v1.6.7
[17:38:45] [Server thread/INFO]: [ChatFilter] Loading ChatFilter v2.0.13
[17:38:45] [Server thread/INFO]: [ExpBottle] Loading ExpBottle v1.0.3
[17:38:45] [Server thread/INFO]: [Chunky] Loading Chunky v1.3.38
[17:38:45] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.2
[17:38:45] [Server thread/INFO]: [UltimateAutoRestart] Loading UltimateAutoRestart vBuild 52c
[17:38:45] [Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v3.0.1-SNAPSHOT-b243
[17:38:45] [Server thread/INFO]: [NPCLibPlugin] Loading NPCLibPlugin v2.11.1-SNAPSHOT
[17:38:45] [Server thread/INFO]: [PebbleAntiVPN] Loading PebbleAntiVPN v1.5
[17:38:45] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags v1.8.2-Release
[17:38:45] [Server thread/INFO]: [NoteBlockAPI] Loading NoteBlockAPI v1.6.1-SNAPSHOT
[17:38:45] [Server thread/INFO]: [NoEncryption] Loading NoEncryption v3.1
[17:38:45] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v4.5.1
[17:38:45] [Server thread/INFO]: [ViaVersion] ViaVersion 4.5.1 is now loaded, injecting!
[17:38:45] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading 1.12 -> 1.13 mappings...
[17:38:45] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.13 -> 1.13.2 mappings...
[17:38:45] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.13.2 -> 1.14 mappings...
[17:38:45] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.14 -> 1.15 mappings...
[17:38:45] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[17:38:45] [Via-Mappingloader-4/INFO]: [ViaVersion] Loading 1.15 -> 1.16 mappings...
[17:38:45] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.16 -> 1.16.2 mappings...
[17:38:45] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.16.2 -> 1.17 mappings...
[17:38:45] [Via-Mappingloader-5/INFO]: [ViaVersion] Loading 1.17 -> 1.18 mappings...
[17:38:45] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.18 -> 1.19 mappings...
[17:38:46] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading 1.19 -> 1.19.3 mappings...
[17:38:46] [Server thread/INFO]: [ViaBackwards] Loading ViaBackwards v4.5.1
[17:38:46] [Server thread/INFO]: [ViaBackwards] Loading translations...
[17:38:46] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.10 -> 1.9.4 mappings...
[17:38:46] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.11 -> 1.10 mappings...
[17:38:46] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.12 -> 1.11 mappings...
[17:38:46] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.13 -> 1.12 mappings...
[17:38:46] [Via-Mappingloader-2/INFO]: [ViaBackwards] Loading 1.13.2 -> 1.13 mappings...
[17:38:46] [Via-Mappingloader-2/INFO]: [ViaBackwards] Loading 1.14 -> 1.13.2 mappings...
[17:38:46] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.15 -> 1.14 mappings...
[17:38:46] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.16 -> 1.15 mappings...
[17:38:46] [Via-Mappingloader-2/INFO]: [ViaBackwards] Loading 1.16.2 -> 1.16 mappings...
[17:38:46] [Via-Mappingloader-2/INFO]: [ViaBackwards] Loading 1.17 -> 1.16.2 mappings...
[17:38:46] [Via-Mappingloader-2/INFO]: [ViaBackwards] Loading 1.18 -> 1.17 mappings...
[17:38:46] [Via-Mappingloader-2/INFO]: [ViaBackwards] Loading 1.19 -> 1.18 mappings...
[17:38:46] [Via-Mappingloader-2/INFO]: [ViaBackwards] Loading 1.19.3 -> 1.19 mappings...
[17:38:46] [Server thread/INFO]: [MiniMOTD] Loading MiniMOTD v2.0.9
[17:38:46] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.55
[17:38:46] [Server thread/INFO]: [AWD] Loading AWD v2.6.3 beta
[17:38:46] [Server thread/INFO]: [MineStore] Loading MineStore v1.2.0
[17:38:46] [Server thread/INFO]: [Votifier] Loading Votifier v2.7.3
[17:38:46] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.0.0-SNAPSHOT-b607
[17:38:47] [Server thread/INFO]: [OpenInventory] Loading OpenInventory v1.2
[17:38:47] [Server thread/INFO]: [LibsDisguises] Loading LibsDisguises v10.0.31-SNAPSHOT
[17:38:47] [Server thread/INFO]: [Minepacks] Loading Minepacks v2.4.11-Release
[17:38:47] [Server thread/INFO]: [Minepacks] PCGF-PluginLib not installed. Switching to standalone mode!
[17:38:47] [Server thread/INFO]: [StaffChat] Loading StaffChat v2.3
[17:38:47] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[17:38:47] [Server thread/INFO]: [floodgate] Loading floodgate v2.2.0-SNAPSHOT (b73-4f36112)
[17:38:48] [Server thread/WARN]: [floodgate] en_ is not a supported Floodgate language.
[17:38:48] [Server thread/INFO]: [floodgate] Took 306ms to boot Floodgate
[17:38:48] [Server thread/INFO]: [ChatColor2] Loading ChatColor2 v1.12.4
[17:38:48] [Server thread/INFO]: [CLV] Loading CyberLevels v0.5.5
[17:38:48] [Server thread/INFO]: [zVoteParty] Loading zVoteParty v1.0.2.0
[17:38:48] [Server thread/INFO]: [SkinsRestorer] Loading SkinsRestorer v14.2.3
[17:38:48] [Server thread/INFO]: [NexEngine] Loading NexEngine v2.2.7 build-10/12/2022
[17:38:48] [Server thread/INFO]: [LPC] Loading LPC v3.6.0
[17:38:48] [Server thread/INFO]: [DecentHolograms] Loading DecentHolograms v2.7.7
[17:38:48] [Server thread/INFO]: [Essentials] Loading Essentials v2.20.0-dev+20-582a357
[17:38:48] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.1-b861
[17:38:48] [Server thread/INFO]: [Vouchers] Loading Vouchers v3.1.0
[17:38:48] [Server thread/INFO]: [FastAsyncWorldEdit] Loading FastAsyncWorldEdit v2.4.9-SNAPSHOT-294;e36b838
[17:38:49] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@7226bc3c]
[17:38:49] [Server thread/INFO]: [HeadDB] Loading HeadDB v4.4.4
[17:38:49] [Server thread/INFO]: [TradeSystem] Loading TradeSystem v2.1.3
[17:38:49] [Server thread/INFO]: [ajLeaderboards] Loading ajLeaderboards v2.6.1
[17:38:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[gson]
[17:38:49] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, gson]
[17:38:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[jar-relocator]
[17:38:49] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, jar-relocator]
[17:38:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[asm]
[17:38:49] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, asm]
[17:38:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[asm-commons]
[17:38:49] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, asm-commons]
[17:38:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[gson]
[17:38:49] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, gson]
[17:38:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[HikariCP]
[17:38:49] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, HikariCP]
[17:38:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[slf4j-api]
[17:38:49] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, slf4j-api]
[17:38:49] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[h2]
[17:38:49] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, h2]
[17:38:49] [Server thread/INFO]: [DeluxeMenus] Loading DeluxeMenus v1.13.6-Release
[17:38:49] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[17:38:49] [Server thread/INFO]: [TAB] Loading TAB v3.2.0
[17:38:49] [Server thread/INFO]: [SuperbVote] Loading SuperbVote v0.5.5
[17:38:49] [Server thread/INFO]: [Infiniteannouncements] Loading Infiniteannouncements v2.3.1
[17:38:49] [Server thread/INFO]: [PlayerPoints] Loading PlayerPoints v3.2.5
[17:38:49] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.7+216b061
[17:38:49] [Server thread/INFO]: [antiRedstoneClock] Loading antiRedstoneClock v1.5.0
[17:38:49] [Server thread/WARN]: [antiRedstoneClock] WorldGuard 7 is not supported
[17:38:49] [Server thread/INFO]: [GSit] Loading GSit v1.3.0
[17:38:49] [Server thread/INFO]: [BetterRTP] Loading BetterRTP v3.4.4
[17:38:49] [Server thread/INFO]: [SimplePortals] Loading SimplePortals v1.7.1
[17:38:49] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.20.0-dev+20-582a357
[17:38:49] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v21.2
[17:38:49] [Server thread/INFO]: [Skript] Loading Skript v2.6.4
[17:38:49] [Server thread/INFO]: [DeluxeCoinflip] Loading DeluxeCoinflip v2.6.2
[17:38:49] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2813)
[17:38:49] [Server thread/INFO]: [ExcellentCrates] Loading ExcellentCrates v4.0.6
[17:38:49] [Server thread/INFO]: [mcMMO] Loading mcMMO v2.1.218-SNAPSHOT
[17:38:49] [Server thread/INFO]: [mcMMO] Registered WG flags successfully!
[17:38:49] [Server thread/INFO]: [SuperVanish] Loading SuperVanish v6.2.12
[17:38:49] [Server thread/INFO]: [KOTH] Loading KOTH v6.0.4
[17:38:49] [Server thread/INFO]: [UltimateKits] Loading UltimateKits v2.7.3
[17:38:49] [Server thread/INFO]: [Duels] Loading Duels v3.5.2
[17:38:49] [Server thread/INFO]: [McmmoGui] Loading McmmoGui v1.0.5
[17:38:49] [Server thread/INFO]: [LiteBans] Loading LiteBans v2.7.5
[17:38:49] [Server thread/INFO]: [zAuctionHouseV3] Loading zAuctionHouseV3 v3.1.0.4
[17:38:49] [Server thread/INFO]: [DiscordSRV] Loading DiscordSRV v1.26.0
[17:38:49] [Server thread/INFO]: [EconomyShopGUI] Loading EconomyShopGUI v5.1.2
[17:38:49] [Server thread/INFO]: [] Loading  v1.12-SNAPSHOT-2989d9a
[17:38:49] [Server thread/INFO]: [ChatItem] Loading ChatItem v2.4.4
[17:38:49] [Server thread/INFO]: [Plan] Loading Plan v5.5 build 1984
[17:38:49] [Server thread/INFO]: [DeluxeCombat] Loading DeluxeCombat v1.30.8
[17:38:49] [Server thread/INFO]: [DeluxeCombat_Addon_WG] Loading DeluxeCombat_Addon_WG v0.9
[17:38:49] [Server thread/INFO]: [LifestealCore] Loading LifestealCore vBuild 6c
[17:38:49] [Server thread/INFO]: [PlugManX] Loading PlugManX v2.3.0
[17:38:49] [Server thread/INFO]: true
[17:38:49] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[17:38:49] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.55
[17:38:50] [Server thread/INFO]:         __    
[17:38:50] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.55
[17:38:50] [Server thread/INFO]:   |___ |      Running on Bukkit - Pufferfish
[17:38:50] [Server thread/INFO]: 
[17:38:50] [Server thread/INFO]: [LuckPerms] Loading configuration...
[17:38:51] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MARIADB]
[17:38:51] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[17:38:51] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[17:38:52] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[17:38:52] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[17:38:53] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[17:38:53] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 4099ms)
[17:38:53] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b607
[17:38:53] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[17:38:53] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.20.0-dev+20-582a357 which is not a depend or softdepend of this plugin.
[17:38:53] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[17:38:53] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[17:38:53] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[17:38:53] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[17:38:54] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.7 build-10/12/2022
[17:38:54] [Server thread/INFO]: [NexEngine] Loaded NMS version: V1_19_R2
[17:38:54] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[17:38:54] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[17:38:54] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[17:38:54] [Server thread/INFO]: [NexEngine] Plugin loaded in 64 ms!
[17:38:54] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.4.9-SNAPSHOT-294;e36b838
[17:38:54] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[17:38:54] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[17:38:54] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[17:38:54] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[17:38:54] [Server thread/WARN]: java.lang.NoSuchFieldException: l
[17:38:54] [Server thread/WARN]:     at java.base/java.lang.Class.getDeclaredField(Class.java:2610)
[17:38:54] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.9-SNAPSHOT-294.jar//com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_17_R1_2.PaperweightPlatformAdapter.<clinit>(PaperweightPlatformAdapter.java:94)
[17:38:54] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[17:38:54] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:375)
[17:38:54] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.9-SNAPSHOT-294.jar//com.sk89q.worldedit.bukkit.adapter.BukkitImplLoader.loadAdapter(BukkitImplLoader.java:170)
[17:38:54] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.9-SNAPSHOT-294.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.loadAdapter(WorldEditPlugin.java:361)
[17:38:54] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.9-SNAPSHOT-294.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.setupPreWorldData(WorldEditPlugin.java:232)
[17:38:54] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.9-SNAPSHOT-294.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.onEnable(WorldEditPlugin.java:205)
[17:38:54] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[17:38:54] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371)
[17:38:54] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544)
[17:38:54] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578)
[17:38:54] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492)
[17:38:54] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:276)
[17:38:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1103)
[17:38:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
[17:38:54] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:38:54] [Server thread/WARN]: java.lang.NoSuchMethodException: net.minecraft.world.level.chunk.Chunk.d(net.minecraft.world.level.block.entity.TileEntity)
[17:38:54] [Server thread/WARN]:     at java.base/java.lang.Class.getDeclaredMethod(Class.java:2675)
[17:38:54] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.9-SNAPSHOT-294.jar//com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_18_R2.PaperweightPlatformAdapter.<clinit>(PaperweightPlatformAdapter.java:151)
[17:38:54] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[17:38:54] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:375)
[17:38:54] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.9-SNAPSHOT-294.jar//com.sk89q.worldedit.bukkit.adapter.BukkitImplLoader.loadAdapter(BukkitImplLoader.java:170)
[17:38:54] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.9-SNAPSHOT-294.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.loadAdapter(WorldEditPlugin.java:361)
[17:38:54] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.9-SNAPSHOT-294.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.setupPreWorldData(WorldEditPlugin.java:232)
[17:38:54] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.9-SNAPSHOT-294.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.onEnable(WorldEditPlugin.java:205)
[17:38:54] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[17:38:54] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371)
[17:38:54] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544)
[17:38:54] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578)
[17:38:54] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492)
[17:38:54] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:276)
[17:38:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1103)
[17:38:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
[17:38:54] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:38:54] [Server thread/WARN]: java.lang.NoSuchFieldException: l
[17:38:54] [Server thread/WARN]:     at java.base/java.lang.Class.getDeclaredField(Class.java:2610)
[17:38:54] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.9-SNAPSHOT-294.jar//com.sk89q.worldedit.bukkit.adapter.impl.fawe.BukkitAdapter_1_17.<clinit>(BukkitAdapter_1_17.java:101)
[17:38:54] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[17:38:54] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:375)
[17:38:54] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.9-SNAPSHOT-294.jar//com.sk89q.worldedit.bukkit.adapter.BukkitImplLoader.loadAdapter(BukkitImplLoader.java:170)
[17:38:54] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.9-SNAPSHOT-294.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.loadAdapter(WorldEditPlugin.java:361)
[17:38:54] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.9-SNAPSHOT-294.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.setupPreWorldData(WorldEditPlugin.java:232)
[17:38:54] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.9-SNAPSHOT-294.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.onEnable(WorldEditPlugin.java:205)
[17:38:54] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[17:38:54] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371)
[17:38:54] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544)
[17:38:54] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578)
[17:38:54] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492)
[17:38:54] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:276)
[17:38:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1103)
[17:38:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
[17:38:54] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:38:54] [Server thread/WARN]: 
**********************************************
** This FastAsyncWorldEdit version does not fully support your version of Bukkit.
** You can fix this by:
** - Updating your server version (Check /version to see how many versions you are behind)
** - Updating FAWE
**
** When working with blocks or undoing, chests will be empty, signs
** will be blank, and so on. There will be no support for entity
** and block property-related functions.
**********************************************

[17:38:55] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=0]. Neither the DataFixer nor defaulting worked to recognize this block.
[17:38:55] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=1]. Neither the DataFixer nor defaulting worked to recognize this block.
[17:38:55] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=2]. Neither the DataFixer nor defaulting worked to recognize this block.
[17:38:55] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=3]. Neither the DataFixer nor defaulting worked to recognize this block.
[17:38:55] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=4]. Neither the DataFixer nor defaulting worked to recognize this block.
[17:38:55] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=5]. Neither the DataFixer nor defaulting worked to recognize this block.
[17:38:55] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=6]. Neither the DataFixer nor defaulting worked to recognize this block.
[17:38:55] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=7]. Neither the DataFixer nor defaulting worked to recognize this block.
[17:38:55] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=8]. Neither the DataFixer nor defaulting worked to recognize this block.
[17:38:55] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=9]. Neither the DataFixer nor defaulting worked to recognize this block.
[17:38:55] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=10]. Neither the DataFixer nor defaulting worked to recognize this block.
[17:38:55] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=11]. Neither the DataFixer nor defaulting worked to recognize this block.
[17:38:55] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=12]. Neither the DataFixer nor defaulting worked to recognize this block.
[17:38:55] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=13]. Neither the DataFixer nor defaulting worked to recognize this block.
[17:38:55] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=14]. Neither the DataFixer nor defaulting worked to recognize this block.
[17:38:55] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=15]. Neither the DataFixer nor defaulting worked to recognize this block.
[17:38:55] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=north]. Neither the DataFixer nor defaulting worked to recognize this block.
[17:38:55] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=south]. Neither the DataFixer nor defaulting worked to recognize this block.
[17:38:55] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=west]. Neither the DataFixer nor defaulting worked to recognize this block.
[17:38:55] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=east]. Neither the DataFixer nor defaulting worked to recognize this block.
[17:38:55] [Server thread/ERROR]: Unknown block: minecraft:grass_path. Neither the DataFixer nor defaulting worked to recognize this block.
[17:38:55] [Server thread/ERROR]: Unknown item: minecraft:grass_path. Neither the DataFixer nor defaulting worked to recognize this item.
[17:38:55] [Server thread/ERROR]: Unknown item: minecraft:sign. Neither the DataFixer nor defaulting worked to recognize this item.
[17:38:55] [Server thread/ERROR]: Unknown item: minecraft:rose_red. Neither the DataFixer nor defaulting worked to recognize this item.
[17:38:55] [Server thread/ERROR]: Unknown item: minecraft:cactus_green. Neither the DataFixer nor defaulting worked to recognize this item.
[17:38:55] [Server thread/ERROR]: Unknown item: minecraft:dandelion_yellow. Neither the DataFixer nor defaulting worked to recognize this item.
[17:38:55] [Server thread/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 37 build(s) out of date.
You are running build 294, the latest version is build 331.
Update at https://www.spigotmc.org/resources/13932/
[17:38:55] [Server thread/INFO]: [PlayerPoints] Enabling PlayerPoints v3.2.5
[17:38:55] [Server thread/INFO]: [PlayerPoints] Initializing using RoseGarden v1.1.0.42-SNAPSHOT
[17:38:55] [Server thread/INFO]: [PlayerPoints] Data handler connected using SQLite.
[17:38:55] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.3.
[17:38:57] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
[17:38:57] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[17:38:57] [Server thread/INFO]: [ChatFilter] Enabling ChatFilter v2.0.13
[17:38:57] [Server thread/INFO]: [ChatFilter] Loaded using locale: en
[17:38:57] [Server thread/INFO]: [ChatFilter] 55 Enabled word filters.
[17:38:57] [Server thread/INFO]: [ChatFilter] 2 Enabled advertising filters.
[17:38:57] [Server thread/INFO]: [ChatFilter] 350 whitelisted items.
[17:38:57] [Server thread/INFO]: [ExpBottle] Enabling ExpBottle v1.0.3
[17:38:57] [Server thread/INFO]: [Chunky] Enabling Chunky v1.3.38
[17:38:57] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
[17:38:57] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.viaversion.viaversion.api.type.Type from ViaVersion v4.5.1 which is not a depend or softdepend of this plugin.
[17:38:57] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[17:38:57] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart vBuild 52c
[17:38:57] [Server thread/INFO]: [UltimateAutoRestart] Build 52c, a free resource by Norska - Thanks for downloading!
[17:38:57] [Server thread/INFO]: [UltimateAutoRestart] Attempting hooks...
[17:38:58] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v3.0.1-SNAPSHOT-b243
[17:38:58] [Server thread/INFO]: [NPCLibPlugin] Enabling NPCLibPlugin v2.11.1-SNAPSHOT*
[17:38:58] [Server thread/INFO]: [NPCLibPlugin] NPCLib classes loaded
[17:38:58] [Server thread/INFO]: [PebbleAntiVPN] Enabling PebbleAntiVPN v1.5*
[17:38:58] [Server thread/INFO]: Loading PebbleAntiVPN...
[17:38:58] [Server thread/INFO]: PebbleAntiVPN Has Been Loaded.
[17:38:58] [Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
[17:38:58] [Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
[17:38:58] [Server thread/INFO]: [DeluxeTags] 24 tags loaded
[17:38:58] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[17:38:58] [Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
[17:38:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxetags [1.8.2-Release]
[17:38:58] [Server thread/INFO]: [DeluxeTags] ----------------------------
[17:38:58] [Server thread/INFO]: [DeluxeTags]      DeluxeTags Updater
[17:38:58] [Server thread/INFO]: [DeluxeTags]  
[17:38:58] [Server thread/INFO]: [DeluxeTags] You are running 1.8.2-Release
[17:38:58] [Server thread/INFO]: [DeluxeTags] The latest version
[17:38:58] [Server thread/INFO]: [DeluxeTags] of DeluxeTags!
[17:38:58] [Server thread/INFO]: [DeluxeTags]  
[17:38:58] [Server thread/INFO]: [DeluxeTags] ----------------------------
[17:38:58] [Server thread/INFO]: [NoteBlockAPI] Enabling NoteBlockAPI v1.6.1-SNAPSHOT
[17:38:58] [Server thread/INFO]: [NoEncryption] Enabling NoEncryption v3.1
[17:38:58] [Server thread/INFO]: Your server is running version 1.19.3-R0.1-SNAPSHOT
[17:38:58] [Server thread/ERROR]: [NoEncryption] Failed to setup NoEncryption's compatibility!
[17:38:58] [Server thread/ERROR]: [NoEncryption] Your server version (1.19.3-R0.1-SNAPSHOT) is not compatible with this plugin!
[17:38:58] [Server thread/INFO]: [NoEncryption] Disabling NoEncryption v3.1
[17:38:58] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.5.1
[17:38:58] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.5.1
[17:38:58] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.0.9
[17:38:59] [Server thread/INFO]: [AWD] Enabling AWD v2.6.3 beta*
[17:38:59] [Server thread/INFO]: [AntiWorldDownloader] AWD has been enabled! (Version: 2.6.3 beta)
[17:38:59] [Server thread/INFO]: [MineStore] Enabling MineStore v1.2.0
[17:38:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: Minestore [1.0.0]
[17:38:59] [Server thread/INFO]: [MineStore] [ACF] Enabled Asynchronous Tab Completion Support!
[17:38:59] [Server thread/INFO]: [MineStore] Loaded commands for 1 players.
[17:38:59] [Server thread/INFO]: [MineStore] Starting Server at 2283
[17:38:59] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[17:38:59] [Server thread/INFO]: [Votifier] Loaded token for website: default
[17:38:59] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[17:38:59] [Server thread/INFO]: [Votifier] Receiving votes over PluginMessaging channel 'nuvotifier:votes'.
[17:38:59] [Server thread/INFO]: [OpenInventory] Enabling OpenInventory v1.2*
[17:38:59] [Server thread/INFO]: [OpenInventory] OpenInventory v.1.2 has been enabled!
[17:38:59] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0%0]:8156.
[17:38:59] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.31-SNAPSHOT
[17:38:59] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-10.0.31-Github.jar
[17:38:59] [Server thread/INFO]: [LibsDisguises] Discovered nms version: v1_19_R2
[17:38:59] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1136
[17:38:59] [Server thread/INFO]: [LibsDisguises] Build Date: 29/11/2022 07:03
[17:38:59] [Server thread/WARN]: [LibsDisguises] If you own the plugin, place the premium jar downloaded from https://www.spigotmc.org/resources/libs-disguises.32453/ in plugins/LibsDisguises/
[17:38:59] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[17:38:59] [Server thread/ERROR]: Error occurred while enabling LibsDisguises v10.0.31-SNAPSHOT (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_19_R1/inventory/CraftItemStack
    at java.lang.Class.forName0(Native Method) ~[?:?]
    at java.lang.Class.forName(Class.java:375) ~[?:?]
    at me.libraryaddict.disguise.utilities.reflection.ReflectionManager.getReflectionManager(ReflectionManager.java:790) ~[LibsDisguises-10.0.31-Github.jar:?]
    at me.libraryaddict.disguise.utilities.reflection.ReflectionManager.init(ReflectionManager.java:195) ~[LibsDisguises-10.0.31-Github.jar:?]
    at me.libraryaddict.disguise.LibsDisguises.onEnable(LibsDisguises.java:236) ~[LibsDisguises-10.0.31-Github.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:637) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:436) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:303) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1103) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_19_R1.inventory.CraftItemStack
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:179) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:126) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    ... 16 more
[17:38:59] [Server thread/INFO]: [LibsDisguises] Disabling LibsDisguises v10.0.31-SNAPSHOT
[17:38:59] [Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.11-Release
[17:38:59] [Server thread/INFO]: [Minepacks] Starting Minepacks in standalone mode!
[17:39:00] [Server thread/INFO]: [Minepacks] Config file successfully loaded.
[17:39:00] [Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: english  Author: GeorgH93
[17:39:00] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting...
[17:39:00] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed.
[17:39:00] [Server thread/INFO]: [Minepacks] Item name language file successfully loaded. Language: english  Author: GeorgH93
[17:39:00] [Server thread/INFO]: [Minepacks] Loading item translations ...
[17:39:00] [Server thread/INFO]: [Minepacks] Finished loading item translations for 828 items.
[17:39:00] [Server thread/INFO]: [Minepacks]  Minepacks has been enabled!  :) 
[17:39:00] [Server thread/INFO]: [StaffChat] Enabling StaffChat v2.3*
[17:39:00] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.0-SNAPSHOT (b73-4f36112)
[17:39:01] [Server thread/INFO]: [ChatColor2] Enabling ChatColor2 v1.12.4
[17:39:01] [Server thread/INFO]: [ChatColor] ChatColor 2 Version 1.12.4 has been enabled.
[17:39:01] [Server thread/INFO]: [ChatColor] Current update: Add custom colors from ingame + bug fixes.
[17:39:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cc [1.12.4]
[17:39:01] [Server thread/INFO]: [ChatColor] PlaceholderAPI has been hooked.
[17:39:01] [Server thread/INFO]: [ChatColor] Metrics is enabled for this plugin. Stats sent to https://bstats.org/plugin/bukkit/ChatColor2
[17:39:01] [Server thread/INFO]: [CLV] Enabling CyberLevels v0.5.5
[17:39:01] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[17:39:01] [Server thread/INFO]: [CLV] ╭━━━╮╱╱╱╭╮╱╱╱╱╱╱╭╮╱╱╱╱╱╱╱╱╱╱╱╭╮
[17:39:01] [Server thread/INFO]: [CLV] ┃╭━╮┃╱╱╱┃┃╱╱╱╱╱╱┃┃╱╱╱╱╱╱╱╱╱╱╱┃┃
[17:39:01] [Server thread/INFO]: [CLV] ┃┃╰╋╮╭┫╰━┳━━┳━┫┃╱╱╭━━┳╮╭┳━━┫┃╭━━╮
[17:39:01] [Server thread/INFO]: [CLV] ┃┃╭┫┃┃┃╭╮┃┃━┫╭┫┃╭┫┃━┫╰╯┃┃━┫┃┃━━┫
[17:39:01] [Server thread/INFO]: [CLV] ┃╰━╯┃╰━╯┃╰╯┃┃━┫┃┃╰━╯┃┃━╋╮╭┫┃━┫╰╋━━┃
[17:39:01] [Server thread/INFO]: [CLV] ╰━━━┻━╮╭┻━━┻━━┻╯╰━━━┻━━╯╰╯╰━━┻━┻━━╯
[17:39:01] [Server thread/INFO]: [CLV] ╱╱╱╱╭━╯┃  Authors: Kihsomray, CroaBeast
[17:39:01] [Server thread/INFO]: [CLV] ╱╱╱╱╰━━╯  Version: 0.5.5
[17:39:01] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[17:39:01] [Server thread/INFO]: [CLV] 
[17:39:01] [Server thread/INFO]: [CLV] Loading YAML files...
[17:39:01] [Server thread/INFO]: [CLV] Loaded file config.yml.
[17:39:01] [Server thread/INFO]: [CLV] Loaded file lang.yml.
[17:39:01] [Server thread/INFO]: [CLV] Loaded file levels.yml.
[17:39:01] [Server thread/INFO]: [CLV] Loaded file rewards.yml.
[17:39:01] [Server thread/INFO]: [CLV] Loaded file earn-exp.yml.
[17:39:01] [Server thread/INFO]: [CLV] Loaded file anti-abuse.yml.
[17:39:01] [Server thread/INFO]: [CLV] Loaded 6 files in 114ms.
[17:39:01] [Server thread/INFO]: [CLV] 
[17:39:01] [Server thread/INFO]: [CLV] Loading exp earning events...
[17:39:01] [Server thread/INFO]: [CLV] Loaded 7 exp earn events in 2ms.
[17:39:01] [Server thread/INFO]: [CLV] 
[17:39:01] [Server thread/INFO]: [CLV] Loading anti-abuse...
[17:39:01] [Server thread/INFO]: [CLV] Loaded 2 anti-abuse settings in 1ms.
[17:39:01] [Server thread/INFO]: [CLV] 
[17:39:01] [Server thread/INFO]: [CLV] Loading level data...
[17:39:01] [Server thread/INFO]: [CLV] Loaded 100 level(s) in 2ms.
[17:39:01] [Server thread/INFO]: [CLV] 
[17:39:01] [Server thread/INFO]: [CLV] Loading leaderboard data...
[17:39:01] [Server thread/INFO]: [CLV] Loaded 10 players in 213ms.
[17:39:01] [Server thread/INFO]: [CLV] 
[17:39:01] [Server thread/INFO]: [CLV] Loading reward data...
[17:39:01] [Server thread/INFO]: [CLV] Loaded 1 reward(s) in 1ms.
[17:39:01] [Server thread/INFO]: [CLV] 
[17:39:01] [Server thread/INFO]: [CLV] Loading leaderboard data...
[17:39:01] [Server thread/INFO]: [CLV] Loaded 10 players in 94ms.
[17:39:01] [Server thread/INFO]: [CLV] 
[17:39:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: clv [0.5.5]
[17:39:01] [Server thread/INFO]: [CLV] Loaded CLV v0.5.5 in 509ms.
[17:39:01] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[17:39:01] [Server thread/INFO]: [zVoteParty] Enabling zVoteParty v1.0.2.0
[17:39:01] [Server thread/INFO]: [zVoteParty v1.0.2.0] === ENABLE START ===
[17:39:01] [Server thread/INFO]: [zVoteParty v1.0.2.0] Plugin Version V1.0.2.0
[17:39:01] [Server thread/INFO]: [zVoteParty v1.0.2.0] Loaded 0 rewards
[17:39:01] [Server thread/INFO]: [zVoteParty v1.0.2.0] Loading inventories in progress...
[17:39:01] [Server thread/INFO]: [zVoteParty v1.0.2.0] Successful loading of the inventory vote !
[17:39:01] [Server thread/INFO]: [zVoteParty v1.0.2.0] Inventories loading complete.
[17:39:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: zvoteparty [1.0.2.0]
[17:39:01] [Server thread/INFO]: [zVoteParty v1.0.2.0] Hook NuVotifier
[17:39:01] [Server thread/INFO]: [zVoteParty v1.0.2.0] Loading 2 inventories
[17:39:01] [Server thread/INFO]: [zVoteParty v1.0.2.0] Loading 1 commands
[17:39:01] [Server thread/INFO]: [zVoteParty v1.0.2.0] === ENABLE DONE (100ms) ===
[17:39:01] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v14.2.3
[17:39:01] [Server thread/ERROR]: [SkinsRestorer] Your Minecraft version is not supported by this version of SkinsRestorer! Is there a newer version available? If not, join our discord server!
net.skinsrestorer.bukkit.utils.NoMappingException: No mapping for this minecraft version found! (1afe2ffe8a9d7fc510442a168b3d4338)
    at net.skinsrestorer.bukkit.skinrefresher.MappingSpigotSkinRefresher.<init>(MappingSpigotSkinRefresher.java:44) ~[SkinsRestorer (4).jar:?]
    at net.skinsrestorer.bukkit.SkinApplierBukkit.selectSpigotRefresher(SkinApplierBukkit.java:96) ~[SkinsRestorer (4).jar:?]
    at net.skinsrestorer.bukkit.SkinApplierBukkit.detectRefresh(SkinApplierBukkit.java:78) ~[SkinsRestorer (4).jar:?]
    at net.skinsrestorer.bukkit.SkinApplierBukkit.<init>(SkinApplierBukkit.java:67) ~[SkinsRestorer (4).jar:?]
    at net.skinsrestorer.bukkit.SkinsRestorer.pluginStartup(SkinsRestorer.java:166) ~[SkinsRestorer (4).jar:?]
    at net.skinsrestorer.bukkit.SkinsRestorer.onEnable(SkinsRestorer.java:144) ~[SkinsRestorer (4).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:637) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:436) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:303) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1103) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[17:39:01] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[17:39:01] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.7.7
[17:39:01] [Server thread/ERROR]: Error occurred while enabling DecentHolograms v2.7.7 (Is it up to date?)
java.lang.ExceptionInInitializerError: null
    at eu.decentsoftware.holograms.api.DecentHolograms.enable(DecentHolograms.java:57) ~[DecentHolograms-2.7.7.jar:?]
    at eu.decentsoftware.holograms.api.DecentHologramsAPI.onEnable(DecentHologramsAPI.java:21) ~[DecentHolograms-2.7.7.jar:?]
    at eu.decentsoftware.holograms.plugin.DecentHologramsPlugin.onEnable(DecentHologramsPlugin.java:23) ~[DecentHolograms-2.7.7.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:637) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:436) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:303) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1103) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.NullPointerException: Cannot invoke "eu.decentsoftware.holograms.api.utils.reflect.Version.getMinor()" because "eu.decentsoftware.holograms.api.utils.reflect.Version.CURRENT" is null
    at eu.decentsoftware.holograms.api.utils.reflect.Version.afterOrEqual(Version.java:64) ~[DecentHolograms-2.7.7.jar:?]
    at eu.decentsoftware.holograms.api.nms.NMS.<clinit>(NMS.java:40) ~[DecentHolograms-2.7.7.jar:?]
    ... 14 more
[17:39:01] [Server thread/INFO]: [DecentHolograms] Disabling DecentHolograms v2.7.7
[17:39:01] [Server thread/ERROR]: Error occurred while disabling DecentHolograms v2.7.7 (Is it up to date?)
java.lang.NullPointerException: Cannot invoke "eu.decentsoftware.holograms.api.nms.PacketListener.destroy()" because "this.packetListener" is null
    at eu.decentsoftware.holograms.api.DecentHolograms.disable(DecentHolograms.java:92) ~[DecentHolograms-2.7.7.jar:?]
    at eu.decentsoftware.holograms.api.DecentHologramsAPI.onDisable(DecentHologramsAPI.java:29) ~[DecentHolograms-2.7.7.jar:?]
    at eu.decentsoftware.holograms.plugin.DecentHologramsPlugin.onDisable(DecentHologramsPlugin.java:37) ~[DecentHolograms-2.7.7.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(JavaPluginLoader.java:402) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:581) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:377) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:637) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:436) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:303) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1103) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[17:39:01] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.0-dev+20-582a357
[17:39:02] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[17:39:02] [Server thread/INFO]: [Essentials] No kits found to migrate.
[17:39:02] [Server thread/INFO]: [Essentials] Loaded 36926 items from items.json.
[17:39:02] [Server thread/INFO]: [Essentials] Using locale en
[17:39:02] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[17:39:02] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[17:39:02] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[17:39:02] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[17:39:02] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[17:39:02] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[17:39:02] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[17:39:02] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: lifesteal
[17:39:02] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[17:39:02] [Server thread/INFO]: Preparing start region for dimension minecraft:building
[17:39:03] [Server thread/INFO]: Time elapsed: 358 ms
[17:39:03] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: events
[17:39:03] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[17:39:03] [Server thread/INFO]: [Multiverse-Core] 4 - World(s) loaded.
[17:39:03] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[17:39:03] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[17:39:03] [Server thread/INFO]: [Vouchers] Enabling Vouchers v3.1.0
[17:39:03] [Server thread/INFO]:  
[17:39:03] [Server thread/INFO]: =============================
[17:39:03] [Server thread/INFO]: Vouchers v3.1.0 by Tweetzy
[17:39:03] [Server thread/INFO]: Developer: Kiran Hart
[17:39:03] [Server thread/INFO]: [FeatherCore] Hooked into Vouchers
[17:39:03] [Server thread/INFO]: =============================
[17:39:03] [Server thread/INFO]:  
[17:39:03] [Server thread/INFO]: [HeadDB] Enabling HeadDB v4.4.4
[17:39:03] [Server thread/INFO]: [HeadDB] [INFO]: Loading HeadDB - 4.4.4
[17:39:03] [Server thread/INFO]: [HeadDB] [INFO]: Done!
[17:39:03] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.1.3
[17:39:03] [Server thread/INFO]: [TradeSystem] Could not detect server type "Pufferfish".
[17:39:03] [Server thread/INFO]:  
[17:39:03] [Server thread/INFO]: __________________________________________________________
[17:39:03] [Server thread/INFO]:  
[17:39:03] [Server thread/INFO]:                        TradeSystem [2.1.3]
[17:39:03] [Server thread/INFO]:  
[17:39:03] [Server thread/INFO]: Status:
[17:39:03] [Server thread/INFO]:  
[17:39:03] [Server thread/INFO]: MC-Version: 1.19.3 (R0.1-SNAPSHOT, Unknown)
[17:39:03] [Server thread/INFO]:  
[17:39:03] [Server thread/INFO]:   > Loading sounds
[17:39:03] [Server thread/INFO]:   > Loading blacklist
[17:39:03] [Server thread/INFO]:     ...got 3 blocked item(s)
[17:39:03] [Server thread/INFO]:   > Loading layouts
[17:39:03] [Server thread/INFO]:     ...got 4 layout(s)
[17:39:03] [Server thread/INFO]:   > Database logging is disabled
[17:39:03] [Server thread/INFO]:  
[17:39:03] [Server thread/INFO]: Finished (309ms)
[17:39:03] [Server thread/INFO]:  
[17:39:03] [Server thread/INFO]: __________________________________________________________
[17:39:03] [Server thread/INFO]:  
[17:39:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tradesystem [1.1]
[17:39:03] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.6.1
[17:39:04] [Server thread/WARN]: [ajLeaderboards] Unable to find 1.19 nms class: us.ajg0702.leaderboards.nms.nms19.HeadUtils19
[17:39:04] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[17:39:04] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_player_kills. Canceling updater and bumping DB version.
[17:39:04] [Server thread/INFO]: [ajLeaderboards] Loaded 1 boards
[17:39:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajlb [2.6.1]
[17:39:04] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[17:39:04] [Server thread/INFO]: [ajLeaderboards] LuckPerms position context calculator registered!
[17:39:04] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.6.1 by ajgeiss0702 enabled!
[17:39:04] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.6-Release
[17:39:04] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[17:39:04] [Server thread/INFO]: [DeluxeMenus] 18 GUI menus loaded!
[17:39:04] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[17:39:04] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[17:39:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.6-Release]
[17:39:04] [Server thread/INFO]: [TAB] Enabling TAB v3.2.0
[17:39:04] [Server thread/INFO]: [TAB] Server version: 1.19.3 (v1_19_R2)
[17:39:04] [Server thread/INFO]: [TAB] Loaded NMS hook in 15ms
[17:39:05] [Server thread/INFO]: [TAB] Enabled in 160ms
[17:39:05] [Server thread/INFO]: [SuperbVote] Enabling SuperbVote v0.5.5
[17:39:05] [Server thread/INFO]: [SuperbVote] Using clip's PlaceholderAPI to provide extra placeholders.
[17:39:05] [Server thread/INFO]: [Infiniteannouncements] Enabling Infiniteannouncements v2.3.1
[17:39:05] [Server thread/INFO]:  
[17:39:05] [Server thread/INFO]: ====================================
[17:39:05] [Server thread/INFO]: Plugin name: Infiniteannouncements
[17:39:05] [Server thread/INFO]: Version: 2.3.1
[17:39:05] [Server thread/INFO]: Core version: 0.7.25
[17:39:05] [Server thread/INFO]: ====================================
[17:39:05] [Server thread/INFO]:  
[17:39:05] [Server thread/INFO]: [Infiniteannouncements] Loaded locale "en_US"
[17:39:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: infiniteannouncements [1.0.0]
[17:39:05] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.7+216b061
[17:39:05] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[17:39:05] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[17:39:05] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[17:39:05] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[17:39:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[17:39:05] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[17:39:05] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[17:39:05] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[17:39:05] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[17:39:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[17:39:05] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[17:39:05] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[17:39:05] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[17:39:05] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[17:39:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[17:39:05] [Server thread/INFO]: [WorldGuard] (building) TNT ignition is PERMITTED.
[17:39:05] [Server thread/INFO]: [WorldGuard] (building) Lighters are PERMITTED.
[17:39:05] [Server thread/INFO]: [WorldGuard] (building) Lava fire is PERMITTED.
[17:39:05] [Server thread/INFO]: [WorldGuard] (building) Fire spread is UNRESTRICTED.
[17:39:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'building'
[17:39:05] [Server thread/INFO]: [WorldGuard] Loading region data...
[17:39:05] [Server thread/INFO]: [antiRedstoneClock] Enabling antiRedstoneClock v1.5.0
[17:39:05] [Server thread/INFO]: [antiRedstoneClock] Enabling Metrics
[17:39:05] [Server thread/INFO]: [antiRedstoneClock] An error occured while trying to enable metrics. Skipping...
[17:39:05] [Server thread/WARN]: [antiRedstoneClock] PlotSquared hasn't been found!
[17:39:05] [Server thread/INFO]: [antiRedstoneClock] Plugin loaded in 8 ms
[17:39:05] [Server thread/INFO]: [GSit] Enabling GSit v1.3.0
[17:39:05] [Server thread/INFO]: [!] Sit → The Plugin was successfully enabled.
[17:39:05] [Server thread/INFO]: [!] Sit → Link with WorldGuard successful!
[17:39:05] [Server thread/INFO]: [!] Sit → Link with PlaceholderAPI successful!
[17:39:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gsit [1.3.0]
[17:39:05] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.4.4
[17:39:05] [Server thread/ERROR]: [BetterRTP] The particle 'EXPLOSION_NORMAL' created a fatal error when loading particles! Your MC version isn't supported!
[17:39:05] [Server thread/INFO]: [SimplePortals] Enabling SimplePortals v1.7.1
[17:39:05] [Server thread/INFO]: [SimplePortals] Everything inside the configuration seems to be up to date. (Took 2ms)
[17:39:05] [Server thread/INFO]: [SimplePortals] Packets have been setup for v1_19_R2!
[17:39:05] [Server thread/INFO]: [SimplePortals] Everything looks like it is up to date!
[17:39:05] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.0-dev+20-582a357
[17:39:05] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[17:39:05] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.2
[17:39:05] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[17:39:05] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[17:39:05] [Server thread/INFO]: --------------------
[17:39:05] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[17:39:05] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[17:39:05] [Server thread/INFO]: --------------------
[17:39:06] [Server thread/INFO]: [Skript] Enabling Skript v2.6.4
[17:39:06] [Server thread/INFO]: [Skript] Skript's language file english.lang is outdated, some messages will be english.
[17:39:06] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] You're currently running the latest stable version of Skript.
[17:39:10] [Server thread/INFO]: [Skript] Loaded 153613 aliases in 3940ms
[17:39:10] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[17:39:10] [Server thread/INFO]: [DeluxeCoinflip] Enabling DeluxeCoinflip v2.6.2
[17:39:10] [Server thread/INFO]: [DeluxeCoinflip] 
[17:39:10] [Server thread/INFO]: [DeluxeCoinflip]  __ __    DeluxeCoinflip v2.6.2
[17:39:10] [Server thread/INFO]: [DeluxeCoinflip] /  |_     Author: ItsLewizzz
[17:39:10] [Server thread/INFO]: [DeluxeCoinflip] \_ |      (c) Lewis D 2021. All rights reserved.
[17:39:10] [Server thread/INFO]: [DeluxeCoinflip] 
[17:39:10] [Server thread/INFO]: [DeluxeCoinflip] Registered economy provider 'Vault' using Vault plugin.
[17:39:10] [Server thread/INFO]: [DeluxeCoinflip] Registered economy provider 'PlayerPoints' using PlayerPoints plugin.
[17:39:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxecoinflip [2.6.2]
[17:39:10] [Server thread/INFO]: [DeluxeCoinflip] Hooked into PlaceholderAPI successfully
[17:39:10] [Server thread/INFO]: [DeluxeCoinflip] 
[17:39:10] [Server thread/INFO]: [DeluxeCoinflip] Successfully loaded in 24ms
[17:39:10] [Server thread/INFO]: [DeluxeCoinflip] 
[17:39:10] [Server thread/INFO]: [DeluxeCoinflip] [STDOUT] [DeluxeCoinflip] Leaked by YOURNAME @ BlackSpigot.com
[17:39:10] [Server thread/WARN]: Nag author(s): '[ItsLewizzz]' of 'DeluxeCoinflip' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[17:39:10] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2813)
[17:39:10] [Server thread/INFO]: [Citizens] Loading external libraries
[17:39:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[17:39:10] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[17:39:10] [Server thread/WARN]: [NexEngine] Loaded class net.citizensnpcs.api.event.NPCLeftClickEvent from Citizens v2.0.30-SNAPSHOT (build 2813) which is not a depend or softdepend of this plugin.
[17:39:10] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.0.6
[17:39:10] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[17:39:10] [Server thread/INFO]: [ExcellentCrates] Successfully hooked with HolographicDisplays!
[17:39:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: excellentcrates [4.0.6]
[17:39:10] [Server thread/INFO]: [ExcellentCrates] Successfully hooked with PlaceholderAPI!
[17:39:10] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[17:39:10] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@42465679
[17:39:10] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[17:39:10] [Server thread/WARN]: [ExcellentCrates] Data synchronization is useless for local databases (SQLite). It will be disabled.
[17:39:10] [Server thread/INFO]: [ExcellentCrates] Loaded 11 animation configs.
[17:39:10] [Server thread/INFO]: [ExcellentCrates] Loaded 6 crate keys.
[17:39:10] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[17:39:10] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 135 ms!
[17:39:10] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.1.218-SNAPSHOT
[17:39:10] [Server thread/INFO]: [mcMMO] [config] Initializing config: config.yml
[17:39:10] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: config.yml
[17:39:10] [Server thread/INFO]: [mcMMO] [config] Config initialized: config.yml
[17:39:10] [Server thread/INFO]: [mcMMO] [Debug] No errors found in config.yml!
[17:39:10] [Server thread/INFO]: [mcMMO] Loading locale from plugins/mcMMO/locales/locale_override.properties
[17:39:10] [Server thread/INFO]: [mcMMO] [config] Initializing config: advanced.yml
[17:39:10] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: advanced.yml
[17:39:10] [Server thread/INFO]: [mcMMO] [config] Config initialized: advanced.yml
[17:39:10] [Server thread/INFO]: [mcMMO] [Debug] No errors found in advanced.yml!
[17:39:10] [Server thread/INFO]: [mcMMO] Platform String: 1.19.3-R0.1-SNAPSHOT
[17:39:10] [Server thread/INFO]: [mcMMO] Minecraft version determined to be - 1.19.3
[17:39:10] [Server thread/INFO]: [mcMMO] Loading compatibility layers...
[17:39:10] [Server thread/INFO]: [mcMMO] Finished loading compatibility layers.
[17:39:10] [Server thread/INFO]: [mcMMO] [config] Initializing config: persistent_data.yml
[17:39:10] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: persistent_data.yml
[17:39:10] [Server thread/INFO]: [mcMMO] [config] Config initialized: persistent_data.yml
[17:39:10] [Server thread/INFO]: [mcMMO] [Debug] No errors found in persistent_data.yml!
[17:39:10] [Server thread/INFO]: [mcMMO] [config] Initializing config: upgrades_overhaul.yml
[17:39:10] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: upgrades_overhaul.yml
[17:39:10] [Server thread/INFO]: [mcMMO] [config] Config initialized: upgrades_overhaul.yml
[17:39:10] [Server thread/INFO]: [mcMMO] [config] Initializing config: treasures.yml
[17:39:10] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: treasures.yml
[17:39:10] [Server thread/INFO]: [mcMMO] [config] Config initialized: treasures.yml
[17:39:10] [Server thread/INFO]: [mcMMO] [config] Initializing config: fishing_treasures.yml
[17:39:10] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: fishing_treasures.yml
[17:39:11] [Server thread/INFO]: [mcMMO] [config] Config initialized: fishing_treasures.yml
[17:39:11] [Server thread/INFO]: [mcMMO] Registering enchantments for Fishing Book...
[17:39:11] [Server thread/INFO]: [mcMMO] Loading mcMMO potions.yml File...
[17:39:11] [Server thread/INFO]: [mcMMO] [config] Initializing config: coreskills.yml
[17:39:11] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: coreskills.yml
[17:39:11] [Server thread/INFO]: [mcMMO] [config] Config initialized: coreskills.yml
[17:39:11] [Server thread/INFO]: [mcMMO] [config] Initializing config: sounds.yml
[17:39:11] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: sounds.yml
[17:39:11] [Server thread/INFO]: [mcMMO] [config] Config initialized: sounds.yml
[17:39:11] [Server thread/INFO]: [mcMMO] Loading mcMMO skillranks.yml File...
[17:39:12] [Server thread/INFO]: [mcMMO] [config] Initializing config: child.yml
[17:39:12] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: child.yml
[17:39:12] [Server thread/INFO]: [mcMMO] [config] Config initialized: child.yml
[17:39:12] [Server thread/INFO]: [mcMMO] [config] Initializing config: repair.vanilla.yml
[17:39:12] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: repair.vanilla.yml
[17:39:12] [Server thread/INFO]: [mcMMO] [config] Config initialized: repair.vanilla.yml
[17:39:12] [Server thread/INFO]: [mcMMO] [config] Initializing config: salvage.vanilla.yml
[17:39:12] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: salvage.vanilla.yml
[17:39:12] [Server thread/INFO]: [mcMMO] [config] Config initialized: salvage.vanilla.yml
[17:39:12] [Server thread/INFO]: [mcMMO] (plugins/mcMMO/flatfile/mcmmo.users) Validating database file..
[17:39:12] [Server thread/INFO]: [mcMMO] Enabling Acrobatics Skills
[17:39:12] [Server thread/INFO]: [mcMMO] Registered subskill: Roll
[17:39:12] [Server thread/INFO]: [mcMMO] [config] Initializing config: experience.yml
[17:39:12] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: experience.yml
[17:39:12] [Server thread/INFO]: [mcMMO] [config] Config initialized: experience.yml
[17:39:12] [Server thread/INFO]: [mcMMO] 0 entries in mcMMO World Blacklist
[17:39:12] [Server thread/INFO]: [mcMMO] [config] Initializing config: chat.yml
[17:39:12] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: chat.yml
[17:39:12] [Server thread/INFO]: [mcMMO] [config] Config initialized: chat.yml
[17:39:12] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.12
[17:39:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: supervanish [6.2.12]
[17:39:12] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI
[17:39:12] [Server thread/INFO]: [SuperVanish] Hooked into Essentials
[17:39:12] [Server thread/INFO]: [SuperVanish] Hooked into Citizens
[17:39:12] [Server thread/INFO]: [KOTH] Enabling KOTH v6.0.4
[17:39:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: koth [6.0.4]
[17:39:12] [pool-70-thread-1/INFO]: [KOTH] Sorting through upcoming KOTH schedules...
[17:39:12] [pool-70-thread-1/INFO]: [KOTH] Successfully sorted through all KOTH schedules.
[17:39:12] [Server thread/INFO]: ===================================
[17:39:12] [Server thread/INFO]: 
[17:39:12] [Server thread/INFO]: - Plugin: KOTH
[17:39:12] [Server thread/INFO]: - Version: 6.0.4
[17:39:12] [Server thread/INFO]: - Server Version: null
[17:39:12] [Server thread/INFO]: - Author: Benzimmer
[17:39:12] [Server thread/INFO]: - Discord: https://discord.gg/fuffySb
[17:39:12] [Server thread/INFO]: 
[17:39:12] [Server thread/INFO]: - Searching for plugin updates...
[17:39:13] [Server thread/INFO]: : A new update has been found for this plugin - 6.1
[17:39:13] [Server thread/INFO]: 
[17:39:13] [Server thread/INFO]: - Successfully registered placeholders with PlaceholderAPI.
[17:39:13] [Server thread/INFO]: 
[17:39:13] [Server thread/INFO]: - Loaded 1 koths.
[17:39:13] [Server thread/INFO]: - Loaded 45 commands.
[17:39:13] [Server thread/INFO]: 
[17:39:13] [Server thread/INFO]: - Enabled plugin in 115 ms
[17:39:13] [Server thread/INFO]: 
[17:39:13] [Server thread/INFO]: ===================================
[17:39:13] [Server thread/INFO]: [KOTH] Successfully hooked into PremiumVanish.
[17:39:13] [Server thread/INFO]: [KOTH] [STDOUT]  Downloaded from https://directleaks.to 
[17:39:13] [Server thread/WARN]: Nag author(s): '[benzimmer123]' of 'KOTH' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[17:39:13] [Server thread/INFO]: [UltimateKits] Enabling UltimateKits v2.7.3
[17:39:13] [Server thread/INFO]:  
[17:39:13] [Server thread/INFO]: =============================
[17:39:13] [Server thread/INFO]: UltimateKits 2.7.3 by Songoda <3!
[17:39:13] [Server thread/INFO]: Action: Enabling...
[17:39:13] [Server thread/INFO]: [UltimateKits] Loaded locale "en_US"
[17:39:13] [Server thread/INFO]: [SongodaCore] [SongodaCore] Hooked UltimateKits.
[17:39:13] [Server thread/INFO]: [UltimateKits] Data handler connected using SQLite.
[17:39:13] [Server thread/INFO]: =============================
[17:39:13] [Server thread/INFO]:  
[17:39:13] [Server thread/INFO]: [Duels] Enabling Duels v3.5.2
[17:39:13] [Server thread/INFO]: [Duels] Successfully hooked into 'Essentials'!
[17:39:13] [Server thread/INFO]: [Duels] Successfully hooked into 'mcMMO'!
[17:39:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: duels [1.0]
[17:39:13] [Server thread/INFO]: [Duels] Successfully hooked into 'PlaceholderAPI'!
[17:39:13] [Server thread/INFO]: [Duels] Using Economy Provider: com.earth2me.essentials.economy.vault.VaultEconomyProvider
[17:39:13] [Server thread/INFO]: [Duels] Successfully hooked into 'Vault'!
[17:39:13] [Server thread/INFO]: [Duels] Successfully hooked into 'WorldGuard'!
[17:39:13] [Server thread/INFO]: [Duels] KitManagerImpl: Loaded 1 kit(s).
[17:39:13] [Server thread/INFO]: [Duels] ArenaManagerImpl: Loaded 1 arena(s).
[17:39:13] [Server thread/INFO]: [Duels] PlayerInfoManager: Lobby location was not set, using world's spawn location as default. Use the command /duels setlobby in-game to set the lobby location.
[17:39:13] [Server thread/INFO]: [Duels] QueueManager: Loaded 0 queue(s).
[17:39:13] [Server thread/INFO]: [Duels] QueueSignManagerImpl: Loaded 0 queue sign(s).
[17:39:13] [Server thread/INFO]: [McmmoGui] Enabling McmmoGui v1.0.5
[17:39:13] [Server thread/INFO]: [McmmoGui] Loading plugin's components ...
[17:39:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mcmmogui [1.0.0]
[17:39:13] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.7.5
[17:39:14] [Server thread/INFO]: [LiteBans] Using default database drivers (version:4).
[17:39:14] [Server thread/INFO]: [LiteBans]  detected; forcing `ban_names=true`.
[17:39:14] [Server thread/INFO]: [LiteBans] Loading SQL driver: h2 1.4.197 (org.h2.Driver)
[17:39:14] [Server thread/INFO]: [LiteBans] Connecting to database...
[17:39:14] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[17:39:14] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[17:39:14] [Server thread/INFO]: [LiteBans] Connected to [jdbc:h2:///home/container/plugins/LiteBans/litebans] (114.1 ms).
[17:39:14] [Server thread/INFO]: [LiteBans] Database connection fully initialized (117.4 ms).
[17:39:14] [Server thread/INFO]: [LiteBans] v2.7.5 enabled. Startup took 278 ms.
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3] Enabling zAuctionHouseV3 v3.1.0.4
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] === ENABLE START ===
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Plugin Version V3.1.0.4
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] PlayerPoint plugin detection performed successfully
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] /home/container/plugins/zAuctionHouseV3/config.json loaded successfully !
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Loading of 3 tax items
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Loading of 2 price items
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Loading the Blocks category with 933 materials
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Loading the Potions category with 17 materials
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Loading the Tools category with 16 materials
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Loading the Weapons category with 8 materials
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Attention, the category misc is empty
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Loading inventories in progress...
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory auction !
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory buyconfirm !
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory removeconfirm !
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory expire !
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory buying !
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory items !
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory categories !
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory sell !
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory sellshow !
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory category !
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory adminremove !
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory search !
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory show !
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Inventories loading complete.
[17:39:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: zauctionhouse [3.1.0.4]
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Loading 3 inventories
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Loading 0 commands
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] /home/container/plugins/zAuctionHouseV3/items.json loaded successfully !
[17:39:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] === ENABLE DONE (148ms) ===
[17:39:14] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.0
[17:39:14] [Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v5.1.2
[17:39:14] [Server thread/INFO]: [EconomyShopGUI] Using lang-en.yml as language file.
[17:39:14] [Server thread/INFO]: [EconomyShopGUI] Shops.yml has been found!
[17:39:14] [Server thread/INFO]: [EconomyShopGUI] Sections.yml has been found!
[17:39:14] [Server thread/INFO]: [EconomyShopGUI] Successfully hooked into Vault
[17:39:14] [Server thread/INFO]: [EconomyShopGUI] Using minecraft version 1.19.3...
[17:39:14] [Server thread/INFO]: [EconomyShopGUI] Spawner provider set to DEFAULT in config
[17:39:14] [Server thread/INFO]: [EconomyShopGUI] Using plugin default spawners...
[17:39:14] [Server thread/INFO]: [EconomyShopGUI] Debug mode is enabled.
[17:39:14] [Server thread/INFO]: [EconomyShopGUI] Updating Shop settings...
[17:39:14] [Server thread/INFO]: [EconomyShopGUI] Loading all items...
[17:39:14] [Server thread/INFO]: [EconomyShopGUI] Initialized - Took 81ms to complete
[17:39:14] [Server thread/INFO]: [] Enabling  v1.12-SNAPSHOT-2989d9a
[17:39:14] [Server thread/INFO]: [] Found enabled proxy configuration
[17:39:14] [Server thread/INFO]: [] Remember to follow the proxy guide to complete your setup
[17:39:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion:  [1.12-SNAPSHOT-2989d9a]
[17:39:14] [Server thread/INFO]: [ChatItem] Enabling ChatItem v2.4.4
[17:39:14] [Server thread/INFO]: [ChatItem] Detected server version: v1_19
[17:39:14] [Server thread/INFO]: [ChatItem] The plugin ProtocolLib has been detected. Loading Protocollib support ...
[17:39:14] [pool-74-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (819b02508abe8879cfc2a513fc6cea383b70b5c5)
[17:39:14] [Server thread/INFO]: [ChatItem] Loaded 5 getter for base components.
[17:39:14] [Server thread/INFO]: [ChatItem] Save method founded: b. Use ComponentBuilder's method.
[17:39:14] [Server thread/INFO]: [ChatItem] Manager automatically chosen: PacketEditing (packet), ChatListener (chat)
[17:39:14] [Server thread/INFO]: [ChatItem] Load DiscordSRV support.
[17:39:14] [Server thread/INFO]: [Plan] Enabling Plan v5.5 build 1984
[17:39:14] [Server thread/INFO]: [Plan] 
[17:39:14] [Server thread/INFO]: [Plan]            ██▌
[17:39:14] [Server thread/INFO]: [Plan]      ██▌   ██▌
[17:39:14] [Server thread/INFO]: [Plan]   ██▌██▌██▌██▌  Player Analytics
[17:39:14] [Server thread/INFO]: [Plan]   ██▌██▌██▌██▌  v5.5 build 1984
[17:39:14] [Server thread/INFO]: [Plan] 
[17:39:15] [Server thread/INFO]: [Plan] Locale: 'English' by AuroraLS3
[17:39:15] [Server thread/INFO]: [Plan] Downloading MySQL Driver, this may take a while...
[17:39:15] [Server thread/WARN]: [Plan] Loaded class us.ajg0702.leaderboards.libs.h2.Driver from ajLeaderboards v2.6.1 which is not a depend or softdepend of this plugin.
[17:39:15] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA]  Successful!
[17:39:15] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[17:39:15] [Server thread/INFO]: [Plan] MySQL-database connection established.
[17:39:15] [Server thread/WARN]: [Plan] WebServer was not initialized. (WebServer.DisableWebServer: true)
[17:39:15] [Server thread/INFO]: [Plan] Loading server identifying information
[17:39:15] [Server thread/INFO]: [Plan] Server identifier loaded: 7310e92d-7d5b-480c-b6a3-5da566dcc27c
[17:39:15] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[17:39:16] [Server thread/INFO]: [Plan] Registered extension: 
[17:39:16] [Server thread/INFO]: [Plan] Registered extension: DiscordSRV
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:MineFall Network(912622733135851530)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📕┃rules(972488679383760896)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📢┃announcements(1001033187750858802)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🧾┃season(975295584229548032)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🔧┃changelog(962003112036552824)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📃┃applications(967760044005392394)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎁┃giveaways(1051418844025069608)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🚀┃boosts(992067451372191926)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⌛┃discord-linking(1039371966039203861)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💬┃chat(1012004038046388294)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💡┃suggestions(999333136695578675)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🛒┃marketplace(1034166488690589736)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🤖┃commands(999334369997103174)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🔱┃find-team(1006267356084961280)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🔥┃bugs(1006949515955277966)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎫┃create-a-ticket(934189302764675092)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-log(1020370613338116218)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:transcripts(1020383293591523399)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:tickets-closed(1020382704736407622)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🔍・partners(1034165867270918265)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📰・welcome(1010152064053157918)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:dev(1042929387315675248)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🛒・veikals-log(967750567373975612)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💡︱suggestions-logs(1001035696196304937)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:invite-links(945071145160425512)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🧱・minecraft-server(915175226457882665)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:server-logs(1009924794147405854)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:coonsole(1009924812770136204)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-yoshibanana(1051281527700463767)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-hikaribayka(1051957602885566494)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-dominicthedev(1051977979590352976)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-plxzma(1052366999768010802)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📺┃media-chat(1052628007690457118)
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:coonsole(1009924812770136204)
[17:39:16] [Server thread/INFO]: [DiscordSRV] API listener net.playeranalytics.extension.discordsrv.DiscordSRVListener subscribed (2 methods)
[17:39:16] [Plan MySQLDB-transaction-thread-1/INFO]: [Plan] Database: Making sure schema is up to date..
[17:39:16] [Server thread/INFO]: [Plan] Registered extension: Essentials
[17:39:16] [Server thread/INFO]: [Plan] Registered extension: EssentialsEco
[17:39:16] [Server thread/INFO]: [Plan] Registered extension: 
[17:39:16] [Server thread/INFO]: [Plan] Registered extension: Floodgate
[17:39:16] [Server thread/INFO]: [Plan] Registered extension: Litebans
[17:39:16] [Server thread/INFO]: [Plan] Registered extension: LuckPerms
[17:39:16] [Server thread/INFO]: [Plan] Registered extension: mcMMO
[17:39:16] [Server thread/INFO]: [Plan] Registered extension: nuVotifier
[17:39:16] [Server thread/INFO]: [Plan] Registered extension: PlaceholderAPI
[17:39:16] [Server thread/INFO]: [Plan] Registered extension: SuperbVote
[17:39:16] [Server thread/INFO]: [Plan] Registered extension: Economy (Vault)
[17:39:16] [Server thread/INFO]: [Plan] Registered extension: Permission Groups (Vault)
[17:39:16] [Server thread/INFO]: [Plan] Registered extension: ViaVersion
[17:39:16] [Server thread/INFO]: [Plan] Player Analytics Enabled.
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[17:39:16] [Server thread/INFO]: [DeluxeCombat] Enabling DeluxeCombat v1.30.8
[17:39:16] [Server thread/INFO]: [DeluxeCombat]  _____        _                   ______            _                
[17:39:16] [Server thread/INFO]: [DeluxeCombat] (____ \      | |                 / _____)          | |          _    
[17:39:16] [Server thread/INFO]: [DeluxeCombat]  _   \ \ ____| |_   _ _   _ ____| /      ___  ____ | | _   ____| |_  
[17:39:16] [Server thread/INFO]: [DeluxeCombat] | |   | / _  ) | | | ( \ / ) _  ) |     / _ \|    \| || \ / _  |  _) 
[17:39:16] [Server thread/INFO]: [DeluxeCombat] | |__/ ( (/ /| | |_| |) X ( (/ /| \____| |_| | | | | |_) | ( | | |__ 
[17:39:16] [Server thread/INFO]: [DeluxeCombat] |_____/ \____)_|\____(_/ \_)____)\______)___/|_|_|_|____/ \_||_|\___)
[17:39:16] [Server thread/INFO]: [DeluxeCombat] 
[17:39:16] [Server thread/ERROR]: [DeluxeCombat] Couldn't hook into LibsDisguises due to a incompatibility. Please report this to the author.
[17:39:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxecombat [0.1.2]
[17:39:16] [Server thread/ERROR]: [DeluxeCombat] DeluxeCombat is incompatible with your version of GSit. Please update your copy of the GSit plugin!
[17:39:16] [Server thread/ERROR]: [DeluxeCombat] Couldn't hook into GSit due to a incompatibility. Please report this to the author.
[17:39:16] [Server thread/INFO]: [Duels] Hooked into DeluxeCombat!
[17:39:16] [Server thread/INFO]: [DeluxeCombat] Spawnpoints loaded: 13
[17:39:16] [Server thread/INFO]: [DeluxeCombat] Custom tools loaded: 1
[17:39:16] [Server thread/INFO]: [DeluxeCombat] Rewards loaded: 2
[17:39:16] [Server thread/INFO]: [DeluxeCombat] Kill-Streaks loaded: 1
[17:39:16] [Server thread/INFO]: [DeluxeCombat_Addon_WG] Enabling DeluxeCombat_Addon_WG v0.9*
[17:39:16] [Server thread/INFO]: [DeluxeCombat] [Addon] WorldGuard Addon successfully loaded.
[17:39:16] [Server thread/INFO]: [WorldGuard] Registering session handler de.timderspieler.deluxecombat.addon.wg.PvPForceFlag
[17:39:16] [Server thread/INFO]: [WorldGuard] Registering session handler de.timderspieler.deluxecombat.addon.wg.PvPTagFlag
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[17:39:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[17:39:16] [Server thread/INFO]: [LifestealCore] Enabling LifestealCore vBuild 6c
[17:39:16] [Server thread/INFO]: [LifestealCore] Build 6c, a premium resource by Norska - Thanks for purchasing!
[17:39:17] [Server thread/WARN]: Could not register alias hub because it contains commands that do not exist: server lobby
[17:39:17] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[17:39:17] [Server thread/INFO]: Running delayed init tasks
[17:39:17] [Server thread/WARN]: [FastAsyncWorldEdit] Loaded class com.sk89q.worldguard.protection.association.RegionAssociable from WorldGuard v7.0.7+216b061 which is not a depend or softdepend of this plugin.
[17:39:17] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[17:39:17] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[17:39:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerpoints [3.2.5]
[17:39:17] [Server thread/INFO]: [Chunky] No tasks to continue.
[17:39:17] [Craft Scheduler Thread - 6 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[17:39:17] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19.3 (761)
[17:39:17] [Craft Scheduler Thread - 6 - 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.7, latest: 1.6.8)
===============================================================================

[17:39:17] [Craft Scheduler Thread - 8 - MiniMOTD/INFO]: [MiniMOTD] There is an update available for MiniMOTD!
[17:39:17] [Craft Scheduler Thread - 8 - MiniMOTD/INFO]: [MiniMOTD] This server is running version v2.0.9, which is 1 versions outdated.
[17:39:17] [Craft Scheduler Thread - 8 - MiniMOTD/INFO]: [MiniMOTD] Download the latest version, v2.0.10 from GitHub at the link below:
[17:39:17] [Craft Scheduler Thread - 8 - MiniMOTD/INFO]: [MiniMOTD] https://github.com/jpenilla/MiniMOTD/releases/tag/v2.0.10
[17:39:17] [Craft Scheduler Thread - 8 - Essentials/INFO]: [Essentials] Fetching version information...
[17:39:17] [Server thread/ERROR]: [ViaVersion] ************************************************
[17:39:17] [Server thread/ERROR]: [ViaVersion] You are using unsupported software and may encounter unforeseeable issues.
[17:39:17] [Server thread/ERROR]: [ViaVersion] 
[17:39:17] [Server thread/ERROR]: [ViaVersion] We strongly advise against using software to mess with message signing:
[17:39:17] [Server thread/ERROR]: [ViaVersion] Instead of doing the obvious (or nothing at all), these kinds of plugins completely break chat message handling, usually then also breaking other plugins.
[17:39:17] [Server thread/ERROR]: [ViaVersion] 
[17:39:17] [Server thread/ERROR]: [ViaVersion] We will not provide support in case you encounter issues possibly related to this software.
[17:39:17] [Server thread/ERROR]: [ViaVersion] ************************************************
[17:39:17] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[17:39:17] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[17:39:17] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[17:39:17] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer]     |------------------|
[17:39:17] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer]     |  Standalone Mode |
[17:39:17] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[17:39:17] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[17:39:17] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer]     Current version: 14.2.3
[17:39:17] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer]     This is the latest version!
[17:39:17] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[17:39:17] [Craft Scheduler Thread - 7 - HeadDB/INFO]: [HeadDB] [WARNING]: There is a new update available for HeadDB on spigot!
[17:39:17] [Craft Scheduler Thread - 7 - HeadDB/INFO]: [HeadDB] [WARNING]: Download: https://www.spigotmc.org/resources/84967
[17:39:17] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[17:39:17] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[17:39:18] [Craft Scheduler Thread - 16 - Duels/INFO]: [Duels] No updates were available. You are on the latest version!
[17:39:18] [Craft Scheduler Thread - 6 - ChatItem/INFO]: [ChatItem] A new version of ChatItem is available. Click here to download.
[17:39:18] [Craft Scheduler Thread - 9 - zVoteParty/INFO]: [zVoteParty v1.0.2.0] No update available.
[17:39:18] [Craft Scheduler Thread - 20 - Vault/INFO]: [Vault] Checking for Updates ... 
[17:39:18] [Server thread/INFO]: [Skript] Loading variables...
[17:39:18] [Craft Scheduler Thread - 20 - Vault/INFO]: [Vault] No new version available
[17:39:18] [Server thread/INFO]: [Skript] Loaded 1 variables in 0.0 seconds
[17:39:18] [Server thread/INFO]: [Skript] Line 9: (test.sk)
[17:39:18] [Server thread/INFO]:     indentation error: expected 8 spaces, but found 6 spaces
[17:39:18] [Server thread/INFO]:     Line: execute console command "fly %player%" and "god %player%"
[17:39:18] [Server thread/INFO]:  
[17:39:18] [Craft Scheduler Thread - 13 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.1.0.4] No update available.
[17:39:18] [Server thread/INFO]: [Skript] Loaded 4 scripts with a total of 3 triggers and 3 commands in 0.18 seconds
[17:39:18] [Server thread/INFO]: [Skript] Finished loading.
[17:39:18] [Server thread/INFO]: [DeluxeCoinflip] Found and using VAULT, PLAYERPOINTS economy provider(s).
[17:39:18] [Server thread/INFO]: [ExcellentCrates] Loaded 10 crates.
[17:39:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: plan [5.5 build 1984]
[17:39:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: discordsrv [1.26.0]
[17:39:18] [Server thread/INFO]: [Citizens] Loaded 11 NPCs.
[17:39:18] [Server thread/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[17:39:18] [Server thread/INFO]: Done (41.738s)! For help, type "help"
[17:39:18] [Server thread/INFO]: Timings Reset
[17:39:19] [Server thread/INFO]: [] Hooking into auth plugin: Hook
[17:39:19] [Server thread/INFO]: [] BungeeCord setting detected. No auth plugin is required
[17:39:19] [Thread-35/INFO]: --------------------
[17:39:19] [Thread-35/INFO]: [CoreProtect] Version 21.3 is now available.
[17:39:19] [Thread-35/INFO]: [CoreProtect] Download: www.coreprotect.net/download/
[17:39:19] [Thread-35/INFO]: --------------------
[17:39:20] [Netty Epoll Server IO #1/INFO]: [floodgate] Floodgate player logged in as .krisBG555 disconnected
[17:39:21] [Craft Scheduler Thread - 21 - DeluxeCombat/INFO]: [DeluxeCombat] Checking for new updates...
[17:39:21] [Craft Scheduler Thread - 21 - DeluxeCombat/INFO]: [DeluxeCombat] New version v.1.40.4 is out!. You're still on: v.1.30.8
[17:39:21] [Craft Scheduler Thread - 21 - DeluxeCombat/INFO]: [DeluxeCombat] Update at: https://www.spigotmc.org/resources/63970/
[17:39:21] [Server thread/INFO]: [KOTH] Successfully hooked into TAB.
[17:39:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ultimateautorestart [Build 52c]
[17:39:21] [Server thread/INFO]: [UltimateAutoRestart] Hooked into PlaceholderAPI!
[17:39:21] [Server thread/INFO]: [UltimateAutoRestart] Successfully performed 1 hooks!
[17:39:21] [Server thread/INFO]: [LifestealCore] Attempting hooks...
[17:39:21] [Server thread/INFO]: [LifestealCore] Hooked into PlaceholderAPI!
[17:39:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: lifesteal [Build 6c]
[17:39:21] [Server thread/INFO]: [LifestealCore] Hooked into GSit!
[17:39:21] [Server thread/INFO]: [LifestealCore] Hooked into WorldGuard!
[17:39:21] [Server thread/INFO]: [LifestealCore] Hooked into DeluxeCombat!
[17:39:21] [Server thread/INFO]: [LifestealCore] Successfully performed 4 hooks!
[17:39:21] [Craft Scheduler Thread - 5 - HeadDB/INFO]: [HeadDB] [INFO]: Fetched 50620 heads!
[17:39:22] [Server thread/INFO]: [DeluxeCombat] Hooked into Essentials, ProtocolLib, PlaceholderAPI, Citizens, mcMMO, Duels, BetterRTP, Vault, WorldGuard and Vault.
[17:39:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.1]
[17:39:24] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[17:39:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.7.1]
[17:39:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bungee [1.0.1]
[17:39:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.3]
[17:39:24] [Server thread/WARN]: [PlaceholderAPI] Loaded class io.minimum.minecraft.superbvote.SuperbVote from SuperbVote v0.5.5 which is not a depend or softdepend of this plugin.
[17:39:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: superbvote [1.3.1]
[17:39:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: math [1.4.1]
[17:39:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[17:39:24] [Server thread/INFO]: 7 placeholder hook(s) registered! 1 placeholder hook(s) have an update available.
[17:39:27] [Craft Scheduler Thread - 23 - NoteBlockAPI/INFO]: [NoteBlockAPI] New update available!
[17:39:28] [Craft Scheduler Thread - 9 - LiteBans/INFO]: [LiteBans] A plugin update is available! Your version: 2.7.5, latest version: 2.10.4
[17:39:28] [Craft Scheduler Thread - 9 - LiteBans/INFO]: [LiteBans] Updates can be downloaded from here:
[17:39:28] [Craft Scheduler Thread - 9 - LiteBans/INFO]: [LiteBans] https://www.spigotmc.org/resources/litebans.3715/
[17:39:32] [Netty Epoll Server IO #2/INFO]: [floodgate] Floodgate player logged in as .krisBG555 disconnected
[17:39:37] [Plan MySQLDB-transaction-thread-1/INFO]: [Plan] All database patches applied successfully.
[17:39:38] [Plan Non critical-pool-5/INFO]: [Plan] Proxy server detected in the database - Proxy Webserver address is 'http://mc.minefall.eu:8140'.
[17:39:39] [Netty Epoll Server IO #3/INFO]: [floodgate] Floodgate player logged in as .krisBG555 disconnected
[17:39:43] [Server thread/WARN]: [SuperVanish] Unknown exception occurred!
[17:39:43] [Server thread/WARN]: [SuperVanish] Please report this issue!
[17:39:43] [Server thread/WARN]: [SuperVanish] Message: 
[17:39:43] [Server thread/WARN]: [SuperVanish]   at index 0
[17:39:43] [Server thread/WARN]: [SuperVanish] General information: 
[17:39:43] [Server thread/WARN]: [SuperVanish]   ServerVersion: git-Pufferfish-48 (MC: 1.19.3)
[17:39:43] [Server thread/WARN]: [SuperVanish]   PluginVersion: 6.2.12
[17:39:43] [Server thread/WARN]: [SuperVanish]   ServerPlugins: InventoryRollbackPlus v1.6.7, ChatFilter v2.0.13, ExpBottle v1.0.3, Chunky v1.3.38, PlaceholderAPI v2.11.2, UltimateAutoRestart vBuild 52c, HolographicDisplays v3.0.1-SNAPSHOT-b243, NPCLibPlugin v2.11.1-SNAPSHOT, PebbleAntiVPN v1.5, DeluxeTags v1.8.2-Release, NoteBlockAPI v1.6.1-SNAPSHOT, NoEncryption v3.1, ViaVersion v4.5.1, ViaBackwards v4.5.1, MiniMOTD v2.0.9, LuckPerms v5.4.55, AWD v2.6.3 beta, MineStore v1.2.0, Votifier v2.7.3, ProtocolLib v5.0.0-SNAPSHOT-b607, OpenInventory v1.2, LibsDisguises v10.0.31-SNAPSHOT, Minepacks v2.4.11-Release, StaffChat v2.3, Vault v1.7.3-b131, floodgate v2.2.0-SNAPSHOT (b73-4f36112), ChatColor2 v1.12.4, CyberLevels v0.5.5, zVoteParty v1.0.2.0, SkinsRestorer v14.2.3, NexEngine v2.2.7 build-10/12/2022, LPC v3.6.0, DecentHolograms v2.7.7, Essentials v2.20.0-dev+20-582a357, Multiverse-Core v4.3.1-b861, Vouchers v3.1.0, FastAsyncWorldEdit v2.4.9-SNAPSHOT-294;e36b838, HeadDB v4.4.4, TradeSystem v2.1.3, ajLeaderboards v2.6.1, DeluxeMenus v1.13.6-Release, TAB v3.2.0, SuperbVote v0.5.5, Infiniteannouncements v2.3.1, PlayerPoints v3.2.5, WorldGuard v7.0.7+216b061, antiRedstoneClock v1.5.0, GSit v1.3.0, BetterRTP v3.4.4, SimplePortals v1.7.1, EssentialsSpawn v2.20.0-dev+20-582a357, CoreProtect v21.2, Skript v2.6.4, DeluxeCoinflip v2.6.2, Citizens v2.0.30-SNAPSHOT (build 2813), ExcellentCrates v4.0.6, mcMMO v2.1.218-SNAPSHOT, KOTH v6.0.4, UltimateKits v2.7.3,  v5.6.0-beta2-b2453, Duels v3.5.2, McmmoGui v1.0.5, LiteBans v2.7.5, zAuctionHouseV3 v3.1.0.4, DiscordSRV v1.26.0, EconomyShopGUI v5.1.2,  v1.12-SNAPSHOT-2989d9a, ChatItem v2.4.4, Plan v5.5 build 1984, DeluxeCombat v1.30.8, DeluxeCombat_Addon_WG v0.9, LifestealCore vBuild 6c, PlugManX v2.3.0,
[17:39:43] [Server thread/WARN]: [SuperVanish] Settings:
[17:39:43] [Server thread/WARN]: [SuperVanish]   MsgsVersion: 6.2.7
[17:39:43] [Server thread/WARN]: [SuperVanish]   Settings: ||InvisibilityFeatures.NightVisionEffect>true||InvisibilityFeatures.DisableDamage>true||InvisibilityFeatures.DisableHunger>true||InvisibilityFeatures.DisableMobTarget>true||InvisibilityFeatures.OpenChestsSilently>true||InvisibilityFeatures.DisablePressurePlates>true||InvisibilityFeatures.DisablePush>true||InvisibilityFeatures.DefaultPickUpItemsOption>false||InvisibilityFeatures.ModifyTablistPackets>true||InvisibilityFeatures.Fly.Enable>true||InvisibilityFeatures.Fly.DisableOnReappear>true||VanishStateFeatures.AutoVanishOnJoin>false||VanishStateFeatures.ReappearOnWorldChange>false||VanishStateFeatures.ReappearOnQuit>false||VanishStateFeatures.CheckPermissionOnWorldChange>false||VanishStateFeatures.CheckPermissionOnQuit>false||VanishStateFeatures.CheckPermissionOn>false||IndicationFeatures.LayeredPermissions.EnableSeePermission>true||IndicationFeatures.LayeredPermissions.LayeredSeeAndUsePermissions>false||IndicationFeatures.LayeredPermissions.MaxLevel>100||IndicationFeatures.MarkVanishedPlayersAsSpectators>true||MessageOptions.FakeJoinQuitMessages.BroadcastFakeQuitOnVanish>false||MessageOptions.FakeJoinQuitMessages.BroadcastFakeJoinOnReappear>false||MessageOptions.FakeJoinQuitMessages.AnnounceVanishReappearToAdmins>true||MessageOptions.FakeJoinQuitMessages.SendMessageOnlyToAdmins>true||MessageOptions.FakeJoinQuitMessages.SendMessageOnlyToUsers>false||MessageOptions.HideRealJoinQuitMessages>true||MessageOptions.ReappearOnQuitHideLeaveMsg>true||MessageOptions.AnnounceRealJoinQuitToAdmins>true||MessageOptions.AnnounceDeathToAdmins>true||MessageOptions.RemindVanishedOnJoin>true||MessageOptions.DisplayActionBar>true||RestrictiveOptions.PreventBlockBreaking>false||RestrictiveOptions.PreventBlockPlacing>false||RestrictiveOptions.PreventHittingEntities>false||ExternalInvisibility.ServerList.AdjustAmountOfOnlinePlayers>true||ExternalInvisibility.ServerList.AdjustListOfLoggedInPlayers>true||HookOptions.EnableEssentialsHook>true||HookOptions.EnableDynmapHook>true||HookOptions.DynmapSendJoinLeaveMessages>true||HookOptions.EnableTrailGUIHook>true||HookOptions.EnablePlaceholderAPIHook>true||HookOptions.EnableMVdWPlaceholderAPIHook>true||HookOptions.EnableCitizensHook>true||CompatibilityOptions.PlayerJoinEventPriority>HIGH||CompatibilityOptions.PlayerQuitEventPriority>HIGH||MiscellaneousOptions.UpdateChecker.Enable>true||MiscellaneousOptions.UpdateChecker.NotifyAdmins>true||ConfigVersion>6.2.7||
[17:39:43] [Server thread/WARN]: [SuperVanish] StackTrace: 
[17:39:43] [Server thread/WARN]: java.lang.NullPointerException: at index 0
[17:39:43] [Server thread/WARN]:     at com.google.common.collect.ObjectArrays.checkElementNotNull(ObjectArrays.java:229)
[17:39:43] [Server thread/WARN]:     at com.google.common.collect.ObjectArrays.checkElementsNotNull(ObjectArrays.java:219)
[17:39:43] [Server thread/WARN]:     at com.google.common.collect.ObjectArrays.checkElementsNotNull(ObjectArrays.java:213)
[17:39:43] [Server thread/WARN]:     at com.google.common.collect.ImmutableList.construct(ImmutableList.java:353)
[17:39:43] [Server thread/WARN]:     at com.google.common.collect.ImmutableList.copyOf(ImmutableList.java:265)
[17:39:43] [Server thread/WARN]:     at SuperVanish.jar//de.myzelyam.supervanish.features.SilentOpenChestPacketAdapter.onPacketSending(SilentOpenChestPacketAdapter.java:49)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeSendingListener(SortedPacketListenerList.java:195)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:149)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.PacketFilterManager.postPacketToListeners(PacketFilterManager.java:547)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.PacketFilterManager.invokePacketSending(PacketFilterManager.java:521)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.netty.manager.NetworkManagerInjector.onPacketSending(NetworkManagerInjector.java:99)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector.processOutbound(NettyChannelInjector.java:571)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector$2.doProxyRunnable(NettyChannelInjector.java:472)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.netty.channel.NettyEventLoopProxy.proxyRunnable(NettyEventLoopProxy.java:43)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.netty.channel.NettyEventLoopProxy.execute(NettyEventLoopProxy.java:252)
[17:39:43] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.sendPacket(NetworkManager.java:432)
[17:39:43] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:379)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2162)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2148)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.postChunkLoadJoin(PlayerList.java:362)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.lambda$placeNewPlayer$0(PlayerList.java:316)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[17:39:43] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
[17:39:43] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1343)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197)
[17:39:43] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bh(MinecraftServer.java:1320)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1313)
[17:39:43] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:136)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1391)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1175)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
[17:39:43] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:39:43] [Server thread/WARN]: [SuperVanish] Please include this information
[17:39:43] [Server thread/WARN]: [SuperVanish] if you report the issue.
[17:39:43] [Server thread/WARN]: [SuperVanish] IMPORTANT: Please make sure that you are using the latest dev-build of ProtocolLib and that your server is up-to-date! This error likely happened inside of ProtocolLib code which is out of SuperVanish's control. It's part of an optional feature module and can be removed safely by disabling OpenChestsSilently in the config file. Please report this error if you can reproduce it on an up-to-date server with only latest ProtocolLib and latest SV installed.
[17:39:43] [Server thread/WARN]: [SuperVanish] Unknown exception occurred!
[17:39:43] [Server thread/WARN]: [SuperVanish] Please report this issue!
[17:39:43] [Server thread/WARN]: [SuperVanish] Message: 
[17:39:43] [Server thread/WARN]: [SuperVanish]   at index 0
[17:39:43] [Server thread/WARN]: [SuperVanish] General information: 
[17:39:43] [Server thread/WARN]: [SuperVanish]   ServerVersion: git-Pufferfish-48 (MC: 1.19.3)
[17:39:43] [Server thread/WARN]: [SuperVanish]   PluginVersion: 6.2.12
[17:39:43] [Server thread/WARN]: [SuperVanish]   ServerPlugins: InventoryRollbackPlus v1.6.7, ChatFilter v2.0.13, ExpBottle v1.0.3, Chunky v1.3.38, PlaceholderAPI v2.11.2, UltimateAutoRestart vBuild 52c, HolographicDisplays v3.0.1-SNAPSHOT-b243, NPCLibPlugin v2.11.1-SNAPSHOT, PebbleAntiVPN v1.5, DeluxeTags v1.8.2-Release, NoteBlockAPI v1.6.1-SNAPSHOT, NoEncryption v3.1, ViaVersion v4.5.1, ViaBackwards v4.5.1, MiniMOTD v2.0.9, LuckPerms v5.4.55, AWD v2.6.3 beta, MineStore v1.2.0, Votifier v2.7.3, ProtocolLib v5.0.0-SNAPSHOT-b607, OpenInventory v1.2, LibsDisguises v10.0.31-SNAPSHOT, Minepacks v2.4.11-Release, StaffChat v2.3, Vault v1.7.3-b131, floodgate v2.2.0-SNAPSHOT (b73-4f36112), ChatColor2 v1.12.4, CyberLevels v0.5.5, zVoteParty v1.0.2.0, SkinsRestorer v14.2.3, NexEngine v2.2.7 build-10/12/2022, LPC v3.6.0, DecentHolograms v2.7.7, Essentials v2.20.0-dev+20-582a357, Multiverse-Core v4.3.1-b861, Vouchers v3.1.0, FastAsyncWorldEdit v2.4.9-SNAPSHOT-294;e36b838, HeadDB v4.4.4, TradeSystem v2.1.3, ajLeaderboards v2.6.1, DeluxeMenus v1.13.6-Release, TAB v3.2.0, SuperbVote v0.5.5, Infiniteannouncements v2.3.1, PlayerPoints v3.2.5, WorldGuard v7.0.7+216b061, antiRedstoneClock v1.5.0, GSit v1.3.0, BetterRTP v3.4.4, SimplePortals v1.7.1, EssentialsSpawn v2.20.0-dev+20-582a357, CoreProtect v21.2, Skript v2.6.4, DeluxeCoinflip v2.6.2, Citizens v2.0.30-SNAPSHOT (build 2813), ExcellentCrates v4.0.6, mcMMO v2.1.218-SNAPSHOT, KOTH v6.0.4, UltimateKits v2.7.3,  v5.6.0-beta2-b2453, Duels v3.5.2, McmmoGui v1.0.5, LiteBans v2.7.5, zAuctionHouseV3 v3.1.0.4, DiscordSRV v1.26.0, EconomyShopGUI v5.1.2,  v1.12-SNAPSHOT-2989d9a, ChatItem v2.4.4, Plan v5.5 build 1984, DeluxeCombat v1.30.8, DeluxeCombat_Addon_WG v0.9, LifestealCore vBuild 6c, PlugManX v2.3.0,
[17:39:43] [Server thread/WARN]: [SuperVanish] Settings:
[17:39:43] [Server thread/WARN]: [SuperVanish]   MsgsVersion: 6.2.7
[17:39:43] [Server thread/WARN]: [SuperVanish]   Settings: ||InvisibilityFeatures.NightVisionEffect>true||InvisibilityFeatures.DisableDamage>true||InvisibilityFeatures.DisableHunger>true||InvisibilityFeatures.DisableMobTarget>true||InvisibilityFeatures.OpenChestsSilently>true||InvisibilityFeatures.DisablePressurePlates>true||InvisibilityFeatures.DisablePush>true||InvisibilityFeatures.DefaultPickUpItemsOption>false||InvisibilityFeatures.ModifyTablistPackets>true||InvisibilityFeatures.Fly.Enable>true||InvisibilityFeatures.Fly.DisableOnReappear>true||VanishStateFeatures.AutoVanishOnJoin>false||VanishStateFeatures.ReappearOnWorldChange>false||VanishStateFeatures.ReappearOnQuit>false||VanishStateFeatures.CheckPermissionOnWorldChange>false||VanishStateFeatures.CheckPermissionOnQuit>false||VanishStateFeatures.CheckPermissionOn>false||IndicationFeatures.LayeredPermissions.EnableSeePermission>true||IndicationFeatures.LayeredPermissions.LayeredSeeAndUsePermissions>false||IndicationFeatures.LayeredPermissions.MaxLevel>100||IndicationFeatures.MarkVanishedPlayersAsSpectators>true||MessageOptions.FakeJoinQuitMessages.BroadcastFakeQuitOnVanish>false||MessageOptions.FakeJoinQuitMessages.BroadcastFakeJoinOnReappear>false||MessageOptions.FakeJoinQuitMessages.AnnounceVanishReappearToAdmins>true||MessageOptions.FakeJoinQuitMessages.SendMessageOnlyToAdmins>true||MessageOptions.FakeJoinQuitMessages.SendMessageOnlyToUsers>false||MessageOptions.HideRealJoinQuitMessages>true||MessageOptions.ReappearOnQuitHideLeaveMsg>true||MessageOptions.AnnounceRealJoinQuitToAdmins>true||MessageOptions.AnnounceDeathToAdmins>true||MessageOptions.RemindVanishedOnJoin>true||MessageOptions.DisplayActionBar>true||RestrictiveOptions.PreventBlockBreaking>false||RestrictiveOptions.PreventBlockPlacing>false||RestrictiveOptions.PreventHittingEntities>false||ExternalInvisibility.ServerList.AdjustAmountOfOnlinePlayers>true||ExternalInvisibility.ServerList.AdjustListOfLoggedInPlayers>true||HookOptions.EnableEssentialsHook>true||HookOptions.EnableDynmapHook>true||HookOptions.DynmapSendJoinLeaveMessages>true||HookOptions.EnableTrailGUIHook>true||HookOptions.EnablePlaceholderAPIHook>true||HookOptions.EnableMVdWPlaceholderAPIHook>true||HookOptions.EnableCitizensHook>true||CompatibilityOptions.PlayerJoinEventPriority>HIGH||CompatibilityOptions.PlayerQuitEventPriority>HIGH||MiscellaneousOptions.UpdateChecker.Enable>true||MiscellaneousOptions.UpdateChecker.NotifyAdmins>true||ConfigVersion>6.2.7||
[17:39:43] [Server thread/WARN]: [SuperVanish] StackTrace: 
[17:39:43] [Server thread/WARN]: java.lang.NullPointerException: at index 0
[17:39:43] [Server thread/WARN]:     at com.google.common.collect.ObjectArrays.checkElementNotNull(ObjectArrays.java:229)
[17:39:43] [Server thread/WARN]:     at com.google.common.collect.ObjectArrays.checkElementsNotNull(ObjectArrays.java:219)
[17:39:43] [Server thread/WARN]:     at com.google.common.collect.ObjectArrays.checkElementsNotNull(ObjectArrays.java:213)
[17:39:43] [Server thread/WARN]:     at com.google.common.collect.ImmutableList.construct(ImmutableList.java:353)
[17:39:43] [Server thread/WARN]:     at com.google.common.collect.ImmutableList.copyOf(ImmutableList.java:265)
[17:39:43] [Server thread/WARN]:     at SuperVanish.jar//de.myzelyam.supervanish.features.VanishIndication$1.onPacketSending(VanishIndication.java:105)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeSendingListener(SortedPacketListenerList.java:195)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:149)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.PacketFilterManager.postPacketToListeners(PacketFilterManager.java:547)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.PacketFilterManager.invokePacketSending(PacketFilterManager.java:521)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.netty.manager.NetworkManagerInjector.onPacketSending(NetworkManagerInjector.java:99)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector.processOutbound(NettyChannelInjector.java:571)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector$2.doProxyRunnable(NettyChannelInjector.java:472)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.netty.channel.NettyEventLoopProxy.proxyRunnable(NettyEventLoopProxy.java:43)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.netty.channel.NettyEventLoopProxy.execute(NettyEventLoopProxy.java:252)
[17:39:43] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.sendPacket(NetworkManager.java:432)
[17:39:43] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:379)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2162)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2148)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.postChunkLoadJoin(PlayerList.java:362)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.lambda$placeNewPlayer$0(PlayerList.java:316)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[17:39:43] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
[17:39:43] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1343)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197)
[17:39:43] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bh(MinecraftServer.java:1320)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1313)
[17:39:43] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:136)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1391)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1175)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
[17:39:43] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:39:43] [Server thread/WARN]: [SuperVanish] Please include this information
[17:39:43] [Server thread/WARN]: [SuperVanish] if you report the issue.
[17:39:43] [Server thread/WARN]: [SuperVanish] IMPORTANT: Please make sure that you are using the latest dev-build of ProtocolLib and that your server is up-to-date! This error likely happened inside of ProtocolLib code which is out of SuperVanish's control. It's part of an optional feature module and can be removed safely by disabling MarkVanishedPlayersAsSpectators in the config file. Please report this error if you can reproduce it on an up-to-date server with only latest ProtocolLib and latest SV installed.
[17:39:43] [Server thread/WARN]: [SuperVanish] Unknown exception occurred!
[17:39:43] [Server thread/WARN]: [SuperVanish] Please report this issue!
[17:39:43] [Server thread/WARN]: [SuperVanish] Message: 
[17:39:43] [Server thread/WARN]: [SuperVanish]   at index 0
[17:39:43] [Server thread/WARN]: [SuperVanish] General information: 
[17:39:43] [Server thread/WARN]: [SuperVanish]   ServerVersion: git-Pufferfish-48 (MC: 1.19.3)
[17:39:43] [Server thread/WARN]: [SuperVanish]   PluginVersion: 6.2.12
[17:39:43] [Server thread/WARN]: [SuperVanish]   ServerPlugins: InventoryRollbackPlus v1.6.7, ChatFilter v2.0.13, ExpBottle v1.0.3, Chunky v1.3.38, PlaceholderAPI v2.11.2, UltimateAutoRestart vBuild 52c, HolographicDisplays v3.0.1-SNAPSHOT-b243, NPCLibPlugin v2.11.1-SNAPSHOT, PebbleAntiVPN v1.5, DeluxeTags v1.8.2-Release, NoteBlockAPI v1.6.1-SNAPSHOT, NoEncryption v3.1, ViaVersion v4.5.1, ViaBackwards v4.5.1, MiniMOTD v2.0.9, LuckPerms v5.4.55, AWD v2.6.3 beta, MineStore v1.2.0, Votifier v2.7.3, ProtocolLib v5.0.0-SNAPSHOT-b607, OpenInventory v1.2, LibsDisguises v10.0.31-SNAPSHOT, Minepacks v2.4.11-Release, StaffChat v2.3, Vault v1.7.3-b131, floodgate v2.2.0-SNAPSHOT (b73-4f36112), ChatColor2 v1.12.4, CyberLevels v0.5.5, zVoteParty v1.0.2.0, SkinsRestorer v14.2.3, NexEngine v2.2.7 build-10/12/2022, LPC v3.6.0, DecentHolograms v2.7.7, Essentials v2.20.0-dev+20-582a357, Multiverse-Core v4.3.1-b861, Vouchers v3.1.0, FastAsyncWorldEdit v2.4.9-SNAPSHOT-294;e36b838, HeadDB v4.4.4, TradeSystem v2.1.3, ajLeaderboards v2.6.1, DeluxeMenus v1.13.6-Release, TAB v3.2.0, SuperbVote v0.5.5, Infiniteannouncements v2.3.1, PlayerPoints v3.2.5, WorldGuard v7.0.7+216b061, antiRedstoneClock v1.5.0, GSit v1.3.0, BetterRTP v3.4.4, SimplePortals v1.7.1, EssentialsSpawn v2.20.0-dev+20-582a357, CoreProtect v21.2, Skript v2.6.4, DeluxeCoinflip v2.6.2, Citizens v2.0.30-SNAPSHOT (build 2813), ExcellentCrates v4.0.6, mcMMO v2.1.218-SNAPSHOT, KOTH v6.0.4, UltimateKits v2.7.3,  v5.6.0-beta2-b2453, Duels v3.5.2, McmmoGui v1.0.5, LiteBans v2.7.5, zAuctionHouseV3 v3.1.0.4, DiscordSRV v1.26.0, EconomyShopGUI v5.1.2,  v1.12-SNAPSHOT-2989d9a, ChatItem v2.4.4, Plan v5.5 build 1984, DeluxeCombat v1.30.8, DeluxeCombat_Addon_WG v0.9, LifestealCore vBuild 6c, PlugManX v2.3.0,
[17:39:43] [Server thread/WARN]: [SuperVanish] Settings:
[17:39:43] [Server thread/WARN]: [SuperVanish]   MsgsVersion: 6.2.7
[17:39:43] [Server thread/WARN]: [SuperVanish]   Settings: ||InvisibilityFeatures.NightVisionEffect>true||InvisibilityFeatures.DisableDamage>true||InvisibilityFeatures.DisableHunger>true||InvisibilityFeatures.DisableMobTarget>true||InvisibilityFeatures.OpenChestsSilently>true||InvisibilityFeatures.DisablePressurePlates>true||InvisibilityFeatures.DisablePush>true||InvisibilityFeatures.DefaultPickUpItemsOption>false||InvisibilityFeatures.ModifyTablistPackets>true||InvisibilityFeatures.Fly.Enable>true||InvisibilityFeatures.Fly.DisableOnReappear>true||VanishStateFeatures.AutoVanishOnJoin>false||VanishStateFeatures.ReappearOnWorldChange>false||VanishStateFeatures.ReappearOnQuit>false||VanishStateFeatures.CheckPermissionOnWorldChange>false||VanishStateFeatures.CheckPermissionOnQuit>false||VanishStateFeatures.CheckPermissionOn>false||IndicationFeatures.LayeredPermissions.EnableSeePermission>true||IndicationFeatures.LayeredPermissions.LayeredSeeAndUsePermissions>false||IndicationFeatures.LayeredPermissions.MaxLevel>100||IndicationFeatures.MarkVanishedPlayersAsSpectators>true||MessageOptions.FakeJoinQuitMessages.BroadcastFakeQuitOnVanish>false||MessageOptions.FakeJoinQuitMessages.BroadcastFakeJoinOnReappear>false||MessageOptions.FakeJoinQuitMessages.AnnounceVanishReappearToAdmins>true||MessageOptions.FakeJoinQuitMessages.SendMessageOnlyToAdmins>true||MessageOptions.FakeJoinQuitMessages.SendMessageOnlyToUsers>false||MessageOptions.HideRealJoinQuitMessages>true||MessageOptions.ReappearOnQuitHideLeaveMsg>true||MessageOptions.AnnounceRealJoinQuitToAdmins>true||MessageOptions.AnnounceDeathToAdmins>true||MessageOptions.RemindVanishedOnJoin>true||MessageOptions.DisplayActionBar>true||RestrictiveOptions.PreventBlockBreaking>false||RestrictiveOptions.PreventBlockPlacing>false||RestrictiveOptions.PreventHittingEntities>false||ExternalInvisibility.ServerList.AdjustAmountOfOnlinePlayers>true||ExternalInvisibility.ServerList.AdjustListOfLoggedInPlayers>true||HookOptions.EnableEssentialsHook>true||HookOptions.EnableDynmapHook>true||HookOptions.DynmapSendJoinLeaveMessages>true||HookOptions.EnableTrailGUIHook>true||HookOptions.EnablePlaceholderAPIHook>true||HookOptions.EnableMVdWPlaceholderAPIHook>true||HookOptions.EnableCitizensHook>true||CompatibilityOptions.PlayerJoinEventPriority>HIGH||CompatibilityOptions.PlayerQuitEventPriority>HIGH||MiscellaneousOptions.UpdateChecker.Enable>true||MiscellaneousOptions.UpdateChecker.NotifyAdmins>true||ConfigVersion>6.2.7||
[17:39:43] [Server thread/WARN]: [SuperVanish] StackTrace: 
[17:39:43] [Server thread/WARN]: java.lang.NullPointerException: at index 0
[17:39:43] [Server thread/WARN]:     at com.google.common.collect.ObjectArrays.checkElementNotNull(ObjectArrays.java:229)
[17:39:43] [Server thread/WARN]:     at com.google.common.collect.ObjectArrays.checkElementsNotNull(ObjectArrays.java:219)
[17:39:43] [Server thread/WARN]:     at com.google.common.collect.ObjectArrays.checkElementsNotNull(ObjectArrays.java:213)
[17:39:43] [Server thread/WARN]:     at com.google.common.collect.ImmutableList.construct(ImmutableList.java:353)
[17:39:43] [Server thread/WARN]:     at com.google.common.collect.ImmutableList.copyOf(ImmutableList.java:265)
[17:39:43] [Server thread/WARN]:     at SuperVanish.jar//de.myzelyam.supervanish.visibility.hiders.modules.PlayerInfoModule.onPacketSending(PlayerInfoModule.java:50)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokeSendingListener(SortedPacketListenerList.java:195)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.SortedPacketListenerList.invokePacketSending(SortedPacketListenerList.java:149)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.PacketFilterManager.postPacketToListeners(PacketFilterManager.java:547)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.PacketFilterManager.invokePacketSending(PacketFilterManager.java:521)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.netty.manager.NetworkManagerInjector.onPacketSending(NetworkManagerInjector.java:99)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector.processOutbound(NettyChannelInjector.java:571)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.netty.channel.NettyChannelInjector$2.doProxyRunnable(NettyChannelInjector.java:472)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.netty.channel.NettyEventLoopProxy.proxyRunnable(NettyEventLoopProxy.java:43)
[17:39:43] [Server thread/WARN]:     at ProtocolLib (8).jar//com.comphenix.protocol.injector.netty.channel.NettyEventLoopProxy.execute(NettyEventLoopProxy.java:252)
[17:39:43] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.sendPacket(NetworkManager.java:432)
[17:39:43] [Server thread/WARN]:     at net.minecraft.network.NetworkManager.a(NetworkManager.java:379)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2162)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2148)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.postChunkLoadJoin(PlayerList.java:362)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.players.PlayerList.lambda$placeNewPlayer$0(PlayerList.java:316)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[17:39:43] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
[17:39:43] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1343)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197)
[17:39:43] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bh(MinecraftServer.java:1320)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1313)
[17:39:43] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.c(IAsyncTaskHandler.java:136)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1391)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1175)
[17:39:43] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318)
[17:39:43] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[17:39:43] [Server thread/WARN]: [SuperVanish] Please include this information
[17:39:43] [Server thread/WARN]: [SuperVanish] if you report the issue.
[17:39:43] [Server thread/WARN]: [SuperVanish] IMPORTANT: Please make sure that you are using the latest dev-build of ProtocolLib and that your server is up-to-date! This error likely happened inside of ProtocolLib code which is out of SuperVanish's control. It's part of an optional invisibility module and can be removed safely by disabling ModifyTablistPackets in the config. Please report this error if you can reproduce it on an up-to-date server with only latest ProtocolLib and latest SV installed.
[17:39:43] [Server thread/INFO]: [DiscordSRV] Player ScOp_E joined with silent joining permission, not sending a join message
[17:39:43] [Server thread/INFO]: ScOp_E[/80.89.73.234:38104] logged in with entity id 400 at ([world]64.07611999434695, 70.0, -50.01752250690292)
[17:39:43] [Craft Scheduler Thread - 24 - /INFO]: [] ScOp_E logged in 80.89.73.234
[17:39:43] [Server thread/INFO]: + ScOp_E
[17:39:43] [Server thread/INFO]: [ChatItem] Loading ViaVersion support ...
[17:39:43] [Server thread/INFO]: [] No on-going  session for player: CraftPlayer{name=ScOp_E} with ID 85.202.160.206:38104. 
[17:39:43] [Server thread/INFO]: [] Setups using Minecraft proxies will start delayed when the command from the proxy is received
[17:39:44] [Server thread/INFO]: [] Player info  command for ScOp_E from proxy
[17:39:44] [Server thread/INFO]: [] Delaying force  until join event fired?: true
[17:39:44] [Server thread/ERROR]: [com.fastasyncworldedit.bukkit.FaweBukkit] Persistent Brushes Failed
java.lang.NullPointerException: null
    at com.google.gson.internal.$Gson$Preconditions.checkNotNull($Gson$Preconditions.java:47) ~[gson-2.10.jar:?]
    at com.fastasyncworldedit.bukkit.util.ItemUtil.<init>(ItemUtil.java:32) ~[FastAsyncWorldEdit-Bukkit-2.4.9-SNAPSHOT-294.jar:?]
    at com.fastasyncworldedit.bukkit.FaweBukkit.getItemUtil(FaweBukkit.java:146) ~[FastAsyncWorldEdit-Bukkit-2.4.9-SNAPSHOT-294.jar:?]
    at com.fastasyncworldedit.bukkit.util.BukkitItemStack.getNativeItem(BukkitItemStack.java:37) ~[FastAsyncWorldEdit-Bukkit-2.4.9-SNAPSHOT-294.jar:?]
    at com.sk89q.worldedit.LocalSession.getTool(LocalSession.java:1161) ~[FastAsyncWorldEdit-Bukkit-2.4.9-SNAPSHOT-294.jar:?]
    at com.sk89q.worldedit.LocalSession.getTool(LocalSession.java:1154) ~[FastAsyncWorldEdit-Bukkit-2.4.9-SNAPSHOT-294.jar:?]
    at com.fastasyncworldedit.bukkit.listener.BrushListener.onPlayerMove(BrushListener.java:61) ~[FastAsyncWorldEdit-Bukkit-2.4.9-SNAPSHOT-294.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor24.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleMovePlayer(ServerGamePacketListenerImpl.java:1598) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundMovePlayerPacket.handle(ServerboundMovePlayerPacket.java:29) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundMovePlayerPacket$Rot.handle(ServerboundMovePlayerPacket.java:114) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1291) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[17:39:46] [Craft Scheduler Thread - 12 - mcMMO/INFO]: [mcMMO] Creating new data for player: ScOp_E
[17:39:46] [Netty Epoll Server IO #2/INFO]: [floodgate] Floodgate player logged in as .krisBG555 disconnected
[17:39:49] [Netty Epoll Server IO #3/INFO]: [floodgate] Floodgate player logged in as .krisBG555 disconnected
[17:40:00] [Netty Epoll Server IO #0/INFO]: [floodgate] Floodgate player logged in as .krisBG555 disconnected
[17:40:01] [Netty Epoll Server IO #1/INFO]: [floodgate] Floodgate player logged in as .krisBG555 disconnected
[17:40:01] [Netty Epoll Server IO #3/INFO]: [floodgate] Floodgate player logged in as .krisBG555 disconnected
[17:40:02] [Netty Epoll Server IO #0/INFO]: [floodgate] Floodgate player logged in as .krisBG555 disconnected
[17:40:04] [Server thread/INFO]: ScOp_E issued server command: /plugins
[17:40:05] [Netty Epoll Server IO #1/INFO]: [floodgate] Floodgate player logged in as .krisBG555 disconnected
[17:40:08] [Netty Epoll Server IO #2/INFO]: [floodgate] Floodgate player logged in as .krisBG555 disconnected
[17:40:09] [Netty Epoll Server IO #3/INFO]: [floodgate] Floodgate player logged in as .krisBG555 disconnected
[17:40:10] [Netty Epoll Server IO #0/INFO]: [floodgate] Floodgate player logged in as .krisBG555 disconnected
[17:40:10] [Netty Epoll Server IO #1/INFO]: [floodgate] Floodgate player logged in as .krisBG555 disconnected
[17:40:21] [Server thread/INFO]: ScOp_E issued server command: /whitelist off
[17:40:21] [Server thread/INFO]: [ScOp_E: Whitelist is now turned off]
[17:41:19] [Server thread/INFO]: tylerisproav3[/90.220.254.34:41290] logged in with entity id 805 at ([world]56.92524338114824, 70.0, -51.55729602785933)
[17:41:19] [Server thread/INFO]: + tylerisproav3
[17:41:20] [Server thread/INFO]: [] No on-going  session for player: CraftPlayer{name=tylerisproav3} with ID 85.202.160.206:41290. 
[17:41:20] [Server thread/INFO]: [] Setups using Minecraft proxies will start delayed when the command from the proxy is received
[17:41:20] [Server thread/INFO]: [floodgate] Floodgate player logged in as .krisBG555 joined (UUID: 00000000-0000-0000-0009-01fb90345d1f)
[17:41:20] [Server thread/INFO]: .krisBG555[/79.100.52.253:41320] logged in with entity id 809 at ([world]52.5, -12.5, -38.5)
[17:41:20] [Server thread/INFO]: + .krisBG555
[17:41:21] [Craft Scheduler Thread - 13 - /INFO]: [] Player .krisBG555 is connecting through Geyser Floodgate.
[17:41:29] [Craft Scheduler Thread - 30 - ./INFO]: [.] tylerisproav3 logged in 90.220.254.34
[17:41:31] [Async Chat Thread - #1/INFO]: [Not Secure] ARES tylerisproav3 » hi
[17:41:35] [Craft Scheduler Thread - 27 - /INFO]: [] The user .krisBG555 has 2 accounts:
[17:41:35] [Craft Scheduler Thread - 27 - /INFO]: [] _krisbg555, .krisBG555.
[17:41:35] [Craft Scheduler Thread - 27 - /INFO]: [] .krisBG555 logged in 79.100.52.253
[17:41:40] [Async Chat Thread - #1/INFO]: [Not Secure] ARES tylerisproav3 » hey owner
[17:41:41] [Async Chat Thread - #1/INFO]: [Not Secure] MEMBER .krisBG555 » Yeeeessss
[17:41:47] [Server thread/INFO]: .krisBG555 issued server command: /spawn
[17:41:53] [Server thread/WARN]: .krisBG555 moved too quickly! 19.031635,83.0,-8.558284999999998
[17:41:54] [Server thread/INFO]: ScOp_E issued server command: /plugman reload InventoryRollbackPlus
[17:41:55] [Server thread/INFO]: [InventoryRollbackPlus] Disabling InventoryRollbackPlus v1.6.7
[17:41:55] [Server thread/INFO]: [InventoryRollbackPlus] Setting shutdown state
[17:41:55] [Server thread/INFO]: [InventoryRollbackPlus] Saving player inventories...
[17:41:55] [Server thread/INFO]: [InventoryRollbackPlus] Done saving player inventories!
[17:41:55] [Server thread/INFO]: [InventoryRollbackPlus] Plugin is disabled!
[17:41:55] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.8
[17:41:55] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
[17:41:55] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[17:41:55] [Craft Scheduler Thread - 22 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[17:41:55] [Craft Scheduler Thread - 22 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] You are running the latest version.
[17:42:42] [Server thread/INFO]: OkNxt[/43.231.57.205:44074] logged in with entity id 1224 at ([world]8.300975659594252, 63.0, 9.780473663198144)
[17:42:42] [Server thread/INFO]: + OkNxt
[17:42:42] [Server thread/INFO]: [] No on-going  session for player: CraftPlayer{name=OkNxt} with ID 85.202.160.206:44074. 
[17:42:42] [Server thread/INFO]: [] Setups using Minecraft proxies will start delayed when the command from the proxy is received
[17:42:49] [Async Chat Thread - #2/INFO]: [Not Secure] MEMBER .krisBG555 » Can we get fall keys pls
[17:42:51] [Craft Scheduler Thread - 29 - /INFO]: [] OkNxt logged in 43.231.57.205
[17:43:01] [Async Chat Thread - #2/INFO]: [Not Secure] ARES tylerisproav3 » hey scope the names to the npcs are broken
[17:43:07] [Async Chat Thread - #3/INFO]: [Not Secure] ARES tylerisproav3 » if you didnt alr know :D
[17:43:18] [Async Chat Thread - #2/INFO]: [Not Secure] OWNER ScOp_E [Winter]» ...
[17:43:28] [Async Chat Thread - #3/INFO]: [Not Secure] ARES tylerisproav3 » sry ;-;
[17:43:34] [Server thread/INFO]: gamerinactiune[/86.120.225.198:45794] logged in with entity id 1462 at ([world]-3662.300000011921, 47.0, -1952.8274567022438)
[17:43:34] [Server thread/INFO]: + gamerinactiune
[17:43:34] [Server thread/INFO]: tylerisproav3 issued server command: /tags
[17:43:34] [Server thread/INFO]: [] No on-going  session for player: CraftPlayer{name=gamerinactiune} with ID 85.202.160.206:45794. 
[17:43:34] [Server thread/INFO]: [] Setups using Minecraft proxies will start delayed when the command from the proxy is received
[17:43:45] [Craft Scheduler Thread - 37 - /INFO]: [] gamerinactiune logged in 86.120.225.198
[17:43:45] [Server thread/INFO]: OkNxt issued server command: /mcmmogui
[17:43:46] [Async Chat Thread - #2/INFO]: [Not Secure] POSEIDON gamerinactiune » yessir
[17:43:48] [Server thread/INFO]: gamerinactiune issued server command: /spawn
[17:44:05] [Async Chat Thread - #3/INFO]: [Not Secure] POSEIDON gamerinactiune » so whats the update
[17:44:05] [Server thread/INFO]: notaxiomod[/102.65.123.175:46816] logged in with entity id 1827 at ([world]52.532332168014484, -12.5, -40.35308136514257)
[17:44:05] [Server thread/INFO]: + notaxiomod
[17:44:05] [Server thread/INFO]: [] No on-going  session for player: CraftPlayer{name=notaxiomod} with ID 85.202.160.206:46816. 
[17:44:05] [Server thread/INFO]: [] Setups using Minecraft proxies will start delayed when the command from the proxy is received
[17:44:09] [Async Chat Thread - #2/INFO]: [Not Secure] MEMBER .krisBG555 » Can we get fall keys pls
[17:44:12] [Craft Scheduler Thread - 39 - /INFO]: [] The user notaxiomod has 3 accounts:
[17:44:12] [Craft Scheduler Thread - 39 - /INFO]: [] axiomod, notaxiomod, axiomad.
[17:44:12] [Craft Scheduler Thread - 39 - /INFO]: [] notaxiomod logged in 102.65.123.175
[17:44:17] [pool-13-thread-1/INFO]: [LifestealCore] [Scheduled Save] Saved data to file... 22ms
[17:44:17] [Server thread/INFO]: [CLV] Successfully auto-saved all player data (14ms).
[17:44:17] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give notaxiomod 50
[17:44:17] [Server thread/INFO]: $50 added to notaxiomod account. New balance: $10,100.73
[17:44:21] [Async Chat Thread - #3/INFO]: [Not Secure] ARES notaxiomod » ScOp_E you promised us fall keys
[17:44:22] [Server thread/INFO]: ScOp_E issued server command: /citizens
[17:44:43] [Server thread/INFO]: Dimodron[/146.255.74.19:48020] logged in with entity id 2025 at ([world]3500.699999988079, 78.0, 4064.8450681798317)
[17:44:43] [Server thread/INFO]: + Dimodron
[17:44:43] [Server thread/INFO]: [] No on-going  session for player: CraftPlayer{name=Dimodron} with ID 85.202.160.206:48020. 
[17:44:43] [Server thread/INFO]: [] Setups using Minecraft proxies will start delayed when the command from the proxy is received
[17:44:50] [Server thread/INFO]: notaxiomod issued server command: /hub
[17:44:55] [Server thread/INFO]: notaxiomod issued server command: /warp afk
[17:45:07] [Server thread/INFO]: VinniesPudding[/92.97.240.191:48834] logged in with entity id 2308 at ([world]59.5369509203576, 69.0, -51.45667440932566)
[17:45:07] [Server thread/INFO]: + VinniesPudding
[17:45:07] [Server thread/INFO]: [] No on-going  session for player: CraftPlayer{name=VinniesPudding} with ID 85.202.160.206:48834. 
[17:45:07] [Server thread/INFO]: [] Setups using Minecraft proxies will start delayed when the command from the proxy is received
[17:45:11] [Async Chat Thread - #2/INFO]: [Not Secure] ARES notaxiomod » ScOp_E you promised us fall keys
[17:45:16] [Server thread/WARN]: [NexEngine] Loaded class me.clip.placeholderapi.PlaceholderAPI from PlaceholderAPI v2.11.2 which is not a depend or softdepend of this plugin.
[17:45:17] [Async Chat Thread - #3/INFO]: [Not Secure] ARES tylerisproav3 » true
[17:45:17] [Craft Scheduler Thread - 30 - /INFO]: [] The user VinniesPudding has 3 accounts:
[17:45:17] [Craft Scheduler Thread - 30 - /INFO]: [] cherylv, flbe, VinniesPudding.
[17:45:17] [Craft Scheduler Thread - 30 - /INFO]: [] VinniesPudding logged in 92.97.240.191
[17:45:21] [Async Chat Thread - #3/INFO]: [Not Secure] HADES VinniesPudding » yeah
[17:45:33] [Async Chat Thread - #2/INFO]: [Not Secure] POSEIDON gamerinactiune » yes
[17:45:39] [Async Chat Thread - #2/INFO]: [Not Secure] HADES VinniesPudding » some stuff is bugged
[17:45:40] [Async Chat Thread - #3/INFO]: [Not Secure] POSEIDON gamerinactiune » and what s the update
[17:45:45] [Async Chat Thread - #2/INFO]: [Not Secure] OWNER ScOp_E [Winter]» wha is bugged?
[17:45:49] [Async Chat Thread - #3/INFO]: [Not Secure] ARES notaxiomod » ScOp_E you promised us fall keys
[17:45:53] [Async Chat Thread - #2/INFO]: [Not Secure] HADES VinniesPudding » the parrot
[17:45:53] [Async Chat Thread - #3/INFO]: [Not Secure] POSEIDON gamerinactiune » what s the update
[17:45:55] [Server thread/INFO]: .krisBG555 issued server command: /homes
[17:45:58] [Server thread/INFO]: gamerinactiune issued server command: /levelgui
[17:45:58] [Async Chat Thread - #2/INFO]: [Not Secure] ARES tylerisproav3 » i alr told him
[17:46:00] [Async Chat Thread - #3/INFO]: [Not Secure] ARES notaxiomod » 1.19.3
[17:46:01] [Server thread/INFO]: .krisBG555 issued server command: /homes mine
[17:46:01] [Async Chat Thread - #3/INFO]: [Not Secure] POSEIDON gamerinactiune » lol
[17:46:02] [Server thread/INFO]: gamerinactiune issued server command: /levelgui
[17:46:05] [Server thread/INFO]: [mcMMO] [config] Initializing config: itemweights.yml
[17:46:05] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: itemweights.yml
[17:46:05] [Server thread/INFO]: [mcMMO] [config] Config initialized: itemweights.yml
[17:46:05] [Server thread/INFO]: gamerinactiune issued server command: /level
[17:46:06] [Server thread/WARN]: .krisBG555 moved too quickly! -3946.104061,-64.0,-4277.22387
[17:46:06] [Server thread/INFO]: gamerinactiune issued server command: /levelgui
[17:46:06] [Async Chat Thread - #2/INFO]: [Not Secure] HADES VinniesPudding » and the allay
[17:46:11] [Server thread/INFO]: gamerinactiune issued server command: /discord
[17:46:17] [Async Chat Thread - #3/INFO]: [Not Secure] OWNER ScOp_E [Winter]» bruh that yeh
[17:46:18] [Server thread/INFO]: gamerinactiune issued server command: /rtp
[17:46:20] [Server thread/INFO]: gamerinactiune issued server command: /cf
[17:46:21] [Server thread/INFO]: gamerinactiune issued server command: /vote
[17:46:24] [Async Chat Thread - #2/INFO]: [Not Secure] HADES VinniesPudding » bruh wtf
[17:46:27] [Async Chat Thread - #3/INFO]: [Not Secure] OWNER ScOp_E [Winter]» told ya imma need to fix smth
[17:46:28] [Async Chat Thread - #3/INFO]: [Not Secure] ARES notaxiomod » ???
[17:46:29] [Async Chat Thread - #3/INFO]: [Not Secure] POSEIDON gamerinactiune » the names ....
[17:46:35] [Async Chat Thread - #2/INFO]: [Not Secure] POSEIDON gamerinactiune » the names are bugged lol
[17:46:38] [Async Chat Thread - #2/INFO]: [Not Secure] MEMBER .krisBG555 » Ye bro
[17:46:40] [Async Chat Thread - #2/INFO]: [Not Secure] HADES VinniesPudding » alr then imma afk
[17:46:41] [Async Chat Thread - #2/INFO]: [Not Secure] OWNER ScOp_E [Winter]» no shit
[17:46:49] [Server thread/WARN]: .krisBG555 moved wrongly!
[17:46:54] [Server thread/INFO]: [DiscordSRV] Player ScOp_E quit with silent quitting permission, not sending a quit message
[17:47:00] [Server thread/INFO]: [DiscordSRV] Player ScOp_E joined with silent joining permission, not sending a join message
[17:47:00] [Server thread/INFO]: ScOp_E[/80.89.73.234:52542] logged in with entity id 2956 at ([world]30.034309120017923, 69.0, -39.65036754154518)
[17:47:00] [Craft Scheduler Thread - 47 - /INFO]: [] ScOp_E logged in 80.89.73.234
[17:47:00] [Server thread/INFO]: + ScOp_E
[17:47:01] [Server thread/INFO]: [] No on-going  session for player: CraftPlayer{name=ScOp_E} with ID 85.202.160.206:52542. 
[17:47:01] [Server thread/INFO]: [] Setups using Minecraft proxies will start delayed when the command from the proxy is received
[17:47:01] [Server thread/INFO]: [] Player info  command for ScOp_E from proxy
[17:47:01] [Server thread/INFO]: [] Delaying force  until join event fired?: true
[17:47:01] [Craft Scheduler Thread - 33 - /INFO]: [] Logging player ScOp_E in
[17:47:01] [Craft Scheduler Thread - 33 - /WARN]: [] Player CraftPlayer{name=ScOp_E} is already authenticated. Cancelling force .
[17:47:03] [Craft Scheduler Thread - 46 - mcMMO/INFO]: [mcMMO] Creating new data for player: ScOp_E
[17:47:07] [Plan Non critical-pool-5/WARN]: [Plan] Database can't keep up with transactions (Queue size: 500), dropping some unimportant transactions from execution.
[17:47:37] [Server thread/INFO]: Dimodron[/146.255.74.19:53716] logged in with entity id 3111 at ([world]3500.699999988079, 78.0, 4064.8370061006053)
[17:47:37] [Server thread/INFO]: + Dimodron
[17:47:37] [Server thread/INFO]: [] No on-going  session for player: CraftPlayer{name=Dimodron} with ID 85.202.160.206:53716. 
[17:47:37] [Server thread/INFO]: [] Setups using Minecraft proxies will start delayed when the command from the proxy is received
[17:47:39] [Server thread/INFO]: .krisBG555 issued server command: /ah
[17:47:44] [Craft Scheduler Thread - 46 - /INFO]: [] The user Dimodron has 2 accounts:
[17:47:44] [Craft Scheduler Thread - 46 - /INFO]: [] Dimodron, suckmypenis.
[17:47:44] [Craft Scheduler Thread - 46 - /INFO]: [] Dimodron logged in 146.255.74.19
[17:47:47] [Server thread/INFO]: .krisBG555 issued server command: /shop
[17:47:48] [Server thread/INFO]: Dimodron issued server command: /spawn
[17:47:57] [Server thread/INFO]: ScOp_E issued server command: /citizens reload
[17:47:59] [Server thread/INFO]: [EconomyShopGUI] .krisBG555 bought 1 x Shulker Box(Equipment-Shop.2) for $5,000 with the buy screen.
[17:47:59] [Server thread/INFO]: ScOp_E issued server command: /citizens reload
[17:48:20] [Async Chat Thread - #4/INFO]: [Not Secure] MEMBER Dimodron » ScOp_E .krisBG555 has hacks
[17:48:25] [Async Chat Thread - #5/INFO]: [Not Secure] POSEIDON gamerinactiune » yes
[17:48:26] [Server thread/INFO]: [Essentials] Created a User for CIT-aa3b3052f0fa (aa3b3052-f0fa-2c0b-9f69-15a838993b11) for non Bukkit type: net.citizensnpcs.nms.v1_19_R2.entity.EntityHumanNPC$PlayerNPC
[17:48:27] [Server thread/INFO]: OkNxt issued server command: /vote
[17:48:27] [Server thread/INFO]: ScOp_E issued server command: /citizens reload
[17:48:28] [Server thread/INFO]: ScOp_E issued server command: /citizens reload
[17:48:31] [Server thread/INFO]: OkNxt issued server command: /cf
[17:48:40] [Async Chat Thread - #4/INFO]: ------- Match Type: SWEAR ~ CHAT
[17:48:40] [Async Chat Thread - #4/INFO]: Match: \b((\$|s)+(\W|_)*(h)+(\W|_)*(7|t)+(\W|_)*)\b
[17:48:40] [Async Chat Thread - #4/INFO]: Catch > gamerinactiune: he flew like no sht
[17:48:47] [Async Chat Thread - #5/INFO]: [Not Secure] POSEIDON gamerinactiune » he flew like no s h h h h t
[17:49:01] [Server thread/INFO]: OkNxt issued server command: /rtp
[17:49:17] [pool-13-thread-1/INFO]: [LifestealCore] [Scheduled Save] Saved data to file... 4ms
[17:49:17] [Server thread/INFO]: [CLV] Successfully auto-saved all player data (26ms).
[17:49:17] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give notaxiomod 50
[17:49:17] [Server thread/INFO]: $50 added to notaxiomod account. New balance: $10,150.73
[17:49:17] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give VinniesPudding 50
[17:49:17] [Server thread/INFO]: $50 added to VinniesPudding account. New balance: $48,879.48
[17:49:29] [Async Chat Thread - #4/INFO]: [Not Secure] POSEIDON gamerinactiune » VinniesPudding how did u got 50 hearts :D
[17:49:42] [Server thread/INFO]: gamerinactiune issued server command: /tpa king
[17:49:44] [Server thread/INFO]: gamerinactiune issued server command: /tpa VinniesPudding
[17:49:45] [Server thread/INFO]: tylerisproav3 issued server command: /trade ScOp_E
[17:50:07] [Async Chat Thread - #5/INFO]: [Not Secure] POSEIDON gamerinactiune » lol found fall boots on the ground
[17:50:09] [Server thread/INFO]: KingCrownXD[/99.239.188.140:58636] logged in with entity id 4193 at ([world]-4536.421971379826, -52.0, -5857.023282616135)
[17:50:09] [Server thread/INFO]: + KingCrownXD
[17:50:09] [Server thread/INFO]: [] No on-going  session for player: CraftPlayer{name=KingCrownXD} with ID 85.202.160.206:58636. 
[17:50:09] [Server thread/INFO]: [] Setups using Minecraft proxies will start delayed when the command from the proxy is received
[17:50:09] [Server thread/INFO]: [] Player info  command for KingCrownXD from proxy
[17:50:09] [Server thread/INFO]: [] Delaying force  until join event fired?: true
[17:50:09] [Craft Scheduler Thread - 49 - /INFO]: [] Logging player KingCrownXD in
[17:50:09] [Craft Scheduler Thread - 49 - /INFO]: [] The user KingCrownXD has 2 accounts:
[17:50:09] [Craft Scheduler Thread - 49 - /INFO]: [] crown434, KingCrownXD.
[17:50:09] [Craft Scheduler Thread - 49 - /INFO]: [] KingCrownXD logged in 99.239.188.140
[17:50:12] [Async Chat Thread - #4/INFO]: [Not Secure] ZEUS KingCrownXD » back
[17:50:21] [Async Chat Thread - #4/INFO]: [Not Secure] POSEIDON gamerinactiune » can u tp me to the xp farm
[17:50:21] [Async Chat Thread - #4/INFO]: [Not Secure] ARES tylerisproav3 » ill buy them
[17:50:24] [Async Chat Thread - #5/INFO]: [Not Secure] POSEIDON gamerinactiune » bc im stupid
[17:50:30] [Server thread/INFO]: tylerisproav3 issued server command: /trade gamerinactiune
[17:50:32] [Server thread/INFO]: .krisBG555 issued server command: /backpack
[17:50:32] [Async Chat Thread - #4/INFO]: [Not Secure] POSEIDON gamerinactiune » with what tyler
[17:50:34] [Server thread/INFO]: gamerinactiune issued server command: /trade accept tylerisproav3
[17:50:40] [Async Chat Thread - #5/INFO]: [Not Secure] POSEIDON gamerinactiune » nah
[17:50:42] [Server thread/INFO]: .krisBG555 issued server command: /backpack
[17:50:44] [Server thread/INFO]: OkNxt issued server command: /sit
[17:50:44] [Async Chat Thread - #5/INFO]: [Not Secure] ARES tylerisproav3 » pls D:
[17:51:08] [Server thread/INFO]: Dimodron issued server command: /msg KingCrownXD ok can we do it now?:
[17:51:17] [Async Chat Thread - #4/INFO]: [Not Secure] OWNER ScOp_E [Winter]» ahh
[17:51:18] [Server thread/INFO]: KingCrownXD issued server command: /msg Dimodron yee ima rtp then u tp
[17:51:23] [Async Chat Thread - #5/INFO]: [Not Secure] POSEIDON gamerinactiune » bacl
[17:51:26] [Async Chat Thread - #4/INFO]: [Not Secure] ZEUS KingCrownXD » can i get my fall keys :o?
[17:51:30] [Async Chat Thread - #5/INFO]: [Not Secure] POSEIDON gamerinactiune » yes
[17:51:35] [Server thread/INFO]: [DiscordSRV] Player ScOp_E quit with silent quitting permission, not sending a quit message
[17:51:42] [Server thread/INFO]: tylerisproav3 issued server command: /trade gamerinactiune
[17:51:46] [Server thread/INFO]: gamerinactiune issued server command: /withdraw 48
[17:51:46] [Server thread/INFO]:  Lifesteal » Removed 48 hearts from gamerinactiune!
[17:51:46] [Server thread/INFO]:  Lifesteal » Successfully gave x48 Heart to gamerinactiune!
[17:51:49] [Async Chat Thread - #4/INFO]: [Not Secure] POSEIDON gamerinactiune » nah
[17:51:52] [Server thread/INFO]: [DiscordSRV] Player ScOp_E joined with silent joining permission, not sending a join message
[17:51:52] [Server thread/INFO]: ScOp_E[/80.89.73.234:33864] logged in with entity id 4860 at ([world]25.158130157560116, 67.0, -51.81992243002441)
[17:51:52] [Craft Scheduler Thread - 83 - /INFO]: [] ScOp_E logged in 80.89.73.234
[17:51:52] [Server thread/INFO]: + ScOp_E
[17:51:53] [Server thread/INFO]: [] No on-going  session for player: CraftPlayer{name=ScOp_E} with ID 85.202.160.206:33864. 
[17:51:53] [Server thread/INFO]: [] Setups using Minecraft proxies will start delayed when the command from the proxy is received
[17:51:53] [Server thread/INFO]: [] Player info  command for ScOp_E from proxy
[17:51:53] [Server thread/INFO]: [] Delaying force  until join event fired?: true
[17:51:53] [Craft Scheduler Thread - 67 - /INFO]: [] Logging player ScOp_E in
[17:51:53] [Craft Scheduler Thread - 67 - /WARN]: [] Player CraftPlayer{name=ScOp_E} is already authenticated. Cancelling force .
[17:51:55] [Server thread/INFO]: KingCrownXD issued server command: /echest
[17:51:55] [Craft Scheduler Thread - 67 - mcMMO/INFO]: [mcMMO] Creating new data for player: ScOp_E
[17:51:58] [Async Chat Thread - #5/INFO]: [Not Secure] HADES VinniesPudding » nobody got fall keys
[17:51:58] [Async Chat Thread - #4/INFO]: [Not Secure] MEMBER .krisBG555 » Can we get fall keys pls
[17:52:00] [Async Chat Thread - #5/INFO]: [Not Secure] HADES VinniesPudding » :<
[17:52:03] [Server thread/INFO]: KingCrownXD issued server command: /rtp
[17:52:06] [Server thread/INFO]: KingCrownXD issued server command: /msg Dimodron tp
[17:52:07] [Server thread/INFO]: ScOp_E issued server command: /crates give * fall 1
[17:52:09] [Async Chat Thread - #4/INFO]: [Not Secure] OWNER ScOp_E [Winter]» ups
[17:52:12] [Async Chat Thread - #5/INFO]: [Not Secure] OWNER ScOp_E [Winter]» ff
[17:52:13] [Async Chat Thread - #4/INFO]: [Not Secure] POSEIDON gamerinactiune » ?
[17:52:15] [Server thread/INFO]: KingCrownXD issued server command: /backpack
[17:52:15] [Async Chat Thread - #6/INFO]: [Not Secure] MEMBER .krisBG555 » Lol
[17:52:17] [Async Chat Thread - #6/INFO]: [Not Secure] HADES VinniesPudding » aye a chest
[17:52:17] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » wat
[17:52:19] [Async Chat Thread - #4/INFO]: [Not Secure] OWNER ScOp_E [Winter]» wrong item
[17:52:21] [Async Chat Thread - #6/INFO]: [Not Secure] ARES tylerisproav3 » thx
[17:52:23] [Async Chat Thread - #4/INFO]: [Not Secure] ARES tylerisproav3 » lol
[17:52:23] [Server thread/INFO]: Dimodron issued server command: /tpa KingCrownXD
[17:52:24] [Async Chat Thread - #4/INFO]: [Not Secure] ZEUS KingCrownXD » chest gg
[17:52:25] [Server thread/INFO]: ScOp_E issued server command: /invsee tylerisproav3
[17:52:26] [Server thread/INFO]: KingCrownXD issued server command: /tpaccept
[17:52:29] [Async Chat Thread - #4/INFO]: [Not Secure] MEMBER .krisBG555 » Ye
[17:52:29] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » lol
[17:52:29] [Async Chat Thread - #4/INFO]: [Not Secure] HADES VinniesPudding » ill put it for a good use :D
[17:52:30] [Server thread/INFO]: KingCrownXD issued server command: /withdraw 2-
[17:52:32] [Server thread/INFO]: ScOp_E issued server command: /invsee tylerisproav3
[17:52:35] [Server thread/INFO]: KingCrownXD issued server command: /withdraw 20
[17:52:35] [Server thread/INFO]:  Lifesteal » Removed 20 hearts from KingCrownXD!
[17:52:35] [Server thread/INFO]:  Lifesteal » Successfully gave x20 Heart to KingCrownXD!
[17:52:41] [Server thread/INFO]: Dimodron issued server command: /msg KingCrownXD fair hearts
[17:52:43] [Server thread/INFO]: KingCrownXD issued server command: /echest
[17:52:43] [Async Chat Thread - #6/INFO]: [Not Secure] ARES tylerisproav3 » ill use it for my op item stash lol
[17:52:45] [Server thread/INFO]: ScOp_E issued server command: /invsee tylerisproav3
[17:52:48] [Async Chat Thread - #6/INFO]: [Not Secure] HADES VinniesPudding » ScOp_E
[17:52:48] [Async Chat Thread - #4/INFO]: [Not Secure] POSEIDON gamerinactiune » lol
[17:52:51] [Server thread/INFO]: ScOp_E issued server command: /invsee gamerinactiune
[17:52:53] [Async Chat Thread - #6/INFO]: [Not Secure] HADES VinniesPudding » ScOp_E
[17:52:58] [Server thread/INFO]: ScOp_E issued server command: /invsee KingCrownXD
[17:52:59] [Async Chat Thread - #4/INFO]: [Not Secure] HADES VinniesPudding » dude
[17:53:00] [Server thread/INFO]: KingCrownXD issued server command: /shop
[17:53:00] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » make keyall
[17:53:05] [Async Chat Thread - #6/INFO]: [Not Secure] OWNER ScOp_E [Winter]» KingCrownXD
[17:53:05] [Async Chat Thread - #4/INFO]: [Not Secure] POSEIDON gamerinactiune » for the waiting
[17:53:06] [Server thread/INFO]: [EconomyShopGUI] KingCrownXD bought 16 x Bread(Food-Shop.3) for $400 with the buy screen.
[17:53:09] [Server thread/INFO]: ScOp_E issued server command: /tpo KingCrownXD
[17:53:10] [Async Chat Thread - #6/INFO]: [Not Secure] ZEUS KingCrownXD » 3
[17:53:11] [Async Chat Thread - #4/INFO]: [Not Secure] ZEUS KingCrownXD » 2
[17:53:12] [Async Chat Thread - #6/INFO]: [Not Secure] HADES VinniesPudding » bro is ignoring me '-'
[17:53:13] [Async Chat Thread - #4/INFO]: [Not Secure] POSEIDON gamerinactiune » 1
[17:53:14] [Async Chat Thread - #6/INFO]: [Not Secure] ZEUS KingCrownXD » oof
[17:53:15] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » goooo
[17:53:16] [Server thread/INFO]: ScOp_E issued server command: /invsee Dimodron
[17:53:28] [Async Chat Thread - #4/INFO]: [Not Secure] ARES tylerisproav3 » 'nothing happens'
[17:53:30] [Server thread/INFO]: Zack_xoubi[/149.200.190.119:37036] logged in with entity id 5485 at ([world]45.001751489374726, 65.0, -65.92647199578123)
[17:53:30] [Server thread/INFO]: + Zack_xoubi
[17:53:30] [Server thread/INFO]: [] No on-going  session for player: CraftPlayer{name=Zack_xoubi} with ID 85.202.160.206:37036. 
[17:53:30] [Server thread/INFO]: [] Setups using Minecraft proxies will start delayed when the command from the proxy is received
[17:53:32] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » sad
[17:53:32] [Async Chat Thread - #4/INFO]: [Not Secure] OWNER ScOp_E [Winter]» KingCrownXD where ya put ya chest?
[17:53:36] [Async Chat Thread - #6/INFO]: [Not Secure] ZEUS KingCrownXD » BNOO
[17:53:38] [Server thread/INFO]: ScOp_E issued server command: /invsee notaxiomod
[17:53:38] [Server thread/INFO]: Combat → KingCrownXD got stabbed by Dimodron (30) using following item: iron axe
[17:53:39] [Async Chat Thread - #6/INFO]: [Not Secure] MEMBER Dimodron » YES
[17:53:42] [Async Chat Thread - #6/INFO]: [Not Secure] MEMBER Dimodron » gotem
[17:53:43] [Async Chat Thread - #4/INFO]: [Not Secure] ZEUS KingCrownXD » noo
[17:53:45] [Craft Scheduler Thread - 83 - /INFO]: [] Zack_xoubi logged in 149.200.190.119
[17:53:46] [Async Chat Thread - #6/INFO]: ------- Match Type: SWEAR ~ CHAT
[17:53:46] [Async Chat Thread - #6/INFO]: Match: \b((\$|s)+(\W|_)*(h)+(\W|_)*(7|t)+(\W|_)*)\b
[17:53:46] [Async Chat Thread - #6/INFO]: Catch > gamerinactiune: oh shhh t
[17:53:47] [Server thread/INFO]: ScOp_E issued server command: /invsee OkNxt
[17:53:47] [Async Chat Thread - #6/INFO]: [Not Secure] HADES Zack_xoubi » ay
[17:53:53] [Async Chat Thread - #6/INFO]: [Not Secure] ZEUS KingCrownXD » rip lmao
[17:53:54] [Async Chat Thread - #6/INFO]: [Not Secure] HADES Zack_xoubi » im back
[17:53:55] [Async Chat Thread - #4/INFO]: [Not Secure] MEMBER Dimodron » HA HA
[17:53:56] [Async Chat Thread - #4/INFO]: [Not Secure] MEMBER .krisBG555 » Can we get fall keys pls
[17:53:57] [Async Chat Thread - #4/INFO]: [Not Secure] POSEIDON gamerinactiune » gasp
[17:53:57] [Server thread/INFO]: ScOp_E issued server command: /invsee .krisBG555
[17:54:04] [Async Chat Thread - #7/INFO]: [Not Secure] ZEUS KingCrownXD » my me stuff :(
[17:54:07] [Server thread/INFO]: ScOp_E issued server command: /invsee VinniesPudding
[17:54:11] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » sad
[17:54:14] [Timer-1/INFO]: [zAuctionHouseV3 v3.1.0.4] /home/container/plugins/zAuctionHouseV3/items.json successfully saved !
[17:54:16] [Async Chat Thread - #7/INFO]: [Not Secure] MEMBER Dimodron » ohohoo how much stuff u have
[17:54:16] [Async Chat Thread - #6/INFO]: [Not Secure] HADES Zack_xoubi » crown what happend?
[17:54:17] [pool-13-thread-1/INFO]: [LifestealCore] [Scheduled Save] Saved data to file... 5ms
[17:54:17] [Server thread/INFO]: [CLV] Successfully auto-saved all player data (9ms).
[17:54:17] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give OkNxt 50
[17:54:17] [Server thread/INFO]: $50 added to OkNxt account. New balance: $850
[17:54:17] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give notaxiomod 50
[17:54:17] [Server thread/INFO]: $50 added to notaxiomod account. New balance: $10,200.73
[17:54:20] [Async Chat Thread - #7/INFO]: [Not Secure] MEMBER .krisBG555 » Can we get fall keys pls
[17:54:22] [Async Chat Thread - #6/INFO]: [Not Secure] ZEUS KingCrownXD » died :(
[17:54:23] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » yes
[17:54:26] [Async Chat Thread - #6/INFO]: [Not Secure] HADES Zack_xoubi » how???
[17:54:26] [Server thread/INFO]: .krisBG555 issued server command: /vote
[17:54:27] [Async Chat Thread - #7/INFO]: [Not Secure] ZEUS KingCrownXD » bruh
[17:54:28] [Async Chat Thread - #6/INFO]: [Not Secure] ZEUS KingCrownXD » gamer
[17:54:28] [Server thread/INFO]: gamerinactiune issued server command: /pc ur for real ?
[17:54:28] [Server thread/INFO]: [SPY-Eternity] gamerinactiune → ur for real ?
[17:54:29] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » a
[17:54:31] [Server thread/INFO]: ScOp_E issued server command: /crates key give * fall 1
[17:54:33] [Async Chat Thread - #6/INFO]: [Not Secure] ZEUS KingCrownXD » u dont even care that i died?
[17:54:34] [Async Chat Thread - #7/INFO]: [Not Secure] ARES tylerisproav3 » GG
[17:54:35] [Server thread/INFO]: KingCrownXD issued server command: /backpack
[17:54:35] [Async Chat Thread - #4/INFO]: [Not Secure] HADES Zack_xoubi » YAY
[17:54:36] [Async Chat Thread - #7/INFO]: [Not Secure] MEMBER Dimodron » yoo fall key
[17:54:36] [Server thread/INFO]: .krisBG555 issued server command: /crates
[17:54:36] [Async Chat Thread - #4/INFO]: [Not Secure] POSEIDON gamerinactiune » dude
[17:54:37] [Server thread/INFO]: ScOp_E issued server command: /spawn
[17:54:38] [Async Chat Thread - #4/INFO]: [Not Secure] ARES tylerisproav3 » ima open
[17:54:39] [Server thread/INFO]: Dimodron issued server command: /spawn
[17:54:39] [Async Chat Thread - #7/INFO]: [Not Secure] ZEUS KingCrownXD » gg
[17:54:40] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » ur really died ?
[17:54:41] [Async Chat Thread - #7/INFO]: [Not Secure] ZEUS KingCrownXD » same
[17:54:42] [Async Chat Thread - #6/INFO]: [Not Secure] HADES Zack_xoubi » thanks
[17:54:42] [Async Chat Thread - #7/INFO]: [Not Secure] ZEUS KingCrownXD » yes
[17:54:42] [Server thread/INFO]:  Crates » Force opened FALL Crate for .krisBG555.
[17:54:42] [Server thread/INFO]:               [ ExcellentCrates - Commands ]              
[17:54:42] [Server thread/INFO]: 
[17:54:42] [Server thread/INFO]:           <> - Required, [] - Optional.
[17:54:42] [Server thread/INFO]: 
[17:54:42] [Server thread/INFO]: ▪ /excellentcrates preview <crateId> [player] - Open crate preview.
[17:54:42] [Server thread/INFO]: ▪ /excellentcrates about  - Some info about the plugin.
[17:54:42] [Server thread/INFO]: ▪ /excellentcrates help  - Show help page.
[17:54:42] [Server thread/INFO]: ▪ /excellentcrates key  - Manage or view player's crate keys.
[17:54:42] [Server thread/INFO]: ▪ /excellentcrates resetlimit <player> <crateId> [rewardId] - Reset reward win limit for specified crate and reward.
[17:54:42] [Server thread/INFO]: ▪ /excellentcrates drop <crateId> <world> <x> <y> <z> - Drop crate at specified location in the world.
[17:54:42] [Server thread/INFO]: ▪ /excellentcrates give <player | *> <crateId> [amount] - Gives crate(s) to a player.
[17:54:42] [Server thread/INFO]: ▪ /excellentcrates reload  - Reload the plugin.
[17:54:42] [Server thread/INFO]: ▪ /excellentcrates forceopen <crateId> [player] - Force open a crate for a player.
[17:54:42] [Server thread/INFO]: ▪ /excellentcrates resetcooldown <player> <crateId> - Reset player cooldown for specified crate.
[17:54:42] [Server thread/INFO]: ▪ /excellentcrates editor  - Opens GUI Editor.
[17:54:42] [Server thread/INFO]: ▪ /excellentcrates menu [menuId] - Open crate menu.
[17:54:42] [Server thread/INFO]: 
[17:54:43] [Async Chat Thread - #6/INFO]: [Not Secure] ZEUS KingCrownXD » bruh
[17:54:54] [Server thread/INFO]:  Crates » Player tylerisproav3 just got the Fall Sword reward from the FALL Crate!
[17:54:56] [Async Chat Thread - #7/INFO]: [Not Secure] ARES tylerisproav3 » sword
[17:54:58] [Server thread/INFO]:  Crates » Player gamerinactiune just got the Fall Pickaxe reward from the FALL Crate!
[17:54:58] [Server thread/INFO]:  Crates » Player .krisBG555 just got the HERA Rank [7 Days] reward from the FALL Crate!
[17:54:59] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » bruh
[17:55:02] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give Zack_xoubi 4000
[17:55:02] [Server thread/INFO]: $4,000 added to Zack_xoubi account. New balance: $12,856.70
[17:55:02] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » how did u died
[17:55:04] [Server thread/INFO]:  Crates » Player KingCrownXD just got the Iron Block reward from the FALL Crate!
[17:55:06] [Async Chat Thread - #6/INFO]: [Not Secure] MEMBER .krisBG555 » Ooooo
[17:55:08] [Async Chat Thread - #7/INFO]: [Not Secure] ZEUS KingCrownXD » bruhh
[17:55:08] [Server thread/INFO]: gamerinactiune issued server command: /pc DUDE UR FOR REAL ?
[17:55:08] [Server thread/INFO]: [SPY-Eternity] gamerinactiune → DUDE UR FOR REAL ?
[17:55:11] [Server thread/INFO]: KingCrownXD issued server command: /pchat
[17:55:11] [Async Chat Thread - #6/INFO]: [SPY-Eternity] KingCrownXD → YES
[17:55:13] [Async Chat Thread - #7/INFO]: [Not Secure] ARES tylerisproav3 » lol iron block
[17:55:14] [Async Chat Thread - #7/INFO]: [Not Secure] MEMBER Dimodron » wow
[17:55:16] [Async Chat Thread - #6/INFO]: [SPY-Eternity] KingCrownXD → he got
[17:55:16] [Async Chat Thread - #7/INFO]: [Not Secure] MEMBER .krisBG555 » i got rank
[17:55:17] [Async Chat Thread - #6/INFO]: [Not Secure] MEMBER Dimodron » 3 rare keys
[17:55:17] [Async Chat Thread - #7/INFO]: [Not Secure] HADES Zack_xoubi » bruh i got 4k only
[17:55:17] [Async Chat Thread - #6/INFO]: [SPY-Eternity] KingCrownXD → SO
[17:55:17] [Server thread/INFO]: gamerinactiune issued server command: /pc HOW TF
[17:55:17] [Server thread/INFO]: [SPY-Eternity] gamerinactiune → HOW TF
[17:55:19] [Async Chat Thread - #6/INFO]: [SPY-Eternity] KingCrownXD → stacked
[17:55:20] [Async Chat Thread - #7/INFO]: [SPY-Eternity] KingCrownXD → AND
[17:55:23] [Server thread/INFO]: gamerinactiune issued server command: /r WHO
[17:55:24] [Async Chat Thread - #7/INFO]: [SPY-Eternity] KingCrownXD → murderedm e
[17:55:26] [Server thread/INFO]: gamerinactiune issued server command: /pc WHO
[17:55:26] [Server thread/INFO]: [SPY-Eternity] gamerinactiune → WHO
[17:55:28] [Async Chat Thread - #7/INFO]: [Not Secure] MEMBER .krisBG555 » i got hera rank
[17:55:29] [Async Chat Thread - #6/INFO]: [SPY-Eternity] KingCrownXD → DIMO
[17:55:34] [Server thread/INFO]: gamerinactiune issued server command: /r OH HE LITTLE SHT
[17:55:35] [Async Chat Thread - #7/INFO]: [Not Secure] MEMBER .krisBG555 » Gg
[17:55:36] [Async Chat Thread - #7/INFO]: [Not Secure] HADES Zack_xoubi » use it
[17:55:38] [Server thread/INFO]: gamerinactiune issued server command: /pc HOW TF
[17:55:38] [Server thread/INFO]: [SPY-Eternity] gamerinactiune → HOW TF
[17:55:42] [Async Chat Thread - #7/INFO]: [Not Secure] MEMBER .krisBG555 » Why
[17:55:42] [Async Chat Thread - #6/INFO]: [Not Secure] HADES Zack_xoubi » again
[17:55:47] [Async Chat Thread - #8/INFO]: [SPY-Eternity] KingCrownXD → he use like 2 crystals
[17:55:47] [Server thread/INFO]: gamerinactiune issued server command: /r Hes dead
[17:55:49] [Async Chat Thread - #8/INFO]: [SPY-Eternity] KingCrownXD → poped me
[17:55:49] [Server thread/INFO]:  Crates » Player Dimodron just got the Totem Of Undying reward from the RARE CRATE!
[17:55:51] [Async Chat Thread - #7/INFO]: [Not Secure] HADES Zack_xoubi » i got trash plz again
[17:55:52] [Server thread/INFO]: gamerinactiune issued server command: /pc HE S DEAD
[17:55:52] [Server thread/INFO]: [SPY-Eternity] gamerinactiune → HE S DEAD
[17:55:52] [Async Chat Thread - #6/INFO]: [SPY-Eternity] KingCrownXD → then finsihed me off
[17:55:54] [Async Chat Thread - #6/INFO]: [SPY-Eternity] KingCrownXD → with an axe
[17:55:55] [Server thread/INFO]: gamerinactiune issued server command: /pc What armor
[17:55:55] [Server thread/INFO]: [SPY-Eternity] gamerinactiune → What armor
[17:55:58] [Async Chat Thread - #7/INFO]: [SPY-Eternity] KingCrownXD → neth
[17:55:59] [Server thread/INFO]:  Crates » Player OkNxt just got the Fall Shovel reward from the FALL Crate!
[17:56:00] [Server thread/INFO]:  Crates » Player VinniesPudding just got the Fall Helmet reward from the FALL Crate!
[17:56:01] [Async Chat Thread - #6/INFO]: [SPY-Eternity] KingCrownXD → maxed probably
[17:56:01] [Async Chat Thread - #6/INFO]: [Not Secure] ARES notaxiomod » ScOp_E i love you :3
[17:56:02] [Async Chat Thread - #7/INFO]: [Not Secure] HADES VinniesPudding » gg
[17:56:03] [Server thread/INFO]: gamerinactiune issued server command: /pc f
[17:56:03] [Server thread/INFO]: [SPY-Eternity] gamerinactiune → f
[17:56:04] [Async Chat Thread - #6/INFO]: [Not Secure] ARES notaxiomod » lol
[17:56:06] [Server thread/INFO]:  Crates » Player Dimodron just got the End Crystal reward from the RARE CRATE!
[17:56:06] [Async Chat Thread - #7/INFO]: [Not Secure] HADES Zack_xoubi » lol
[17:56:11] [Async Chat Thread - #6/INFO]: [Not Secure] MEMBER .krisBG555 » What hera rank do
[17:56:13] [Async Chat Thread - #6/INFO]: [Not Secure] HADES Zack_xoubi » again
[17:56:15] [Server thread/INFO]: gamerinactiune issued server command: /pc i can kill him
[17:56:15] [Server thread/INFO]: [SPY-Eternity] gamerinactiune → i can kill him
[17:56:15] [Async Chat Thread - #7/INFO]: [Not Secure] HADES VinniesPudding » give it
[17:56:15] [Server thread/INFO]: KingCrownXD issued server command: /msg Dimodron gamer is pissed LMAO
[17:56:19] [Server thread/INFO]: gamerinactiune issued server command: /pc wat armor did u have
[17:56:19] [Server thread/INFO]: [SPY-Eternity] gamerinactiune → wat armor did u have
[17:56:21] [Server thread/INFO]:  Crates » Player notaxiomod just got the Iron Block reward from the FALL Crate!
[17:56:22] [Async Chat Thread - #6/INFO]: [Not Secure] HADES Zack_xoubi » every one spam again
[17:56:27] [Async Chat Thread - #7/INFO]: [SPY-Eternity] KingCrownXD → i had full fal
[17:56:27] [Server thread/INFO]: notaxiomod issued server command: /backpack
[17:56:31] [Async Chat Thread - #6/INFO]: [Not Secure] MEMBER .krisBG555 » What hera rank do
[17:56:32] [Async Chat Thread - #7/INFO]: ARES notaxiomod » Block of Iron x27
[17:56:37] [Async Chat Thread - #7/INFO]: [Not Secure] HADES Zack_xoubi » click it
[17:56:41] [Server thread/INFO]: notaxiomod issued server command: /backpack
[17:56:42] [Async Chat Thread - #6/INFO]: [Not Secure] HADES VinniesPudding » give it to me .krisBG555
[17:56:44] [Async Chat Thread - #7/INFO]: [Not Secure] MEMBER .krisBG555 » No
[17:56:45] [Server thread/INFO]: Dimodron issued server command: /msg KingCrownXD do they know ?"
[17:56:46] [Async Chat Thread - #6/INFO]: [Not Secure] HADES Zack_xoubi » DONT
[17:56:51] [Server thread/INFO]: .krisBG555 issued server command: /backpack
[17:56:52] [Async Chat Thread - #7/INFO]: [Not Secure] HADES VinniesPudding » i will give hearts for it :D
[17:56:53] [Server thread/INFO]: notaxiomod issued server command: /back
[17:56:53] [Server thread/INFO]: [Essentials] [!] Core → notaxiomod was denied access to command.
[17:56:55] [Server thread/INFO]: tylerisproav3 issued server command: /ah
[17:56:56] [Server thread/INFO]: KingCrownXD issued server command: /msg Dimodron they think i legit died lol
[17:56:56] [Server thread/INFO]: notaxiomod issued server command: /backpack
[17:57:01] [Server thread/INFO]: notaxiomod issued server command: /backpack
[17:57:01] [Async Chat Thread - #7/INFO]: [Not Secure] MEMBER .krisBG555 » Im not dumv
[17:57:02] [Async Chat Thread - #6/INFO]: [Not Secure] HADES Zack_xoubi » click it then press the green glass
[17:57:06] [Async Chat Thread - #7/INFO]: [Not Secure] HADES VinniesPudding » in /trade
[17:57:07] [Async Chat Thread - #9/INFO]: [Not Secure] MEMBER .krisBG555 » Im not dumb
[17:57:07] [Server thread/INFO]: OkNxt issued server command: /rtp
[17:57:09] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » dimo 1v1 me with ur max out armor
[17:57:11] [Async Chat Thread - #9/INFO]: [Not Secure] POSEIDON gamerinactiune » puss
[17:57:11] [Server thread/INFO]: Dimodron issued server command: /msg KingCrownXD they dont show emotion i think they dont even care
[17:57:13] [Netty Epoll Server IO #1/WARN]: VinniesPudding sent out-of-order chat: 'trade': 1671127026 > 1671127021
[17:57:16] [Async Chat Thread - #7/INFO]: [Not Secure] MEMBER Dimodron » nah
[17:57:19] [Server thread/INFO]: KingCrownXD issued server command: /msg Dimodron u sure LOL
[17:57:21] [Server thread/INFO]: VinniesPudding[/92.97.240.191:44490] logged in with entity id 6720 at ([world]46.533597835317714, 67.0, -39.01363418873304)
[17:57:21] [Craft Scheduler Thread - 62 - /INFO]: [] The user VinniesPudding has 3 accounts:
[17:57:21] [Craft Scheduler Thread - 62 - /INFO]: [] cherylv, flbe, VinniesPudding.
[17:57:21] [Craft Scheduler Thread - 62 - /INFO]: [] VinniesPudding logged in 92.97.240.191
[17:57:21] [Server thread/INFO]: + VinniesPudding
[17:57:21] [Server thread/INFO]: [] No on-going  session for player: CraftPlayer{name=VinniesPudding} with ID 85.202.160.206:44490. 
[17:57:21] [Server thread/INFO]: [] Setups using Minecraft proxies will start delayed when the command from the proxy is received
[17:57:22] [Async Chat Thread - #9/INFO]: [Not Secure] POSEIDON gamerinactiune » scared ?
[17:57:26] [Async Chat Thread - #7/INFO]: [Not Secure] ARES notaxiomod » gamerinactiune what happened to your hearts lol
[17:57:26] [Server thread/INFO]: VinniesPudding issued server command: /backpack
[17:57:30] [Async Chat Thread - #9/INFO]: [Not Secure] POSEIDON gamerinactiune » welp
[17:57:33] [Server thread/INFO]: Dimodron issued server command: /msg KingCrownXD i think so
[17:57:34] [Server thread/INFO]: VinniesPudding issued server command: /trade .krisBG555
[17:57:36] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » check now
[17:57:37] [Async Chat Thread - #6/INFO]: [SPY-Eternity] KingCrownXD → brb
[17:57:41] [Server thread/INFO]: KingCrownXD issued server command: /pchat
[17:57:41] [Async Chat Thread - #7/INFO]: [Not Secure] ARES notaxiomod » lol
[17:57:41] [Server thread/INFO]: tylerisproav3 issued server command: /trade notaxiomod
[17:57:43] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » Dimodron puss ?
[17:57:44] [Server thread/INFO]: .krisBG555 issued server command: /spawn
[17:57:44] [Server thread/INFO]: notaxiomod issued server command: /trade accept tylerisproav3
[17:57:45] [Async Chat Thread - #7/INFO]: [Not Secure] ZEUS KingCrownXD » brb salmon time hehhe
[17:57:49] [Server thread/WARN]: .krisBG555 moved too quickly! 3990.2551,68.0,4271.563
[17:57:50] [Async Chat Thread - #7/INFO]: [Not Secure] ZEUS KingCrownXD » also gamer
[17:57:53] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » fight me with ur full neth armor
[17:57:53] [Async Chat Thread - #7/INFO]: [Not Secure] ZEUS KingCrownXD » it was fake lmao
[17:57:55] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » oh
[17:57:56] [Async Chat Thread - #6/INFO]: [Not Secure] ZEUS KingCrownXD » xD
[17:57:58] [Async Chat Thread - #7/INFO]: [Not Secure] MEMBER Dimodron » xd
[17:58:00] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » bruh
[17:58:00] [Async Chat Thread - #7/INFO]: [Not Secure] ZEUS KingCrownXD » we 1v1ed in iron
[17:58:02] [Server thread/INFO]: VinniesPudding issued server command: /trade .krisBG555
[17:58:03] [Server thread/INFO]: .krisBG555 issued server command: /discord
[17:58:05] [Server thread/INFO]: .krisBG555 issued server command: /discord
[17:58:05] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » aefvjisedhfviseafhaseufvhb asfhiuv
[17:58:06] [Async Chat Thread - #6/INFO]: [Not Secure] ARES notaxiomod » k wait
[17:58:06] [Async Chat Thread - #7/INFO]: [Not Secure] HADES VinniesPudding » accept
[17:58:07] [Netty Epoll Server IO #3/WARN]: notaxiomod sent out-of-order chat: 'backpack': 1671127086 > 1671127085
[17:58:13] [Async Chat Thread - #6/INFO]: [Not Secure] HADES VinniesPudding » trading
[17:58:15] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » notaxio 1v1 untill pop ?
[17:58:16] [Async Chat Thread - #6/INFO]: [Not Secure] HADES Zack_xoubi » again Sc0p_e
[17:58:17] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give OkNxt 500
[17:58:17] [Server thread/INFO]: $500 added to OkNxt account. New balance: $1,350
[17:58:17] [Server thread/INFO]:  Lifesteal » Added 1 hearts to OkNxt!
[17:58:17] [Server thread/INFO]: .krisBG555 issued server command: /trade v
[17:58:17] [Server thread/INFO]: notaxiomod[/102.65.123.175:46330] logged in with entity id 7092 at ([world]27.582608753963168, 68.0, -25.992552847888557)
[17:58:17] [Craft Scheduler Thread - 108 - /INFO]: [] The user notaxiomod has 3 accounts:
[17:58:17] [Craft Scheduler Thread - 108 - /INFO]: [] axiomod, notaxiomod, axiomad.
[17:58:17] [Craft Scheduler Thread - 108 - /INFO]: [] notaxiomod logged in 102.65.123.175
[17:58:17] [Server thread/INFO]: + notaxiomod
[17:58:18] [Server thread/INFO]: [] No on-going  session for player: CraftPlayer{name=notaxiomod} with ID 85.202.160.206:46330. 
[17:58:18] [Server thread/INFO]: [] Setups using Minecraft proxies will start delayed when the command from the proxy is received
[17:58:21] [Server thread/INFO]: notaxiomod issued server command: /backpack
[17:58:21] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » notaxiomod
[17:58:24] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » 1v1 untill pop ?
[17:58:26] [Server thread/INFO]: .krisBG555 issued server command: /trade accept
[17:58:33] [Server thread/INFO]: notaxiomod issued server command: /trade tylerisproav3
[17:58:37] [Async Chat Thread - #7/INFO]: [Not Secure] ARES notaxiomod » 1 min
[17:58:39] [Server thread/INFO]: tylerisproav3 issued server command: /trade accept notaxiomod
[17:58:41] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » but i need 1 mending book :(
[17:58:43] [Async Chat Thread - #7/INFO]: [Not Secure] HADES VinniesPudding » tf
[17:58:47] [Async Chat Thread - #6/INFO]: [Not Secure] HADES VinniesPudding » where hera?
[17:58:47] [Server thread/INFO]: OkNxt issued server command: /rtp
[17:58:52] [Server thread/INFO]: Zack_xoubi issued server command: /ah
[17:58:56] [Async Chat Thread - #6/INFO]: [Not Secure] ARES notaxiomod » bruh
[17:58:57] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » where s ur boots ?
[17:58:59] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » notaxiomod
[17:59:00] [Async Chat Thread - #6/INFO]: [Not Secure] MEMBER .krisBG555 » No giving
[17:59:04] [Async Chat Thread - #6/INFO]: [Not Secure] ARES notaxiomod » echest
[17:59:05] [Async Chat Thread - #7/INFO]: [Not Secure] HADES VinniesPudding » ok
[17:59:06] [Server thread/INFO]: tylerisproav3 issued server command: /ah
[17:59:06] [Netty Epoll Server IO #2/WARN]: notaxiomod sent out-of-order chat: 'warp afk': 1671127144 > 1671127144
[17:59:08] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » my guy has 1 heart
[17:59:11] [Server thread/INFO]: notaxiomod[/102.65.123.175:48082] logged in with entity id 7485 at ([world]27.582608753963168, 68.0, -25.992552847888557)
[17:59:11] [Craft Scheduler Thread - 107 - /INFO]: [] The user notaxiomod has 3 accounts:
[17:59:11] [Craft Scheduler Thread - 107 - /INFO]: [] axiomod, notaxiomod, axiomad.
[17:59:11] [Craft Scheduler Thread - 107 - /INFO]: [] notaxiomod logged in 102.65.123.175
[17:59:11] [Server thread/INFO]: + notaxiomod
[17:59:12] [Server thread/INFO]: .krisBG555 issued server command: /ranks
[17:59:12] [Async Chat Thread - #7/INFO]: [Not Secure] ARES tylerisproav3 » yes
[17:59:12] [Server thread/INFO]: [] No on-going  session for player: CraftPlayer{name=notaxiomod} with ID 85.202.160.206:48082. 
[17:59:12] [Server thread/INFO]: [] Setups using Minecraft proxies will start delayed when the command from the proxy is received
[17:59:12] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » with his armor
[17:59:14] [Server thread/INFO]: Dimodron issued server command: /msg KingCrownXD so what now /
[17:59:16] [Server thread/INFO]: notaxiomod issued server command: /warp afk
[17:59:17] [pool-13-thread-1/INFO]: [LifestealCore] [Scheduled Save] Saved data to file... 3ms
[17:59:17] [Server thread/INFO]: [CLV] Successfully auto-saved all player data (9ms).
[17:59:23] [Server thread/INFO]: HarveyALP[/88.104.255.176:48454] logged in with entity id 7598 at ([world]339.9487424498933, 71.0, -225.79085302828878)
[17:59:23] [Server thread/INFO]: + HarveyALP
[17:59:23] [Server thread/INFO]: [] No on-going  session for player: CraftPlayer{name=HarveyALP} with ID 85.202.160.206:48454. 
[17:59:23] [Server thread/INFO]: [] Setups using Minecraft proxies will start delayed when the command from the proxy is received
[17:59:23] [Server thread/INFO]: [] Player info  command for HarveyALP from proxy
[17:59:23] [Server thread/INFO]: [] Delaying force  until join event fired?: true
[17:59:23] [Craft Scheduler Thread - 54 - /INFO]: [] Logging player HarveyALP in
[17:59:24] [Craft Scheduler Thread - 82 - /INFO]: [] HarveyALP logged in 88.104.255.176
[17:59:24] [Async Chat Thread - #6/INFO]: [Not Secure] ARES notaxiomod » gonna afk
[17:59:25] [Async Chat Thread - #6/INFO]: [Not Secure] ARES tylerisproav3 » bc i bought the armor
[17:59:26] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » if u get banned u will get revived in 2 days
[17:59:27] [Server thread/INFO]: Dimodron issued server command: /rtp
[17:59:31] [Async Chat Thread - #7/INFO]: [Not Secure] ARES notaxiomod » ye
[17:59:31] [Async Chat Thread - #7/INFO]: [Not Secure] ARES tylerisproav3 » oh ok
[17:59:40] [Server thread/INFO]: Dimodron issued server command: /msg KingCrownXD wait i forgot to give u something
[17:59:41] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » i sugest u to get banned if u want
[17:59:45] [Async Chat Thread - #7/INFO]: [Not Secure] ARES tylerisproav3 » nah
[17:59:45] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » u will have 3-10 hearts
[17:59:52] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » i think or something
[17:59:59] [Server thread/INFO]: Dimodron issued server command: /spawn
[18:00:02] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » bro wait im smart
[18:00:11] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » afk
[18:00:15] [Server thread/INFO]: HarveyALP issued server command: /party INFO
[18:00:17] [Server thread/INFO]: ScOp_E issued server command: /plugman reload Citizens
[18:00:17] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.30-SNAPSHOT (build 2813)
[18:00:22] [Async Chat Thread - #6/INFO]: [Not Secure] OWNER ScOp_E [Winter]» ups
[18:00:25] [Server thread/INFO]: Combat → OkNxt passed away
[18:00:25] [Server thread/ERROR]: Could not pass event InventoryClickEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:91) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:26) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nexmedia.engine.api.menu.AbstractMenuAuto.onPrepare(AbstractMenuAuto.java:49) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.menu.IMenu.open(IMenu.java:143) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.menu.AbstractMenu.onItemClickDefault(AbstractMenu.java:93) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.lambda$new$0(CratePreview.java:59) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nexmedia.engine.api.menu.IMenu.onClick(IMenu.java:229) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.menu.AbstractMenu.onEventClick(AbstractMenu.java:189) ~[NexEngine (3).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor456.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleContainerClick(ServerGamePacketListenerImpl.java:3163) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:58) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:23) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1291) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:00:27] [Server thread/INFO]: ScOp_E issued server command: /plugins
[18:00:30] [Server thread/INFO]: HarveyALP issued server command: /home e
[18:00:33] [Async Chat Thread - #7/INFO]: [Not Secure] HADES Zack_xoubi » ?
[18:00:33] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » back
[18:00:35] [Server thread/INFO]: ScOp_E issued server command: /citizens reload
[18:00:38] [Server thread/INFO]: ScOp_E issued server command: /plugman load Citizens-2.0.30-b2812
[18:00:38] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2812)
[18:00:38] [Server thread/INFO]: [Citizens] Loading external libraries
[18:00:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[18:00:39] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[18:00:39] [Server thread/INFO]: [SuperVanish] Hooked into Citizens
[18:00:39] [Server thread/INFO]: [Citizens] Loaded 11 NPCs.
[18:00:40] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » ok im smart
[18:00:44] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » i can withdraw my hearts
[18:00:48] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » then notaxiomod ban me
[18:00:48] [Server thread/INFO]: Zack_xoubi issued server command: /backpack
[18:00:54] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » and then in 1 - 2 days we are back
[18:00:58] [Server thread/ERROR]: Could not pass event PlayerInteractEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:91) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:26) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nexmedia.engine.api.menu.AbstractMenuAuto.onPrepare(AbstractMenuAuto.java:49) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.menu.IMenu.open(IMenu.java:143) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.Crate.openPreview(Crate.java:557) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.interactCrate(CrateManager.java:184) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateListener.onCrateUse(CrateListener.java:65) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor463.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:546) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:503) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:498) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:493) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.level.ServerPlayerGameMode.handleBlockBreakAction(ServerPlayerGameMode.java:198) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handlePlayerAction(ServerGamePacketListenerImpl.java:1876) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.handle(ServerboundPlayerActionPacket.java:42) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.a(ServerboundPlayerActionPacket.java:15) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1291) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:00:59] [Server thread/INFO]: HarveyALP issued server command: /backpack
[18:00:59] [Server thread/ERROR]: Could not pass event PlayerInteractEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:91) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:26) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nexmedia.engine.api.menu.AbstractMenuAuto.onPrepare(AbstractMenuAuto.java:49) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.menu.IMenu.open(IMenu.java:143) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.Crate.openPreview(Crate.java:557) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.interactCrate(CrateManager.java:184) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateListener.onCrateUse(CrateListener.java:65) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor463.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:546) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:503) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:498) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:493) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.level.ServerPlayerGameMode.handleBlockBreakAction(ServerPlayerGameMode.java:198) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handlePlayerAction(ServerGamePacketListenerImpl.java:1876) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.handle(ServerboundPlayerActionPacket.java:42) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.a(ServerboundPlayerActionPacket.java:15) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1291) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:01:00] [Server thread/ERROR]: Could not pass event PlayerInteractEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:91) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:26) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nexmedia.engine.api.menu.AbstractMenuAuto.onPrepare(AbstractMenuAuto.java:49) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.menu.IMenu.open(IMenu.java:143) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.Crate.openPreview(Crate.java:557) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.interactCrate(CrateManager.java:184) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateListener.onCrateUse(CrateListener.java:65) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor463.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:546) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:503) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:498) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:493) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.level.ServerPlayerGameMode.handleBlockBreakAction(ServerPlayerGameMode.java:198) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handlePlayerAction(ServerGamePacketListenerImpl.java:1876) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.handle(ServerboundPlayerActionPacket.java:42) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.a(ServerboundPlayerActionPacket.java:15) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1291) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:01:00] [Server thread/ERROR]: Could not pass event PlayerInteractEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:91) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:26) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nexmedia.engine.api.menu.AbstractMenuAuto.onPrepare(AbstractMenuAuto.java:49) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.menu.IMenu.open(IMenu.java:143) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.Crate.openPreview(Crate.java:557) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.interactCrate(CrateManager.java:184) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateListener.onCrateUse(CrateListener.java:65) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor463.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:546) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:503) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:498) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:493) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.level.ServerPlayerGameMode.handleBlockBreakAction(ServerPlayerGameMode.java:198) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handlePlayerAction(ServerGamePacketListenerImpl.java:1876) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.handle(ServerboundPlayerActionPacket.java:42) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.a(ServerboundPlayerActionPacket.java:15) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1291) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:01:00] [Server thread/ERROR]: Could not pass event PlayerInteractEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:91) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:26) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nexmedia.engine.api.menu.AbstractMenuAuto.onPrepare(AbstractMenuAuto.java:49) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.menu.IMenu.open(IMenu.java:143) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.Crate.openPreview(Crate.java:557) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.interactCrate(CrateManager.java:184) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateListener.onCrateUse(CrateListener.java:65) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor463.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:546) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:503) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:498) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:493) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.level.ServerPlayerGameMode.handleBlockBreakAction(ServerPlayerGameMode.java:198) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handlePlayerAction(ServerGamePacketListenerImpl.java:1876) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.handle(ServerboundPlayerActionPacket.java:42) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.a(ServerboundPlayerActionPacket.java:15) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1291) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:01:00] [Server thread/ERROR]: Could not pass event PlayerInteractEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:91) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:26) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nexmedia.engine.api.menu.AbstractMenuAuto.onPrepare(AbstractMenuAuto.java:49) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.menu.IMenu.open(IMenu.java:143) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.Crate.openPreview(Crate.java:557) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.interactCrate(CrateManager.java:184) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateListener.onCrateUse(CrateListener.java:65) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor463.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:546) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:503) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:498) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:493) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.level.ServerPlayerGameMode.handleBlockBreakAction(ServerPlayerGameMode.java:198) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handlePlayerAction(ServerGamePacketListenerImpl.java:1876) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.handle(ServerboundPlayerActionPacket.java:42) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.a(ServerboundPlayerActionPacket.java:15) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1291) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:01:01] [Server thread/ERROR]: Could not pass event PlayerInteractEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:91) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:26) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nexmedia.engine.api.menu.AbstractMenuAuto.onPrepare(AbstractMenuAuto.java:49) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.menu.IMenu.open(IMenu.java:143) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.Crate.openPreview(Crate.java:557) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.interactCrate(CrateManager.java:184) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateListener.onCrateUse(CrateListener.java:65) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor463.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:546) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:503) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:498) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:493) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.level.ServerPlayerGameMode.handleBlockBreakAction(ServerPlayerGameMode.java:198) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handlePlayerAction(ServerGamePacketListenerImpl.java:1876) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.handle(ServerboundPlayerActionPacket.java:42) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.a(ServerboundPlayerActionPacket.java:15) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1291) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:01:02] [Server thread/ERROR]: Could not pass event PlayerInteractEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:91) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:26) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nexmedia.engine.api.menu.AbstractMenuAuto.onPrepare(AbstractMenuAuto.java:49) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.menu.IMenu.open(IMenu.java:143) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.Crate.openPreview(Crate.java:557) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.interactCrate(CrateManager.java:184) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateListener.onCrateUse(CrateListener.java:65) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor463.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:546) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:503) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:498) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:493) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.level.ServerPlayerGameMode.handleBlockBreakAction(ServerPlayerGameMode.java:198) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handlePlayerAction(ServerGamePacketListenerImpl.java:1876) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.handle(ServerboundPlayerActionPacket.java:42) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.a(ServerboundPlayerActionPacket.java:15) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:114) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1447) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:01:02] [Server thread/INFO]: .krisBG555 issued server command: /ranks
[18:01:03] [Server thread/ERROR]: Could not pass event PlayerInteractEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:91) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:26) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nexmedia.engine.api.menu.AbstractMenuAuto.onPrepare(AbstractMenuAuto.java:49) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.menu.IMenu.open(IMenu.java:143) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.Crate.openPreview(Crate.java:557) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.interactCrate(CrateManager.java:184) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateListener.onCrateUse(CrateListener.java:65) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor463.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:546) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:503) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:498) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:493) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.level.ServerPlayerGameMode.handleBlockBreakAction(ServerPlayerGameMode.java:198) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handlePlayerAction(ServerGamePacketListenerImpl.java:1876) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.handle(ServerboundPlayerActionPacket.java:42) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.a(ServerboundPlayerActionPacket.java:15) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1291) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:01:04] [Server thread/ERROR]: Could not pass event PlayerInteractEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:91) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:26) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nexmedia.engine.api.menu.AbstractMenuAuto.onPrepare(AbstractMenuAuto.java:49) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.menu.IMenu.open(IMenu.java:143) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.Crate.openPreview(Crate.java:557) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.interactCrate(CrateManager.java:184) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateListener.onCrateUse(CrateListener.java:65) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor463.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:546) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:503) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:498) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:493) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.level.ServerPlayerGameMode.handleBlockBreakAction(ServerPlayerGameMode.java:198) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handlePlayerAction(ServerGamePacketListenerImpl.java:1876) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.handle(ServerboundPlayerActionPacket.java:42) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.a(ServerboundPlayerActionPacket.java:15) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1291) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:01:04] [Server thread/ERROR]: Could not pass event PlayerInteractEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:91) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:26) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nexmedia.engine.api.menu.AbstractMenuAuto.onPrepare(AbstractMenuAuto.java:49) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.menu.IMenu.open(IMenu.java:143) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.Crate.openPreview(Crate.java:557) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.interactCrate(CrateManager.java:184) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateListener.onCrateUse(CrateListener.java:65) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor463.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:546) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:503) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:498) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:493) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.level.ServerPlayerGameMode.handleBlockBreakAction(ServerPlayerGameMode.java:198) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handlePlayerAction(ServerGamePacketListenerImpl.java:1876) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.handle(ServerboundPlayerActionPacket.java:42) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.a(ServerboundPlayerActionPacket.java:15) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1291) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:01:06] [Server thread/ERROR]: Could not pass event PlayerInteractEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:91) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:26) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nexmedia.engine.api.menu.AbstractMenuAuto.onPrepare(AbstractMenuAuto.java:49) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.menu.IMenu.open(IMenu.java:143) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.Crate.openPreview(Crate.java:557) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.interactCrate(CrateManager.java:184) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateListener.onCrateUse(CrateListener.java:65) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor463.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:546) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:503) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:498) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:493) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.level.ServerPlayerGameMode.handleBlockBreakAction(ServerPlayerGameMode.java:198) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handlePlayerAction(ServerGamePacketListenerImpl.java:1876) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.handle(ServerboundPlayerActionPacket.java:42) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.a(ServerboundPlayerActionPacket.java:15) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1291) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:01:06] [Server thread/ERROR]: Could not pass event PlayerInteractEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.openCrate(CrateManager.java:206) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.interactCrate(CrateManager.java:189) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateListener.onCrateUse(CrateListener.java:65) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor463.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:546) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.level.ServerPlayerGameMode.useItemOn(ServerPlayerGameMode.java:528) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleUseItemOn(ServerGamePacketListenerImpl.java:1964) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.handle(ServerboundUseItemOnPacket.java:37) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.a(ServerboundUseItemOnPacket.java:9) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1291) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:01:06] [Server thread/ERROR]: Could not pass event PlayerInteractEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.openCrate(CrateManager.java:206) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.interactCrate(CrateManager.java:189) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateListener.onCrateUse(CrateListener.java:65) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor463.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:546) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.level.ServerPlayerGameMode.useItemOn(ServerPlayerGameMode.java:528) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleUseItemOn(ServerGamePacketListenerImpl.java:1964) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.handle(ServerboundUseItemOnPacket.java:37) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.a(ServerboundUseItemOnPacket.java:9) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:114) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1447) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:01:06] [Async Chat Thread - #7/INFO]: [Not Secure] OWNER ScOp_E [Winter]» and i ban u for feature abuse
[18:01:06] [Server thread/ERROR]: Could not pass event PlayerInteractEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:91) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:26) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nexmedia.engine.api.menu.AbstractMenuAuto.onPrepare(AbstractMenuAuto.java:49) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.menu.IMenu.open(IMenu.java:143) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.Crate.openPreview(Crate.java:557) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.interactCrate(CrateManager.java:184) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateListener.onCrateUse(CrateListener.java:65) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor463.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:546) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:503) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:498) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:493) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.level.ServerPlayerGameMode.handleBlockBreakAction(ServerPlayerGameMode.java:198) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handlePlayerAction(ServerGamePacketListenerImpl.java:1876) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.handle(ServerboundPlayerActionPacket.java:42) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.a(ServerboundPlayerActionPacket.java:15) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:114) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1447) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:01:06] [Server thread/ERROR]: Could not pass event PlayerInteractEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.openCrate(CrateManager.java:206) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.interactCrate(CrateManager.java:189) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateListener.onCrateUse(CrateListener.java:65) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor463.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:546) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.level.ServerPlayerGameMode.useItemOn(ServerPlayerGameMode.java:528) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleUseItemOn(ServerGamePacketListenerImpl.java:1964) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.handle(ServerboundUseItemOnPacket.java:37) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.a(ServerboundUseItemOnPacket.java:9) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:114) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1447) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:01:07] [Server thread/ERROR]: Could not pass event PlayerInteractEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.openCrate(CrateManager.java:206) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.interactCrate(CrateManager.java:189) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateListener.onCrateUse(CrateListener.java:65) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor463.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:546) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.level.ServerPlayerGameMode.useItemOn(ServerPlayerGameMode.java:528) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleUseItemOn(ServerGamePacketListenerImpl.java:1964) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.handle(ServerboundUseItemOnPacket.java:37) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.a(ServerboundUseItemOnPacket.java:9) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1291) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:01:07] [Server thread/ERROR]: Could not pass event PlayerInteractEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.openCrate(CrateManager.java:206) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.interactCrate(CrateManager.java:189) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateListener.onCrateUse(CrateListener.java:65) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor463.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:546) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.level.ServerPlayerGameMode.useItemOn(ServerPlayerGameMode.java:528) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleUseItemOn(ServerGamePacketListenerImpl.java:1964) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.handle(ServerboundUseItemOnPacket.java:37) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.a(ServerboundUseItemOnPacket.java:9) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1291) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:01:07] [Server thread/ERROR]: Could not pass event PlayerInteractEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.openCrate(CrateManager.java:206) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.interactCrate(CrateManager.java:189) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateListener.onCrateUse(CrateListener.java:65) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor463.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:546) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.level.ServerPlayerGameMode.useItemOn(ServerPlayerGameMode.java:528) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleUseItemOn(ServerGamePacketListenerImpl.java:1964) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.handle(ServerboundUseItemOnPacket.java:37) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.a(ServerboundUseItemOnPacket.java:9) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:114) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1447) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:01:07] [Server thread/ERROR]: Could not pass event PlayerInteractEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.openCrate(CrateManager.java:206) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.interactCrate(CrateManager.java:189) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateListener.onCrateUse(CrateListener.java:65) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor463.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:546) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.level.ServerPlayerGameMode.useItemOn(ServerPlayerGameMode.java:528) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleUseItemOn(ServerGamePacketListenerImpl.java:1964) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.handle(ServerboundUseItemOnPacket.java:37) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.a(ServerboundUseItemOnPacket.java:9) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:114) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1447) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:01:08] [Server thread/ERROR]: Could not pass event PlayerInteractEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.openCrate(CrateManager.java:206) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.interactCrate(CrateManager.java:189) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateListener.onCrateUse(CrateListener.java:65) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor463.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:546) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.level.ServerPlayerGameMode.useItemOn(ServerPlayerGameMode.java:528) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleUseItemOn(ServerGamePacketListenerImpl.java:1964) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.handle(ServerboundUseItemOnPacket.java:37) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.a(ServerboundUseItemOnPacket.java:9) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:114) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1447) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:01:08] [Server thread/ERROR]: Could not pass event PlayerInteractEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:91) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CratePreview.getObjectStack(CratePreview.java:26) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nexmedia.engine.api.menu.AbstractMenuAuto.onPrepare(AbstractMenuAuto.java:49) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.menu.IMenu.open(IMenu.java:143) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.crate.Crate.openPreview(Crate.java:557) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateManager.interactCrate(CrateManager.java:184) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.crate.CrateListener.onCrateUse(CrateListener.java:65) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor463.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:546) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:503) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:498) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:493) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.level.ServerPlayerGameMode.handleBlockBreakAction(ServerPlayerGameMode.java:198) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handlePlayerAction(ServerGamePacketListenerImpl.java:1876) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.handle(ServerboundPlayerActionPacket.java:42) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundPlayerActionPacket.a(ServerboundPlayerActionPacket.java:15) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1291) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:01:11] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » brah
[18:01:14] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » how it is a abuse
[18:01:25] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » it s just a skilll :D
[18:01:31] [Async Chat Thread - #7/INFO]: [Not Secure] HADES Zack_xoubi » nope
[18:01:39] [Server thread/INFO]: Dimodron issued server command: /msg KingCrownXD yo i forgot to give u the shulkers btw can u make me maxed out dia ?
[18:01:41] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » then why u didn t ban rajuu
[18:01:41] [Server thread/INFO]: .krisBG555 issued server command: /vote
[18:01:44] [Async Chat Thread - #7/INFO]: [Not Secure] OWNER ScOp_E [Winter]» litearally explained how ya gonna abuse it ur self..
[18:01:44] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » or what s his name
[18:01:48] [Server thread/INFO]: [floodgate] Floodgate player logged in as .EPSXI joined (UUID: 00000000-0000-0000-0009-01fba0e37d98)
[18:01:48] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.key.KeyManager.giveKeysOnHold(KeyManager.java:172) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.key.KeyListener.onUserLoad(KeyListener.java:30) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor457.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.postChunkLoadJoin(PlayerList.java:381) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.players.PlayerList.lambda$placeNewPlayer$0(PlayerList.java:316) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1291) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:01:48] [Server thread/INFO]: .EPSXI[/80.2.0.8:53164] logged in with entity id 9321 at ([world]45.47452, 65.0, -23.07886)
[18:01:48] [Server thread/INFO]: + .EPSXI
[18:01:49] [Craft Scheduler Thread - 111 - /INFO]: [] Player .EPSXI is connecting through Geyser Floodgate.
[18:01:51] [Async Chat Thread - #7/INFO]: [Not Secure] OWNER ScOp_E [Winter]» for?
[18:01:52] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » i didn t
[18:01:53] [Craft Scheduler Thread - 117 - /INFO]: [] .EPSXI logged in 80.2.0.8
[18:01:56] [Async Chat Thread - #6/INFO]: [Not Secure] POSEIDON gamerinactiune » alt abusing
[18:01:57] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON HarveyALP » what yalll yapin about
[18:01:59] [Async Chat Thread - #6/INFO]: [Not Secure] ARES tylerisproav3 » hey scope mod apps open?
[18:02:01] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » he had 3 accounts
[18:02:02] [Async Chat Thread - #10/INFO]: [Not Secure] HADES Zack_xoubi » i saw him in the main menu
[18:02:07] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » named raju2
[18:02:09] [Async Chat Thread - #10/INFO]: [Not Secure] OWNER ScOp_E [Winter]» ah didn't see make a ticket send proof
[18:02:09] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » and his main
[18:02:18] [Async Chat Thread - #10/INFO]: [Not Secure] ARES tylerisproav3 » hey scope mod apps open?
[18:02:19] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » kk imma have proof if i catch him
[18:02:26] [Async Chat Thread - #10/INFO]: [Not Secure] OWNER ScOp_E [Winter]» yes
[18:02:36] [Async Chat Thread - #7/INFO]: [Not Secure] ARES tylerisproav3 » what are the reqs?
[18:02:37] [Async Chat Thread - #10/INFO]: [Not Secure] POSEIDON gamerinactiune » imma try to apply for helper
[18:02:38] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » :D
[18:03:05] [Async Chat Thread - #10/INFO]: [Not Secure] POSEIDON gamerinactiune » scop does builder exists on this server ?
[18:03:06] [Server thread/INFO]: OkNxt issued server command: /colorchat
[18:03:07] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v2 vote record from /159.89.152.209:38294 -> Vote (from:minestatus.net username:.krisBG555 address:mc.minefall.eu timeStamp:1671127387 additionalData:null)
[18:03:07] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give .krisBG555 200
[18:03:07] [Server thread/INFO]: $200 added to .krisBG555 account. New balance: $1,077
[18:03:07] [Server thread/WARN]: [SuperbVote] Task #18494 for SuperbVote v0.5.5 generated an exception
org.bukkit.command.CommandException: Unhandled exception executing 'crate key give .krisBG555 vote 1' in su.nexmedia.engine.command.CommandRegister(excellentcrates)
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:929) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.Bukkit.dispatchCommand(Bukkit.java:980) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at io.minimum.minecraft.superbvote.votes.rewards.VoteReward.runCommands(VoteReward.java:38) ~[SuperbVote-0.5.5 (1).jar:?]
    at io.minimum.minecraft.superbvote.votes.SuperbVoteListener.lambda$processVote$1(SuperbVoteListener.java:115) ~[SuperbVote-0.5.5 (1).jar:?]
    at java.util.ArrayList.forEach(ArrayList.java:1511) ~[?:?]
    at io.minimum.minecraft.superbvote.votes.SuperbVoteListener.lambda$processVote$2(SuperbVoteListener.java:115) ~[SuperbVote-0.5.5 (1).jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftTask.run(CraftTask.java:101) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1475) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:443) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1399) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:77) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.key.KeyManager.giveKey(KeyManager.java:218) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.command.KeyCommand$ManageCommand.lambda$onExecute$0(KeyCommand.java:126) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at java.lang.Iterable.forEach(Iterable.java:75) ~[?:?]
    at su.nightexpress.excellentcrates.command.KeyCommand$ManageCommand.onExecute(KeyCommand.java:123) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nexmedia.engine.api.command.AbstractCommand.execute(AbstractCommand.java:181) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.command.GeneralCommand.onCommand(GeneralCommand.java:86) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.command.CommandRegister.execute(CommandRegister.java:121) ~[NexEngine (3).jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    ... 14 more
[18:03:10] [Async Chat Thread - #10/INFO]: [Not Secure] POSEIDON gamerinactiune » like builder staff
[18:03:16] [Async Chat Thread - #7/INFO]: [Not Secure] OWNER ScOp_E [Winter]» kinda
[18:03:22] [Craft Scheduler Thread - 62 - PlayerPoints/INFO]: Fall » Took 300 Coins from OkNxt.
[18:03:22] [luckperms-command-executor/INFO]: [LP] Set chatcolor.color.blue to true for oknxt in context global.
[18:03:22] [luckperms-worker-10/INFO]: [LuckPerms] [Messaging] Sending log with id: 64ee48d6-8d90-4be5-93a5-6e05c041e39a
[18:03:22] [Async Chat Thread - #7/INFO]: [Not Secure] OWNER ScOp_E [Winter]» but not really
[18:03:22] [luckperms-worker-0/INFO]: [LuckPerms] [Messaging] Sending user ping for 'oknxt' with id: 1a7c6a74-dce5-4caf-a91e-e02d7d90ab1f
[18:03:27] [Async Chat Thread - #10/INFO]: [Not Secure] POSEIDON gamerinactiune » oh
[18:03:32] [Async Chat Thread - #7/INFO]: [Not Secure] ARES tylerisproav3 » scope i cant use mic can i still apply?
[18:03:36] [Async Chat Thread - #10/INFO]: [Not Secure] MEMBER .krisBG555 » I voted and got only money no key
[18:03:38] [Async Chat Thread - #10/INFO]: [Not Secure] POSEIDON gamerinactiune » it is helper ?
[18:03:41] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.key.KeyManager.giveKeysOnHold(KeyManager.java:172) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.key.KeyListener.onUserLoad(KeyListener.java:30) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor457.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.postChunkLoadJoin(PlayerList.java:381) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.players.PlayerList.lambda$placeNewPlayer$0(PlayerList.java:316) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:114) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1447) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:03:41] [Server thread/INFO]: Rajmi9[/94.21.36.171:56872] logged in with entity id 10479 at ([world]50.19999998807907, -12.5, -29.30000001192093)
[18:03:41] [Server thread/INFO]: + Rajmi9
[18:03:41] [Server thread/INFO]: [] No on-going  session for player: CraftPlayer{name=Rajmi9} with ID 85.202.160.206:56872. 
[18:03:41] [Server thread/INFO]: [] Setups using Minecraft proxies will start delayed when the command from the proxy is received
[18:03:43] [Server thread/INFO]: Dimodron issued server command: /msg KingCrownXD king
[18:03:44] [Async Chat Thread - #7/INFO]: [Not Secure] OWNER ScOp_E [Winter]» i mean me and one other guy kinda builds everything
[18:03:46] [Async Chat Thread - #10/INFO]: [Not Secure] MEMBER .krisBG555 » I voted and got only money no key Scope
[18:03:48] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.key.KeyManager.giveKeysOnHold(KeyManager.java:172) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.key.KeyListener.onUserLoad(KeyListener.java:30) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor457.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.postChunkLoadJoin(PlayerList.java:381) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.players.PlayerList.lambda$placeNewPlayer$0(PlayerList.java:316) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:114) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1447) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1175) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:03:48] [Server thread/INFO]: ZRajmi[/94.21.36.171:57136] logged in with entity id 10550 at ([world]54.80000001192093, -12.5, -29.38565694264765)
[18:03:48] [Server thread/INFO]: + ZRajmi
[18:03:49] [Server thread/INFO]: [] No on-going  session for player: CraftPlayer{name=ZRajmi} with ID 85.202.160.206:57136. 
[18:03:49] [Server thread/INFO]: [] Setups using Minecraft proxies will start delayed when the command from the proxy is received
[18:03:51] [Craft Scheduler Thread - 117 - mcMMO/INFO]: [mcMMO] Creating new data for player: ZRajmi
[18:03:52] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » LOOK
[18:03:56] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » 2 accounts
[18:03:58] [Craft Scheduler Thread - 110 - /INFO]: [] The user Rajmi9 has 2 accounts:
[18:03:58] [Craft Scheduler Thread - 110 - /INFO]: [] Rajmi9, ZRajmi.
[18:03:58] [Craft Scheduler Thread - 110 - /INFO]: [] Rajmi9 logged in 94.21.36.171
[18:04:01] [Async Chat Thread - #10/INFO]: [Not Secure] HADES Zack_xoubi » Sc0p_e you should add this feature were you can craft hearts
[18:04:02] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » Rajmi9 and ZRajmi
[18:04:03] [Async Chat Thread - #10/INFO]: [Not Secure] POSEIDON gamerinactiune » lmaoo
[18:04:03] [Async Chat Thread - #10/INFO]: [Not Secure] POSEIDON HarveyALP » and
[18:04:06] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give HarveyALP 500
[18:04:06] [Server thread/INFO]: $500 added to HarveyALP account. New balance: $51,417.18
[18:04:06] [Server thread/INFO]:  Lifesteal » Added 1 hearts to HarveyALP!
[18:04:06] [Async Chat Thread - #10/INFO]: [Not Secure] MEMBER .EPSXI » @CIT-38f5a012f953
[18:04:08] [Craft Scheduler Thread - 87 - /INFO]: [] The user ZRajmi has 2 accounts:
[18:04:08] [Craft Scheduler Thread - 87 - /INFO]: [] Rajmi9, ZRajmi.
[18:04:08] [Craft Scheduler Thread - 87 - /INFO]: [] ZRajmi logged in 94.21.36.171
[18:04:08] [Async Chat Thread - #7/INFO]: [Not Secure] MEMBER Dimodron » dont u guys notice that ZRajmi is Rajmi9 alt acc
[18:04:09] [Async Chat Thread - #10/INFO]: [Not Secure] MEMBER .EPSXI » wtf is that
[18:04:13] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » yes
[18:04:13] [Async Chat Thread - #10/INFO]: [Not Secure] MEMBER .EPSXI » what is @CIT-38f5a012f953
[18:04:16] [Async Chat Thread - #7/INFO]: [Not Secure] MEMBER .EPSXI » @CIT-61de41d6245e
[18:04:16] [Async Chat Thread - #10/INFO]: [Not Secure] POSEIDON gamerinactiune » tht what im saying
[18:04:16] [Async Chat Thread - #10/INFO]: [Not Secure] HADES Zack_xoubi » LOL
[18:04:16] [Server thread/INFO]: ScOp_E issued server command: /tempbanip ZRajmi 3d Alt Abuse
[18:04:17] [pool-13-thread-1/INFO]: [LifestealCore] [Scheduled Save] Saved data to file... 4ms
[18:04:17] [Server thread/INFO]: [Silent] ScOp_E temp IP-banned ZRajmi for 3 days for 'Alt Abuse'
[18:04:17] [Server thread/INFO]: [CLV] Successfully auto-saved all player data (8ms).
[18:04:17] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give notaxiomod 50
[18:04:17] [Server thread/INFO]: $50 added to notaxiomod account. New balance: $10,250.73
[18:04:18] [Async Chat Thread - #10/INFO]: [Not Secure] MEMBER .EPSXI » @CIT-888956e8d3f6
[18:04:20] [Async Chat Thread - #7/INFO]: [Not Secure] OWNER ScOp_E [Winter]» banned
[18:04:21] [Async Chat Thread - #10/INFO]: [Not Secure] MEMBER .EPSXI » @CIT-9b89f60da385
[18:04:23] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » see scop ?
[18:04:24] [Async Chat Thread - #7/INFO]: [Not Secure] HADES Zack_xoubi » LOL
[18:04:26] [Async Chat Thread - #10/INFO]: [Not Secure] MEMBER .EPSXI » @CIT-38f5a012f953
[18:04:27] [Async Chat Thread - #10/INFO]: [Not Secure] POSEIDON gamerinactiune » i was right lmaooo
[18:04:29] [Async Chat Thread - #7/INFO]: [Not Secure] MEMBER .EPSXI » what is that
[18:04:31] [Async Chat Thread - #7/INFO]: [Not Secure] MEMBER .krisBG555 » I voted and got only money no key Scope
[18:04:36] [Server thread/INFO]: tylerisproav3 issued server command: /ah
[18:04:40] [Async Chat Thread - #10/INFO]: [Not Secure] POSEIDON HarveyALP » .krisBG555 get over it
[18:04:46] [Async Chat Thread - #7/INFO]: [Not Secure] MEMBER .krisBG555 » Nah
[18:04:54] [Server thread/INFO]: HarveyALP issued server command: /spawn
[18:04:54] [Server thread/INFO]: .EPSXI issued server command: /home
[18:04:56] [Async Chat Thread - #10/INFO]: [Not Secure] POSEIDON HarveyALP » so s
[18:04:57] [Async Chat Thread - #7/INFO]: [Not Secure] MEMBER .krisBG555 » I need my key
[18:05:00] [Server thread/WARN]: .EPSXI moved too quickly! 186.110012,-126.0,2244.65896
[18:05:01] [Server thread/INFO]: gamerinactiune issued server command: /msg .krisBG555 where y all imma killhim
[18:05:04] [Async Chat Thread - #10/INFO]: [Not Secure] POSEIDON HarveyALP » no u dont
[18:05:04] [Async Chat Thread - #10/INFO]: [Not Secure] HADES Zack_xoubi » Sc0p_e you should add this feature were you can craft hearts
[18:05:13] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON HarveyALP » it was in the game
[18:05:17] [Async Chat Thread - #10/INFO]: [Not Secure] POSEIDON HarveyALP » i got to 50 in a day
[18:05:18] [Async Chat Thread - #7/INFO]: [Not Secure] MEMBER .EPSXI » @Zack_xoubi naah
[18:05:23] [Server thread/INFO]: tylerisproav3 issued server command: /m ScOp_E bro i dont have mic ccess can i still apply pls
[18:05:25] [Async Chat Thread - #7/INFO]: [Not Secure] HADES Zack_xoubi » i would be better
[18:05:27] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.key.KeyManager.giveKeysOnHold(KeyManager.java:172) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.key.KeyListener.onUserLoad(KeyListener.java:30) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor457.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.postChunkLoadJoin(PlayerList.java:381) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.players.PlayerList.lambda$placeNewPlayer$0(PlayerList.java:316) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1291) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:05:27] [Server thread/INFO]: xlspeedxl[/109.152.201.89:60398] logged in with entity id 11573 at ([world]-3619.0789936316473, 60.0, 3729.680823266188)
[18:05:27] [Server thread/INFO]: + xlspeedxl
[18:05:27] [Async Chat Thread - #10/INFO]: [Not Secure] MEMBER .EPSXI » crafting hearts would be OP
[18:05:27] [Server thread/INFO]: [] No on-going  session for player: CraftPlayer{name=xlspeedxl} with ID 85.202.160.206:60398. 
[18:05:27] [Server thread/INFO]: [] Setups using Minecraft proxies will start delayed when the command from the proxy is received
[18:05:28] [Server thread/INFO]: [] Player info  command for xlspeedxl from proxy
[18:05:28] [Server thread/INFO]: [] Delaying force  until join event fired?: true
[18:05:28] [Craft Scheduler Thread - 120 - /INFO]: [] Logging player xlspeedxl in
[18:05:28] [Craft Scheduler Thread - 68 - /INFO]: [] xlspeedxl logged in 109.152.201.89
[18:05:31] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » yes
[18:05:34] [Async Chat Thread - #10/INFO]: [Not Secure] POSEIDON HarveyALP » Zack_xoubi its not trust me
[18:05:34] [Async Chat Thread - #7/INFO]: [Not Secure] MEMBER .EPSXI » atleast make it expensive..
[18:05:40] [Async Chat Thread - #10/INFO]: [Not Secure] MEMBER .krisBG555 » I voted and got only money no key Scope
[18:05:49] [Async Chat Thread - #7/INFO]: [Not Secure] HADES Zack_xoubi » and make 30 hearts max
[18:05:49] [Async Chat Thread - #10/INFO]: [Not Secure] MEMBER xlspeedxl » kris
[18:05:53] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » yes
[18:05:53] [Async Chat Thread - #10/INFO]: [Not Secure] MEMBER .krisBG555 » Ye
[18:05:56] [Async Chat Thread - #10/INFO]: [Not Secure] POSEIDON gamerinactiune » 50 are op
[18:05:59] [Async Chat Thread - #7/INFO]: [Not Secure] POSEIDON gamerinactiune » to op
[18:06:00] [Async Chat Thread - #10/INFO]: [Not Secure] MEMBER xlspeedxl » why did u take all my stuff
[18:06:04] [Async Chat Thread - #11/INFO]: [Not Secure] MEMBER .krisBG555 » ?
[18:06:05] [Server thread/INFO]: Rajmi9 tried to join, but is banned (2 days, 23 hours, 58 minutes)!
[18:06:07] [Async Chat Thread - #10/INFO]: [Not Secure] POSEIDON gamerinactiune » wsp HarveyALP
[18:06:16] [Async Chat Thread - #11/INFO]: [Not Secure] MEMBER .krisBG555 » When
[18:06:18] [Server thread/INFO]: tylerisproav3 issued server command: /home
[18:06:18] [Async Chat Thread - #11/INFO]: [Not Secure] HADES Zack_xoubi » brb
[18:06:18] [Async Chat Thread - #11/INFO]: [Not Secure] POSEIDON gamerinactiune » lol ty
[18:06:21] [Server thread/INFO]: tylerisproav3 issued server command: /home home
[18:06:27] [Async Chat Thread - #11/INFO]: [Not Secure] POSEIDON HarveyALP » hi
[18:06:27] [Async Chat Thread - #11/INFO]: [Not Secure] POSEIDON gamerinactiune » now full inv
[18:06:28] [Async Chat Thread - #11/INFO]: [Not Secure] MEMBER xlspeedxl » you took all my stuff all my diamonds and tha
[18:06:32] [Async Chat Thread - #10/INFO]: [Not Secure] MEMBER .krisBG555 » When
[18:06:35] [Async Chat Thread - #11/INFO]: [Not Secure] MEMBER xlspeedxl » idk
[18:06:42] [Async Chat Thread - #10/INFO]: [Not Secure] MEMBER .krisBG555 » I didn't
[18:06:47] [Server thread/INFO]: ZRajmi tried to join, but is banned (2 days, 23 hours, 57 minutes)!
[18:06:53] [Async Chat Thread - #11/INFO]: [Not Secure] MEMBER xlspeedxl » ive just gine in there and all my chest are emty
[18:06:59] [Async Chat Thread - #10/INFO]: [Not Secure] POSEIDON gamerinactiune » free pearls at pvp zone lmao
[18:06:59] [Server thread/INFO]: xlspeedxl issued server command: /tpa .krisBG555
[18:07:08] [Async Chat Thread - #11/INFO]: [Not Secure] POSEIDON HarveyALP » nearly full inv
[18:07:09] [Server thread/INFO]: .krisBG555 issued server command: /tpaccept
[18:07:12] [Async Chat Thread - #10/INFO]: [Not Secure] POSEIDON gamerinactiune » Lol
[18:07:25] [Server thread/INFO]: notaxiomod issued server command: /home base
[18:07:26] [Server thread/INFO]: HarveyALP issued server command: /backpack
[18:07:30] [Server thread/INFO]: xlspeedxl issued server command: /rtp
[18:07:31] [Server thread/INFO]: HarveyALP issued server command: /shop
[18:07:33] [Async Chat Thread - #11/INFO]: [Not Secure] MEMBER .krisBG555 » I didn't bro fr
[18:07:34] [Async Chat Thread - #10/INFO]: [Not Secure] POSEIDON gamerinactiune » i have a farm so i don t need them
[18:07:39] [Server thread/INFO]: xlspeedxl issued server command: /vote
[18:07:39] [Server thread/INFO]: notaxiomod issued server command: /delhome base
[18:07:46] [Server thread/INFO]: notaxiomod issued server command: /sethome base
[18:07:48] [Async Chat Thread - #11/INFO]: [Not Secure] POSEIDON gamerinactiune » my teammates have a farm %
[18:07:49] [Async Chat Thread - #11/INFO]: [Not Secure] ARES tylerisproav3 » trading fall sword for hearts /m me
[18:07:58] [Async Chat Thread - #10/INFO]: [Not Secure] POSEIDON HarveyALP » tylerisproav3 show fall sword
[18:08:06] [Async Chat Thread - #11/INFO]: [Not Secure] HADES Zack_xoubi » back
[18:08:07] [Async Chat Thread - #10/INFO]: [Not Secure] POSEIDON gamerinactiune » i have max out sword :/
[18:08:16] [Async Chat Thread - #12/INFO]: [Not Secure] MEMBER .krisBG555 » Scope u should make that we can buy spawners and stuff
[18:08:24] [Async Chat Thread - #12/INFO]: [Not Secure] ARES tylerisproav3 » come spawn
[18:08:25] [Netty Epoll Server IO #3/WARN]: tylerisproav3 sent out-of-order chat: 'spawn': 1671127704 > 1671127703
[18:08:27] [Server thread/INFO]: HarveyALP issued server command: /msg gamerinactiune e they stupid watch
[18:08:32] [Server thread/INFO]: gamerinactiune issued server command: /r lol
[18:08:37] [Async Chat Thread - #11/INFO]: [Not Secure] MEMBER .krisBG555 » Scope u should make that we can buy spawners and stuff
[18:08:41] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.key.KeyManager.giveKeysOnHold(KeyManager.java:172) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.key.KeyListener.onUserLoad(KeyListener.java:30) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor457.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.postChunkLoadJoin(PlayerList.java:381) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.players.PlayerList.lambda$placeNewPlayer$0(PlayerList.java:316) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1291) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:08:41] [Server thread/INFO]: tylerisproav3[/90.220.254.34:38506] logged in with entity id 13840 at ([world]7994.962463084107, -12.0, 9606.625592627575)
[18:08:41] [Async Chat Thread - #12/INFO]: [Not Secure] HADES Zack_xoubi » yeah agrred
[18:08:41] [Server thread/INFO]: + tylerisproav3
[18:08:41] [Craft Scheduler Thread - 113 - /INFO]: [] tylerisproav3 logged in 90.220.254.34
[18:08:41] [Server thread/INFO]: [] No on-going  session for player: CraftPlayer{name=tylerisproav3} with ID 85.202.160.206:38506. 
[18:08:41] [Server thread/INFO]: [] Setups using Minecraft proxies will start delayed when the command from the proxy is received
[18:08:42] [Async Chat Thread - #12/INFO]: [Not Secure] POSEIDON HarveyALP » bruh they left
[18:08:45] [Server thread/INFO]: tylerisproav3 issued server command: /spawn
[18:08:49] [Async Chat Thread - #11/INFO]: [Not Secure] POSEIDON HarveyALP » tylerisproav3 drop it to prove
[18:08:49] [Async Chat Thread - #12/INFO]: [Not Secure] POSEIDON gamerinactiune » yes
[18:08:53] [Async Chat Thread - #12/INFO]: [Not Secure] ARES tylerisproav3 » i got kicked for doing /spawn
[18:08:57] [Async Chat Thread - #12/INFO]: [Not Secure] ARES notaxiomod » lol
[18:08:58] [Async Chat Thread - #12/INFO]: [Not Secure] POSEIDON gamerinactiune » lol
[18:08:59] [Netty Epoll Server IO #2/WARN]: gamerinactiune sent out-of-order chat: 'spawn': 1671127738 > 1671127738
[18:09:04] [Server thread/INFO]: tylerisproav3 issued server command: /trade HarveyALP
[18:09:09] [Async Chat Thread - #11/INFO]: [Not Secure] POSEIDON HarveyALP » drop to prove
[18:09:11] [Async Chat Thread - #11/INFO]: [Not Secure] ARES tylerisproav3 » nah
[18:09:11] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to ExcellentCrates v4.0.6
java.lang.IllegalStateException: no implementation set
    at net.citizensnpcs.api.CitizensAPI.getImplementation(CitizensAPI.java:84) ~[Citizens-2.0.30-b2813.jar:?]
    at net.citizensnpcs.api.CitizensAPI.getNPCRegistry(CitizensAPI.java:124) ~[Citizens-2.0.30-b2813.jar:?]
    at su.nexmedia.engine.hooks.Hooks.isCitizensNPC(Hooks.java:82) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.data.AbstractUserManager.getUserData(AbstractUserManager.java:53) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.key.KeyManager.giveKeysOnHold(KeyManager.java:172) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at su.nightexpress.excellentcrates.key.KeyListener.onUserLoad(KeyListener.java:30) ~[ExcellentCrates-4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor457.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:git-Pufferfish-48]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:674) ~[pufferfish-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.postChunkLoadJoin(PlayerList.java:381) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.players.PlayerList.lambda$placeNewPlayer$0(PlayerList.java:316) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1343) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1320) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1313) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1291) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1179) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:318) ~[pufferfish-1.19.3.jar:git-Pufferfish-48]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:09:11] [Server thread/INFO]: gamerinactiune[/86.120.225.198:39506] logged in with entity id 14194 at ([world]24.239092075154907, 67.0, -40.754980701933256)
[18:09:11] [Server thread/INFO]: + gamerinactiune
[18:09:11] [Craft Scheduler Thread - 120 - /INFO]: [] gamerinactiune logged in 86.120.225.198
[18:09:11] [Async Chat Thread - #12/INFO]: [Not Secure] MEMBER .krisBG555 » Scope u should make that we can buy spawners and stuff
[18:09:12] [Server thread/INFO]: [] No on-going  session for player: CraftPlayer{name=gamerinactiune} with ID 85.202.160.206:39506. 
[18:09:12] [Server thread/INFO]: [] Setups using Minecraft proxies will start delayed when the command from the proxy is received