Paste #137431: log

Date: 2025/11/16 04:44:50 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[09:38:52] [ServerMain/INFO]: [bootstrap] Running Java 21 (Java HotSpot(TM) 64-Bit Server VM 21.0.8+12-LTS-250; Oracle Corporation null) on Windows Server 2019 10.0 (amd64)
[09:38:52] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.8-60-main@29c8822 (2025-09-06T21:49:13Z) for Minecraft 1.21.8
[09:38:53] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[09:38:57] [ServerMain/INFO]: [PluginInitializerManager] Initialized 50 plugins
[09:38:57] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (1):
 - PlugManX (3.0.2)
[09:38:57] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (49):
 - BetonQuest (3.0.0-DEV-464), BetterHealthBar (3.10.0), CMILib (1.5.6.6), ChatGames (1.2.1), Citizens (2.0.40-SNAPSHOT (build 3987)), Codex (2.7.2), CombatLogX (11.4.0.1.1193), Confirm2Drop (1.4), CoreProtect (23.0), CosmeticsCore (1.3.8), DecentHolograms (2.9.7), DeluxeMenus (1.14.1-DEV-184), DivineDrop (2.16), EasyCommandBlocker (1.14.4), Essentials (2.21.0-dev+154-667b0f7), EssentialsSpawn (2.21.0-dev+154-667b0f7), FarmProtection (1.0), FastAsyncWorldEdit (2.13.3-SNAPSHOT-1175;b935a07), GSit (3.0.1), ImageFrame (1.8.7.0), InteractiveChat (4.3.2.0), ItemsAdder (4.0.15), LPC (3.6.0), LoginSecurity (3.3.1), LuckPerms (5.4.89), MCPets (4.1.5-SNAPSHOT), MMOCore (1.13.1-SNAPSHOT), MMOItems (6.10.1-SNAPSHOT), ModelEngine (R4.0.9), Multiverse-Core (5.2.1), MythicLib (1.7.1-SNAPSHOT), MythicMobs (5.10.0-${CI_COMMIT_SHORT_SHA}), PlaceholderAPI (2.11.7), ProtectionStones (2.10.5), ProtocolLib (5.4.0), ServerSigns (4.10.1), SetModelData (1.0.0), SkBee (3.12.3), SkQuery (4.3.2), SkinsRestorer (15.9.0), Skript (2.12.2), TAB (5.3.2), Vault (1.7.3-b131), WGRegionEvents (1.7.4), WorldGuard (7.0.14+2339-43997ec), skRayFall (1.9.28), skript-gui (1.3.2), skript-placeholders (1.7.0), skript-reflect (2.6.1)
[09:39:06] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[09:39:09] [ServerMain/INFO]: Loaded 1407 recipes
[09:39:09] [ServerMain/INFO]: Loaded 1520 advancements
[09:39:10] [ServerMain/INFO]: [ca.spottedleaf.dataconverter.minecraft.datatypes.MCTypeRegistry] Initialising converters for DataConverter...
[09:39:10] [ServerMain/INFO]: [ca.spottedleaf.dataconverter.minecraft.datatypes.MCTypeRegistry] Finished initialising converters for DataConverter in 763.8ms
[09:39:11] [Server thread/INFO]: Starting minecraft server version 1.21.8
[09:39:11] [Server thread/WARN]: ****************************
[09:39:11] [Server thread/WARN]: YOU ARE RUNNING THIS SERVER AS AN ADMINISTRATIVE OR ROOT USER. THIS IS NOT ADVISED.
[09:39:11] [Server thread/WARN]: YOU ARE OPENING YOURSELF UP TO POTENTIAL RISKS WHEN DOING THIS.
[09:39:11] [Server thread/WARN]: FOR MORE INFORMATION, SEE https://madelinemiller.dev/blog/root-minecraft-server/
[09:39:11] [Server thread/WARN]: ****************************
[09:39:11] [Server thread/INFO]: Loading properties
[09:39:11] [Server thread/INFO]: This server is running Paper version 1.21.8-60-main@29c8822 (2025-09-06T21:49:13Z) (Implementing API version 1.21.8-R0.1-SNAPSHOT)
[09:39:11] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[09:39:11] [Server thread/INFO]: Server Ping Player Sample Count: 12
[09:39:11] [Server thread/INFO]: Using 4 threads for Netty based IO
[09:39:12] [Server thread/INFO]: [MoonriseCommon] Paper is using 1 worker threads, 1 I/O threads
[09:39:12] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[09:39:12] [Server thread/INFO]: Default game type: SURVIVAL
[09:39:12] [Server thread/INFO]: Generating keypair
[09:39:12] [Server thread/INFO]: Starting Minecraft server on *:25565
[09:39:12] [Server thread/INFO]: Using default channel type
[09:39:12] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[09:39:12] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[09:39:13] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Could not load 'plugins\.paper-remapped\CombatLogX.jar' in 'plugins\.paper-remapped'
org.bukkit.plugin.UnknownDependencyException: Unknown/missing dependency plugins: [BlueSlimeCore]. Please download and install these plugins to run 'CombatLogX'.
    at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:82) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:38) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:39) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:567) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:235) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1164) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.8.jar:1.21.8-60-29c8822]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[09:39:13] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loading 4 libraries... please wait
[09:39:13] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-api\4.16.0\adventure-api-4.16.0.jar
[09:39:13] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-key\4.16.0\adventure-key-4.16.0.jar
[09:39:13] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[09:39:13] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[09:39:13] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\org\jetbrains\annotations\24.1.0\annotations-24.1.0.jar
[09:39:13] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-platform-bukkit\4.3.2\adventure-platform-bukkit-4.3.2.jar
[09:39:13] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-platform-api\4.3.2\adventure-platform-api-4.3.2.jar
[09:39:13] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.2\adventure-text-serializer-bungeecord-4.3.2.jar
[09:39:13] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-text-serializer-legacy\4.13.1\adventure-text-serializer-legacy-4.13.1.jar
[09:39:13] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[09:39:13] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.13.1\adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[09:39:13] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-platform-facet\4.3.2\adventure-platform-facet-4.3.2.jar
[09:39:13] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-platform-viaversion\4.3.2\adventure-platform-viaversion-4.3.2.jar
[09:39:13] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-text-minimessage\4.16.0\adventure-text-minimessage-4.16.0.jar
[09:39:13] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-text-serializer-gson\4.16.0\adventure-text-serializer-gson-4.16.0.jar
[09:39:13] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-text-serializer-json\4.16.0\adventure-text-serializer-json-4.16.0.jar
[09:39:13] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\option\1.0.0\option-1.0.0.jar
[09:39:13] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\com\google\code\gson\gson\2.8.0\gson-2.8.0.jar
[09:39:14] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 3 libraries... please wait
[09:39:14] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\ch\ethz\globis\phtree\phtree\2.8.2\phtree-2.8.2.jar
[09:39:14] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\org\joml\joml\1.10.8\joml-1.10.8.jar
[09:39:14] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\it\unimi\dsi\fastutil\8.5.16\fastutil-8.5.16.jar
[09:39:14] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 3 libraries... please wait
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-api\4.14.0\adventure-api-4.14.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-key\4.14.0\adventure-key-4.14.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\org\jetbrains\annotations\24.0.1\annotations-24.0.1.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-text-serializer-gson\4.14.0\adventure-text-serializer-gson-4.14.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-text-serializer-json\4.14.0\adventure-text-serializer-json-4.14.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\com\google\code\gson\gson\2.8.0\gson-2.8.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.0\adventure-text-serializer-bungeecord-4.3.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-text-serializer-legacy\4.13.0\adventure-text-serializer-legacy-4.13.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [Confirm2Drop] Loading 1 libraries... please wait
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [Confirm2Drop] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\org\xerial\sqlite-jdbc\3.46.0.0\sqlite-jdbc-3.46.0.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [Confirm2Drop] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\org\slf4j\slf4j-api\1.7.36\slf4j-api-1.7.36.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loading 5 libraries... please wait
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-api\4.24.0\adventure-api-4.24.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-key\4.24.0\adventure-key-4.24.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\org\jetbrains\annotations\26.0.2\annotations-26.0.2.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-text-minimessage\4.24.0\adventure-text-minimessage-4.24.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-platform-bukkit\4.4.1\adventure-platform-bukkit-4.4.1.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-platform-api\4.4.1\adventure-platform-api-4.4.1.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-text-serializer-bungeecord\4.4.1\adventure-text-serializer-bungeecord-4.4.1.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-text-serializer-legacy\4.21.0\adventure-text-serializer-legacy-4.21.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-nbt\4.21.0\adventure-nbt-4.21.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-text-serializer-gson\4.21.0\adventure-text-serializer-gson-4.21.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-text-serializer-json\4.21.0\adventure-text-serializer-json-4.21.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\option\1.1.0\option-1.1.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\org\jspecify\jspecify\1.0.0\jspecify-1.0.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\com\google\auto\service\auto-service-annotations\1.1.1\auto-service-annotations-1.1.1.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-text-serializer-commons\4.21.0\adventure-text-serializer-commons-4.21.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.21.0\adventure-text-serializer-gson-legacy-impl-4.21.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-text-serializer-json-legacy-impl\4.21.0\adventure-text-serializer-json-legacy-impl-4.21.0.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-platform-facet\4.4.1\adventure-platform-facet-4.4.1.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\kyori\adventure-platform-viaversion\4.4.1\adventure-platform-viaversion-4.4.1.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\jodah\expiringmap\0.5.11\expiringmap-0.5.11.jar
[09:39:15] [Server thread/INFO]: [SpigotLibraryLoader] [BetterHealthBar] Loaded library C:\Users\Administrator\Desktop\CrownCraft 0.2\libraries\net\objecthunter\exp4j\0.4.8\exp4j-0.4.8.jar
[09:39:16] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.89
[09:39:17] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[09:39:17] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.13.3-SNAPSHOT-1175;b935a07
[09:39:19] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@c71a4f6]
[09:39:19] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.7
[09:39:19] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.14+2339-43997ec
[09:39:19] [Server thread/INFO]: [CoreLogging] Loading server plugin Multiverse-Core v5.2.1
[09:39:19] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.10.0-${CI_COMMIT_SHORT_SHA}
[09:39:19] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[09:39:19] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[09:39:19] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0
[09:39:20] [Server thread/INFO]: [MythicLib] Loading server plugin MythicLib v1.7.1-SNAPSHOT
[09:39:20] [Server thread/INFO]: [MythicLib] Plugin file is called 'MythicLib-dist-1.7.1-20251103.133139-49.jar'
[09:39:20] [Server thread/INFO]: [MythicLib] Detected Bukkit Version: v1_21_R5
[09:39:20] [Server thread/INFO]: [MythicLib] Hooked onto WorldGuard
[09:39:20] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.40-SNAPSHOT (build 3987)
[09:39:20] [Server thread/INFO]: [MMOCore] Loading server plugin MMOCore v1.13.1-SNAPSHOT
[09:39:20] [Server thread/INFO]: [MMOCore] Plugin file is called 'MMOCore-1.13.1-20251114.211847-34.jar'
[09:39:20] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.12.2
[09:39:20] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+154-667b0f7
[09:39:20] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.9
[09:39:20] [Server thread/INFO]: [MMOItems] Loading server plugin MMOItems v6.10.1-SNAPSHOT
[09:39:20] [Server thread/INFO]: [MMOItems] Plugin file is called 'MMOItems-6.10.1-20251103.150448-38.jar'
[09:39:20] [Server thread/INFO]: [MMOItems] Hooked onto WorldEdit
[09:39:21] [Server thread/INFO]: [MMOItems Template Modifiers] Preloading template modifiers, please wait..
[09:39:21] [Server thread/INFO]: [MMOItems Item Templates] Preloading item templates, please wait..
[09:39:21] [Server thread/INFO]: [MMOItems] Hooked onto MythicMobs
[09:39:21] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v23.0
[09:39:21] [Server thread/INFO]: [SkBee] Loading server plugin SkBee v3.12.3
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v4.0.15
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library FastNbt-jar (remapped)...
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library httpmime...
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library httpclient
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library httpcore
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library commons-logging
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library commons-codec
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library commons-math3...
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library speedy-math...
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library jansi...
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library fastjson...
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library fastjson2-extension
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library fastjson2
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library json-path...
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library json-smart
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library accessors-smart
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library asm
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library slf4j-api
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library armor-equip-event...
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library glowingentities...
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library reflection-remapper
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library adventure-api...
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library adventure-key
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library examination-api
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library examination-string
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library annotations
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-minimessage...
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library adventure-api
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library adventure-key
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library examination-api
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library examination-string
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library annotations
[09:39:21] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-gson...
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-json
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-api
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-key
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library examination-api
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library examination-string
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library option
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library jspecify
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library gson
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library auto-service-annotations
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-commons
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library annotations
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-gson-legacy-impl...
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-gson
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-json
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library option
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library jspecify
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library gson
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library auto-service-annotations
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-commons
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library annotations
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-json-legacy-impl
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-api
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-key
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library examination-api
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library examination-string
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-nbt
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-platform-bukkit...
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-platform-api
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-api
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-key
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-bungeecord
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-legacy
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-nbt
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library examination-api
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library examination-string
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library annotations
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-gson
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-json
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library option
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library jspecify
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library auto-service-annotations
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-commons
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-gson-legacy-impl
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-json-legacy-impl
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-platform-facet
[09:39:22] [Server thread/INFO]: [ItemsAdder] Loading library adventure-platform-viaversion
[09:39:22] [Server thread/INFO]: [skript-reflect] Loading server plugin skript-reflect v2.6.1
[09:39:22] [Server thread/INFO]: [skript-placeholders] Loading server plugin skript-placeholders v1.7.0
[09:39:22] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.9.7
[09:39:22] [Server thread/INFO]: [WGRegionEvents] Loading server plugin WGRegionEvents v1.7.4
[09:39:22] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.3.2
[09:39:22] [Server thread/INFO]: [skript-gui] Loading server plugin skript-gui v1.3.2
[09:39:22] [Server thread/INFO]: [skRayFall] Loading server plugin skRayFall v1.9.28
[09:39:22] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.9.0
[09:39:22] [Server thread/INFO]: [SkQuery] Loading server plugin SkQuery v4.3.2
[09:39:22] [Server thread/INFO]: [SetModelData] Loading server plugin SetModelData v1.0.0
[09:39:22] [Server thread/INFO]: [ServerSigns] Loading server plugin ServerSigns v4.10.1
[09:39:22] [Server thread/INFO]: [ProtectionStones] Loading server plugin ProtectionStones v2.10.5
[09:39:22] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v3.0.2
[09:39:22] [Server thread/INFO]: [MCPets] Loading server plugin MCPets v4.1.5-SNAPSHOT
[09:39:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcpets [1.0.0]
[09:39:22] [Server thread/INFO]: [MCPets] : mcpets-dismount flag registered successfully !
[09:39:22] [Server thread/INFO]: [MCPets] : mcpets-despawn flag registered successfully !
[09:39:22] [Server thread/INFO]: [MCPets] : mcpets-dismount-flying flag registered successfully !
[09:39:22] [Server thread/INFO]: [MCPets] : mcpets-pet-player-damage flag registered successfully !
[09:39:22] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[09:39:22] [Server thread/INFO]: [LoginSecurity] Loading server plugin LoginSecurity v3.3.1
[09:39:22] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.3.2.0
[09:39:22] [Server thread/INFO]: [ImageFrame] Loading server plugin ImageFrame v1.8.7.0
[09:39:22] [Server thread/INFO]: [GSit] Loading server plugin GSit v3.0.1
[09:39:22] [Server thread/INFO]: [FarmProtection] Loading server plugin FarmProtection v1.0
[09:39:22] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+154-667b0f7
[09:39:22] [Server thread/INFO]: [EasyCommandBlocker] Loading server plugin EasyCommandBlocker v1.14.4
[09:39:22] [Server thread/INFO]: [DivineDrop] Loading server plugin DivineDrop v2.16
[09:39:22] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.1-DEV-184
[09:39:22] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[09:39:22] [Server thread/INFO]: [CosmeticsCore] Loading server plugin CosmeticsCore v1.3.8
[09:39:22] [Server thread/INFO]: [Confirm2Drop] Loading server plugin Confirm2Drop v1.4
[09:39:22] [Server thread/INFO]: [Confirm2Drop] Initializing using ColdDev v1.4.7
[09:39:22] [Server thread/INFO]: [Codex] Loading server plugin Codex v2.7.2
[09:39:22] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.6.6
[09:39:22] [Server thread/INFO]: [ChatGames] Loading server plugin ChatGames v1.2.1
[09:39:22] [Server thread/INFO]: [BetterHealthBar] Loading server plugin BetterHealthBar v3.10.0
[09:39:22] [Server thread/INFO]: [BetonQuest] Loading server plugin BetonQuest v3.0.0-DEV-464
[09:39:22] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[09:39:22] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.89
[09:39:24] [Server thread/INFO]:         __    
[09:39:24] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.89
[09:39:24] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[09:39:24] [Server thread/INFO]: 
[09:39:24] [Server thread/INFO]: [LuckPerms] Loading configuration...
[09:39:25] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[09:39:26] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[09:39:26] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[09:39:27] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 4573ms)
[09:39:27] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[09:39:27] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[09:39:27] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[09:39:27] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[09:39:27] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[09:39:27] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.13.3-SNAPSHOT-1175;b935a07
[09:39:27] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[09:39:27] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[09:39:27] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[09:39:27] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[09:39:28] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_6.PaperweightFaweAdapter as the Bukkit adapter
[09:39:30] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0
[09:39:30] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.9
[09:39:30] [Server thread/INFO]: [ModelEngine] [S] Loading cache version: R4.0.8
[09:39:31] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.9.0
[09:39:31] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] A new release for FastAsyncWorldEdit is available: 2.14.0. You are currently on 2.13.3.
Download from https://modrinth.com/plugin/fastasyncworldedit or https://hangar.papermc.io/IntellectualSites/FastAsyncWorldEdit
[09:39:31] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 40 build(s) out of date.
You are running build 1175, the latest version is build 1215.
Update at https://ci.athion.net/job/FastAsyncWorldEdit
[09:39:32] [Server thread/INFO]: [SkinsRestorer] Running on Minecraft 1.21.8.
[09:39:33] [Server thread/INFO]: [SkinsRestorer] Using paper join listener!
[09:39:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: skinsrestorer [15.9.0]
[09:39:33] [Server thread/INFO]: [SkinsRestorer] PlaceholderAPI expansion registered!
[09:39:33] [Server thread/INFO]: [PlugManX] Enabling PlugManX v3.0.2
[09:39:33] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[09:39:33] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[09:39:33] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[09:39:33] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |------------------|
[09:39:33] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |  Standalone Mode |
[09:39:33] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[09:39:33] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[09:39:33] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Version: 15.9.0
[09:39:33] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Commit: 1565b8f
[09:39:33] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     This is the latest version!
[09:39:33] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[09:39:33] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] Do you have issues? Read our troubleshooting guide: https://skinsrestorer.net/docs/troubleshooting
[09:39:33] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] Want to support SkinsRestorer? Consider donating: https://skinsrestorer.net/donate
[09:39:34] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[09:39:34] [Server thread/WARN]: [PlugManX] It seems like you're running on paper.
[09:39:34] [Server thread/WARN]: [PlugManX] PlugManX cannot interact with paper-plugins, yet.
[09:39:34] [Server thread/WARN]: [PlugManX] Also, if you encounter any issues, please join my discord: https://discord.gg/GxEFhVY6ff
[09:39:34] [Server thread/WARN]: [PlugManX] Or create an issue on GitHub: https://github.com/Test-Account666/PlugMan
[09:39:34] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[09:39:34] [Server thread/INFO]: [PlugManX] You can disable this warning by setting 'showPaperWarning' to false in the config.yml
[09:39:34] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[09:39:34] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[09:39:34] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[09:39:34] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[09:39:34] [Server thread/INFO]: Preparing level "playworld"
[09:39:35] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[09:39:35] [Server thread/INFO]: Preparing spawn area: 0%
[09:39:35] [Server thread/INFO]: Preparing spawn area: 0%
[09:39:36] [Server thread/INFO]: Preparing spawn area: 2%
[09:39:36] [Server thread/INFO]: Time elapsed: 1382 ms
[09:39:36] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.7
[09:39:37] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[09:39:37] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.14+2339-43997ec
[09:39:37] [Server thread/INFO]: [WorldGuard] (playworld) TNT ignition is PERMITTED.
[09:39:37] [Server thread/INFO]: [WorldGuard] (playworld) Lighters are PERMITTED.
[09:39:37] [Server thread/INFO]: [WorldGuard] (playworld) Lava fire is PERMITTED.
[09:39:37] [Server thread/INFO]: [WorldGuard] (playworld) Fire spread is UNRESTRICTED.
[09:39:37] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'playworld'
[09:39:37] [Server thread/INFO]: [WorldGuard] Loading region data...
[09:39:37] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v5.2.1
[09:39:38] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[09:39:38] [Server thread/INFO]: Preparing spawn area: 0%
[09:39:38] [Server thread/INFO]: Time elapsed: 332 ms
[09:39:38] [Server thread/INFO]: [WorldGuard] (playworld_nether) TNT ignition is PERMITTED.
[09:39:38] [Server thread/INFO]: [WorldGuard] (playworld_nether) Lighters are PERMITTED.
[09:39:38] [Server thread/INFO]: [WorldGuard] (playworld_nether) Lava fire is PERMITTED.
[09:39:38] [Server thread/INFO]: [WorldGuard] (playworld_nether) Fire spread is UNRESTRICTED.
[09:39:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'playworld_nether'
[09:39:39] [Server thread/INFO]: Preparing start region for dimension minecraft:afkworld
[09:39:39] [Server thread/INFO]: Preparing spawn area: 0%
[09:39:39] [Server thread/INFO]: Time elapsed: 236 ms
[09:39:39] [Server thread/INFO]: [WorldGuard] (AFKWorld) TNT ignition is PERMITTED.
[09:39:39] [Server thread/INFO]: [WorldGuard] (AFKWorld) Lighters are PERMITTED.
[09:39:39] [Server thread/INFO]: [WorldGuard] (AFKWorld) Lava fire is PERMITTED.
[09:39:39] [Server thread/INFO]: [WorldGuard] (AFKWorld) Fire spread is UNRESTRICTED.
[09:39:39] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'AFKWorld'
[09:39:39] [Server thread/INFO]: Preparing start region for dimension minecraft:crownvalley
[09:39:39] [Server thread/INFO]: Preparing spawn area: 0%
[09:39:39] [Server thread/INFO]: Preparing spawn area: 73%
[09:39:39] [Server thread/INFO]: Time elapsed: 510 ms
[09:39:39] [Server thread/INFO]: [WorldGuard] (CrownValley) TNT ignition is PERMITTED.
[09:39:39] [Server thread/INFO]: [WorldGuard] (CrownValley) Lighters are PERMITTED.
[09:39:39] [Server thread/INFO]: [WorldGuard] (CrownValley) Lava fire is PERMITTED.
[09:39:39] [Server thread/INFO]: [WorldGuard] (CrownValley) Fire spread is UNRESTRICTED.
[09:39:39] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'CrownValley'
[09:39:39] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[09:39:40] [Server thread/INFO]: Preparing spawn area: 0%
[09:39:40] [Server thread/INFO]: Time elapsed: 219 ms
[09:39:40] [Server thread/INFO]: [WorldGuard] (playworld_the_end) TNT ignition is PERMITTED.
[09:39:40] [Server thread/INFO]: [WorldGuard] (playworld_the_end) Lighters are PERMITTED.
[09:39:40] [Server thread/INFO]: [WorldGuard] (playworld_the_end) Lava fire is PERMITTED.
[09:39:40] [Server thread/INFO]: [WorldGuard] (playworld_the_end) Fire spread is UNRESTRICTED.
[09:39:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'playworld_the_end'
[09:39:40] [Server thread/INFO]: Preparing start region for dimension minecraft:mining
[09:39:40] [Server thread/INFO]: Preparing spawn area: 0%
[09:39:40] [Server thread/INFO]: Time elapsed: 246 ms
[09:39:40] [Server thread/INFO]: [WorldGuard] (mining) TNT ignition is PERMITTED.
[09:39:40] [Server thread/INFO]: [WorldGuard] (mining) Lighters are PERMITTED.
[09:39:40] [Server thread/INFO]: [WorldGuard] (mining) Lava fire is PERMITTED.
[09:39:40] [Server thread/INFO]: [WorldGuard] (mining) Fire spread is UNRESTRICTED.
[09:39:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'mining'
[09:39:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: multiverse-core [5.2.1]
[09:39:41] [Server thread/INFO]: [Multiverse-Core] API service loaded!
[09:39:41] [Server thread/INFO]: [Multiverse-Core] Version 5.2.1 (API v5.2) Enabled - By dumptruckman, Rigby, fernferret, lithium3141, main--, benwoo1110 and Zax71
[09:39:41] [Server thread/INFO]: [Multiverse-Core] Loving Multiverse-Core? Please consider supporting the project with a small donation: https://github.com/sponsors/Multiverse
[09:39:41] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.10.0-${CI_COMMIT_SHORT_SHA}
[09:39:41] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.21.8)...
[09:39:41] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[09:39:44] [Server thread/INFO]: [MythicMobs] Mythic Citizens Support has been enabled!
[09:39:44] [Server thread/INFO]: [MythicMobs] Mythic MMOItems Support has been enabled!
[09:39:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[09:39:44] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[09:39:44] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[09:39:44] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[09:39:48] [Server thread/INFO]: [MythicMobs] Loading Packs...
[09:39:48] [Server thread/INFO]: [MythicMobs] Loading Items...
[09:39:48] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[09:39:48] [Server thread/INFO]: [MythicMobs] Loading Skills...
[09:39:49] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[09:39:49] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[09:39:49] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[09:39:50] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic randomskill
[09:39:50] [Server thread/WARN]: [MythicMobs] --| Skill: random_stun_sound | File: C:\Users\Administrator\Desktop\CrownCraft 0.2\plugins\MythicMobs\skills\littleroom\kriger.yml
[09:39:50] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill random_stun04_sound
[09:39:50] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: randomskill{skills=random_stun01_sound,random_stun02_sound,random_stun03_sound,random_stun04_sound}
[09:39:50] [Server thread/INFO]: [MythicMobs] ✓ Loaded 52 mobs.
[09:39:50] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[09:39:50] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[09:39:50] [Server thread/INFO]: [MythicMobs] ✓ Loaded 279 skills.
[09:39:50] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[09:39:50] [Server thread/INFO]: [MythicMobs] ✓ Loaded 23 mythic items.
[09:39:50] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[09:39:50] [Server thread/INFO]: [MythicMobs] ✓ Loaded 5 mob spawners.
[09:39:50] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[09:39:50] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[09:39:50] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.10.0 ( build ${CI_COMMIT_SHORT_SHA} ) has been successfully loaded!
[09:39:51] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[09:39:51] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[09:39:51] [Server thread/INFO]: [MythicLib] Enabling MythicLib v1.7.1-SNAPSHOT
[09:39:52] [Server thread/INFO]: [MythicLib] Hooked onto TextDisplays (holograms)
[09:39:52] [Server thread/INFO]: [MythicMobs] MMO Plugin Support has been enabled!
[09:39:52] [Server thread/INFO]: [MythicLib] Hooked onto MythicMobs
[09:39:52] [Server thread/INFO]: [MythicLib] Hooked onto ProtocolLib
[09:39:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythiclib [1.7.1-SNAPSHOT]
[09:39:52] [Server thread/INFO]: [MythicLib] Hooked onto PlaceholderAPI
[09:39:52] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[09:39:52] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.40-SNAPSHOT (build 3987)
[09:39:53] [Server thread/INFO]: [Citizens] Loaded 1 templates.
[09:39:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizens [1.0.0]
[09:39:53] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[09:39:53] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: Citizens
[09:39:53] [Server thread/INFO]: [MMOCore] Enabling MMOCore v1.13.1-SNAPSHOT
[09:39:53] [Server thread/INFO]: [MMOCore] Hooked onto Vault
[09:39:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mmocore [1.13.1-SNAPSHOT]
[09:39:53] [Server thread/INFO]: [MMOCore] Hooked onto PlaceholderAPI
[09:39:53] [Server thread/INFO]: [MMOCore] Hooked onto Citizens
[09:39:53] [Server thread/INFO]: [MMOCore] Hooked onto WorldGuard
[09:39:53] [Server thread/INFO]: [MMOCore] Hooked onto MythicMobs
[09:39:53] [Server thread/WARN]: [MMOCore] Could not load language entry 'gold-pouch-ui-name': Entry not found
[09:39:53] [Server thread/WARN]: [MMOCore] Could not load message 'guild-is-full': Translation not found
[09:39:53] [Server thread/WARN]: [MMOCore] Could not load message 'guild-no-pending-invite': Translation not found
[09:39:53] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-invalid-chars': Translation not found
[09:39:53] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-invalid-length': Translation not found
[09:39:53] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-already-exists': Translation not found
[09:39:53] [Server thread/WARN]: [MMOCore] Could not load message 'quest-profession-level-restriction': Translation not found
[09:39:53] [Server thread/WARN]: [MMOCore] Could not load message 'friend-no-pending-invite': Translation not found
[09:39:53] [Server thread/WARN]: [MMOCore] Could not load message 'friend-request-denied': Translation not found
[09:39:53] [Server thread/WARN]: [MMOCore] Could not load message 'friend-request-denied-creator': Translation not found
[09:39:53] [Server thread/WARN]: [MMOCore] Could not load message 'party-created': Translation not found
[09:39:53] [Server thread/WARN]: [MMOCore] Could not load message 'party-no-pending-invite': Translation not found
[09:39:53] [Server thread/WARN]: [MMOCore] Could not load message 'party-leave': Translation not found
[09:39:53] [Server thread/WARN]: [MMOCore] Could not load message 'party-kicked-from': Translation not found
[09:39:53] [Server thread/WARN]: [MMOCore] Could not load message 'waypoint-tp-done': Translation not found
[09:39:53] [Server thread/WARN]: [MMOCore] Could not load message 'skill-unbound-from-slot': Translation not found
[09:39:53] [Server thread/WARN]: [MMOCore] Could not load message 'skill-bound-to-slot': Translation not found
[09:39:53] [Server thread/WARN]: [MMOCore] Could not load message 'skill-ui-focus': Translation not found
[09:39:53] [Server thread/WARN]: [MMOCore] Could not load message 'no-class-skill-tree': Translation not found
[09:39:53] [Server thread/WARN]: [MMOCore] Could not load message 'skill-tree-switch': Translation not found
[09:39:53] [Server thread/WARN]: [MMOCore] Could not load message 'close-loot-chest': Translation not found
[09:39:54] [Server thread/WARN]: [MMOCore] Could not load quest from file 'adv-begins.yml': Could not find world world
[09:39:54] [Server thread/WARN]: [MMOCore] Could not load quest from file 'tutorial.yml': Could not find world world
[09:39:54] [Server thread/WARN]: [MMOCore] Could not load loot chest region 'sample-region' from file 'default_loot_chests.yml': Could not find world 'world_name_here'
[09:39:54] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn' from file 'default_waypoints.yml': Could not find world with name 'world'
[09:39:54] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn1' from file 'default_waypoints.yml': Could not find world with name 'world'
[09:39:54] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn2' from file 'default_waypoints.yml': Could not find world with name 'world'
[09:39:54] [Server thread/INFO]: [MMOCore] Hooked parties onto MMOCore
[09:39:54] [Server thread/INFO]: [MMOCore] Hooked guilds onto MMOCore
[09:39:54] [Server thread/INFO]: [Skript] Enabling Skript v2.12.2
[09:39:55] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] A new version of Skript is available: 2.13.1 (you're currently running 2.12.2)
[09:39:55] [ForkJoinPool.commonPool-worker-1/INFO]: Download it at: https://github.com/SkriptLang/Skript/releases/download/2.13.1/Skript-2.13.1.jar
[09:39:56] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[09:39:56] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+154-667b0f7
[09:39:57] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[09:39:57] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[09:39:57] [Server thread/INFO]: [Essentials] No kits found to migrate.
[09:39:57] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[09:39:57] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[09:39:57] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[09:39:57] [Server thread/INFO]: [Essentials] Selected Reflection Spawner Block Provider as the provider for SpawnerBlockProvider
[09:39:57] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[09:39:57] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[09:39:57] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[09:39:57] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[09:39:57] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[09:39:57] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[09:39:57] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[09:39:57] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[09:39:57] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[09:39:57] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[09:39:57] [Server thread/INFO]: [Essentials] Selected Reflection Sync Commands Provider as the provider for SyncCommandsProvider
[09:39:57] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[09:39:57] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[09:39:57] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[09:39:57] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[09:39:57] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[09:39:57] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[09:39:58] [Server thread/INFO]: [Essentials] Loaded 43465 items from items.json.
[09:39:58] [Server thread/INFO]: [Essentials] Using locale en
[09:39:58] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[09:39:58] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[09:39:58] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[09:39:58] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[09:39:58] [Server thread/INFO]: [MMOItems] Enabling MMOItems v6.10.1-SNAPSHOT
[09:39:58] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] Loaded 5504 aliases in 2076ms
[09:39:59] [Server thread/INFO]: [MMOItems] Hooked onto MythicMobs
[09:39:59] [Server thread/INFO]: [MMOItems] Hooked onto ItemsAdder
[09:39:59] [Server thread/INFO]: [MMOItems] Hooked onto MMOCore
[09:39:59] [Server thread/INFO]: [MMOItems] Now using MMOCore as RPG core plugin
[09:39:59] [Server thread/INFO]: [MMOItems Template Modifiers] Loading template modifiers, please wait..
[09:39:59] [Server thread/INFO]: [MMOItems Item Templates] Loading item templates, please wait...
[09:39:59] [Server thread/INFO]: [MMOItems] Hooked onto Vault
[09:39:59] [Server thread/INFO]: [MMOItems] Loading crafting stations, please wait..
[09:39:59] [Server thread/WARN]: [MMOItems] Could not load crafting station 'arcane-forge.yml': Cannot invoke "org.bukkit.configuration.ConfigurationSection.getString(String)" because "config" is null
[09:39:59] [Server thread/WARN]: [MMOItems] Could not load crafting station 'mythical-forge.yml': Cannot invoke "org.bukkit.configuration.ConfigurationSection.getString(String)" because "config" is null
[09:39:59] [Server thread/WARN]: [MMOItems] Could not load crafting station 'steel-crafting-station.yml': Cannot invoke "org.bukkit.configuration.ConfigurationSection.getString(String)" because "config" is null
[09:39:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mmoitems [6.10.1-SNAPSHOT]
[09:39:59] [Server thread/INFO]: [MMOItems] Hooked onto PlaceholderAPI
[09:39:59] [Server thread/INFO]: [MMOItems] Loading recipes, please wait...
[09:40:00] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v23.0
[09:40:01] [Server thread/INFO]: [CoreProtect] CoreProtect Community Edition has been successfully enabled! 
[09:40:01] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[09:40:01] [Server thread/INFO]: --------------------
[09:40:01] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[09:40:01] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[09:40:01] [Server thread/INFO]: --------------------
[09:40:01] [Server thread/INFO]: [SkBee] Enabling SkBee v3.12.3
[09:40:01] [Server thread/INFO]: [SkBee] Registry Elements successfully loaded
[09:40:01] [Server thread/INFO]: [SkBee] Loading NBTApi...
[09:40:01] [Server thread/INFO]: [SkBee] [NBTAPI] Found Minecraft: 1.21.8! Trying to find NMS support
[09:40:01] [Server thread/INFO]: [SkBee] [NBTAPI] NMS support 'MC1_21_R5' loaded!
[09:40:01] [Server thread/INFO]: [SkBee] Successfully loaded NBTApi!
[09:40:01] [Server thread/INFO]: [SkBee] NBT Elements successfully loaded
[09:40:01] [Server thread/INFO]: [SkBee] Text Component Elements successfully loaded
[09:40:01] [Server thread/INFO]: [SkBee] Advancement Elements successfully loaded
[09:40:01] [Server thread/INFO]: [SkBee] BossBar Elements successfully loaded
[09:40:01] [Server thread/INFO]: [SkBee] Bound Elements successfully loaded
[09:40:01] [Server thread/INFO]: [SkBee] Damage Source Elements successfully loaded
[09:40:01] [Server thread/INFO]: [SkBee] Display Entity Elements successfully loaded
[09:40:01] [Server thread/INFO]: [SkBee] Fastboard[Adventure] Elements successfully loaded
[09:40:01] [Server thread/INFO]: [SkBee] Fishing Elements successfully loaded
[09:40:01] [Server thread/INFO]: [SkBee] Game Event Elements successfully loaded
[09:40:01] [Server thread/INFO]: [SkBee] Item Component Elements successfully loaded
[09:40:01] [Server thread/INFO]: [SkBee] Particle Elements successfully loaded
[09:40:01] [Server thread/INFO]: [SkBee] Property Elements successfully loaded
[09:40:01] [Server thread/INFO]: [SkBee] RayTrace Elements successfully loaded
[09:40:02] [Server thread/INFO]: [SkBee] Recipe Elements successfully loaded
[09:40:02] [Server thread/INFO]: [SkBee] Scoreboard Elements successfully loaded
[09:40:02] [Server thread/INFO]: [SkBee] Statistic Elements successfully loaded
[09:40:02] [Server thread/INFO]: [SkBee] Structure Elements successfully loaded
[09:40:02] [Server thread/INFO]: [SkBee] SwitchCase Elements successfully loaded
[09:40:02] [Server thread/INFO]: [SkBee] Tick Manager Elements successfully loaded
[09:40:02] [Server thread/INFO]: [SkBee] Villager Elements successfully loaded
[09:40:02] [Server thread/INFO]: [SkBee] Virtual Furnace Elements disabled via config
[09:40:02] [Server thread/INFO]: [SkBee] World Border Elements disabled (now in Skript)
[09:40:02] [Server thread/INFO]: [SkBee] World Creator Elements successfully loaded
[09:40:02] [Server thread/INFO]: [SkBee] Chunk Generator Elements successfully loaded
[09:40:02] [Server thread/INFO]: [SkBee] Loaded (461) elements:
[09:40:02] [Server thread/INFO]: [SkBee]  - 56 events
[09:40:02] [Server thread/INFO]: [SkBee]  - 71 effects
[09:40:02] [Server thread/INFO]: [SkBee]  - 276 expressions
[09:40:02] [Server thread/INFO]: [SkBee]  - 26 conditions
[09:40:02] [Server thread/INFO]: [SkBee]  - 32 sections
[09:40:02] [Server thread/INFO]: [SkBee]  - 11 properties
[09:40:02] [Server thread/INFO]: [SkBee] Checking for update...
[09:40:02] [Server thread/INFO]: [SkBee] Plugin is not up to date!
[09:40:02] [Server thread/INFO]: [SkBee]  - Current version: v3.12.3
[09:40:02] [Server thread/INFO]: [SkBee]  - Available update: v3.13.2
[09:40:02] [Server thread/INFO]: [SkBee]  - Download at: https://modrinth.com/plugin/skbee/version/3.13.2
[09:40:02] [Server thread/INFO]: [SkBee] Successfully enabled v3.12.3 in 1.67 seconds
[09:40:02] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v4.0.15
[09:40:02] [Server thread/INFO]: ItemsAdder) InteractiveChat detected, disabling `cache_font_images_and_effects_replacements`.
[09:40:02] [Server thread/WARN]: ItemsAdder) Using default server address: . Consider setting it in the `config.yml`
[09:40:02] [Server thread/WARN]: ItemsAdder) Using default server port: 25565. Consider setting it in the `config.yml`
[09:40:02] [Server thread/INFO]: ItemsAdder) 
                                                   ItemsAdder 4.0.15
  ___  ___        __        __   __   ___  __      ProtocolLib 5.4.0
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     Paper 1.21.8-60-29c8822 (MC: 1.21.8)
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Build Date: 2025-11-07_18.11.08
                                                   Java Version: 21.0.8
                                                   OS: Windows Server 2019 10.0                                               
[09:40:03] [Server thread/INFO]: [ItemsAdder] Loading GlowingEntities API
[09:40:03] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Found server version 1.21.8
[09:40:03] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Loaded transparent mappings.
[09:40:03] [Server thread/INFO]: ItemsAdder) Registered Skript API
[09:40:03] [Server thread/INFO]: ItemsAdder) Registered Citizens NPC Trait: customentity
[09:40:03] [Server thread/INFO]: ItemsAdder) [Host] Started self-host webserver on port: 8810
[09:40:03] [Server thread/INFO]: ItemsAdder) [SelfHost] Rate limiter: max 3 requests / 2s.
[09:40:03] [Server thread/INFO]: ItemsAdder) [SelfHost] Clients exceeding 5 times will be blocked for 30m.
[09:40:04] [Server thread/INFO]: [skript-reflect] Enabling skript-reflect v2.6.1
[09:40:05] [Server thread/INFO]: [skript-placeholders] Enabling skript-placeholders v1.7.0
[09:40:05] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.9.7
[09:40:05] [Server thread/INFO]: [DecentHolograms] Initialized NMS adapter for v1_21_R5 (1.21.8).
[09:40:05] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.8! Trying to find NMS support
[09:40:05] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R5' loaded!
[09:40:05] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[09:40:05] [Server thread/INFO]: [DecentHolograms] NBT-API loaded successfully.
[09:40:05] [Server thread/INFO]: [WGRegionEvents] Enabling WGRegionEvents v1.7.4
[09:40:05] [Server thread/INFO]: [TAB] Enabling TAB v5.3.2
[09:40:05] [Server thread/INFO]: [TAB] [WARN] [config.yml] playerlist-objective: Playerlist objective value is set to be empty, but the configured value must evaluate to a number. Using 0.
[09:40:05] [Server thread/INFO]: [TAB] [WARN] Found a total of 1 issues.
[09:40:05] [Server thread/INFO]: [TAB] Enabled in 341ms
[09:40:05] [Server thread/INFO]: [skript-gui] Enabling skript-gui v1.3.2
[09:40:05] [Server thread/INFO]: [Skript]     Missing version in default.lang
[09:40:05] [Server thread/INFO]: [skRayFall] Enabling skRayFall v1.9.28
[09:40:05] [Server thread/INFO]: [skRayFall] Yay! You are running skRayFall 1.9.28!
[09:40:05] [Server thread/INFO]: [skRayFall] Nathan and Lewis <3 you.
[09:40:05] [Server thread/INFO]: [skRayFall] Cooking Bacon...
[09:40:05] [Server thread/INFO]: [skRayFall] Getting more bacon for the army of citizens...
[09:40:05] [Server thread/INFO]: [skRayFall] Got bacon for the EffectLib particle ninjas!
[09:40:05] [Server thread/INFO]: [skRayFall] No Votifier Found! *Checks oven for finished bacon*
[09:40:05] [Server thread/WARN]: [skRayFall] Unable to get bacon for the CoreProtect loggers [Unsupported API version (10)].
[09:40:06] [Server thread/INFO]: [skRayFall] Enabling general 1.8+ bacon!
[09:40:06] [Server thread/INFO]: [skRayFall] Getting the general 1.9+ bacon!
[09:40:06] [Server thread/INFO]: [skRayFall] Getting the extra special 1.17+ bacon!
[09:40:06] [Server thread/INFO]: [skRayFall] Bacon is ready!
[09:40:06] [Server thread/INFO]: [SkQuery] Enabling SkQuery v4.3.2
[09:40:06] [Server thread/INFO]: [skQuery] Beginning to process a total of 152 from SkQuery
[09:40:06] [Server thread/INFO]: [skQuery] com.skquery.skquery.elements.effects.base.OptionsPragma is patternless and failed to register. This is most likely a code error.
[09:40:06] [Server thread/INFO]: [skQuery] com.skquery.skquery.elements.effects.base.Pragma is patternless and failed to register. This is most likely a code error.
[09:40:06] [Server thread/INFO]: [skQuery] Out of 152 classes, 102 classes were loaded from SkQuery
[09:40:06] [Server thread/INFO]: [SetModelData] Enabling SetModelData v1.0.0
[09:40:06] [Server thread/INFO]: [SetModelData] SetModelData is loaded!
[09:40:06] [Server thread/INFO]: [ServerSigns] Enabling ServerSigns v4.10.1
[09:40:06] [Server thread/INFO]: [ServerSigns] Version 4.10.1 is now enabled.
[09:40:06] [Server thread/INFO]: [ProtectionStones] Enabling ProtectionStones v2.10.5
[09:40:06] [Server thread/INFO]: [WorldGuard] Registering session handler dev.espi.protectionstones.flags.GreetingFlagHandler
[09:40:06] [Server thread/INFO]: [WorldGuard] Registering session handler dev.espi.protectionstones.flags.FarewellFlagHandler
[09:40:06] [Server thread/INFO]: [ProtectionStones] PlaceholderAPI support enabled!
[09:40:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: protectionstones [2.10.5]
[09:40:06] [Server thread/INFO]: [ProtectionStones] LuckPerms support enabled!
[09:40:06] [Server thread/INFO]: [ProtectionStones] Protection Stone Blocks:
[09:40:06] [Server thread/INFO]: [ProtectionStones] - EMERALD_ORE (64)
[09:40:07] [Server thread/INFO]: [ProtectionStones] Building region cache...
[09:40:07] [Server thread/INFO]: [ProtectionStones] Building UUID cache... (if slow change async-load-uuid-cache in the config to true)
[09:40:07] [Server thread/INFO]: [ProtectionStones] Checking if PS regions have been updated to UUIDs...
[09:40:07] [Server thread/INFO]: [ProtectionStones] ProtectionStones has successfully started!
[09:40:07] [Server thread/INFO]: [MCPets] Enabling MCPets v4.1.5-SNAPSHOT
[09:40:07] [Server thread/INFO]: [MCPets] : Language file reloaded.
[09:40:07] [Server thread/INFO]: [MCPets] : Blacklist file reloaded.
[09:40:07] [Server thread/INFO]: Loading pets... 
[09:40:07] [Server thread/INFO]: [MCPets] : 0 pets registered successfully !
[09:40:07] [Server thread/INFO]: [MCPets] : 0 categories registered successfully !
[09:40:07] [Server thread/ERROR]: [MCPets] Could not reach SQL database. Please configure your database parameters.
[09:40:07] [Server thread/INFO]: [MCPets] [Database] Can't initialize MySQL.
[09:40:07] [Server thread/INFO]: [MCPets] [Database] Will be using YAML support instead (no worry it's not a bug).
[09:40:07] [Server thread/INFO]: -=-=-=-= MCPets loaded =-=-=-=-
[09:40:07] [Server thread/INFO]:       Plugin made by Nocsy     
[09:40:07] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[09:40:07] [Server thread/INFO]: -=- Launching Flags -=-
[09:40:07] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount.
[09:40:07] [Server thread/INFO]: [MCPets] : Starting flag mcpets-despawn.
[09:40:07] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount-flying.
[09:40:07] [Server thread/INFO]: 3 flags launched.
[09:40:07] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[09:40:07] [Server thread/INFO]: [LoginSecurity] Enabling LoginSecurity v3.3.1
[09:40:07] [Server thread/INFO]: [LoginSecurity] Loading base translations from "en_us"
[09:40:07] [Server thread/INFO]: [LoginSecurity] Loading specified translations from "en_us"
[09:40:07] [Server thread/INFO]: [LoginSecurity] Registering commands...
[09:40:07] [Server thread/INFO]: [LoginSecurity] Registering listeners...
[09:40:07] [Server thread/INFO]: [LoginSecurity] Using 1.13+ map captcha renderer
[09:40:07] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.3.2.0
[09:40:14] [Server thread/INFO]: [InteractiveChat] No custom ProtocolProvider provided, using default ProtocolLib provider.
[09:40:14] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[09:40:14] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[09:40:14] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[09:40:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactivechat [4.3.2.0]
[09:40:14] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[09:40:14] [Server thread/INFO]: [ImageFrame] Enabling ImageFrame v1.8.7.0
[09:40:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: imageframe [1.0.0]
[09:40:20] [Server thread/INFO]: [ImageFrame] ImageFrame has been Enabled!
[09:40:20] [Server thread/INFO]: [GSit] Enabling GSit v3.0.1
[09:40:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [3.0.1]
[09:40:20] [Server thread/INFO]: [WorldGuard] Registering session handler dev.geco.gsit.link.worldguard.RegionFlagHandler
[09:40:21] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[09:40:21] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[09:40:21] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[09:40:21] [Server thread/INFO]: [FarmProtection] Enabling FarmProtection v1.0
[09:40:21] [Server thread/INFO]: [FarmProtection] Enabled FarmProtection v1.0
[09:40:21] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+154-667b0f7
[09:40:21] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[09:40:21] [Server thread/INFO]: [EasyCommandBlocker] Enabling EasyCommandBlocker v1.14.4
[09:40:21] [Server thread/INFO]: [EasyCommandBlocker] Has been enabled! Version: 1.14.4
[09:40:21] [Server thread/INFO]: [EasyCommandBlocker] Thanks for using my plugin!   ~Ajneb97
[09:40:21] [Server thread/INFO]: There is a new version available. (1.15.1)
[09:40:21] [Server thread/INFO]: You can download it at: https://www.spigotmc.org/resources/101752/
[09:40:21] [Server thread/INFO]: [DivineDrop] Enabling DivineDrop v2.16
[09:40:21] [Server thread/INFO]: [DivineDrop] Detected version: DEOBFUSCATED_POST_V_21 (NMS: Generic), while server version is: 1.21.8-60-29c8822 (MC: 1.21.8)
[09:40:21] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.1-DEV-184
[09:40:21] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[09:40:21] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[09:40:21] [Server thread/INFO]: [DeluxeMenus] 3 GUI menus loaded!
[09:40:21] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[09:40:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.1-DEV-184]
[09:40:21] [Server thread/INFO]: [CosmeticsCore] Enabling CosmeticsCore v1.3.8
[09:40:21] [Server thread/INFO]: [CosmeticsCore] Loading library FastNbt-jar (remapped)...
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library commons-math3...
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-api...
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-key
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library examination-api
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library examination-string
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library annotations
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-minimessage...
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-api
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-key
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library examination-api
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library examination-string
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library annotations
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-gson...
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-json
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-api
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-key
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library examination-api
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library examination-string
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library option
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library jspecify
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library gson
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library auto-service-annotations
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-commons
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library annotations
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-gson-legacy-impl...
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-gson
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-json
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library option
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library jspecify
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library gson
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library auto-service-annotations
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-commons
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library annotations
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-json-legacy-impl
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-api
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-key
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library examination-api
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library examination-string
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-nbt
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-platform-bukkit...
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-platform-api
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-api
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-key
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-bungeecord
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-legacy
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-nbt
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library examination-api
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library examination-string
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library annotations
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-gson
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-json
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library option
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library jspecify
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library auto-service-annotations
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-commons
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-gson-legacy-impl
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-text-serializer-json-legacy-impl
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-platform-facet
[09:40:22] [Server thread/INFO]: [CosmeticsCore] Loading library adventure-platform-viaversion
[09:40:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cosmetics [1.0.0]
[09:40:23] [Server thread/INFO]: [Confirm2Drop] Enabling Confirm2Drop v1.4
[09:40:23] [Server thread/INFO]: [Confirm2Drop] Database connected using SQLite. ✔
[09:40:23] [Server thread/INFO]: [Confirm2Drop] Database path: jdbc:sqlite:plugins\Confirm2Drop\confirm2drop.db
[09:40:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: confirm2drop [1.4]
[09:40:23] [Server thread/INFO]: [Confirm2Drop] PlaceholderAPI hook registered successfully. ✔
[09:40:23] [Server thread/INFO]: [Confirm2Drop] 
[09:40:23] [Server thread/INFO]: [Confirm2Drop]   ____ ___  _     ____  
[09:40:23] [Server thread/INFO]: [Confirm2Drop]  / ___/ _ \| |   |  _ \ 
[09:40:23] [Server thread/INFO]: [Confirm2Drop] | |  | | | | |   | | | |
[09:40:23] [Server thread/INFO]: [Confirm2Drop] | |__| |_| | |___| |_| |
[09:40:23] [Server thread/INFO]: [Confirm2Drop]  \____\___/|_____|____/ 
[09:40:23] [Server thread/INFO]: [Confirm2Drop]     Confirm2Drop v1.4
[09:40:23] [Server thread/INFO]: [Confirm2Drop]     Author(s): padrewin
[09:40:23] [Server thread/INFO]: [Confirm2Drop]     (c) Cold Development ❄
[09:40:23] [Server thread/INFO]: [Confirm2Drop] 
[09:40:23] [Server thread/INFO]: [Codex] Enabling Codex v2.7.2
[09:40:23] [Server thread/INFO]: [WorldGuard] Registering session handler cx.ajneb97.managers.dependencies.worldguard.WorldGuardEntryManager
[09:40:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: codex [2.7.2]
[09:40:23] [Server thread/INFO]: [Codex] Has been enabled! Version: 2.7.2
[09:40:23] [Server thread/INFO]: [Codex] Thanks for using my plugin!   ~Ajneb97
[09:40:23] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.6.6
[09:40:24] [Server thread/INFO]: Server version: v1_21_R5 - 1.21.8 - paper  1.21.8-60-29c8822 (MC: 1.21.8)
[09:40:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.6.6]
[09:40:25] [Server thread/INFO]: PlaceholderAPI hooked.
[09:40:25] [Server thread/INFO]: Updated (EN) language file. Took 41ms
[09:40:25] [Server thread/INFO]: [ChatGames] Enabling ChatGames v1.2.1
[09:40:25] [Server thread/INFO]: [ChatGames] ChatGames is now enabled!
[09:40:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatgames [1.0.0]
[09:40:25] [Server thread/INFO]: [ChatGames] PlaceholderAPI Hooked!
[09:40:25] [Server thread/INFO]: [ChatGames] Points loaded successfully!
[09:40:25] [Server thread/INFO]: [BetterHealthBar] Enabling BetterHealthBar v3.10.0
[09:40:25] [Server thread/INFO]: [BetonQuest] Enabling BetonQuest v3.0.0-DEV-464
[09:40:25] [Server thread/INFO]: [BetonQuest] Running on JRE 21.0.8 (build 12, optional LTS-250, pre-release info N/A) by Oracle Corporation
[09:40:25] [Server thread/WARN]: [BetonQuest] The messages.yml file is no longer used, move modified messages to the lang folder and delete the file.
[09:40:25] [Server thread/WARN]: [BetonQuest] The menuConfig.yml file is no longer used, move modified messages to the lang folder, configure default_close in the config.yml and delete the file.
[09:40:26] [Server thread/INFO]: [BetonQuest] Using SQLite for storing data!
[09:40:26] [Server thread/INFO]: [BetonQuest] Hooking into LuckPerms
[09:40:26] [Server thread/INFO]: [BetonQuest] Hooking into Vault
[09:40:26] [Server thread/INFO]: [BetonQuest] Hooking into FastAsyncWorldEdit
[09:40:26] [Server thread/INFO]: [BetonQuest] Hooking into PlaceholderAPI
[09:40:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betonquest [3.0.0-DEV-464]
[09:40:26] [Server thread/INFO]: [BetonQuest] Hooking into WorldGuard
[09:40:26] [Server thread/INFO]: [BetonQuest] Hooking into MythicMobs
[09:40:26] [Server thread/INFO]: [BetonQuest] Hooking into ProtocolLib
[09:40:26] [Server thread/INFO]: [BetonQuest] Hooking into MythicLib
[09:40:26] [Server thread/INFO]: [BetonQuest] Hooking into Citizens
[09:40:26] [Server thread/INFO]: [BetonQuest] Hooking into MMOCore
[09:40:26] [Server thread/INFO]: [BetonQuest] Hooking into Skript
[09:40:26] [Server thread/INFO]: [BetonQuest] Hooking into MMOItems
[09:40:26] [Server thread/INFO]: [BetonQuest] Hooking into DecentHolograms
[09:40:26] [Server thread/INFO]: [BetonQuest] BetonQuest successfully enabled!
[09:40:27] [Server thread/INFO]: [spark] Starting background profiler...
[09:40:27] [Server thread/INFO]: [spark] The async-profiler engine is not supported for your os/arch (windowsserver2019/amd64), so the built-in Java engine will be used instead.
[09:40:27] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[09:40:27] [Server thread/INFO]: Done preparing level "playworld" (52.834s)
[09:40:27] [Server thread/INFO]: Running delayed init tasks
[09:40:27] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[09:40:27] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[09:40:27] [Craft Scheduler Thread - 19 - ItemsAdder/INFO]: ItemsAdder) [License] BuiltByBit product licensed to: _SugarRune (674678)
[09:40:27] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:40:27] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[09:40:27] [Craft Scheduler Thread - 22 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[09:40:27] [Craft Scheduler Thread - 31 - CosmeticsCore/INFO]: [CosmeticsCore] [License] Licensed to user: _SugarRune (674678)
[09:40:27] [Craft Scheduler Thread - 24 - DecentHolograms/INFO]: 
A newer version of DecentHolograms is available. Download it from: 
- https://www.spigotmc.org/resources/96927/
- https://modrinth.com/plugin/decentholograms
[09:40:27] [Craft Scheduler Thread - 37 - Vault/INFO]: [Vault] Checking for Updates ... 
[09:40:27] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Loading cache version: R4.0.8
[09:40:27] [Craft Scheduler Thread - 27 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[09:40:27] [Craft Scheduler Thread - 32 - CMILib/INFO]: New version of CMILib was detected. Please update it (1.5.6.6 -> 1.5.7.2)
[09:40:27] [Craft Scheduler Thread - 16 - Essentials/INFO]: [Essentials] Fetching version information...
[09:40:27] [Craft Scheduler Thread - 16 - Essentials/INFO]: [Essentials] Update checking disabled in config.
[09:40:28] [Craft Scheduler Thread - 37 - Vault/INFO]: [Vault] No new version available
[09:40:28] [Craft Scheduler Thread - 12 - Confirm2Drop/INFO]: [ColdDev] An update for Confirm2Drop (v1.4.1) is available! You are running v1.4.
[09:40:28] [Server thread/INFO]: [Skript] Loading variables...
[09:40:28] [Craft Scheduler Thread - 22 - DecentHolograms/INFO]: [DecentHolograms] Loaded 2 holograms!
[09:40:28] [Server thread/INFO]: [Skript] Loaded 17 variables in 0.6 seconds
[09:40:29] [ForkJoinPool-6-worker-1/INFO]: [ModelEngine] [A] 
[09:40:29] [ForkJoinPool-6-worker-1/INFO]: [ModelEngine] [A] Importing awakened_shrub.bbmodel.
[09:40:29] [ForkJoinPool-6-worker-3/INFO]: [ModelEngine] [A] 
[09:40:29] [ForkJoinPool-6-worker-3/INFO]: [ModelEngine] [A] Importing concussion.bbmodel.
[09:40:29] [ForkJoinPool-6-worker-3/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[09:40:29] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] 
[09:40:29] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] Importing bug_swarm.bbmodel.
[09:40:29] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] 
[09:40:29] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] Importing dwarf_blacksmith.bbmodel.
[09:40:29] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] 
[09:40:29] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] Importing explosive_seed.bbmodel.
[09:40:29] [ForkJoinPool-6-worker-4/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[09:40:29] [ForkJoinPool-6-worker-3/INFO]: [ModelEngine] [A] 
[09:40:29] [ForkJoinPool-6-worker-3/INFO]: [ModelEngine] [A] Importing dwarf_huntsman.bbmodel.
[09:40:29] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] 
[09:40:29] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] Importing dwarf_knight.bbmodel.
[09:40:29] [ForkJoinPool-6-worker-1/INFO]: [ModelEngine] [A] 
[09:40:29] [ForkJoinPool-6-worker-1/INFO]: [ModelEngine] [A] Importing dwarf_cleric.bbmodel.
[09:40:29] [ForkJoinPool-6-worker-1/INFO]: [ModelEngine] [A] 
[09:40:29] [ForkJoinPool-6-worker-1/INFO]: [ModelEngine] [A] Importing lich_king_scythe.bbmodel.
[09:40:29] [ForkJoinPool-6-worker-1/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[09:40:29] [ForkJoinPool-6-worker-1/INFO]: [ModelEngine] [A] 
[09:40:29] [ForkJoinPool-6-worker-1/INFO]: [ModelEngine] [A] Importing mutant_flower.bbmodel.
[09:40:29] [ForkJoinPool-6-worker-1/INFO]: [ModelEngine] [A] 
[09:40:29] [ForkJoinPool-6-worker-1/INFO]: [ModelEngine] [A] Importing mutant_flower_vine.bbmodel.
[09:40:29] [ForkJoinPool-6-worker-1/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/mutant_flower already exists. Using alternative texture name modelengine:entity/6f804085-eaa2-3cc2-9edd-676c2ed39057.
[09:40:29] [ForkJoinPool-6-worker-3/INFO]: [ModelEngine] [A] 
[09:40:29] [ForkJoinPool-6-worker-3/INFO]: [ModelEngine] [A] Importing kriger_parts.bbmodel.
[09:40:29] [ForkJoinPool-6-worker-3/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[09:40:29] [ForkJoinPool-6-worker-3/INFO]: [ModelEngine] [A] 
[09:40:29] [ForkJoinPool-6-worker-3/INFO]: [ModelEngine] [A] Importing shadow_fx.bbmodel.
[09:40:29] [ForkJoinPool-6-worker-3/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[09:40:29] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] 
[09:40:29] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] Importing lich_king.bbmodel.
[09:40:29] [ForkJoinPool-6-worker-3/INFO]: [ModelEngine] [A] 
[09:40:29] [ForkJoinPool-6-worker-3/INFO]: [ModelEngine] [A] Importing skeleton_archer.bbmodel.
[09:40:29] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] 
[09:40:29] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] Importing kriger.bbmodel.
[09:40:29] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] 
[09:40:29] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] Importing slime_common.bbmodel.
[09:40:29] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] 
[09:40:29] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] Importing skeleton_shaman.bbmodel.
[09:40:29] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] 
[09:40:29] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] Importing slime_frost.bbmodel.
[09:40:29] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] 
[09:40:29] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] Importing slime_healer.bbmodel.
[09:40:30] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] 
[09:40:30] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] Importing slime_king.bbmodel.
[09:40:30] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[09:40:30] [Server thread/INFO]: [Skript] Loaded 5 scripts with a total of 7 structures in 1.19 seconds
[09:40:30] [Server thread/INFO]: [Skript] Finished loading.
[09:40:30] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] 
[09:40:30] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] Importing slime_lava.bbmodel.
[09:40:30] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] 
[09:40:30] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] Importing slime_mage.bbmodel.
[09:40:30] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] 
[09:40:30] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] Importing slime_triple.bbmodel.
[09:40:30] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] 
[09:40:30] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] Importing slime_winged.bbmodel.
[09:40:30] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] 
[09:40:30] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] Importing slime_warrior.bbmodel.
[09:40:30] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] 
[09:40:30] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] Importing thorn_spitter.bbmodel.
[09:40:30] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] 
[09:40:30] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] Importing vine_root.bbmodel.
[09:40:30] [ForkJoinPool-6-worker-2/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[09:40:30] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] 
[09:40:30] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] Importing vine_guardian.bbmodel.
[09:40:30] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] 
[09:40:30] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] Importing wendigo_cow.bbmodel.
[09:40:30] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] 
[09:40:30] [ForkJoinPool-6-worker-4/INFO]: [ModelEngine] [A] Importing wendigo_heart.bbmodel.
[09:40:30] [ForkJoinPool-6-worker-4/WARN]: [ModelEngine] [A] --Warning: Eye height is below 0. Entity might suffocate.
[09:40:30] [ForkJoinPool-6-worker-1/INFO]: [ModelEngine] [A] 
[09:40:30] [ForkJoinPool-6-worker-1/INFO]: [ModelEngine] [A] Importing qmob_silkfang.bbmodel.
[09:40:30] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[09:40:30] [Server thread/INFO]: [CoreProtect] FastAsyncWorldEdit logging successfully initialized.
[09:40:30] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] 
[09:40:30] [ForkJoinPool-6-worker-2/INFO]: [ModelEngine] [A] Importing wendigo.bbmodel.
[09:40:30] [ForkJoinPool-6-worker-3/INFO]: [ModelEngine] [A] 
[09:40:30] [ForkJoinPool-6-worker-3/INFO]: [ModelEngine] [A] Importing skeleton_warrior.bbmodel.
[09:40:30] [Craft Scheduler Thread - 21 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded 26 items
[09:40:30] [Craft Scheduler Thread - 21 - ItemsAdder/INFO]: ItemsAdder) Used Blocks IDs:
[09:40:30] [Craft Scheduler Thread - 21 - ItemsAdder/INFO]: ItemsAdder)  - REAL 0/188
[09:40:30] [Craft Scheduler Thread - 21 - ItemsAdder/INFO]: ItemsAdder)  - REAL_NOTE 0/750
[09:40:30] [Craft Scheduler Thread - 21 - ItemsAdder/INFO]: ItemsAdder)  - REAL_TRANSPARENT 0/63
[09:40:30] [Craft Scheduler Thread - 21 - ItemsAdder/INFO]: ItemsAdder) Used Font Images: 27/6608
[09:40:30] [Server thread/WARN]: [BetterHealthBar] Unable to read this text: default_text in plugins\BetterHealthBar\texts\default_text.yml
[09:40:30] [Server thread/WARN]: [BetterHealthBar] Reason: Unable to find this font: plugins\BetterHealthBar\fonts\item_thai.ttf
[09:40:30] [Server thread/WARN]: [BetterHealthBar] Unable to load this layout: default_layout in plugins\BetterHealthBar\layouts\default_layout.yml
[09:40:30] [Server thread/WARN]: [BetterHealthBar] Reason: Unable to find this text: default_text
[09:40:30] [Server thread/WARN]: [BetterHealthBar] Unable to load this health bar: default_healthbar in plugins\BetterHealthBar\healthbars\default_healthbar.yml
[09:40:30] [Server thread/WARN]: [BetterHealthBar] Reason: Unable to find this layout: default_layout
[09:40:30] [Craft Scheduler Thread - 21 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded 2 categories
[09:40:30] [Craft Scheduler Thread - 21 - ItemsAdder/INFO]: ItemsAdder) [Content] Contents loaded successfully!
[09:40:30] [Craft Scheduler Thread - 21 - ItemsAdder/INFO]: ItemsAdder) ResourcePack
[09:40:30] [Craft Scheduler Thread - 21 - ItemsAdder/INFO]: ItemsAdder)  - Path: /CrownCraft 0.2/plugins/ItemsAdder/output/generated.zip
[09:40:30] [Craft Scheduler Thread - 21 - ItemsAdder/INFO]: ItemsAdder)  - Download: .
[09:40:31] [Craft Scheduler Thread - 21 - ItemsAdder/INFO]: ItemsAdder)  - Size: 3 MB/250 MB (1%)
[09:40:31] [Server thread/INFO]: [BetterHealthBar] ModelEngine support enabled: 4.0.9
[09:40:31] [Server thread/INFO]: [BetterHealthBar] Plugin enabled.
[09:40:31] [Server thread/INFO]: [BetonQuest] Enabled compatibility for Citizens, DecentHolograms, FastAsyncWorldEdit, LuckPerms, MMOCore, MMOItems, MythicLib, MythicMobs, PlaceholderAPI, ProtocolLib, Skript, Vault, WorldGuard!
[09:40:31] [Server thread/WARN]: [BetonQuest] Error while loading Npc 'Jack' in pack 'tutorialQuest': 'FancyNpcs' is not loaded for type 'npc'! Check if it is spelled correctly!
[09:40:31] [Server thread/INFO]: [BetonQuest] There are 0 Condition, 2 Event, 0 Objective, 0 Variable, 0 Quest Canceler, 0 Compass, 1 Conversation, 1 Item, 0 Journal Entry, 0 Journal Main Page, 0 Npc (Additional: 0 Menu Item, 0 Menu, 0 Hologram, 0 Npc Hologram) loaded from 1 packages.
[09:40:31] [Server thread/INFO]: [BetonQuest] Synced Command Map for (Menu) Commands…
[09:40:31] [Server thread/INFO]: [Citizens] Loaded 1 NPCs.
[09:40:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[09:40:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[09:40:31] [Server thread/INFO]: [Mythic] Reloading plugin...
[09:40:31] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[09:40:31] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[09:40:32] [Server thread/INFO]: [MythicMobs] Loading Packs...
[09:40:32] [Server thread/INFO]: [MythicMobs] Loading Items...
[09:40:32] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[09:40:32] [Server thread/INFO]: [MythicMobs] Loading Skills...
[09:40:33] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[09:40:33] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[09:40:33] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[09:40:33] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[09:40:33] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Resource pack zipped.
[09:40:33] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Generator Profiled:
[09:40:33] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A]  - Import Phase: 2,561.0ms
[09:40:33] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A]  - Assets Phase: 1,325.4ms
[09:40:33] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic randomskill
[09:40:33] [Server thread/WARN]: [MythicMobs] --| Skill: random_stun_sound | File: C:\Users\Administrator\Desktop\CrownCraft 0.2\plugins\MythicMobs\skills\littleroom\kriger.yml
[09:40:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill random_stun04_sound
[09:40:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: randomskill{skills=random_stun01_sound,random_stun02_sound,random_stun03_sound,random_stun04_sound}
[09:40:33] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A]  - Zipping Phase: 1,657.9ms
[09:40:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 52 mobs.
[09:40:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[09:40:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[09:40:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 279 skills.
[09:40:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[09:40:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 23 mythic items.
[09:40:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[09:40:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 5 mob spawners.
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load language entry 'gold-pouch-ui-name': Entry not found
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load message 'guild-is-full': Translation not found
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load message 'guild-no-pending-invite': Translation not found
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-invalid-chars': Translation not found
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-invalid-length': Translation not found
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-already-exists': Translation not found
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load message 'quest-profession-level-restriction': Translation not found
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load message 'friend-no-pending-invite': Translation not found
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load message 'friend-request-denied': Translation not found
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load message 'friend-request-denied-creator': Translation not found
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load message 'party-created': Translation not found
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load message 'party-no-pending-invite': Translation not found
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load message 'party-leave': Translation not found
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load message 'party-kicked-from': Translation not found
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load message 'waypoint-tp-done': Translation not found
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load message 'skill-unbound-from-slot': Translation not found
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load message 'skill-bound-to-slot': Translation not found
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load message 'skill-ui-focus': Translation not found
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load message 'no-class-skill-tree': Translation not found
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load message 'skill-tree-switch': Translation not found
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load message 'close-loot-chest': Translation not found
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load quest from file 'adv-begins.yml': Could not find world world
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load quest from file 'tutorial.yml': Could not find world world
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load loot chest region 'sample-region' from file 'default_loot_chests.yml': Could not find world 'world_name_here'
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn' from file 'default_waypoints.yml': Could not find world with name 'world'
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn1' from file 'default_waypoints.yml': Could not find world with name 'world'
[09:40:33] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn2' from file 'default_waypoints.yml': Could not find world with name 'world'
[09:40:34] [Server thread/INFO]: [Mythic] Mythic has finished reloading!
[09:40:34] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[09:40:34] [Server thread/INFO]: Done (102.891s)! For help, type "help"
[09:40:34] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 6554ms or 131 ticks behind
[09:40:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.9]
[09:40:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[09:40:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[09:40:34] [Server thread/INFO]: 3 placeholder hook(s) registered!
[09:40:34] [Craft Scheduler Thread - 9 - ImageFrame/INFO]: [ImageFrame] Data loading completed! Loaded 2 ImageMaps!
[09:40:36] [Craft Scheduler Thread - 6 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[09:41:01] [User Authenticator #0/INFO]: UUID of player __DaWae__ is d474331a-2999-3020-bf99-41fda008831e
[09:41:01] [Server thread/INFO]: [HorriblePlayerLoginEventHack] You have plugins listening to the PlayerLoginEvent, this will cause re-configuration APIs to be unavailable: [LuckPerms, Essentials, InteractiveChat, LoginSecurity, DeluxeMenus, ProtocolLib, MythicLib, WorldGuard, WGRegionEvents]
[09:41:08] [Server thread/INFO]: __DaWae__[/          ip           ] logged in with entity id 95 at ([CrownValley]48.51900327625028, 85.39978845480324, -806.4624393424547)
[09:41:08] [Server thread/INFO]: [+] __DaWae__
[09:42:09] [User Authenticator #1/INFO]: UUID of player _SomsriX2 is 7171c062-3032-3287-a8a2-eee969e03a96
[09:42:13] [TAB Processing Thread/INFO]: [TAB] [WARN] Player _SomsriX2's group (beginner) is not in sorting list! Sorting list: owner,manager,dev,admin,mod,helper,builder,king,duke,paladin,lord,knight,default. Player will be sorted on the bottom.
[09:42:13] [Server thread/INFO]: _SomsriX2[/         ip         ] logged in with entity id 108 at ([CrownValley]-26.73405103802874, 81.44118740715092, -805.3268177414889)
[09:42:13] [Server thread/INFO]: [+] _SomsriX2
[09:42:47] [Server thread/INFO]: _SomsriX2 issued server command: /tp __DaWae__
[09:43:02] [User Authenticator #1/INFO]: UUID of player _SugarRune is 1e0bf55c-c917-3481-be81-f75d2add183e
[09:43:05] [Server thread/INFO]: _SugarRune[/         ip         ] logged in with entity id 1998 at ([CrownValley]-36.47218023053289, 96.0, -855.059715280676)
[09:43:05] [TAB Processing Thread/INFO]: [TAB] [WARN] Player _SugarRune's group (beginner) is not in sorting list! Sorting list: owner,manager,dev,admin,mod,helper,builder,king,duke,paladin,lord,knight,default. Player will be sorted on the bottom.
[09:43:05] [Server thread/INFO]: [+] _SugarRune
[09:43:14] [Server thread/INFO]: _SomsriX2 issued server command: /hb
[09:43:18] [Server thread/INFO]: _SugarRune issued server command: /tp __DaWae__
[09:43:18] [Server thread/WARN]: _SugarRune moved too quickly! -42.78066116008323,-26.0,-11.00417013001504
[09:43:24] [Server thread/INFO]: [_SugarRune: Set own game mode to Creative Mode]
[09:44:16] [Server thread/INFO]: _SomsriX2 issued server command: /hb
[09:44:27] [Server thread/INFO]: [_SomsriX2: Set own game mode to Creative Mode]
[09:45:01] [Server thread/INFO]: _SomsriX2 issued server command: /hb
[09:45:01] [ForkJoinPool.commonPool-worker-2/WARN]: [BetterHealthBar] Unable to read this text: default_text in plugins\BetterHealthBar\texts\default_text.yml
[09:45:01] [ForkJoinPool.commonPool-worker-2/WARN]: [BetterHealthBar] Reason: Unable to find this font: plugins\BetterHealthBar\fonts\item_thai.ttf
[09:45:01] [ForkJoinPool.commonPool-worker-2/WARN]: [BetterHealthBar] Unable to load this layout: default_layout in plugins\BetterHealthBar\layouts\default_layout.yml
[09:45:01] [ForkJoinPool.commonPool-worker-2/WARN]: [BetterHealthBar] Reason: Unable to find this text: default_text
[09:45:01] [ForkJoinPool.commonPool-worker-2/WARN]: [BetterHealthBar] Unable to load this health bar: default_healthbar in plugins\BetterHealthBar\healthbars\default_healthbar.yml
[09:45:01] [ForkJoinPool.commonPool-worker-2/WARN]: [BetterHealthBar] Reason: Unable to find this layout: default_layout
[09:45:15] [Server thread/INFO]: _SomsriX2 issued server command: /hb
[09:45:15] [ForkJoinPool.commonPool-worker-2/WARN]: [BetterHealthBar] Unable to read this text: default_text in plugins\BetterHealthBar\texts\default_text.yml
[09:45:15] [ForkJoinPool.commonPool-worker-2/WARN]: [BetterHealthBar] Reason: Unable to find this font: plugins\BetterHealthBar\fonts\item_thai.ttf
[09:45:15] [ForkJoinPool.commonPool-worker-2/WARN]: [BetterHealthBar] Unable to load this layout: default_layout in plugins\BetterHealthBar\layouts\default_layout.yml
[09:45:15] [ForkJoinPool.commonPool-worker-2/WARN]: [BetterHealthBar] Reason: Unable to find this text: default_text
[09:45:15] [ForkJoinPool.commonPool-worker-2/WARN]: [BetterHealthBar] Unable to load this health bar: default_healthbar in plugins\BetterHealthBar\healthbars\default_healthbar.yml
[09:45:15] [ForkJoinPool.commonPool-worker-2/WARN]: [BetterHealthBar] Reason: Unable to find this layout: default_layout
[09:45:18] [Server thread/INFO]: _SugarRune issued server command: /tp _SomsriX2
[09:45:18] [Server thread/WARN]: _SugarRune moved too quickly! -5.567057733580953,-26.0,-23.851126399169175
[09:45:40] [Server thread/INFO]: _SomsriX2 issued server command: /hb
[09:45:40] [ForkJoinPool.commonPool-worker-2/WARN]: [BetterHealthBar] Unable to read this text: default_text in plugins\BetterHealthBar\texts\default_text.yml
[09:45:40] [ForkJoinPool.commonPool-worker-2/WARN]: [BetterHealthBar] Reason: Unable to find this font: plugins\BetterHealthBar\fonts\item_thai.ttf
[09:45:40] [ForkJoinPool.commonPool-worker-2/WARN]: [BetterHealthBar] Unable to load this layout: default_layout in plugins\BetterHealthBar\layouts\default_layout.yml
[09:45:40] [ForkJoinPool.commonPool-worker-2/WARN]: [BetterHealthBar] Reason: Unable to find this text: default_text
[09:45:40] [ForkJoinPool.commonPool-worker-2/WARN]: [BetterHealthBar] Unable to load this health bar: default_healthbar in plugins\BetterHealthBar\healthbars\default_healthbar.yml
[09:45:40] [ForkJoinPool.commonPool-worker-2/WARN]: [BetterHealthBar] Reason: Unable to find this layout: default_layout
[09:46:04] [Server thread/INFO]: _SomsriX2 issued server command: /hb
[09:46:21] [Server thread/INFO]: _SomsriX2 issued server command: /hb
[09:46:28] [Server thread/INFO]: _SugarRune issued server command: /home starter
[09:47:34] [Server thread/INFO]: [CHAT GAMES] A(n) MATH chat game has started in the server!
[09:48:29] [Server thread/INFO]: _SomsriX2 issued server command: /hb
[09:48:38] [Server thread/INFO]: _SomsriX2 issued server command: /hb
[09:49:08] [Server thread/INFO]: _SomsriX2 issued server command: /hb
[09:49:26] [Server thread/INFO]: _SomsriX2 issued server command: /hb
[09:49:26] [ForkJoinPool.commonPool-worker-3/WARN]: [BetterHealthBar] Unable to read this text: default_text in plugins\BetterHealthBar\texts\default_text.yml
[09:49:26] [ForkJoinPool.commonPool-worker-3/WARN]: [BetterHealthBar] Reason: Unable to find this font: plugins\BetterHealthBar\fonts\item_thai.ttf
[09:49:26] [ForkJoinPool.commonPool-worker-3/WARN]: [BetterHealthBar] Unable to load this layout: default_layout in plugins\BetterHealthBar\layouts\default_layout.yml
[09:49:26] [ForkJoinPool.commonPool-worker-3/WARN]: [BetterHealthBar] Reason: Unable to find this text: default_text
[09:49:26] [ForkJoinPool.commonPool-worker-3/WARN]: [BetterHealthBar] Unable to load this health bar: default_healthbar in plugins\BetterHealthBar\healthbars\default_healthbar.yml
[09:49:26] [ForkJoinPool.commonPool-worker-3/WARN]: [BetterHealthBar] Reason: Unable to find this layout: default_layout
[09:50:33] [Server thread/INFO]: _SomsriX2 issued server command: /hb
[09:50:33] [ForkJoinPool.commonPool-worker-3/WARN]: [BetterHealthBar] Unable to read this text: health_text in plugins\BetterHealthBar\texts\health_text.yml
[09:50:33] [ForkJoinPool.commonPool-worker-3/WARN]: [BetterHealthBar] Reason: Unable to find this font: plugins\BetterHealthBar\fonts\item_thai.ttf
[09:50:33] [ForkJoinPool.commonPool-worker-3/WARN]: [BetterHealthBar] Unable to load this layout: default_layout in plugins\BetterHealthBar\layouts\default_layout.yml
[09:50:33] [ForkJoinPool.commonPool-worker-3/WARN]: [BetterHealthBar] Reason: Unable to find this text: health_text
[09:50:33] [ForkJoinPool.commonPool-worker-3/WARN]: [BetterHealthBar] Unable to load this health bar: default_healthbar in plugins\BetterHealthBar\healthbars\default_healthbar.yml
[09:50:33] [ForkJoinPool.commonPool-worker-3/WARN]: [BetterHealthBar] Reason: Unable to find this layout: default_layout
[09:51:23] [Server thread/INFO]: _SomsriX2 issued server command: /hb
[09:51:23] [ForkJoinPool.commonPool-worker-3/WARN]: [BetterHealthBar] Unable to read this text: health_text in plugins\BetterHealthBar\texts\health_text.yml
[09:51:23] [ForkJoinPool.commonPool-worker-3/WARN]: [BetterHealthBar] Reason: Unable to find 'file' configuration.
[09:51:23] [ForkJoinPool.commonPool-worker-3/WARN]: [BetterHealthBar] Unable to load this layout: default_layout in plugins\BetterHealthBar\layouts\default_layout.yml
[09:51:23] [ForkJoinPool.commonPool-worker-3/WARN]: [BetterHealthBar] Reason: Unable to find this text: health_text
[09:51:23] [ForkJoinPool.commonPool-worker-3/WARN]: [BetterHealthBar] Unable to load this health bar: default_healthbar in plugins\BetterHealthBar\healthbars\default_healthbar.yml
[09:51:23] [ForkJoinPool.commonPool-worker-3/WARN]: [BetterHealthBar] Reason: Unable to find this layout: default_layout
[09:53:19] [Server thread/INFO]: _SomsriX2 issued server command: /hb
[09:54:34] [Server thread/INFO]: [CHAT GAMES] A(n) REACTION chat game has started in the server!
[09:55:09] [Server thread/INFO]: __DaWae__ issued server command: //brush sphere 2
[09:55:21] [Server thread/INFO]: __DaWae__ issued server command: //mat stone 20%cyan_terracotta,20%mossy_stone_bricks,20%tuff,20%stone_bricks,20%andesite
[09:55:35] [Server thread/INFO]: __DaWae__ issued server command: /mat stone 20%cyan_terracotta,20%mossy_stone_bricks,20%tuff,20%stone_bricks,20%andesite
[09:55:43] [Server thread/INFO]: __DaWae__ issued server command: /mat stone 20%cyan_terracotta,20%mossy_stone_bricks,20%tuff,20%stone_bricks,20%andesite
[09:56:41] [Server thread/INFO]: _SomsriX2 issued server command: /hb
[09:59:34] [Server thread/INFO]: __DaWae__ issued server command: //mat stone
[09:59:39] [Server thread/INFO]: __DaWae__ issued server command: //mat stone
[09:59:42] [Server thread/INFO]: __DaWae__ issued server command: /mat stone
[09:59:50] [Server thread/INFO]: __DaWae__ issued server command: /mat stone 20%cyan_terracotta,20%mossy_stone_bricks,20%tuff,20%stone_bricks,20%andesite
[09:59:59] [Server thread/INFO]: __DaWae__ issued server command: /mat stone 20%cyan_terracotta,20%mossy_stone_bricks,20%tuff,20%stone_bricks
[10:00:05] [Server thread/INFO]: __DaWae__ issued server command: /gamemode 1
[10:00:29] [Server thread/INFO]: __DaWae__ issued server command: /mat stone 20%cyan_terracotta,20%mossy_stone_bricks,20%tuff,20%stone_bricks,20%stone
[10:00:40] [Server thread/INFO]: _SugarRune issued server command: /tp __DaWae__
[10:00:56] [Server thread/INFO]: __DaWae__ issued server command: /mat stone 20%cyan_terracotta,20%mossy_stone_bricks,20%tuff,20%stone_bricks
[10:01:02] [AsyncNotifyKeyedQueue - 1/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_6.PaperweightStarlightRelighterFactory as relighter factory.
[10:01:07] [Server thread/INFO]: __DaWae__ issued server command: /undo
[10:01:17] [Server thread/INFO]: __DaWae__ issued server command: /material stone 20%cyan_terracotta,20%mossy_stone_bricks,20%tuff,20%stone_bricks,20%andesite
[10:01:28] [Server thread/INFO]: __DaWae__ issued server command: /material stone 20%cyan_terracotta,20%mossy_stone_bricks,20%tuff
[10:01:33] [Server thread/INFO]: __DaWae__ issued server command: //fast
[10:01:34] [Server thread/INFO]: [CHAT GAMES] A(n) REACTION chat game has started in the server!
[10:01:40] [Server thread/INFO]: __DaWae__ issued server command: /material stone 20%cyan_terracotta,20%mossy_stone_bricks,20%tuff,20%stone_bricks,20%andesite
[10:01:44] [Server thread/INFO]: __DaWae__ issued server command: /undo
[10:01:46] [Server thread/INFO]: __DaWae__ issued server command: //fast
[10:01:47] [Server thread/INFO]: __DaWae__ issued server command: /undo
[10:01:50] [Server thread/INFO]: __DaWae__ issued server command: //fast
[10:01:57] [Server thread/INFO]: __DaWae__ issued server command: //wand
[10:02:05] [Server thread/INFO]: __DaWae__ issued server command: //brush
[10:02:16] [Server thread/INFO]: __DaWae__ issued server command: //brush Sphere 2
[10:02:20] [Server thread/INFO]: __DaWae__ issued server command: //brush Sphere
[10:02:30] [Server thread/INFO]: __DaWae__ issued server command: //brush Sphere 2
[10:02:37] [Server thread/INFO]: __DaWae__ issued server command: //fast
[10:02:42] [Server thread/INFO]: __DaWae__ issued server command: //brush sphere
[10:02:44] [Server thread/INFO]: __DaWae__ issued server command: //brush sphere 2
[10:02:53] [Server thread/INFO]: __DaWae__ issued server command: //material stone
[10:03:05] [Server thread/INFO]: __DaWae__ issued server command: //material 50%stone,50%cobblestone
[10:04:01] [Server thread/INFO]: __DaWae__ issued server command: //material 20%andesite,20%tuff,20%mossy_stone_bricks,20%cobblestone,20%cyan_terracotta
[10:04:11] [Server thread/INFO]: __DaWae__ issued server command: /undo
[10:04:32] [Server thread/INFO]: __DaWae__ issued server command: //wand
[10:04:39] [Server thread/INFO]: __DaWae__ issued server command: //brush sphere 2
[10:04:43] [Server thread/INFO]: __DaWae__ issued server command: //material air
[10:05:24] [Server thread/INFO]: __DaWae__ issued server command: //material 20%andesite,20%tuff,20%mossy_stone_bricks,20%cobblestone,20%cyan_terracotta
[10:06:46] [Server thread/INFO]: __DaWae__ issued server command: /undo
[10:06:47] [Server thread/INFO]: __DaWae__ issued server command: /undo
[10:07:32] [Server thread/INFO]: __DaWae__ issued server command: /undo
[10:07:33] [Server thread/INFO]: __DaWae__ issued server command: /undo
[10:07:37] [Server thread/INFO]: __DaWae__ issued server command: /undo
[10:08:04] [Server thread/INFO]: __DaWae__ issued server command: /undo
[10:08:07] [Server thread/INFO]: __DaWae__ issued server command: /undo
[10:08:25] [Server thread/INFO]: __DaWae__ issued server command: /undo
[10:08:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNREVERSE chat game has started in the server!
[10:08:38] [Server thread/INFO]: __DaWae__ issued server command: /undo
[10:10:34] [Server thread/INFO]: [MMOCore] Autosaving 3 player datas, might take a while...
[10:11:33] [Server thread/INFO]: _SomsriX2 issued server command: //wand
[10:12:00] [Craft Scheduler Thread - 365 - InteractiveChat/INFO]: [Not Secure] [10:11] ❖ _DaWae_ ➠ .//brush sphere .....
[10:12:09] [Server thread/INFO]: _SomsriX2 issued server command: //brush sphere 2
[10:12:36] [Server thread/INFO]: _SomsriX2 issued server command: //material 20%andesite,20%tuff,20%mossy_stone_bricks,20%cobblestone,20%cyan_terracotta
[10:12:44] [Server thread/INFO]: _SomsriX2 issued server command: /undo
[10:13:05] [Server thread/INFO]: _SomsriX2 issued server command: /undo
[10:13:08] [Server thread/INFO]: _SomsriX2 issued server command: /undo
[10:14:51] [Server thread/INFO]: _SomsriX2 issued server command: /undo
[10:15:19] [Server thread/INFO]: _SomsriX2 issued server command: /undo
[10:15:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNREVERSE chat game has started in the server!
[10:18:15] [Server thread/INFO]: _SomsriX2 issued server command: /hb
[10:18:29] [Server thread/INFO]: _SomsriX2 issued server command: /hb
[10:19:03] [Server thread/INFO]: _SomsriX2 issued server command: /hb
[10:19:16] [Server thread/INFO]: _SomsriX2 issued server command: /hb
[10:19:32] [Server thread/INFO]: _SugarRune issued server command: /home starter
[10:19:32] [Server thread/WARN]: _SugarRune moved too quickly! 196.28282708121927,-1.0,-31.05887925003094
[10:20:35] [Server thread/INFO]: _SugarRune issued server command: /tp @s 427 68.5 -1021
[10:20:57] [Server thread/INFO]: _SomsriX2 issued server command: /hb
[10:21:47] [Server thread/INFO]: _SugarRune issued server command: /mmmenu
[10:21:56] [Server thread/INFO]: _SomsriX2 issued server command: /mm reload
[10:21:56] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[10:21:56] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[10:21:56] [Server thread/INFO]: [MythicMobs] Loading Packs...
[10:21:56] [Server thread/INFO]: [MythicMobs] Loading Items...
[10:21:56] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[10:21:56] [Server thread/INFO]: [MythicMobs] Loading Skills...
[10:21:57] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[10:21:57] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[10:21:57] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[10:21:57] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic randomskill
[10:21:57] [Server thread/WARN]: [MythicMobs] --| Skill: random_stun_sound | File: C:\Users\Administrator\Desktop\CrownCraft 0.2\plugins\MythicMobs\skills\littleroom\kriger.yml
[10:21:57] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill random_stun04_sound
[10:21:57] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: randomskill{skills=random_stun01_sound,random_stun02_sound,random_stun03_sound,random_stun04_sound}
[10:21:57] [Server thread/INFO]: [MythicMobs] ✓ Loaded 52 mobs.
[10:21:57] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[10:21:57] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[10:21:57] [Server thread/INFO]: [MythicMobs] ✓ Loaded 279 skills.
[10:21:57] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[10:21:57] [Server thread/INFO]: [MythicMobs] ✓ Loaded 23 mythic items.
[10:21:57] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[10:21:57] [Server thread/INFO]: [MythicMobs] ✓ Loaded 5 mob spawners.
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load language entry 'gold-pouch-ui-name': Entry not found
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load message 'guild-is-full': Translation not found
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load message 'guild-no-pending-invite': Translation not found
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-invalid-chars': Translation not found
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-invalid-length': Translation not found
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-already-exists': Translation not found
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load message 'quest-profession-level-restriction': Translation not found
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load message 'friend-no-pending-invite': Translation not found
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load message 'friend-request-denied': Translation not found
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load message 'friend-request-denied-creator': Translation not found
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load message 'party-created': Translation not found
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load message 'party-no-pending-invite': Translation not found
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load message 'party-leave': Translation not found
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load message 'party-kicked-from': Translation not found
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load message 'waypoint-tp-done': Translation not found
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load message 'skill-unbound-from-slot': Translation not found
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load message 'skill-bound-to-slot': Translation not found
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load message 'skill-ui-focus': Translation not found
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load message 'no-class-skill-tree': Translation not found
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load message 'skill-tree-switch': Translation not found
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load message 'close-loot-chest': Translation not found
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load quest from file 'adv-begins.yml': Could not find world world
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load quest from file 'tutorial.yml': Could not find world world
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load loot chest region 'sample-region' from file 'default_loot_chests.yml': Could not find world 'world_name_here'
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn' from file 'default_waypoints.yml': Could not find world with name 'world'
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn1' from file 'default_waypoints.yml': Could not find world with name 'world'
[10:21:57] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn2' from file 'default_waypoints.yml': Could not find world with name 'world'
[10:21:57] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[10:22:13] [Server thread/INFO]: _SugarRune issued server command: /tp _SomsriX2
[10:22:13] [Server thread/WARN]: _SugarRune moved too quickly! -488.0948086913653,-57.5,366.55692997121264
[10:22:34] [Server thread/INFO]: [CHAT GAMES] A(n) RANDOM chat game has started in the server!
[10:22:37] [Server thread/INFO]: _SomsriX2 issued server command: /undo
[10:22:57] [Server thread/INFO]: _SomsriX2 issued server command: /mmmenu
[10:25:14] [Server thread/INFO]: __DaWae__ issued server command: //brush unbind
[10:25:21] [Server thread/INFO]: __DaWae__ issued server command: //wand
[10:25:36] [Server thread/INFO]: __DaWae__ issued server command: //set quartz_block
[10:27:40] [Server thread/INFO]: __DaWae__ issued server command: //set red_carpet
[10:28:41] [Server thread/INFO]: _SugarRune issued server command: /tp __DaWae__
[10:29:34] [Server thread/INFO]: [CHAT GAMES] A(n) FILLOUT chat game has started in the server!
[10:36:34] [Server thread/INFO]: [CHAT GAMES] A(n) REACTION chat game has started in the server!
[10:36:41] [Craft Scheduler Thread - 526 - InteractiveChat/INFO]: [Not Secure] [10:36] ❖ _DaWae_ ➠ sea lant
[10:37:22] [Craft Scheduler Thread - 544 - InteractiveChat/INFO]: [Not Secure] [10:37] ❖ _SomsriX2 ➠ [Ochre Froglight]
[10:39:02] [Server thread/INFO]: _SomsriX2 issued server command: /ia carnivoret_weapon_set
[10:39:28] [Server thread/INFO]: __DaWae__ issued server command: //chunk
[10:40:02] [Craft Scheduler Thread - 553 - InteractiveChat/INFO]: [Not Secure] [10:40] ❖ _DaWae_ ➠ ochre, verdant
[10:40:21] [Craft Scheduler Thread - 559 - InteractiveChat/INFO]: [Not Secure] [10:40] ❖ _DaWae_ ➠ pearlescent,redmushroom.sea lantern
[10:40:34] [Server thread/INFO]: [MMOCore] Autosaving 3 player datas, might take a while...
[10:41:10] [Server thread/INFO]: __DaWae__ issued server command: //replace quartz_block 20%pearlescent_froglight,20%red_mushroom_block,20%sea_lantern,20%ochre_froglight,20%verdant_froglight
[10:41:39] [Server thread/INFO]: __DaWae__ issued server command: /undo
[10:41:42] [Server thread/INFO]: __DaWae__ issued server command: //replace quartz_block 20%pearlescent_froglight,20%red_mushroom_block,20%sea_lantern,20%ochre_froglight,20%verdant_froglight
[10:41:48] [Server thread/INFO]: __DaWae__ issued server command: //chunk
[10:41:50] [Server thread/INFO]: __DaWae__ issued server command: //replace quartz_block 20%pearlescent_froglight,20%red_mushroom_block,20%sea_lantern,20%ochre_froglight,20%verdant_froglight
[10:41:57] [Server thread/INFO]: __DaWae__ issued server command: //chunk
[10:41:57] [Server thread/INFO]: __DaWae__ issued server command: //replace quartz_block 20%pearlescent_froglight,20%red_mushroom_block,20%sea_lantern,20%ochre_froglight,20%verdant_froglight
[10:42:00] [Server thread/INFO]: __DaWae__ issued server command: //chunk
[10:42:01] [Server thread/INFO]: __DaWae__ issued server command: //replace quartz_block 20%pearlescent_froglight,20%red_mushroom_block,20%sea_lantern,20%ochre_froglight,20%verdant_froglight
[10:42:04] [Server thread/INFO]: __DaWae__ issued server command: //chunk
[10:42:05] [Server thread/INFO]: __DaWae__ issued server command: //replace quartz_block 20%pearlescent_froglight,20%red_mushroom_block,20%sea_lantern,20%ochre_froglight,20%verdant_froglight
[10:42:08] [Server thread/INFO]: __DaWae__ issued server command: //chunk
[10:42:08] [Server thread/INFO]: __DaWae__ issued server command: //replace quartz_block 20%pearlescent_froglight,20%red_mushroom_block,20%sea_lantern,20%ochre_froglight,20%verdant_froglight
[10:43:27] [Server thread/INFO]: __DaWae__ issued server command: /undo
[10:43:27] [Server thread/INFO]: __DaWae__ issued server command: /undo
[10:43:28] [Server thread/INFO]: __DaWae__ issued server command: /undo
[10:43:28] [Server thread/INFO]: __DaWae__ issued server command: /undo
[10:43:29] [Server thread/INFO]: __DaWae__ issued server command: /undo
[10:43:29] [Server thread/INFO]: __DaWae__ issued server command: /undo
[10:43:30] [Server thread/INFO]: __DaWae__ issued server command: /undo
[10:43:34] [Server thread/INFO]: [CHAT GAMES] A(n) REACTION chat game has started in the server!
[10:43:43] [Server thread/INFO]: __DaWae__ issued server command: //set red_carpet
[10:45:30] [Server thread/INFO]: __DaWae__ issued server command: //chunk
[10:45:32] [Server thread/INFO]: __DaWae__ issued server command: //replace quartz_block 20%quartz_block,20%quartz_bricks,20%quartz_pillar,20%chiseled_quartz_block,20%smooth_quartz
[10:45:36] [Server thread/INFO]: __DaWae__ issued server command: //chunk
[10:45:37] [Server thread/INFO]: __DaWae__ issued server command: //replace quartz_block 20%quartz_block,20%quartz_bricks,20%quartz_pillar,20%chiseled_quartz_block,20%smooth_quartz
[10:45:40] [Server thread/INFO]: __DaWae__ issued server command: //chunk
[10:45:41] [Server thread/INFO]: __DaWae__ issued server command: //replace quartz_block 20%quartz_block,20%quartz_bricks,20%quartz_pillar,20%chiseled_quartz_block,20%smooth_quartz
[10:45:43] [Server thread/INFO]: __DaWae__ issued server command: //chunk
[10:45:43] [Server thread/INFO]: __DaWae__ issued server command: //replace quartz_block 20%quartz_block,20%quartz_bricks,20%quartz_pillar,20%chiseled_quartz_block,20%smooth_quartz
[10:45:47] [Server thread/INFO]: __DaWae__ issued server command: //chunk
[10:45:48] [Server thread/INFO]: __DaWae__ issued server command: //replace quartz_block 20%quartz_block,20%quartz_bricks,20%quartz_pillar,20%chiseled_quartz_block,20%smooth_quartz
[10:45:50] [Server thread/INFO]: __DaWae__ issued server command: //chunk
[10:45:51] [Server thread/INFO]: __DaWae__ issued server command: //replace quartz_block 20%quartz_block,20%quartz_bricks,20%quartz_pillar,20%chiseled_quartz_block,20%smooth_quartz
[10:47:39] [Server thread/INFO]: __DaWae__ issued server command: //set glowstone
[10:47:45] [Server thread/INFO]: __DaWae__ issued server command: //set glowstone
[10:49:15] [Server thread/INFO]: _SomsriX2 issued server command: /mi browse
[10:50:08] [Server thread/INFO]: _SomsriX2 issued server command: /iareload
[10:50:08] [Server thread/INFO]: ItemsAdder) Reloading...
[10:50:08] [Server thread/INFO]: ItemsAdder) InteractiveChat detected, disabling `cache_font_images_and_effects_replacements`.
[10:50:08] [Server thread/WARN]: ItemsAdder) Using default server address: . Consider setting it in the `config.yml`
[10:50:08] [Server thread/WARN]: ItemsAdder) Using default server port: 25565. Consider setting it in the `config.yml`
[10:50:08] [pool-68-thread-1/INFO]: ItemsAdder) [Host] Stopped self-host webserver on port: 8810
[10:50:08] [Server thread/INFO]: ItemsAdder) [Host] Started self-host webserver on port: 8810
[10:50:08] [Server thread/INFO]: ItemsAdder) [SelfHost] Rate limiter: max 3 requests / 2s.
[10:50:08] [Server thread/INFO]: ItemsAdder) [SelfHost] Clients exceeding 5 times will be blocked for 30m.
[10:50:08] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[10:50:08] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[10:50:08] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[10:50:09] [Craft Scheduler Thread - 615 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded 29 items
[10:50:09] [Craft Scheduler Thread - 615 - ItemsAdder/INFO]: ItemsAdder) Used Blocks IDs:
[10:50:09] [Craft Scheduler Thread - 615 - ItemsAdder/INFO]: ItemsAdder)  - REAL 0/188
[10:50:09] [Craft Scheduler Thread - 615 - ItemsAdder/INFO]: ItemsAdder)  - REAL_NOTE 0/750
[10:50:09] [Craft Scheduler Thread - 615 - ItemsAdder/INFO]: ItemsAdder)  - REAL_TRANSPARENT 0/63
[10:50:09] [Craft Scheduler Thread - 615 - ItemsAdder/INFO]: ItemsAdder) Used Font Images: 27/6608
[10:50:09] [Craft Scheduler Thread - 615 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded 3 categories
[10:50:09] [Craft Scheduler Thread - 615 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded successfully in 1175ms
[10:50:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[10:50:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[10:50:10] [Server thread/ERROR]: ItemsAdder) Failed to save Citizens NPCs. Try to update to the latest version.
[10:50:10] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.reflect.Method.invoke(Object, Object[])" because "<local2>" is null
[10:50:10] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.saveAll(SourceFile:194)
[10:50:10] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.saveAll(SourceFile:177)
[10:50:10] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.reload(SourceFile:92)
[10:50:10] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.ec.a(SourceFile:476)
[10:50:10] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[10:50:10] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71)
[10:50:10] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[10:50:10] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[10:50:10] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[10:50:10] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.ave.a(SourceFile:72)
[10:50:10] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.a.e(SourceFile:1077)
[10:50:10] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.atb.g(SourceFile:144)
[10:50:10] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.a.a(SourceFile:1075)
[10:50:10] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[10:50:10] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[10:50:10] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1663)
[10:50:10] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1531)
[10:50:10] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1253)
[10:50:10] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[10:50:10] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[10:50:10] [Server thread/INFO]: [Mythic] Reloading plugin...
[10:50:10] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[10:50:10] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[10:50:10] [Server thread/INFO]: [MythicMobs] Loading Packs...
[10:50:11] [Server thread/INFO]: [MythicMobs] Loading Items...
[10:50:11] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[10:50:11] [Server thread/INFO]: [MythicMobs] Loading Skills...
[10:50:11] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[10:50:11] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[10:50:11] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[10:50:11] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic randomskill
[10:50:11] [Server thread/WARN]: [MythicMobs] --| Skill: random_stun_sound | File: C:\Users\Administrator\Desktop\CrownCraft 0.2\plugins\MythicMobs\skills\littleroom\kriger.yml
[10:50:11] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill random_stun04_sound
[10:50:11] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: randomskill{skills=random_stun01_sound,random_stun02_sound,random_stun03_sound,random_stun04_sound}
[10:50:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 52 mobs.
[10:50:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[10:50:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[10:50:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 279 skills.
[10:50:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[10:50:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 23 mythic items.
[10:50:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[10:50:11] [Server thread/INFO]: [MythicMobs] ✓ Loaded 5 mob spawners.
[10:50:11] [Server thread/WARN]: [MMOCore] Could not load language entry 'gold-pouch-ui-name': Entry not found
[10:50:11] [Server thread/WARN]: [MMOCore] Could not load message 'guild-is-full': Translation not found
[10:50:11] [Server thread/WARN]: [MMOCore] Could not load message 'guild-no-pending-invite': Translation not found
[10:50:11] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-invalid-chars': Translation not found
[10:50:11] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-invalid-length': Translation not found
[10:50:11] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-already-exists': Translation not found
[10:50:11] [Server thread/WARN]: [MMOCore] Could not load message 'quest-profession-level-restriction': Translation not found
[10:50:11] [Server thread/WARN]: [MMOCore] Could not load message 'friend-no-pending-invite': Translation not found
[10:50:11] [Server thread/WARN]: [MMOCore] Could not load message 'friend-request-denied': Translation not found
[10:50:11] [Server thread/WARN]: [MMOCore] Could not load message 'friend-request-denied-creator': Translation not found
[10:50:11] [Server thread/WARN]: [MMOCore] Could not load message 'party-created': Translation not found
[10:50:11] [Server thread/WARN]: [MMOCore] Could not load message 'party-no-pending-invite': Translation not found
[10:50:11] [Server thread/WARN]: [MMOCore] Could not load message 'party-leave': Translation not found
[10:50:11] [Server thread/WARN]: [MMOCore] Could not load message 'party-kicked-from': Translation not found
[10:50:11] [Server thread/WARN]: [MMOCore] Could not load message 'waypoint-tp-done': Translation not found
[10:50:11] [Server thread/WARN]: [MMOCore] Could not load message 'skill-unbound-from-slot': Translation not found
[10:50:11] [Server thread/WARN]: [MMOCore] Could not load message 'skill-bound-to-slot': Translation not found
[10:50:11] [Server thread/WARN]: [MMOCore] Could not load message 'skill-ui-focus': Translation not found
[10:50:11] [Server thread/WARN]: [MMOCore] Could not load message 'no-class-skill-tree': Translation not found
[10:50:11] [Server thread/WARN]: [MMOCore] Could not load message 'skill-tree-switch': Translation not found
[10:50:11] [Server thread/WARN]: [MMOCore] Could not load message 'close-loot-chest': Translation not found
[10:50:11] [Server thread/WARN]: [MMOCore] Could not load quest from file 'adv-begins.yml': Could not find world world
[10:50:12] [Server thread/WARN]: [MMOCore] Could not load quest from file 'tutorial.yml': Could not find world world
[10:50:12] [Server thread/WARN]: [MMOCore] Could not load loot chest region 'sample-region' from file 'default_loot_chests.yml': Could not find world 'world_name_here'
[10:50:12] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn' from file 'default_waypoints.yml': Could not find world with name 'world'
[10:50:12] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn1' from file 'default_waypoints.yml': Could not find world with name 'world'
[10:50:12] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn2' from file 'default_waypoints.yml': Could not find world with name 'world'
[10:50:12] [Server thread/INFO]: [Mythic] Mythic has finished reloading!
[10:50:12] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[10:50:15] [Server thread/INFO]: _SomsriX2 issued server command: /iazip
[10:50:15] [Server thread/INFO]: ItemsAdder) InteractiveChat detected, disabling `cache_font_images_and_effects_replacements`.
[10:50:15] [Server thread/WARN]: ItemsAdder) Using default server address: . Consider setting it in the `config.yml`
[10:50:15] [Server thread/WARN]: ItemsAdder) Using default server port: 25565. Consider setting it in the `config.yml`
[10:50:15] [pool-68-thread-1/INFO]: ItemsAdder) [Host] Stopped self-host webserver on port: 8810
[10:50:15] [Server thread/INFO]: ItemsAdder) [Host] Started self-host webserver on port: 8810
[10:50:15] [Server thread/INFO]: ItemsAdder) [SelfHost] Rate limiter: max 3 requests / 2s.
[10:50:15] [Server thread/INFO]: ItemsAdder) [SelfHost] Clients exceeding 5 times will be blocked for 30m.
[10:50:15] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[10:50:15] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[10:50:15] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[10:50:16] [Craft Scheduler Thread - 594 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded 29 items
[10:50:16] [Craft Scheduler Thread - 594 - ItemsAdder/INFO]: ItemsAdder) Used Blocks IDs:
[10:50:16] [Craft Scheduler Thread - 594 - ItemsAdder/INFO]: ItemsAdder)  - REAL 0/188
[10:50:16] [Craft Scheduler Thread - 594 - ItemsAdder/INFO]: ItemsAdder)  - REAL_NOTE 0/750
[10:50:16] [Craft Scheduler Thread - 594 - ItemsAdder/INFO]: ItemsAdder)  - REAL_TRANSPARENT 0/63
[10:50:16] [Craft Scheduler Thread - 594 - ItemsAdder/INFO]: ItemsAdder) Used Font Images: 27/6608
[10:50:16] [Craft Scheduler Thread - 594 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded 3 categories
[10:50:16] [Craft Scheduler Thread - 594 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded successfully in 608ms
[10:50:16] [Craft Scheduler Thread - 594 - ItemsAdder/INFO]: ItemsAdder)  
[10:50:16] [Craft Scheduler Thread - 594 - ItemsAdder/INFO]: ItemsAdder)  
[10:50:16] [Craft Scheduler Thread - 594 - ItemsAdder/INFO]: ItemsAdder) [Pack] Started generation
[10:50:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[10:50:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[10:50:16] [Server thread/ERROR]: ItemsAdder) Failed to save Citizens NPCs. Try to update to the latest version.
[10:50:16] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.reflect.Method.invoke(Object, Object[])" because "<local2>" is null
[10:50:16] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.saveAll(SourceFile:194)
[10:50:16] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.saveAll(SourceFile:177)
[10:50:16] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.reload(SourceFile:92)
[10:50:16] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.ec.a(SourceFile:476)
[10:50:16] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[10:50:16] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71)
[10:50:16] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[10:50:16] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[10:50:16] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[10:50:16] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.ave.a(SourceFile:72)
[10:50:16] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.a.e(SourceFile:1077)
[10:50:16] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.atb.g(SourceFile:144)
[10:50:16] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.a.a(SourceFile:1075)
[10:50:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[10:50:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[10:50:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1663)
[10:50:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1531)
[10:50:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1253)
[10:50:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[10:50:16] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[10:50:16] [Server thread/INFO]: [Mythic] Reloading plugin...
[10:50:16] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[10:50:16] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[10:50:16] [Server thread/INFO]: [MythicMobs] Loading Packs...
[10:50:17] [Server thread/INFO]: [MythicMobs] Loading Items...
[10:50:17] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[10:50:17] [Server thread/INFO]: [MythicMobs] Loading Skills...
[10:50:17] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[10:50:17] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[10:50:17] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[10:50:17] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic randomskill
[10:50:17] [Server thread/WARN]: [MythicMobs] --| Skill: random_stun_sound | File: C:\Users\Administrator\Desktop\CrownCraft 0.2\plugins\MythicMobs\skills\littleroom\kriger.yml
[10:50:17] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill random_stun04_sound
[10:50:17] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: randomskill{skills=random_stun01_sound,random_stun02_sound,random_stun03_sound,random_stun04_sound}
[10:50:17] [Server thread/INFO]: [MythicMobs] ✓ Loaded 52 mobs.
[10:50:17] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[10:50:17] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[10:50:17] [Server thread/INFO]: [MythicMobs] ✓ Loaded 279 skills.
[10:50:17] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[10:50:17] [Server thread/INFO]: [MythicMobs] ✓ Loaded 23 mythic items.
[10:50:17] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[10:50:17] [Server thread/INFO]: [MythicMobs] ✓ Loaded 5 mob spawners.
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load language entry 'gold-pouch-ui-name': Entry not found
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load message 'guild-is-full': Translation not found
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load message 'guild-no-pending-invite': Translation not found
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-invalid-chars': Translation not found
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-invalid-length': Translation not found
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-already-exists': Translation not found
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load message 'quest-profession-level-restriction': Translation not found
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load message 'friend-no-pending-invite': Translation not found
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load message 'friend-request-denied': Translation not found
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load message 'friend-request-denied-creator': Translation not found
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load message 'party-created': Translation not found
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load message 'party-no-pending-invite': Translation not found
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load message 'party-leave': Translation not found
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load message 'party-kicked-from': Translation not found
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load message 'waypoint-tp-done': Translation not found
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load message 'skill-unbound-from-slot': Translation not found
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load message 'skill-bound-to-slot': Translation not found
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load message 'skill-ui-focus': Translation not found
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load message 'no-class-skill-tree': Translation not found
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load message 'skill-tree-switch': Translation not found
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load message 'close-loot-chest': Translation not found
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load quest from file 'adv-begins.yml': Could not find world world
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load quest from file 'tutorial.yml': Could not find world world
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load loot chest region 'sample-region' from file 'default_loot_chests.yml': Could not find world 'world_name_here'
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn' from file 'default_waypoints.yml': Could not find world with name 'world'
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn1' from file 'default_waypoints.yml': Could not find world with name 'world'
[10:50:17] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn2' from file 'default_waypoints.yml': Could not find world with name 'world'
[10:50:18] [Server thread/INFO]: [Mythic] Mythic has finished reloading!
[10:50:18] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[10:50:18] [Craft Scheduler Thread - 594 - ItemsAdder/WARN]: ItemsAdder) Duplicate CustomModelData 1 for item 'ink_sac'. File: contents/littleroom_wendigo/resourcepack/assets/minecraft/models/item/ink_sac.json
[10:50:19] [Craft Scheduler Thread - 594 - ItemsAdder/INFO]: ItemsAdder)  
[10:50:19] [Craft Scheduler Thread - 594 - ItemsAdder/INFO]: ItemsAdder) [Pack] Generated resourcepack assets.
[10:50:19] [Craft Scheduler Thread - 594 - ItemsAdder/INFO]: ItemsAdder) [Pack] Compressing resource_pack ... 
[10:50:23] [Craft Scheduler Thread - 594 - ItemsAdder/INFO]: ItemsAdder) [Pack] Compressed in 3514ms
[10:50:23] [Craft Scheduler Thread - 594 - ItemsAdder/INFO]: ItemsAdder) [!] NOT protected from unzip. Consider enabling protections in config.yml
[10:50:23] [Craft Scheduler Thread - 594 - ItemsAdder/INFO]: ItemsAdder) [Pack] Sent to 3 players
[10:50:34] [Server thread/INFO]: [CHAT GAMES] A(n) FILLOUT chat game has started in the server!
[10:50:34] [Server thread/INFO]: _SomsriX2 issued server command: /ia soti_pack
[10:52:14] [Server thread/INFO]: _SomsriX2 issued server command: /mi browse
[10:54:12] [Server thread/INFO]: __DaWae__ issued server command: //set soul_sand
[10:54:29] [Server thread/INFO]: [_SugarRune: Set own game mode to Survival Mode]
[10:54:32] [Server thread/INFO]: [_SugarRune: Set own game mode to Creative Mode]
[10:54:48] [Server thread/INFO]: __DaWae__ issued server command: //set soul_sand
[10:55:10] [Server thread/INFO]: __DaWae__ issued server command: //set glowstone
[10:56:53] [Server thread/INFO]: __DaWae__ issued server command: //set glowstone
[10:56:57] [Server thread/INFO]: __DaWae__ issued server command: //set soul_sand
[10:57:34] [Server thread/INFO]: [CHAT GAMES] A(n) RANDOM chat game has started in the server!
[10:58:32] [Server thread/INFO]: _SomsriX2 issued server command: /iareload
[10:58:32] [Server thread/INFO]: ItemsAdder) Reloading...
[10:58:32] [Server thread/INFO]: ItemsAdder) InteractiveChat detected, disabling `cache_font_images_and_effects_replacements`.
[10:58:32] [Server thread/WARN]: ItemsAdder) Using default server address: . Consider setting it in the `config.yml`
[10:58:32] [Server thread/WARN]: ItemsAdder) Using default server port: 25565. Consider setting it in the `config.yml`
[10:58:32] [pool-68-thread-1/INFO]: ItemsAdder) [Host] Stopped self-host webserver on port: 8810
[10:58:32] [Server thread/INFO]: ItemsAdder) [Host] Started self-host webserver on port: 8810
[10:58:32] [Server thread/INFO]: ItemsAdder) [SelfHost] Rate limiter: max 3 requests / 2s.
[10:58:32] [Server thread/INFO]: ItemsAdder) [SelfHost] Clients exceeding 5 times will be blocked for 30m.
[10:58:32] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[10:58:32] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[10:58:32] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[10:58:33] [Craft Scheduler Thread - 746 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded 29 items
[10:58:33] [Craft Scheduler Thread - 746 - ItemsAdder/INFO]: ItemsAdder) Used Blocks IDs:
[10:58:33] [Craft Scheduler Thread - 746 - ItemsAdder/INFO]: ItemsAdder)  - REAL 0/188
[10:58:33] [Craft Scheduler Thread - 746 - ItemsAdder/INFO]: ItemsAdder)  - REAL_NOTE 0/750
[10:58:33] [Craft Scheduler Thread - 746 - ItemsAdder/INFO]: ItemsAdder)  - REAL_TRANSPARENT 0/63
[10:58:33] [Craft Scheduler Thread - 746 - ItemsAdder/INFO]: ItemsAdder) Used Font Images: 27/6608
[10:58:33] [Craft Scheduler Thread - 746 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded 3 categories
[10:58:33] [Craft Scheduler Thread - 746 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded successfully in 816ms
[10:58:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[10:58:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[10:58:33] [Server thread/ERROR]: ItemsAdder) Failed to save Citizens NPCs. Try to update to the latest version.
[10:58:33] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.reflect.Method.invoke(Object, Object[])" because "<local2>" is null
[10:58:33] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.saveAll(SourceFile:194)
[10:58:33] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.saveAll(SourceFile:177)
[10:58:33] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.reload(SourceFile:92)
[10:58:33] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.ec.a(SourceFile:476)
[10:58:33] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[10:58:33] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71)
[10:58:33] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[10:58:33] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[10:58:33] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[10:58:33] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.ave.a(SourceFile:72)
[10:58:33] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.a.e(SourceFile:1077)
[10:58:33] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.atb.g(SourceFile:144)
[10:58:33] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.a.a(SourceFile:1075)
[10:58:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[10:58:33] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[10:58:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1663)
[10:58:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1531)
[10:58:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1253)
[10:58:33] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[10:58:33] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[10:58:33] [Server thread/INFO]: [Mythic] Reloading plugin...
[10:58:33] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[10:58:33] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[10:58:34] [Server thread/INFO]: [MythicMobs] Loading Packs...
[10:58:34] [Server thread/INFO]: [MythicMobs] Loading Items...
[10:58:34] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[10:58:34] [Server thread/INFO]: [MythicMobs] Loading Skills...
[10:58:35] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[10:58:35] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[10:58:35] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[10:58:35] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic randomskill
[10:58:35] [Server thread/WARN]: [MythicMobs] --| Skill: random_stun_sound | File: C:\Users\Administrator\Desktop\CrownCraft 0.2\plugins\MythicMobs\skills\littleroom\kriger.yml
[10:58:35] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill random_stun04_sound
[10:58:35] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: randomskill{skills=random_stun01_sound,random_stun02_sound,random_stun03_sound,random_stun04_sound}
[10:58:35] [Server thread/INFO]: [MythicMobs] ✓ Loaded 52 mobs.
[10:58:35] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[10:58:35] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[10:58:35] [Server thread/INFO]: [MythicMobs] ✓ Loaded 279 skills.
[10:58:35] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[10:58:35] [Server thread/INFO]: [MythicMobs] ✓ Loaded 23 mythic items.
[10:58:35] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[10:58:35] [Server thread/INFO]: [MythicMobs] ✓ Loaded 5 mob spawners.
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load language entry 'gold-pouch-ui-name': Entry not found
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load message 'guild-is-full': Translation not found
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load message 'guild-no-pending-invite': Translation not found
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-invalid-chars': Translation not found
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-invalid-length': Translation not found
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-already-exists': Translation not found
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load message 'quest-profession-level-restriction': Translation not found
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load message 'friend-no-pending-invite': Translation not found
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load message 'friend-request-denied': Translation not found
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load message 'friend-request-denied-creator': Translation not found
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load message 'party-created': Translation not found
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load message 'party-no-pending-invite': Translation not found
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load message 'party-leave': Translation not found
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load message 'party-kicked-from': Translation not found
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load message 'waypoint-tp-done': Translation not found
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load message 'skill-unbound-from-slot': Translation not found
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load message 'skill-bound-to-slot': Translation not found
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load message 'skill-ui-focus': Translation not found
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load message 'no-class-skill-tree': Translation not found
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load message 'skill-tree-switch': Translation not found
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load message 'close-loot-chest': Translation not found
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load quest from file 'adv-begins.yml': Could not find world world
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load quest from file 'tutorial.yml': Could not find world world
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load loot chest region 'sample-region' from file 'default_loot_chests.yml': Could not find world 'world_name_here'
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn' from file 'default_waypoints.yml': Could not find world with name 'world'
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn1' from file 'default_waypoints.yml': Could not find world with name 'world'
[10:58:35] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn2' from file 'default_waypoints.yml': Could not find world with name 'world'
[10:58:35] [Server thread/INFO]: [Mythic] Mythic has finished reloading!
[10:58:35] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[10:58:37] [Server thread/INFO]: _SomsriX2 issued server command: /iazip
[10:58:37] [Server thread/INFO]: ItemsAdder) InteractiveChat detected, disabling `cache_font_images_and_effects_replacements`.
[10:58:37] [Server thread/WARN]: ItemsAdder) Using default server address: . Consider setting it in the `config.yml`
[10:58:37] [Server thread/WARN]: ItemsAdder) Using default server port: 25565. Consider setting it in the `config.yml`
[10:58:37] [pool-68-thread-1/INFO]: ItemsAdder) [Host] Stopped self-host webserver on port: 8810
[10:58:37] [Server thread/INFO]: ItemsAdder) [Host] Started self-host webserver on port: 8810
[10:58:37] [Server thread/INFO]: ItemsAdder) [SelfHost] Rate limiter: max 3 requests / 2s.
[10:58:37] [Server thread/INFO]: ItemsAdder) [SelfHost] Clients exceeding 5 times will be blocked for 30m.
[10:58:37] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[10:58:37] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[10:58:37] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[10:58:38] [Craft Scheduler Thread - 750 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded 29 items
[10:58:38] [Craft Scheduler Thread - 750 - ItemsAdder/INFO]: ItemsAdder) Used Blocks IDs:
[10:58:38] [Craft Scheduler Thread - 750 - ItemsAdder/INFO]: ItemsAdder)  - REAL 0/188
[10:58:38] [Craft Scheduler Thread - 750 - ItemsAdder/INFO]: ItemsAdder)  - REAL_NOTE 0/750
[10:58:38] [Craft Scheduler Thread - 750 - ItemsAdder/INFO]: ItemsAdder)  - REAL_TRANSPARENT 0/63
[10:58:38] [Craft Scheduler Thread - 750 - ItemsAdder/INFO]: ItemsAdder) Used Font Images: 27/6608
[10:58:38] [Craft Scheduler Thread - 750 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded 3 categories
[10:58:38] [Craft Scheduler Thread - 750 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded successfully in 581ms
[10:58:38] [Craft Scheduler Thread - 750 - ItemsAdder/INFO]: ItemsAdder)  
[10:58:38] [Craft Scheduler Thread - 750 - ItemsAdder/INFO]: ItemsAdder)  
[10:58:38] [Craft Scheduler Thread - 750 - ItemsAdder/INFO]: ItemsAdder) [Pack] Started generation
[10:58:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[10:58:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[10:58:38] [Server thread/ERROR]: ItemsAdder) Failed to save Citizens NPCs. Try to update to the latest version.
[10:58:38] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.reflect.Method.invoke(Object, Object[])" because "<local2>" is null
[10:58:38] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.saveAll(SourceFile:194)
[10:58:38] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.saveAll(SourceFile:177)
[10:58:38] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.reload(SourceFile:92)
[10:58:38] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.ec.a(SourceFile:476)
[10:58:38] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[10:58:38] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71)
[10:58:38] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[10:58:38] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[10:58:38] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[10:58:38] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.ave.a(SourceFile:72)
[10:58:38] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.a.e(SourceFile:1077)
[10:58:38] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.atb.g(SourceFile:144)
[10:58:38] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.a.a(SourceFile:1075)
[10:58:38] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[10:58:38] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[10:58:38] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1663)
[10:58:38] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1531)
[10:58:38] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1253)
[10:58:38] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[10:58:38] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[10:58:38] [Server thread/INFO]: [Mythic] Reloading plugin...
[10:58:38] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[10:58:38] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[10:58:38] [Server thread/INFO]: [MythicMobs] Loading Packs...
[10:58:39] [Craft Scheduler Thread - 750 - ItemsAdder/WARN]: ItemsAdder) Duplicate CustomModelData 1 for item 'ink_sac'. File: contents/littleroom_wendigo/resourcepack/assets/minecraft/models/item/ink_sac.json
[10:58:39] [Server thread/INFO]: [MythicMobs] Loading Items...
[10:58:39] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[10:58:39] [Server thread/INFO]: [MythicMobs] Loading Skills...
[10:58:39] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[10:58:39] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[10:58:39] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[10:58:39] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic randomskill
[10:58:39] [Server thread/WARN]: [MythicMobs] --| Skill: random_stun_sound | File: C:\Users\Administrator\Desktop\CrownCraft 0.2\plugins\MythicMobs\skills\littleroom\kriger.yml
[10:58:39] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill random_stun04_sound
[10:58:39] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: randomskill{skills=random_stun01_sound,random_stun02_sound,random_stun03_sound,random_stun04_sound}
[10:58:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 52 mobs.
[10:58:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[10:58:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[10:58:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 279 skills.
[10:58:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[10:58:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 23 mythic items.
[10:58:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[10:58:39] [Server thread/INFO]: [MythicMobs] ✓ Loaded 5 mob spawners.
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load language entry 'gold-pouch-ui-name': Entry not found
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load message 'guild-is-full': Translation not found
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load message 'guild-no-pending-invite': Translation not found
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-invalid-chars': Translation not found
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-invalid-length': Translation not found
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-already-exists': Translation not found
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load message 'quest-profession-level-restriction': Translation not found
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load message 'friend-no-pending-invite': Translation not found
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load message 'friend-request-denied': Translation not found
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load message 'friend-request-denied-creator': Translation not found
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load message 'party-created': Translation not found
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load message 'party-no-pending-invite': Translation not found
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load message 'party-leave': Translation not found
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load message 'party-kicked-from': Translation not found
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load message 'waypoint-tp-done': Translation not found
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load message 'skill-unbound-from-slot': Translation not found
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load message 'skill-bound-to-slot': Translation not found
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load message 'skill-ui-focus': Translation not found
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load message 'no-class-skill-tree': Translation not found
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load message 'skill-tree-switch': Translation not found
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load message 'close-loot-chest': Translation not found
[10:58:39] [Craft Scheduler Thread - 750 - ItemsAdder/INFO]: ItemsAdder)  
[10:58:39] [Craft Scheduler Thread - 750 - ItemsAdder/INFO]: ItemsAdder) [Pack] Generated resourcepack assets.
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load quest from file 'adv-begins.yml': Could not find world world
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load quest from file 'tutorial.yml': Could not find world world
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load loot chest region 'sample-region' from file 'default_loot_chests.yml': Could not find world 'world_name_here'
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn' from file 'default_waypoints.yml': Could not find world with name 'world'
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn1' from file 'default_waypoints.yml': Could not find world with name 'world'
[10:58:39] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn2' from file 'default_waypoints.yml': Could not find world with name 'world'
[10:58:39] [Server thread/INFO]: [Mythic] Mythic has finished reloading!
[10:58:39] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[10:58:40] [Craft Scheduler Thread - 733 - ItemsAdder/INFO]: ItemsAdder) [Pack] Compressing resource_pack ... 
[10:58:43] [Craft Scheduler Thread - 733 - ItemsAdder/INFO]: ItemsAdder) [Pack] Compressed in 3666ms
[10:58:43] [Craft Scheduler Thread - 733 - ItemsAdder/INFO]: ItemsAdder) [!] NOT protected from unzip. Consider enabling protections in config.yml
[10:58:43] [Craft Scheduler Thread - 733 - ItemsAdder/INFO]: ItemsAdder) [Pack] Sent to 3 players
[10:58:57] [Server thread/INFO]: _SomsriX2 issued server command: /mi browse
[11:00:46] [Server thread/INFO]: _SomsriX2 issued server command: /mi browse
[11:02:11] [Server thread/INFO]: __DaWae__ issued server command: //set grass_block
[11:02:40] [Server thread/INFO]: _SomsriX2 issued server command: /mi browse
[11:03:18] [Server thread/INFO]: __DaWae__ issued server command: //set air
[11:03:53] [Server thread/INFO]: __DaWae__ issued server command: //set air
[11:04:04] [Server thread/INFO]: __DaWae__ issued server command: //set quartz_block
[11:04:10] [Server thread/INFO]: __DaWae__ issued server command: //set quartz_block
[11:04:14] [Server thread/INFO]: _SomsriX2 issued server command: /iareload
[11:04:14] [Server thread/INFO]: ItemsAdder) Reloading...
[11:04:14] [Server thread/INFO]: ItemsAdder) InteractiveChat detected, disabling `cache_font_images_and_effects_replacements`.
[11:04:14] [Server thread/WARN]: ItemsAdder) Using default server address: . Consider setting it in the `config.yml`
[11:04:14] [Server thread/WARN]: ItemsAdder) Using default server port: 25565. Consider setting it in the `config.yml`
[11:04:14] [pool-68-thread-1/INFO]: ItemsAdder) [Host] Stopped self-host webserver on port: 8810
[11:04:14] [Server thread/INFO]: ItemsAdder) [Host] Started self-host webserver on port: 8810
[11:04:14] [Server thread/INFO]: ItemsAdder) [SelfHost] Rate limiter: max 3 requests / 2s.
[11:04:14] [Server thread/INFO]: ItemsAdder) [SelfHost] Clients exceeding 5 times will be blocked for 30m.
[11:04:14] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[11:04:14] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[11:04:14] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[11:04:15] [Craft Scheduler Thread - 803 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded 26 items
[11:04:15] [Craft Scheduler Thread - 803 - ItemsAdder/INFO]: ItemsAdder) Used Blocks IDs:
[11:04:15] [Craft Scheduler Thread - 803 - ItemsAdder/INFO]: ItemsAdder)  - REAL 0/188
[11:04:15] [Craft Scheduler Thread - 803 - ItemsAdder/INFO]: ItemsAdder)  - REAL_NOTE 0/750
[11:04:15] [Craft Scheduler Thread - 803 - ItemsAdder/INFO]: ItemsAdder)  - REAL_TRANSPARENT 0/63
[11:04:15] [Craft Scheduler Thread - 803 - ItemsAdder/INFO]: ItemsAdder) Used Font Images: 27/6608
[11:04:15] [Craft Scheduler Thread - 803 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded 2 categories
[11:04:15] [Craft Scheduler Thread - 803 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded successfully in 649ms
[11:04:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[11:04:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[11:04:15] [Server thread/ERROR]: ItemsAdder) Failed to save Citizens NPCs. Try to update to the latest version.
[11:04:15] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.reflect.Method.invoke(Object, Object[])" because "<local2>" is null
[11:04:15] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.saveAll(SourceFile:194)
[11:04:15] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.saveAll(SourceFile:177)
[11:04:15] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.reload(SourceFile:92)
[11:04:15] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.ec.a(SourceFile:476)
[11:04:15] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[11:04:15] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71)
[11:04:15] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[11:04:15] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[11:04:15] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[11:04:15] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.ave.a(SourceFile:72)
[11:04:15] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.a.e(SourceFile:1077)
[11:04:15] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.atb.g(SourceFile:144)
[11:04:15] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.a.a(SourceFile:1075)
[11:04:15] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[11:04:15] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[11:04:15] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1663)
[11:04:15] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1531)
[11:04:15] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1253)
[11:04:15] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[11:04:15] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[11:04:15] [Server thread/INFO]: [Mythic] Reloading plugin...
[11:04:15] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[11:04:15] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[11:04:15] [Server thread/INFO]: [MythicMobs] Loading Packs...
[11:04:16] [Server thread/INFO]: [MythicMobs] Loading Items...
[11:04:16] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[11:04:16] [Server thread/INFO]: [MythicMobs] Loading Skills...
[11:04:16] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[11:04:16] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[11:04:16] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[11:04:16] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic randomskill
[11:04:16] [Server thread/WARN]: [MythicMobs] --| Skill: random_stun_sound | File: C:\Users\Administrator\Desktop\CrownCraft 0.2\plugins\MythicMobs\skills\littleroom\kriger.yml
[11:04:16] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill random_stun04_sound
[11:04:16] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: randomskill{skills=random_stun01_sound,random_stun02_sound,random_stun03_sound,random_stun04_sound}
[11:04:16] [Server thread/INFO]: [MythicMobs] ✓ Loaded 52 mobs.
[11:04:16] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[11:04:16] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[11:04:16] [Server thread/INFO]: [MythicMobs] ✓ Loaded 279 skills.
[11:04:16] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[11:04:16] [Server thread/INFO]: [MythicMobs] ✓ Loaded 23 mythic items.
[11:04:16] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[11:04:16] [Server thread/INFO]: [MythicMobs] ✓ Loaded 5 mob spawners.
[11:04:16] [Server thread/WARN]: [MMOCore] Could not load language entry 'gold-pouch-ui-name': Entry not found
[11:04:16] [Server thread/WARN]: [MMOCore] Could not load message 'guild-is-full': Translation not found
[11:04:16] [Server thread/WARN]: [MMOCore] Could not load message 'guild-no-pending-invite': Translation not found
[11:04:16] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-invalid-chars': Translation not found
[11:04:16] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-invalid-length': Translation not found
[11:04:16] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-already-exists': Translation not found
[11:04:16] [Server thread/WARN]: [MMOCore] Could not load message 'quest-profession-level-restriction': Translation not found
[11:04:16] [Server thread/WARN]: [MMOCore] Could not load message 'friend-no-pending-invite': Translation not found
[11:04:16] [Server thread/WARN]: [MMOCore] Could not load message 'friend-request-denied': Translation not found
[11:04:16] [Server thread/WARN]: [MMOCore] Could not load message 'friend-request-denied-creator': Translation not found
[11:04:16] [Server thread/WARN]: [MMOCore] Could not load message 'party-created': Translation not found
[11:04:16] [Server thread/WARN]: [MMOCore] Could not load message 'party-no-pending-invite': Translation not found
[11:04:16] [Server thread/WARN]: [MMOCore] Could not load message 'party-leave': Translation not found
[11:04:16] [Server thread/WARN]: [MMOCore] Could not load message 'party-kicked-from': Translation not found
[11:04:16] [Server thread/WARN]: [MMOCore] Could not load message 'waypoint-tp-done': Translation not found
[11:04:16] [Server thread/WARN]: [MMOCore] Could not load message 'skill-unbound-from-slot': Translation not found
[11:04:16] [Server thread/WARN]: [MMOCore] Could not load message 'skill-bound-to-slot': Translation not found
[11:04:16] [Server thread/WARN]: [MMOCore] Could not load message 'skill-ui-focus': Translation not found
[11:04:16] [Server thread/WARN]: [MMOCore] Could not load message 'no-class-skill-tree': Translation not found
[11:04:16] [Server thread/WARN]: [MMOCore] Could not load message 'skill-tree-switch': Translation not found
[11:04:16] [Server thread/WARN]: [MMOCore] Could not load message 'close-loot-chest': Translation not found
[11:04:17] [Server thread/WARN]: [MMOCore] Could not load quest from file 'adv-begins.yml': Could not find world world
[11:04:17] [Server thread/WARN]: [MMOCore] Could not load quest from file 'tutorial.yml': Could not find world world
[11:04:17] [Server thread/WARN]: [MMOCore] Could not load loot chest region 'sample-region' from file 'default_loot_chests.yml': Could not find world 'world_name_here'
[11:04:17] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn' from file 'default_waypoints.yml': Could not find world with name 'world'
[11:04:17] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn1' from file 'default_waypoints.yml': Could not find world with name 'world'
[11:04:17] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn2' from file 'default_waypoints.yml': Could not find world with name 'world'
[11:04:17] [Server thread/INFO]: [Mythic] Mythic has finished reloading!
[11:04:17] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[11:04:20] [Server thread/INFO]: _SomsriX2 issued server command: /iazip
[11:04:20] [Server thread/INFO]: ItemsAdder) InteractiveChat detected, disabling `cache_font_images_and_effects_replacements`.
[11:04:20] [Server thread/WARN]: ItemsAdder) Using default server address: . Consider setting it in the `config.yml`
[11:04:20] [Server thread/WARN]: ItemsAdder) Using default server port: 25565. Consider setting it in the `config.yml`
[11:04:20] [pool-68-thread-1/INFO]: ItemsAdder) [Host] Stopped self-host webserver on port: 8810
[11:04:20] [Server thread/INFO]: ItemsAdder) [Host] Started self-host webserver on port: 8810
[11:04:20] [Server thread/INFO]: ItemsAdder) [SelfHost] Rate limiter: max 3 requests / 2s.
[11:04:20] [Server thread/INFO]: ItemsAdder) [SelfHost] Clients exceeding 5 times will be blocked for 30m.
[11:04:20] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[11:04:20] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[11:04:20] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[11:04:21] [Craft Scheduler Thread - 813 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded 26 items
[11:04:21] [Craft Scheduler Thread - 813 - ItemsAdder/INFO]: ItemsAdder) Used Blocks IDs:
[11:04:21] [Craft Scheduler Thread - 813 - ItemsAdder/INFO]: ItemsAdder)  - REAL 0/188
[11:04:21] [Craft Scheduler Thread - 813 - ItemsAdder/INFO]: ItemsAdder)  - REAL_NOTE 0/750
[11:04:21] [Craft Scheduler Thread - 813 - ItemsAdder/INFO]: ItemsAdder)  - REAL_TRANSPARENT 0/63
[11:04:21] [Craft Scheduler Thread - 813 - ItemsAdder/INFO]: ItemsAdder) Used Font Images: 27/6608
[11:04:21] [Craft Scheduler Thread - 813 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded 2 categories
[11:04:21] [Craft Scheduler Thread - 813 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded successfully in 571ms
[11:04:21] [Craft Scheduler Thread - 813 - ItemsAdder/INFO]: ItemsAdder)  
[11:04:21] [Craft Scheduler Thread - 813 - ItemsAdder/INFO]: ItemsAdder)  
[11:04:21] [Craft Scheduler Thread - 813 - ItemsAdder/INFO]: ItemsAdder) [Pack] Started generation
[11:04:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[11:04:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[11:04:21] [Server thread/ERROR]: ItemsAdder) Failed to save Citizens NPCs. Try to update to the latest version.
[11:04:21] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.reflect.Method.invoke(Object, Object[])" because "<local2>" is null
[11:04:21] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.saveAll(SourceFile:194)
[11:04:21] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.saveAll(SourceFile:177)
[11:04:21] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.reload(SourceFile:92)
[11:04:21] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.ec.a(SourceFile:476)
[11:04:21] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[11:04:21] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71)
[11:04:21] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[11:04:21] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[11:04:21] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[11:04:21] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.ave.a(SourceFile:72)
[11:04:21] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.a.e(SourceFile:1077)
[11:04:21] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.atb.g(SourceFile:144)
[11:04:21] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.a.a(SourceFile:1075)
[11:04:21] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[11:04:21] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[11:04:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1663)
[11:04:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1531)
[11:04:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1253)
[11:04:21] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[11:04:21] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[11:04:21] [Server thread/INFO]: [Mythic] Reloading plugin...
[11:04:21] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[11:04:21] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[11:04:21] [Server thread/INFO]: [MythicMobs] Loading Packs...
[11:04:22] [Craft Scheduler Thread - 813 - ItemsAdder/WARN]: ItemsAdder) Duplicate CustomModelData 1 for item 'ink_sac'. File: contents/littleroom_wendigo/resourcepack/assets/minecraft/models/item/ink_sac.json
[11:04:22] [Craft Scheduler Thread - 813 - ItemsAdder/WARN]: ItemsAdder) Duplicate CustomModelData 1 for item 'leather_horse_armor'. File: resource pack/assets/minecraft/models/item/leather_horse_armor.json
[11:04:22] [Craft Scheduler Thread - 813 - ItemsAdder/WARN]: ItemsAdder) Duplicate CustomModelData 2 for item 'leather_horse_armor'. File: resource pack/assets/minecraft/models/item/leather_horse_armor.json
[11:04:22] [Craft Scheduler Thread - 813 - ItemsAdder/WARN]: ItemsAdder) Duplicate CustomModelData 3 for item 'leather_horse_armor'. File: resource pack/assets/minecraft/models/item/leather_horse_armor.json
[11:04:22] [Craft Scheduler Thread - 813 - ItemsAdder/WARN]: ItemsAdder) Duplicate CustomModelData 4 for item 'leather_horse_armor'. File: resource pack/assets/minecraft/models/item/leather_horse_armor.json
[11:04:22] [Craft Scheduler Thread - 813 - ItemsAdder/WARN]: ItemsAdder) Duplicate CustomModelData 5 for item 'leather_horse_armor'. File: resource pack/assets/minecraft/models/item/leather_horse_armor.json
[11:04:22] [Craft Scheduler Thread - 813 - ItemsAdder/WARN]: ItemsAdder) Duplicate CustomModelData 6 for item 'leather_horse_armor'. File: resource pack/assets/minecraft/models/item/leather_horse_armor.json
[11:04:22] [Craft Scheduler Thread - 813 - ItemsAdder/WARN]: ItemsAdder) Duplicate CustomModelData 7 for item 'leather_horse_armor'. File: resource pack/assets/minecraft/models/item/leather_horse_armor.json
[11:04:22] [Craft Scheduler Thread - 813 - ItemsAdder/WARN]: ItemsAdder) Duplicate CustomModelData 8 for item 'leather_horse_armor'. File: resource pack/assets/minecraft/models/item/leather_horse_armor.json
[11:04:22] [Craft Scheduler Thread - 813 - ItemsAdder/WARN]: ItemsAdder) Duplicate CustomModelData 9 for item 'leather_horse_armor'. File: resource pack/assets/minecraft/models/item/leather_horse_armor.json
[11:04:22] [Craft Scheduler Thread - 813 - ItemsAdder/WARN]: ItemsAdder) Duplicate CustomModelData 10 for item 'leather_horse_armor'. File: resource pack/assets/minecraft/models/item/leather_horse_armor.json
[11:04:22] [Craft Scheduler Thread - 813 - ItemsAdder/WARN]: ItemsAdder) Duplicate CustomModelData 11 for item 'leather_horse_armor'. File: resource pack/assets/minecraft/models/item/leather_horse_armor.json
[11:04:22] [Craft Scheduler Thread - 813 - ItemsAdder/WARN]: ItemsAdder) Duplicate CustomModelData 12 for item 'leather_horse_armor'. File: resource pack/assets/minecraft/models/item/leather_horse_armor.json
[11:04:22] [Craft Scheduler Thread - 813 - ItemsAdder/WARN]: ItemsAdder) Duplicate CustomModelData 13 for item 'leather_horse_armor'. File: resource pack/assets/minecraft/models/item/leather_horse_armor.json
[11:04:22] [Craft Scheduler Thread - 813 - ItemsAdder/WARN]: ItemsAdder) Duplicate CustomModelData 14 for item 'leather_horse_armor'. File: resource pack/assets/minecraft/models/item/leather_horse_armor.json
[11:04:22] [Craft Scheduler Thread - 813 - ItemsAdder/WARN]: ItemsAdder) Duplicate CustomModelData 15 for item 'leather_horse_armor'. File: resource pack/assets/minecraft/models/item/leather_horse_armor.json
[11:04:22] [Craft Scheduler Thread - 813 - ItemsAdder/WARN]: ItemsAdder) Duplicate CustomModelData 16 for item 'leather_horse_armor'. File: resource pack/assets/minecraft/models/item/leather_horse_armor.json
[11:04:22] [Craft Scheduler Thread - 813 - ItemsAdder/WARN]: ItemsAdder) Duplicate CustomModelData 17 for item 'leather_horse_armor'. File: resource pack/assets/minecraft/models/item/leather_horse_armor.json
[11:04:22] [Server thread/INFO]: [MythicMobs] Loading Items...
[11:04:22] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[11:04:22] [Server thread/INFO]: [MythicMobs] Loading Skills...
[11:04:22] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[11:04:22] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[11:04:22] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[11:04:22] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic randomskill
[11:04:22] [Server thread/WARN]: [MythicMobs] --| Skill: random_stun_sound | File: C:\Users\Administrator\Desktop\CrownCraft 0.2\plugins\MythicMobs\skills\littleroom\kriger.yml
[11:04:22] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill random_stun04_sound
[11:04:22] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: randomskill{skills=random_stun01_sound,random_stun02_sound,random_stun03_sound,random_stun04_sound}
[11:04:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 52 mobs.
[11:04:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[11:04:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[11:04:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 279 skills.
[11:04:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[11:04:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 23 mythic items.
[11:04:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[11:04:22] [Server thread/INFO]: [MythicMobs] ✓ Loaded 5 mob spawners.
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load language entry 'gold-pouch-ui-name': Entry not found
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load message 'guild-is-full': Translation not found
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load message 'guild-no-pending-invite': Translation not found
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-invalid-chars': Translation not found
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-invalid-length': Translation not found
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-already-exists': Translation not found
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load message 'quest-profession-level-restriction': Translation not found
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load message 'friend-no-pending-invite': Translation not found
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load message 'friend-request-denied': Translation not found
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load message 'friend-request-denied-creator': Translation not found
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load message 'party-created': Translation not found
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load message 'party-no-pending-invite': Translation not found
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load message 'party-leave': Translation not found
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load message 'party-kicked-from': Translation not found
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load message 'waypoint-tp-done': Translation not found
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load message 'skill-unbound-from-slot': Translation not found
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load message 'skill-bound-to-slot': Translation not found
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load message 'skill-ui-focus': Translation not found
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load message 'no-class-skill-tree': Translation not found
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load message 'skill-tree-switch': Translation not found
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load message 'close-loot-chest': Translation not found
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load quest from file 'adv-begins.yml': Could not find world world
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load quest from file 'tutorial.yml': Could not find world world
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load loot chest region 'sample-region' from file 'default_loot_chests.yml': Could not find world 'world_name_here'
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn' from file 'default_waypoints.yml': Could not find world with name 'world'
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn1' from file 'default_waypoints.yml': Could not find world with name 'world'
[11:04:22] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn2' from file 'default_waypoints.yml': Could not find world with name 'world'
[11:04:22] [Server thread/INFO]: [Mythic] Mythic has finished reloading!
[11:04:22] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[11:04:22] [Server thread/INFO]: __DaWae__ issued server command: //set quartz_block
[11:04:23] [Craft Scheduler Thread - 813 - ItemsAdder/INFO]: ItemsAdder)  
[11:04:23] [Craft Scheduler Thread - 813 - ItemsAdder/INFO]: ItemsAdder) [Pack] Generated resourcepack assets.
[11:04:23] [Craft Scheduler Thread - 813 - ItemsAdder/INFO]: ItemsAdder) [Pack] Compressing resource_pack ... 
[11:04:25] [Craft Scheduler Thread - 813 - ItemsAdder/WARN]: ItemsAdder) Bundled file compression skipped. Duplicate found 'internal/textures/leather_layer_2_overlay.png' -> 'assets/minecraft/textures/models/armor/leather_layer_2_overlay.png' | duplicate entry: assets/minecraft/textures/models/armor/leather_layer_2_overlay.png
[11:04:25] [Craft Scheduler Thread - 813 - ItemsAdder/WARN]: ItemsAdder) Bundled file compression skipped. Duplicate found 'internal/textures/leather_layer_1_overlay.png' -> 'assets/minecraft/textures/models/armor/leather_layer_1_overlay.png' | duplicate entry: assets/minecraft/textures/models/armor/leather_layer_1_overlay.png
[11:04:25] [Craft Scheduler Thread - 813 - ItemsAdder/WARN]: ItemsAdder) Bundled file compression skipped. Duplicate found 'internal/textures/leather_layer_1.png' -> 'assets/minecraft/textures/models/armor/leather_layer_1.png' | duplicate entry: assets/minecraft/textures/models/armor/leather_layer_1.png
[11:04:25] [Craft Scheduler Thread - 813 - ItemsAdder/WARN]: ItemsAdder) Bundled file compression skipped. Duplicate found 'internal/textures/leather_layer_2.png' -> 'assets/minecraft/textures/models/armor/leather_layer_2.png' | duplicate entry: assets/minecraft/textures/models/armor/leather_layer_2.png
[11:04:26] [Craft Scheduler Thread - 813 - ItemsAdder/INFO]: ItemsAdder) [Pack] Compressed in 3443ms
[11:04:26] [Craft Scheduler Thread - 813 - ItemsAdder/INFO]: ItemsAdder) [!] NOT protected from unzip. Consider enabling protections in config.yml
[11:04:26] [Craft Scheduler Thread - 813 - ItemsAdder/INFO]: ItemsAdder) [Pack] Sent to 3 players
[11:04:31] [Server thread/INFO]: __DaWae__ issued server command: //set quartz_block
[11:04:34] [Server thread/INFO]: [CHAT GAMES] A(n) REACTION chat game has started in the server!
[11:04:34] [Server thread/INFO]: _SomsriX2 issued server command: /mi browse
[11:04:37] [Server thread/INFO]: __DaWae__ issued server command: //set quartz_block
[11:04:40] [Server thread/INFO]: __DaWae__ issued server command: //set quartz_block
[11:04:56] [Server thread/INFO]: __DaWae__ issued server command: //set glass
[11:05:26] [Server thread/INFO]: __DaWae__ issued server command: //set quartz_block
[11:05:32] [Server thread/INFO]: __DaWae__ issued server command: /spectator
[11:05:34] [Server thread/INFO]: __DaWae__ issued server command: /spectator 1
[11:06:04] [Server thread/INFO]: __DaWae__ issued server command: //set sand
[11:06:29] [Server thread/INFO]: __DaWae__ issued server command: //set water
[11:06:52] [Server thread/INFO]: _SomsriX2 issued server command: /ia all
[11:09:43] [Server thread/INFO]: _SomsriX2 issued server command: /iareload
[11:09:43] [Server thread/INFO]: ItemsAdder) Reloading...
[11:09:43] [Server thread/INFO]: ItemsAdder) InteractiveChat detected, disabling `cache_font_images_and_effects_replacements`.
[11:09:43] [Server thread/WARN]: ItemsAdder) Using default server address: . Consider setting it in the `config.yml`
[11:09:43] [Server thread/WARN]: ItemsAdder) Using default server port: 25565. Consider setting it in the `config.yml`
[11:09:43] [pool-68-thread-1/INFO]: ItemsAdder) [Host] Stopped self-host webserver on port: 8810
[11:09:43] [Server thread/INFO]: ItemsAdder) [Host] Started self-host webserver on port: 8810
[11:09:43] [Server thread/INFO]: ItemsAdder) [SelfHost] Rate limiter: max 3 requests / 2s.
[11:09:43] [Server thread/INFO]: ItemsAdder) [SelfHost] Clients exceeding 5 times will be blocked for 30m.
[11:09:43] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[11:09:43] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[11:09:43] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[11:09:44] [Craft Scheduler Thread - 820 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded 26 items
[11:09:44] [Craft Scheduler Thread - 820 - ItemsAdder/INFO]: ItemsAdder) Used Blocks IDs:
[11:09:44] [Craft Scheduler Thread - 820 - ItemsAdder/INFO]: ItemsAdder)  - REAL 0/188
[11:09:44] [Craft Scheduler Thread - 820 - ItemsAdder/INFO]: ItemsAdder)  - REAL_NOTE 0/750
[11:09:44] [Craft Scheduler Thread - 820 - ItemsAdder/INFO]: ItemsAdder)  - REAL_TRANSPARENT 0/63
[11:09:44] [Craft Scheduler Thread - 820 - ItemsAdder/INFO]: ItemsAdder) Used Font Images: 27/6608
[11:09:44] [Craft Scheduler Thread - 820 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded 2 categories
[11:09:44] [Craft Scheduler Thread - 820 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded successfully in 723ms
[11:09:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[11:09:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[11:09:44] [Server thread/ERROR]: ItemsAdder) Failed to save Citizens NPCs. Try to update to the latest version.
[11:09:44] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.reflect.Method.invoke(Object, Object[])" because "<local2>" is null
[11:09:44] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.saveAll(SourceFile:194)
[11:09:44] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.saveAll(SourceFile:177)
[11:09:44] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.reload(SourceFile:92)
[11:09:44] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.ec.a(SourceFile:476)
[11:09:44] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[11:09:44] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71)
[11:09:44] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[11:09:44] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[11:09:44] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[11:09:44] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.ave.a(SourceFile:72)
[11:09:44] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.a.e(SourceFile:1077)
[11:09:44] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.atb.g(SourceFile:144)
[11:09:44] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.a.a(SourceFile:1075)
[11:09:44] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[11:09:44] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[11:09:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1663)
[11:09:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1531)
[11:09:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1253)
[11:09:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[11:09:44] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[11:09:44] [Server thread/INFO]: [Mythic] Reloading plugin...
[11:09:44] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[11:09:44] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[11:09:44] [Server thread/INFO]: [MythicMobs] Loading Packs...
[11:09:45] [Server thread/INFO]: [MythicMobs] Loading Items...
[11:09:45] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[11:09:45] [Server thread/INFO]: [MythicMobs] Loading Skills...
[11:09:45] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[11:09:45] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[11:09:45] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[11:09:45] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic randomskill
[11:09:45] [Server thread/WARN]: [MythicMobs] --| Skill: random_stun_sound | File: C:\Users\Administrator\Desktop\CrownCraft 0.2\plugins\MythicMobs\skills\littleroom\kriger.yml
[11:09:45] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill random_stun04_sound
[11:09:45] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: randomskill{skills=random_stun01_sound,random_stun02_sound,random_stun03_sound,random_stun04_sound}
[11:09:45] [Server thread/INFO]: [MythicMobs] ✓ Loaded 52 mobs.
[11:09:45] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[11:09:45] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[11:09:45] [Server thread/INFO]: [MythicMobs] ✓ Loaded 279 skills.
[11:09:45] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[11:09:45] [Server thread/INFO]: [MythicMobs] ✓ Loaded 23 mythic items.
[11:09:45] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[11:09:45] [Server thread/INFO]: [MythicMobs] ✓ Loaded 5 mob spawners.
[11:09:45] [Server thread/WARN]: [MMOCore] Could not load language entry 'gold-pouch-ui-name': Entry not found
[11:09:45] [Server thread/WARN]: [MMOCore] Could not load message 'guild-is-full': Translation not found
[11:09:45] [Server thread/WARN]: [MMOCore] Could not load message 'guild-no-pending-invite': Translation not found
[11:09:45] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-invalid-chars': Translation not found
[11:09:45] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-invalid-length': Translation not found
[11:09:45] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-already-exists': Translation not found
[11:09:45] [Server thread/WARN]: [MMOCore] Could not load message 'quest-profession-level-restriction': Translation not found
[11:09:45] [Server thread/WARN]: [MMOCore] Could not load message 'friend-no-pending-invite': Translation not found
[11:09:45] [Server thread/WARN]: [MMOCore] Could not load message 'friend-request-denied': Translation not found
[11:09:45] [Server thread/WARN]: [MMOCore] Could not load message 'friend-request-denied-creator': Translation not found
[11:09:45] [Server thread/WARN]: [MMOCore] Could not load message 'party-created': Translation not found
[11:09:45] [Server thread/WARN]: [MMOCore] Could not load message 'party-no-pending-invite': Translation not found
[11:09:45] [Server thread/WARN]: [MMOCore] Could not load message 'party-leave': Translation not found
[11:09:45] [Server thread/WARN]: [MMOCore] Could not load message 'party-kicked-from': Translation not found
[11:09:45] [Server thread/WARN]: [MMOCore] Could not load message 'waypoint-tp-done': Translation not found
[11:09:45] [Server thread/WARN]: [MMOCore] Could not load message 'skill-unbound-from-slot': Translation not found
[11:09:45] [Server thread/WARN]: [MMOCore] Could not load message 'skill-bound-to-slot': Translation not found
[11:09:45] [Server thread/WARN]: [MMOCore] Could not load message 'skill-ui-focus': Translation not found
[11:09:45] [Server thread/WARN]: [MMOCore] Could not load message 'no-class-skill-tree': Translation not found
[11:09:45] [Server thread/WARN]: [MMOCore] Could not load message 'skill-tree-switch': Translation not found
[11:09:45] [Server thread/WARN]: [MMOCore] Could not load message 'close-loot-chest': Translation not found
[11:09:46] [Server thread/WARN]: [MMOCore] Could not load quest from file 'adv-begins.yml': Could not find world world
[11:09:46] [Server thread/WARN]: [MMOCore] Could not load quest from file 'tutorial.yml': Could not find world world
[11:09:46] [Server thread/WARN]: [MMOCore] Could not load loot chest region 'sample-region' from file 'default_loot_chests.yml': Could not find world 'world_name_here'
[11:09:46] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn' from file 'default_waypoints.yml': Could not find world with name 'world'
[11:09:46] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn1' from file 'default_waypoints.yml': Could not find world with name 'world'
[11:09:46] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn2' from file 'default_waypoints.yml': Could not find world with name 'world'
[11:09:46] [Server thread/INFO]: [Mythic] Mythic has finished reloading!
[11:09:46] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[11:09:47] [Server thread/INFO]: _SomsriX2 issued server command: /iazip
[11:09:47] [Server thread/INFO]: ItemsAdder) InteractiveChat detected, disabling `cache_font_images_and_effects_replacements`.
[11:09:47] [Server thread/WARN]: ItemsAdder) Using default server address: . Consider setting it in the `config.yml`
[11:09:47] [Server thread/WARN]: ItemsAdder) Using default server port: 25565. Consider setting it in the `config.yml`
[11:09:47] [pool-68-thread-1/INFO]: ItemsAdder) [Host] Stopped self-host webserver on port: 8810
[11:09:47] [Server thread/INFO]: ItemsAdder) [Host] Started self-host webserver on port: 8810
[11:09:47] [Server thread/INFO]: ItemsAdder) [SelfHost] Rate limiter: max 3 requests / 2s.
[11:09:47] [Server thread/INFO]: ItemsAdder) [SelfHost] Clients exceeding 5 times will be blocked for 30m.
[11:09:48] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[11:09:48] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[11:09:48] [Server thread/WARN]: ItemsAdder) Setting player resourcepack status to installed because the plugin was reloaded.
[11:09:48] [Craft Scheduler Thread - 812 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded 26 items
[11:09:48] [Craft Scheduler Thread - 812 - ItemsAdder/INFO]: ItemsAdder) Used Blocks IDs:
[11:09:48] [Craft Scheduler Thread - 812 - ItemsAdder/INFO]: ItemsAdder)  - REAL 0/188
[11:09:48] [Craft Scheduler Thread - 812 - ItemsAdder/INFO]: ItemsAdder)  - REAL_NOTE 0/750
[11:09:48] [Craft Scheduler Thread - 812 - ItemsAdder/INFO]: ItemsAdder)  - REAL_TRANSPARENT 0/63
[11:09:48] [Craft Scheduler Thread - 812 - ItemsAdder/INFO]: ItemsAdder) Used Font Images: 27/6608
[11:09:48] [Craft Scheduler Thread - 812 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded 2 categories
[11:09:48] [Craft Scheduler Thread - 812 - ItemsAdder/INFO]: ItemsAdder) [Content] Loaded successfully in 587ms
[11:09:48] [Craft Scheduler Thread - 812 - ItemsAdder/INFO]: ItemsAdder)  
[11:09:48] [Craft Scheduler Thread - 812 - ItemsAdder/INFO]: ItemsAdder)  
[11:09:48] [Craft Scheduler Thread - 812 - ItemsAdder/INFO]: ItemsAdder) [Pack] Started generation
[11:09:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[11:09:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[11:09:48] [Server thread/ERROR]: ItemsAdder) Failed to save Citizens NPCs. Try to update to the latest version.
[11:09:48] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.reflect.Method.invoke(Object, Object[])" because "<local2>" is null
[11:09:48] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.saveAll(SourceFile:194)
[11:09:48] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.saveAll(SourceFile:177)
[11:09:48] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.reload(SourceFile:92)
[11:09:48] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.ec.a(SourceFile:476)
[11:09:48] [Server thread/WARN]:     at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
[11:09:48] [Server thread/WARN]:     at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71)
[11:09:48] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54)
[11:09:48] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131)
[11:09:48] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628)
[11:09:48] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.ave.a(SourceFile:72)
[11:09:48] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.a.e(SourceFile:1077)
[11:09:48] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.atb.g(SourceFile:144)
[11:09:48] [Server thread/WARN]:     at ItemsAdder_4.0.15.jar//itemsadder.m.a.a(SourceFile:1075)
[11:09:48] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[11:09:48] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[11:09:48] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1663)
[11:09:48] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1531)
[11:09:48] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1253)
[11:09:48] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[11:09:48] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[11:09:48] [Server thread/INFO]: [Mythic] Reloading plugin...
[11:09:48] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[11:09:48] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[11:09:48] [Server thread/INFO]: [MythicMobs] Loading Packs...
[11:09:49] [Craft Scheduler Thread - 812 - ItemsAdder/WARN]: ItemsAdder) Duplicate CustomModelData 1 for item 'ink_sac'. File: contents/littleroom_wendigo/resourcepack/assets/minecraft/models/item/ink_sac.json
[11:09:49] [Server thread/INFO]: [MythicMobs] Loading Items...
[11:09:49] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[11:09:49] [Server thread/INFO]: [MythicMobs] Loading Skills...
[11:09:49] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[11:09:49] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[11:09:49] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[11:09:49] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic randomskill
[11:09:49] [Server thread/WARN]: [MythicMobs] --| Skill: random_stun_sound | File: C:\Users\Administrator\Desktop\CrownCraft 0.2\plugins\MythicMobs\skills\littleroom\kriger.yml
[11:09:49] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill random_stun04_sound
[11:09:49] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: randomskill{skills=random_stun01_sound,random_stun02_sound,random_stun03_sound,random_stun04_sound}
[11:09:49] [Server thread/INFO]: [MythicMobs] ✓ Loaded 52 mobs.
[11:09:49] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[11:09:49] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[11:09:49] [Server thread/INFO]: [MythicMobs] ✓ Loaded 279 skills.
[11:09:49] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[11:09:49] [Server thread/INFO]: [MythicMobs] ✓ Loaded 23 mythic items.
[11:09:49] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[11:09:49] [Server thread/INFO]: [MythicMobs] ✓ Loaded 5 mob spawners.
[11:09:49] [Server thread/WARN]: [MMOCore] Could not load language entry 'gold-pouch-ui-name': Entry not found
[11:09:49] [Server thread/WARN]: [MMOCore] Could not load message 'guild-is-full': Translation not found
[11:09:49] [Server thread/WARN]: [MMOCore] Could not load message 'guild-no-pending-invite': Translation not found
[11:09:49] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-invalid-chars': Translation not found
[11:09:49] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-invalid-length': Translation not found
[11:09:49] [Server thread/WARN]: [MMOCore] Could not load message 'guild-fail-creation-already-exists': Translation not found
[11:09:49] [Server thread/WARN]: [MMOCore] Could not load message 'quest-profession-level-restriction': Translation not found
[11:09:49] [Server thread/WARN]: [MMOCore] Could not load message 'friend-no-pending-invite': Translation not found
[11:09:49] [Server thread/WARN]: [MMOCore] Could not load message 'friend-request-denied': Translation not found
[11:09:49] [Server thread/WARN]: [MMOCore] Could not load message 'friend-request-denied-creator': Translation not found
[11:09:49] [Server thread/WARN]: [MMOCore] Could not load message 'party-created': Translation not found
[11:09:49] [Server thread/WARN]: [MMOCore] Could not load message 'party-no-pending-invite': Translation not found
[11:09:49] [Server thread/WARN]: [MMOCore] Could not load message 'party-leave': Translation not found
[11:09:49] [Server thread/WARN]: [MMOCore] Could not load message 'party-kicked-from': Translation not found
[11:09:49] [Server thread/WARN]: [MMOCore] Could not load message 'waypoint-tp-done': Translation not found
[11:09:49] [Server thread/WARN]: [MMOCore] Could not load message 'skill-unbound-from-slot': Translation not found
[11:09:49] [Server thread/WARN]: [MMOCore] Could not load message 'skill-bound-to-slot': Translation not found
[11:09:49] [Server thread/WARN]: [MMOCore] Could not load message 'skill-ui-focus': Translation not found
[11:09:49] [Server thread/WARN]: [MMOCore] Could not load message 'no-class-skill-tree': Translation not found
[11:09:49] [Server thread/WARN]: [MMOCore] Could not load message 'skill-tree-switch': Translation not found
[11:09:49] [Server thread/WARN]: [MMOCore] Could not load message 'close-loot-chest': Translation not found
[11:09:50] [Craft Scheduler Thread - 812 - ItemsAdder/INFO]: ItemsAdder)  
[11:09:50] [Craft Scheduler Thread - 812 - ItemsAdder/INFO]: ItemsAdder) [Pack] Generated resourcepack assets.
[11:09:50] [Server thread/WARN]: [MMOCore] Could not load quest from file 'adv-begins.yml': Could not find world world
[11:09:50] [Server thread/WARN]: [MMOCore] Could not load quest from file 'tutorial.yml': Could not find world world
[11:09:50] [Server thread/WARN]: [MMOCore] Could not load loot chest region 'sample-region' from file 'default_loot_chests.yml': Could not find world 'world_name_here'
[11:09:50] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn' from file 'default_waypoints.yml': Could not find world with name 'world'
[11:09:50] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn1' from file 'default_waypoints.yml': Could not find world with name 'world'
[11:09:50] [Server thread/WARN]: [MMOCore] Could not load waypoint 'spawn2' from file 'default_waypoints.yml': Could not find world with name 'world'
[11:09:50] [Server thread/INFO]: [Mythic] Mythic has finished reloading!
[11:09:50] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[11:09:50] [Craft Scheduler Thread - 734 - ItemsAdder/INFO]: ItemsAdder) [Pack] Compressing resource_pack ... 
[11:09:53] [Craft Scheduler Thread - 734 - ItemsAdder/INFO]: ItemsAdder) [Pack] Compressed in 3652ms
[11:09:53] [Craft Scheduler Thread - 734 - ItemsAdder/INFO]: ItemsAdder) [!] NOT protected from unzip. Consider enabling protections in config.yml
[11:09:53] [Craft Scheduler Thread - 734 - ItemsAdder/INFO]: ItemsAdder) [Pack] Sent to 3 players
[11:10:34] [Server thread/INFO]: [MMOCore] Autosaving 3 player datas, might take a while...
[11:11:15] [Server thread/INFO]: [_SomsriX2: Set own game mode to Spectator Mode]
[11:11:33] [Server thread/INFO]: [_SomsriX2: Set own game mode to Creative Mode]
[11:11:34] [Server thread/INFO]: [CHAT GAMES] A(n) FILLOUT chat game has started in the server!
[11:12:06] [Server thread/INFO]: __DaWae__ issued server command: //set prismarine
[11:12:13] [Server thread/INFO]: __DaWae__ issued server command: //set prismarine_bricks
[11:12:29] [Server thread/INFO]: __DaWae__ issued server command: //set prismarine
[11:12:37] [Server thread/INFO]: __DaWae__ issued server command: //set prismarine
[11:12:49] [Server thread/INFO]: [_SomsriX2: Set own game mode to Spectator Mode]
[11:12:55] [Server thread/INFO]: __DaWae__ issued server command: //set prismarine
[11:12:55] [Server thread/INFO]: [_SomsriX2: Set own game mode to Creative Mode]
[11:13:01] [Server thread/INFO]: __DaWae__ issued server command: //set prismarine_bricks
[11:13:03] [Server thread/INFO]: __DaWae__ issued server command: //set prismarine_bricks
[11:13:09] [Server thread/INFO]: __DaWae__ issued server command: //set prismarine_bricks
[11:13:13] [Server thread/INFO]: __DaWae__ issued server command: //set prismarine_bricks
[11:13:17] [Server thread/INFO]: __DaWae__ issued server command: //set prismarine
[11:13:35] [Server thread/INFO]: __DaWae__ issued server command: /spectator
[11:13:35] [Server thread/INFO]: [_SomsriX2: Set own game mode to Spectator Mode]
[11:13:42] [Server thread/INFO]: [_SomsriX2: Set own game mode to Survival Mode]
[11:13:44] [Server thread/INFO]: [_SomsriX2: Set own game mode to Creative Mode]
[11:13:47] [Server thread/INFO]: __DaWae__ issued server command: /spectator 1
[11:14:01] [Server thread/INFO]: __DaWae__ issued server command: /spectator
[11:14:07] [Server thread/INFO]: __DaWae__ issued server command: /spectator 1
[11:14:16] [Server thread/INFO]: __DaWae__ issued server command: /spectator
[11:14:19] [Server thread/INFO]: __DaWae__ issued server command: /spectator 1
[11:14:26] [Server thread/INFO]: __DaWae__ issued server command: //copy
[11:14:38] [Server thread/INFO]: __DaWae__ issued server command: //paste
[11:14:43] [Server thread/INFO]: __DaWae__ issued server command: /undo
[11:14:49] [Server thread/INFO]: __DaWae__ issued server command: //paste
[11:14:57] [Server thread/INFO]: __DaWae__ issued server command: /undo
[11:15:01] [Server thread/INFO]: __DaWae__ issued server command: //rotate
[11:15:05] [Server thread/INFO]: __DaWae__ issued server command: //rotate 180
[11:15:09] [Server thread/INFO]: __DaWae__ issued server command: //paste
[11:15:12] [Server thread/INFO]: __DaWae__ issued server command: /undo
[11:15:16] [Server thread/INFO]: __DaWae__ issued server command: //paste
[11:15:31] [Server thread/INFO]: __DaWae__ issued server command: /spectator
[11:15:33] [Server thread/INFO]: [_SomsriX2: Set own game mode to Survival Mode]
[11:15:34] [Server thread/INFO]: __DaWae__ issued server command: //paste
[11:15:36] [Server thread/INFO]: [_SomsriX2: Set own game mode to Creative Mode]
[11:15:37] [Server thread/INFO]: __DaWae__ issued server command: /undo
[11:15:43] [Server thread/INFO]: __DaWae__ issued server command: /spectator 1
[11:16:01] [Server thread/INFO]: _SomsriX2 issued server command: /undo
[11:16:04] [Server thread/INFO]: __DaWae__ issued server command: //set prismarine
[11:16:11] [Craft Scheduler Thread - 910 - InteractiveChat/INFO]: [Not Secure] [11:16] ❖ _DaWae_ ➠ .//brush unbind
[11:16:19] [Server thread/INFO]: _SomsriX2 issued server command: //brush unbimd
[11:16:22] [Server thread/INFO]: _SomsriX2 issued server command: //brush unbind
[11:16:33] [Server thread/INFO]: _SomsriX2 issued server command: /tp __DaWae__
[11:16:47] [Server thread/INFO]: __DaWae__ issued server command: //set water
[11:17:35] [Server thread/INFO]: __DaWae__ issued server command: //set water
[11:17:54] [Server thread/INFO]: __DaWae__ issued server command: //set water
[11:18:09] [Server thread/INFO]: __DaWae__ issued server command: //set quartz_block
[11:18:12] [Server thread/INFO]: [_SomsriX2: Set own game mode to Survival Mode]
[11:18:18] [Server thread/INFO]: [_SomsriX2: Set own game mode to Spectator Mode]
[11:18:22] [Server thread/INFO]: __DaWae__ issued server command: /undo
[11:18:25] [Server thread/INFO]: [_SomsriX2: Set own game mode to Survival Mode]
[11:18:29] [Server thread/INFO]: __DaWae__ issued server command: /spectator
[11:18:30] [Server thread/INFO]: [_SomsriX2: Set own game mode to Spectator Mode]
[11:18:34] [Server thread/INFO]: [CHAT GAMES] A(n) REACTION chat game has started in the server!
[11:18:42] [Server thread/INFO]: [_SomsriX2: Set own game mode to Creative Mode]
[11:19:10] [Server thread/INFO]: __DaWae__ issued server command: /spectator 1
[11:19:32] [Server thread/INFO]: __DaWae__ issued server command: /spectator
[11:19:35] [Server thread/INFO]: __DaWae__ issued server command: /spectator 1
[11:19:40] [Server thread/INFO]: __DaWae__ issued server command: //copy
[11:19:44] [Server thread/INFO]: __DaWae__ issued server command: //rotate
[11:19:46] [Server thread/INFO]: __DaWae__ issued server command: //rotate 180
[11:19:57] [Server thread/INFO]: __DaWae__ issued server command: //paste
[11:20:29] [Server thread/INFO]: [_SomsriX2: Set own game mode to Spectator Mode]
[11:20:32] [Server thread/INFO]: [_SomsriX2: Set own game mode to Creative Mode]
[11:20:34] [Server thread/INFO]: __DaWae__ issued server command: /spectator
[11:20:41] [Server thread/INFO]: __DaWae__ issued server command: /spectator 1
[11:20:47] [Server thread/INFO]: [_SomsriX2: Set own game mode to Spectator Mode]
[11:20:50] [Server thread/INFO]: [_SomsriX2: Set own game mode to Creative Mode]
[11:20:53] [Server thread/INFO]: [_SomsriX2: Set own game mode to Spectator Mode]
[11:20:55] [Server thread/INFO]: [_SomsriX2: Set own game mode to Creative Mode]
[11:21:13] [Server thread/INFO]: __DaWae__ issued server command: //set water
[11:21:30] [Server thread/INFO]: __DaWae__ issued server command: /spectator
[11:21:33] [Server thread/INFO]: [_SomsriX2: Set own game mode to Spectator Mode]
[11:21:37] [Server thread/INFO]: __DaWae__ issued server command: /spectator 1
[11:21:42] [Server thread/INFO]: __DaWae__ issued server command: /spectator
[11:21:46] [Server thread/INFO]: [_SomsriX2: Set own game mode to Creative Mode]
[11:21:47] [Server thread/INFO]: __DaWae__ issued server command: //set water
[11:21:49] [Server thread/INFO]: [_SomsriX2: Set own game mode to Spectator Mode]
[11:21:51] [Server thread/INFO]: [_SomsriX2: Set own game mode to Creative Mode]
[11:21:51] [Server thread/INFO]: __DaWae__ issued server command: /spectator 1
[11:22:23] [Server thread/INFO]: __DaWae__ issued server command: /gamemode 1
[11:22:27] [Server thread/INFO]: __DaWae__ issued server command: //walls
[11:22:31] [Server thread/INFO]: __DaWae__ issued server command: //wand
[11:22:37] [Server thread/INFO]: __DaWae__ issued server command: /spectator
[11:22:39] [Server thread/INFO]: __DaWae__ issued server command: /spectator 1
[11:22:46] [Server thread/INFO]: __DaWae__ issued server command: //set quartz_block
[11:22:47] [Server thread/INFO]: [_SomsriX2: Set own game mode to Spectator Mode]
[11:22:49] [Server thread/INFO]: [_SomsriX2: Set own game mode to Creative Mode]
[11:22:55] [Server thread/INFO]: __DaWae__ issued server command: //set sand
[11:23:04] [Server thread/INFO]: [_SomsriX2: Set own game mode to Spectator Mode]
[11:23:07] [Server thread/INFO]: [_SomsriX2: Set own game mode to Creative Mode]
[11:23:21] [Server thread/INFO]: [_SomsriX2: Set own game mode to Spectator Mode]
[11:23:24] [Server thread/INFO]: [_SomsriX2: Set own game mode to Creative Mode]
[11:23:48] [Server thread/INFO]: __DaWae__ issued server command: /spectator
[11:23:54] [Server thread/INFO]: __DaWae__ issued server command: /spectator 1
[11:24:22] [Server thread/INFO]: __DaWae__ issued server command: /spectator
[11:24:34] [Server thread/INFO]: __DaWae__ issued server command: /spectator 1
[11:24:40] [Server thread/INFO]: __DaWae__ issued server command: /spectator
[11:24:43] [Server thread/INFO]: __DaWae__ issued server command: /spectator 1
[11:25:16] [Server thread/INFO]: __DaWae__ issued server command: /spectator
[11:25:18] [Server thread/INFO]: __DaWae__ issued server command: /spectator 1
[11:25:26] [Craft Scheduler Thread - 907 - InteractiveChat/INFO]: [Not Secure] [11:25] ❖ _DaWae_ ➠ axolotl
[11:25:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNREVERSE chat game has started in the server!
[11:25:42] [Server thread/INFO]: _SomsriX2 issued server command: /hb
[11:26:09] [Craft Scheduler Thread - 939 - InteractiveChat/INFO]: [Not Secure] [11:26] ❖ _DaWae_ ➠ tropical
[11:26:10] [Server thread/INFO]: _SomsriX2 issued server command: /hb
[11:26:30] [Server thread/INFO]: __DaWae__ issued server command: //set quartz_block
[11:26:47] [Server thread/INFO]: __DaWae__ issued server command: //set quartz_block
[11:27:06] [Server thread/INFO]: __DaWae__ issued server command: //set red_carpet
[11:27:21] [Server thread/INFO]: __DaWae__ issued server command: //set red_carpet
[11:27:28] [Server thread/INFO]: __DaWae__ issued server command: //set red_carpet
[11:27:32] [Server thread/INFO]: __DaWae__ issued server command: //set red_carpet
[11:27:51] [Server thread/INFO]: _SomsriX2 issued server command: /spectate
[11:30:36] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%,stone_bricks,20%,quartz_bricks,20%smooth_quartz
[11:30:42] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%,stone_bricks,20%,quartz_bricks,20%smooth_quartz
[11:30:50] [Server thread/INFO]: __DaWae__ issued server command: //set dirt
[11:31:01] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%,stone_bricks,20%,20%quartz_bricks,20%smooth_quartz
[11:31:16] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%,stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:31:30] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:31:38] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:31:39] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:31:41] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:31:45] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:31:46] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:31:47] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:31:55] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:31:56] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:31:58] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:31:59] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:32:00] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:32:01] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:32:02] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:32:05] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:32:06] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:32:06] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:32:07] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:32:08] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:32:08] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:32:09] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:32:09] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:32:10] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:32:10] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:32:11] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:32:12] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:32:12] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:32:13] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:32:14] [Server thread/INFO]: __DaWae__ issued server command: //set 20%andesite,20%mossy_stone_bricks,20%stone_bricks,20%quartz_bricks,20%smooth_quartz
[11:32:34] [Server thread/INFO]: [CHAT GAMES] A(n) MATH chat game has started in the server!
[11:35:15] [Server thread/INFO]: __DaWae__ issued server command: //set quartz_block
[11:38:02] [Server thread/INFO]: _SomsriX2 issued server command: /frame giveinvisibleframe glowing
[11:38:11] [Server thread/INFO]: __DaWae__ issued server command: /spectator
[11:38:14] [Server thread/INFO]: __DaWae__ issued server command: /spectator 1
[11:38:46] [Server thread/INFO]: __DaWae__ issued server command: /spectator
[11:38:54] [Server thread/INFO]: __DaWae__ issued server command: /spectator 1
[11:39:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNSCRAMBLE chat game has started in the server!
[11:39:34] [Server thread/INFO]: _SomsriX2 issued server command: /frame create testPNG https://media.discordapp.net/attachments/1438873090854617128/1439434210241937519/image.png?ex=691a8113&is=69192f93&hm=ec745ec75e939b4c199d4fa474315f051b44b5a95a75dbd893a53545743395be&=&format=webp&quality=lossless&width=1644&height=86
[11:40:13] [Server thread/INFO]: _SomsriX2 issued server command: /frame create testPng https://shorturl.at/abqHM 9 6 combined
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]: java.io.IOException: Unable to download image. Make sure you are using a direct link to the image, they usually ends with a file extension like ".png". Dispatcher: _SomsriX2 URL: https://shorturl.at/abqHM
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at ImageFrame-1.8.7.0.jar//com.loohp.imageframe.Commands.lambda$onCommand$6(Commands.java:272)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]: Caused by: java.util.concurrent.ExecutionException: java.util.concurrent.ExecutionException: java.io.IOException: Server returned HTTP response code: 403 for URL: https://shorturl.at/abqHM
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2073)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at ImageFrame-1.8.7.0.jar//com.loohp.imageframe.Commands.lambda$onCommand$6(Commands.java:232)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     ... 6 more
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]: Caused by: java.util.concurrent.ExecutionException: java.io.IOException: Server returned HTTP response code: 403 for URL: https://shorturl.at/abqHM
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2073)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at ImageFrame-1.8.7.0.jar//com.loohp.imageframe.Commands.lambda$onCommand$3(Commands.java:229)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at ImageFrame-1.8.7.0.jar//com.loohp.imageframe.objectholders.ImageMapCreationTask.run(ImageMapCreationTask.java:106)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:572)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:317)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     ... 3 more
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]: Caused by: java.io.IOException: Server returned HTTP response code: 403 for URL: https://shorturl.at/abqHM
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:2014)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1615)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:223)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at ImageFrame-1.8.7.0.jar//com.loohp.imageframe.utils.HTTPRequestUtils.getInputStream(HTTPRequestUtils.java:69)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at ImageFrame-1.8.7.0.jar//com.loohp.imageframe.utils.HTTPRequestUtils.download(HTTPRequestUtils.java:73)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at ImageFrame-1.8.7.0.jar//com.loohp.imageframe.objectholders.URLStaticImageMap.update(URLStaticImageMap.java:235)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at ImageFrame-1.8.7.0.jar//com.loohp.imageframe.objectholders.URLStaticImageMap.lambda$create$2(URLStaticImageMap.java:93)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at ImageFrame-1.8.7.0.jar//com.loohp.imageframe.utils.FutureUtils.lambda$callAsyncMethod$1(FutureUtils.java:47)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[11:40:13] [Craft Scheduler Thread - 982 - ImageFrame/WARN]:     ... 3 more
[11:40:34] [Server thread/INFO]: [MMOCore] Autosaving 3 player datas, might take a while...
[11:40:37] [Server thread/INFO]: This command can only be ran by players!
[11:40:43] [Server thread/INFO]: _SomsriX2 issued server command: /frame create testPng https://shorturl.at/abqHM 9 6 combined
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]: java.io.IOException: Unable to download image. Make sure you are using a direct link to the image, they usually ends with a file extension like ".png". Dispatcher: _SomsriX2 URL: https://shorturl.at/abqHM
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at ImageFrame-1.8.7.0.jar//com.loohp.imageframe.Commands.lambda$onCommand$6(Commands.java:272)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]: Caused by: java.util.concurrent.ExecutionException: java.util.concurrent.ExecutionException: java.io.IOException: Server returned HTTP response code: 403 for URL: https://shorturl.at/abqHM
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2073)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at ImageFrame-1.8.7.0.jar//com.loohp.imageframe.Commands.lambda$onCommand$6(Commands.java:232)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     ... 6 more
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]: Caused by: java.util.concurrent.ExecutionException: java.io.IOException: Server returned HTTP response code: 403 for URL: https://shorturl.at/abqHM
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2073)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at ImageFrame-1.8.7.0.jar//com.loohp.imageframe.Commands.lambda$onCommand$3(Commands.java:229)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at ImageFrame-1.8.7.0.jar//com.loohp.imageframe.objectholders.ImageMapCreationTask.run(ImageMapCreationTask.java:106)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:572)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:317)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     ... 3 more
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]: Caused by: java.io.IOException: Server returned HTTP response code: 403 for URL: https://shorturl.at/abqHM
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:2014)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1615)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:223)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at ImageFrame-1.8.7.0.jar//com.loohp.imageframe.utils.HTTPRequestUtils.getInputStream(HTTPRequestUtils.java:69)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at ImageFrame-1.8.7.0.jar//com.loohp.imageframe.utils.HTTPRequestUtils.download(HTTPRequestUtils.java:73)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at ImageFrame-1.8.7.0.jar//com.loohp.imageframe.objectholders.URLStaticImageMap.update(URLStaticImageMap.java:235)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at ImageFrame-1.8.7.0.jar//com.loohp.imageframe.objectholders.URLStaticImageMap.lambda$create$2(URLStaticImageMap.java:93)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at ImageFrame-1.8.7.0.jar//com.loohp.imageframe.utils.FutureUtils.lambda$callAsyncMethod$1(FutureUtils.java:47)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[11:40:43] [Craft Scheduler Thread - 983 - ImageFrame/WARN]:     ... 3 more
[11:41:26] [Server thread/INFO]: _SomsriX2 issued server command: /frame create testPng https://media.discordapp.net/attachments/1438873090854617128/1439434210241937519/image.png?ex=691a8113&is=69192f93&hm=ec745ec75e939b4c199d4fa474315f051b44b5a95a75dbd893a53545743395be&=&format=webp&quality=lossless&width=1 9 6 combined
[11:46:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNSCRAMBLE chat game has started in the server!
[11:51:05] [Server thread/INFO]: _SugarRune issued server command: /frame create CrateSign https://tinyurl.com/bdey5ata 9 6 combined
[11:53:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNREVERSE chat game has started in the server!
[11:55:49] [Server thread/INFO]: __DaWae__ lost connection: Disconnected
[11:55:50] [Server thread/INFO]: [-] __DaWae__
[11:55:56] [User Authenticator #2/INFO]: UUID of player TKpobparit is 9671f71b-0258-318b-90df-b3b4fd6edd9f
[11:55:58] [Server thread/INFO]: TKpobparit[/         ip          ] logged in with entity id 179325 at ([CrownValley]-66.54288141512649, 71.12055655878396, -863.3436704359042)
[11:55:59] [Server thread/INFO]: [+] TKpobparit
[11:56:10] [User Authenticator #2/INFO]: UUID of player __DaWae__ is d474331a-2999-3020-bf99-41fda008831e
[11:56:12] [Server thread/INFO]: __DaWae__[/          ip           ] logged in with entity id 179327 at ([CrownValley]-71.00396145737605, 74.07918388864279, -872.4619752334547)
[11:56:12] [Server thread/INFO]: [+] __DaWae__
[11:56:53] [Server thread/INFO]: TKpobparit issued server command: /fly
[11:58:36] [Server thread/INFO]: TKpobparit was slain by Cute Slime
[11:59:13] [Server thread/INFO]: __DaWae__ lost connection: Disconnected
[11:59:13] [Server thread/INFO]: [-] __DaWae__
[11:59:45] [Server thread/INFO]: _SomsriX2 issued server command: /rg create spawnSpeed
[12:00:00] [User Authenticator #3/INFO]: UUID of player __DaWae__ is d474331a-2999-3020-bf99-41fda008831e
[12:00:02] [Server thread/INFO]: __DaWae__[/          ip           ] logged in with entity id 211141 at ([CrownValley]-61.62492959644381, 72.28381819887727, -862.7847318625818)
[12:00:02] [Server thread/INFO]: [+] __DaWae__
[12:00:07] [WorldGuard Region I/O/INFO]: [WorldGuard] Region data changes made in 'CrownValley' have been background saved
[12:00:21] [Server thread/INFO]: __DaWae__ lost connection: Disconnected
[12:00:21] [Server thread/INFO]: [-] __DaWae__
[12:00:31] [User Authenticator #3/INFO]: UUID of player __DaWae__ is d474331a-2999-3020-bf99-41fda008831e
[12:00:34] [Server thread/INFO]: __DaWae__[/          ip           ] logged in with entity id 211142 at ([CrownValley]-69.7235963214737, 68.0625, -903.4219492343394)
[12:00:34] [Server thread/INFO]: [+] __DaWae__
[12:00:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNSCRAMBLE chat game has started in the server!
[12:00:37] [Server thread/INFO]: __DaWae__ lost connection: Disconnected
[12:00:37] [Server thread/INFO]: [-] __DaWae__
[12:02:10] [User Authenticator #4/INFO]: UUID of player __DaWae__ is d474331a-2999-3020-bf99-41fda008831e
[12:02:13] [Server thread/INFO]: __DaWae__[/          ip           ] logged in with entity id 211143 at ([CrownValley]-69.7925866253843, 68.0625, -901.2682098077156)
[12:02:13] [Server thread/INFO]: [+] __DaWae__
[12:02:57] [Server thread/INFO]: __DaWae__ lost connection: Disconnected
[12:02:57] [Server thread/INFO]: [-] __DaWae__
[12:02:57] [Server thread/INFO]: _SomsriX2 issued server command: /skript reload speed_boost.sk
[12:03:07] [Server thread/INFO]: _SomsriX2 issued server command: /rg info
[12:03:15] [Server thread/INFO]: _SomsriX2 issued server command: /skript reload speed_boost.sk
[12:03:19] [Server thread/INFO]: _SomsriX2 issued server command: /rg tp -c -w "CrownValley" spawnspeed
[12:03:26] [Server thread/INFO]: [_SomsriX2: Set own game mode to Spectator Mode]
[12:03:30] [Server thread/INFO]: _SomsriX2 issued server command: /rg tp -c -w "CrownValley" spawnspeed
[12:03:40] [Server thread/INFO]: [_SomsriX2: Set own game mode to Creative Mode]
[12:03:49] [Server thread/INFO]: _SomsriX2 issued server command: /skript reload speed_boost.sk
[12:04:01] [User Authenticator #5/INFO]: UUID of player __DaWae__ is d474331a-2999-3020-bf99-41fda008831e
[12:04:04] [Server thread/INFO]: __DaWae__[/          ip           ] logged in with entity id 211144 at ([CrownValley]-69.2345086395893, 69.0625, -890.7705512745156)
[12:04:04] [Server thread/INFO]: [+] __DaWae__
[12:05:05] [Server thread/INFO]: __DaWae__ issued server command: /skins
[12:05:23] [Server thread/INFO]: __DaWae__ issued server command: /skins
[12:05:26] [Server thread/INFO]: _SomsriX2 issued server command: /skript reload speed_boost.sk
[12:05:33] [Server thread/INFO]: __DaWae__ issued server command: /skins
[12:05:47] [Server thread/INFO]: __DaWae__ issued server command: /skins
[12:05:53] [Server thread/INFO]: _SomsriX2 issued server command: /skript reload speed_boost.sk
[12:06:12] [Server thread/INFO]: TKpobparit issued server command: /feed
[12:06:24] [Server thread/INFO]: __DaWae__ issued server command: /skinsrestorer
[12:06:33] [Server thread/INFO]: _SomsriX2 issued server command: /skinsrestorer applyskin __DaWae__
[12:06:41] [Server thread/INFO]: __DaWae__ issued server command: /skinsrestorer:skin
[12:06:42] [Server thread/INFO]: __DaWae__ issued server command: /skinsrestorer:skins
[12:06:45] [Server thread/INFO]: _SugarRune issued server command: /tp __DaWae__
[12:06:45] [Server thread/WARN]: _SugarRune moved too quickly! -1.170634377959999,0.0,59.71862775578086
[12:06:45] [Server thread/WARN]: _SugarRune moved too quickly! -1.170634377959999,0.0,59.71862775578086
[12:06:47] [Server thread/INFO]: TKpobparit issued server command: /fly
[12:06:59] [Server thread/INFO]: __DaWae__ issued server command: /skins
[12:07:03] [Server thread/INFO]: _SomsriX2 issued server command: /skin
[12:07:08] [Server thread/INFO]: __DaWae__ issued server command: /skins
[12:07:20] [Server thread/INFO]: __DaWae__ lost connection: Disconnected
[12:07:20] [Server thread/INFO]: [-] __DaWae__
[12:07:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNSCRAMBLE chat game has started in the server!
[12:07:35] [User Authenticator #6/INFO]: UUID of player __DaWae__ is d474331a-2999-3020-bf99-41fda008831e
[12:07:38] [Server thread/INFO]: __DaWae__[/          ip           ] logged in with entity id 211146 at ([CrownValley]-69.81104693058846, 69.0, -813.6573835450891)
[12:07:38] [Server thread/INFO]: [+] __DaWae__
[12:07:43] [Server thread/INFO]: _SomsriX2 issued server command: /skinsrestorer applyskin __DaWae__
[12:07:46] [Server thread/INFO]: _SomsriX2 issued server command: /skript reload speed_boost.sk
[12:07:49] [Server thread/INFO]: __DaWae__ issued server command: /skinsrestorer:skinsrestorer
[12:07:55] [Server thread/INFO]: __DaWae__ issued server command: /sr reload
[12:08:01] [Server thread/INFO]: __DaWae__ issued server command: /skinsrestorer:sr
[12:08:05] [Server thread/INFO]: __DaWae__ issued server command: /skinsrestorer:sr reload
[12:08:12] [Server thread/INFO]: _SugarRune issued server command: /frame create CrateSign2 https://tinyurl.com/5f4en98n 9 6 combined
[12:08:15] [Server thread/INFO]: __DaWae__ issued server command: /skinsrestorer:sr dump
[12:08:29] [Server thread/INFO]: __DaWae__ issued server command: /skinsrestorer:skins
[12:08:34] [Server thread/INFO]: __DaWae__ issued server command: /skinsrestorer:skins
[12:08:46] [Server thread/INFO]: __DaWae__ issued server command: /gamemode 11
[12:08:48] [Server thread/INFO]: __DaWae__ issued server command: /gamemode 0
[12:08:54] [Server thread/INFO]: __DaWae__ issued server command: /gamemode 0
[12:08:57] [Server thread/INFO]: __DaWae__ issued server command: /gamemode 1
[12:10:34] [Server thread/INFO]: [MMOCore] Autosaving 4 player datas, might take a while...
[12:11:42] [Server thread/WARN]: TKpobparit moved wrongly!
[12:12:02] [Server thread/INFO]: _SugarRune issued server command: /tp __DaWae__
[12:12:02] [Server thread/WARN]: _SugarRune moved too quickly! -22.62130592692067,-28.0,-74.65178781837619
[12:13:47] [Server thread/INFO]: __DaWae__ issued server command: //set quartz_stairs
[12:14:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNREVERSE chat game has started in the server!
[12:15:42] [Server thread/INFO]: _SomsriX2 issued server command: /skinsrestorer applyskin __DaWae__
[12:15:44] [Server thread/INFO]: _SomsriX2 issued server command: /skript reload speed_boost.sk
[12:16:10] [Server thread/INFO]: _SomsriX2 issued server command: /skript reload speed_boost.sk
[12:16:58] [Server thread/INFO]: _SugarRune issued server command: /spawn
[12:16:58] [Server thread/WARN]: _SugarRune moved too quickly! -1.7603769267163045,0.0,-36.229273672759405
[12:17:05] [Server thread/INFO]: _SomsriX2 issued server command: /skript reload speed_boost.sk
[12:17:08] [Server thread/INFO]: _SomsriX2 issued server command: /wspeed 1
[12:17:20] [Server thread/INFO]: _SomsriX2 issued server command: /wspeed walk 1
[12:17:22] [Server thread/INFO]: _SugarRune issued server command: /spawn
[12:17:22] [Server thread/WARN]: _SugarRune moved too quickly! 0.06138465762433043,0.0,-38.92730130093946
[12:17:22] [Server thread/WARN]: _SugarRune moved too quickly! 0.06138465762433043,0.0,-38.92730130093946
[12:17:24] [Server thread/INFO]: TKpobparit issued server command: /feed
[12:17:44] [Server thread/INFO]: __DaWae__ issued server command: //set quartz_block
[12:17:52] [Server thread/INFO]: _SomsriX2 issued server command: /skript reload speed_boost.sk
[12:17:57] [Server thread/INFO]: _SugarRune issued server command: /spawn
[12:17:57] [Server thread/WARN]: _SugarRune moved too quickly! -0.2350192556559847,0.0,-31.006714091982076
[12:18:00] [Server thread/INFO]: [_SomsriX2: Set own game mode to Spectator Mode]
[12:18:05] [Server thread/INFO]: [_SomsriX2: Set own game mode to Survival Mode]
[12:18:12] [Server thread/INFO]: _SugarRune issued server command: /spawn
[12:18:41] [Server thread/INFO]: _SomsriX2 lost connection: Disconnected
[12:18:41] [Server thread/INFO]: [-] _SomsriX2
[12:18:42] [Server thread/INFO]: _SugarRune lost connection: Disconnected
[12:18:42] [Server thread/INFO]: [-] _SugarRune
[12:19:03] [Server thread/INFO]: __DaWae__ issued server command: //copy
[12:19:23] [Server thread/INFO]: __DaWae__ issued server command: //paste
[12:19:29] [Server thread/INFO]: __DaWae__ issued server command: /undo
[12:19:34] [Server thread/INFO]: __DaWae__ issued server command: //rotate 180
[12:19:36] [Server thread/INFO]: __DaWae__ issued server command: //paste
[12:21:28] [Server thread/INFO]: __DaWae__ issued server command: //set quartz_block
[12:21:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNSCRAMBLE chat game has started in the server!
[12:28:34] [Server thread/INFO]: [CHAT GAMES] A(n) RANDOM chat game has started in the server!
[12:35:34] [Server thread/INFO]: [CHAT GAMES] A(n) RANDOM chat game has started in the server!
[12:38:57] [Server thread/INFO]: __DaWae__ issued server command: //set air
[12:39:18] [Server thread/INFO]: __DaWae__ issued server command: //set stone
[12:39:22] [Server thread/INFO]: __DaWae__ issued server command: /undo
[12:39:28] [Server thread/INFO]: __DaWae__ issued server command: //set stone
[12:39:33] [Server thread/INFO]: __DaWae__ issued server command: //set stone
[12:40:07] [Server thread/INFO]: __DaWae__ issued server command: //set red_carpet
[12:40:34] [Server thread/INFO]: [MMOCore] Autosaving 2 player datas, might take a while...
[12:42:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNSCRAMBLE chat game has started in the server!
[12:46:16] [User Authenticator #7/INFO]: UUID of player _SugarRune is 1e0bf55c-c917-3481-be81-f75d2add183e
[12:46:19] [TAB Processing Thread/INFO]: [TAB] [WARN] Player _SugarRune's group (beginner) is not in sorting list! Sorting list: owner,manager,dev,admin,mod,helper,builder,king,duke,paladin,lord,knight,default. Player will be sorted on the bottom.
[12:46:19] [Server thread/INFO]: _SugarRune[/         ip         ] logged in with entity id 220989 at ([CrownValley]-68.78148422728303, 68.0625, -907.0769975914799)
[12:46:20] [Server thread/INFO]: [+] _SugarRune
[12:46:39] [Server thread/INFO]: [_SugarRune: Set own game mode to Creative Mode]
[12:47:53] [Server thread/INFO]: _SugarRune issued server command: /tp TKpobparit
[12:48:00] [Server thread/INFO]: TKpobparit issued server command: /feed
[12:49:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNREVERSE chat game has started in the server!
[12:56:34] [Server thread/INFO]: [CHAT GAMES] A(n) REACTION chat game has started in the server!
[12:57:24] [Server thread/INFO]: _SugarRune issued server command: /home starter
[12:57:33] [Server thread/INFO]: _SugarRune issued server command: /npc create Miora
[12:57:46] [Server thread/INFO]: _SugarRune issued server command: /npc remove Miora
[12:58:00] [Server thread/INFO]: TKpobparit issued server command: /tp _SugarRune
[13:03:34] [Server thread/INFO]: [CHAT GAMES] A(n) MATH chat game has started in the server!
[13:04:26] [Server thread/INFO]: _SugarRune issued server command: /npc create Xenos
[13:04:40] [Server thread/INFO]: _SugarRune issued server command: /npc remove --eid 1
[13:04:40] [Server thread/WARN]: java.lang.IllegalArgumentException: Invalid UUID string: 1
[13:04:40] [Server thread/WARN]:     at java.base/java.util.UUID.fromString1(UUID.java:282)
[13:04:40] [Server thread/WARN]:     at java.base/java.util.UUID.fromString(UUID.java:260)
[13:04:40] [Server thread/WARN]:     at Citizens-2.0.40-b3987.jar//net.citizensnpcs.api.command.CommandManager.executeCommand(CommandManager.java:210)
[13:04:40] [Server thread/WARN]:     at Citizens-2.0.40-b3987.jar//net.citizensnpcs.api.command.CommandManager.execute(CommandManager.java:112)
[13:04:40] [Server thread/WARN]:     at Citizens-2.0.40-b3987.jar//net.citizensnpcs.api.command.CommandManager.executeSafe(CommandManager.java:263)
[13:04:40] [Server thread/WARN]:     at Citizens-2.0.40-b3987.jar//net.citizensnpcs.Citizens.onCommand(Citizens.java:346)
[13:04:40] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[13:04:40] [Server thread/WARN]:     at io.papermc.paper.command.brigadier.bukkit.BukkitCommandNode$BukkitBrigCommand.run(BukkitCommandNode.java:83)
[13:04:40] [Server thread/WARN]:     at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73)
[13:04:40] [Server thread/WARN]:     at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:30)
[13:04:40] [Server thread/WARN]:     at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:13)
[13:04:40] [Server thread/WARN]:     at net.minecraft.commands.execution.UnboundEntryAction.lambda$bind$0(UnboundEntryAction.java:8)
[13:04:40] [Server thread/WARN]:     at net.minecraft.commands.execution.CommandQueueEntry.execute(CommandQueueEntry.java:5)
[13:04:40] [Server thread/WARN]:     at net.minecraft.commands.execution.ExecutionContext.runCommandQueue(ExecutionContext.java:105)
[13:04:40] [Server thread/WARN]:     at net.minecraft.commands.Commands.executeCommandInContext(Commands.java:451)
[13:04:40] [Server thread/WARN]:     at net.minecraft.commands.Commands.performCommand(Commands.java:357)
[13:04:40] [Server thread/WARN]:     at net.minecraft.commands.Commands.performCommand(Commands.java:345)
[13:04:40] [Server thread/WARN]:     at net.minecraft.server.network.ServerGamePacketListenerImpl.performUnsignedChatCommand(ServerGamePacketListenerImpl.java:2313)
[13:04:40] [Server thread/WARN]:     at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$12(ServerGamePacketListenerImpl.java:2286)
[13:04:40] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[13:04:40] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:155)
[13:04:40] [Server thread/WARN]:     at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24)
[13:04:40] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1450)
[13:04:40] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:176)
[13:04:40] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:129)
[13:04:40] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1430)
[13:04:40] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1424)
[13:04:40] [Server thread/WARN]:     at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:139)
[13:04:40] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1381)
[13:04:40] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1389)
[13:04:40] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1266)
[13:04:40] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310)
[13:04:40] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[13:04:43] [Server thread/INFO]: _SugarRune issued server command: /npc remove 1
[13:04:47] [Server thread/INFO]: TKpobparit issued server command: /tp _SugarRune
[13:04:47] [Server thread/WARN]: TKpobparit moved too quickly! 265.0405787610367,-3.3742597841870463,-185.65102103216714
[13:04:47] [Server thread/WARN]: TKpobparit moved too quickly! 265.0405787610367,-3.3742597841870463,-185.65102103216714
[13:04:47] [Server thread/WARN]: TKpobparit moved too quickly! 265.0405787610367,-3.3742597841870463,-185.65102103216714
[13:05:06] [Server thread/INFO]: _SugarRune issued server command: /npc create Rowan
[13:05:18] [Server thread/INFO]: _SugarRune issued server command: /npc create Miora
[13:05:26] [Server thread/INFO]: _SugarRune issued server command: /npc create Mistra
[13:06:59] [Server thread/INFO]: TKpobparit issued server command: /npc select
[13:08:07] [Server thread/INFO]: TKpobparit issued server command: /tp _SugarRune
[13:08:07] [Server thread/WARN]: TKpobparit moved too quickly! -93.9252187358184,1.0,13.697093623242267
[13:10:34] [Server thread/INFO]: [MMOCore] Autosaving 3 player datas, might take a while...
[13:10:34] [Server thread/INFO]: [CHAT GAMES] A(n) RANDOM chat game has started in the server!
[13:11:17] [Server thread/INFO]: TKpobparit issued server command: /feed
[13:17:34] [Server thread/INFO]: [CHAT GAMES] A(n) MATH chat game has started in the server!
[13:24:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNSCRAMBLE chat game has started in the server!
[13:26:28] [Server thread/INFO]: _SugarRune issued server command: /tp __DaWae__
[13:31:34] [Server thread/INFO]: [CHAT GAMES] A(n) MATH chat game has started in the server!
[13:38:34] [Server thread/INFO]: [CHAT GAMES] A(n) FILLOUT chat game has started in the server!
[13:40:34] [Server thread/INFO]: [MMOCore] Autosaving 3 player datas, might take a while...
[13:42:29] [Server thread/INFO]: __DaWae__ issued server command: /home
[13:42:35] [Server thread/INFO]: [__DaWae__: Set own game mode to Creative Mode]
[13:42:40] [Server thread/INFO]: __DaWae__ issued server command: /spawn
[13:42:44] [Server thread/INFO]: [__DaWae__: Set own game mode to Creative Mode]
[13:44:01] [Server thread/INFO]: _SugarRune issued server command: /tp __DaWae__
[13:44:01] [Server thread/WARN]: _SugarRune moved too quickly! 84.4857327121596,29.5,-34.89601178561054
[13:44:01] [Server thread/WARN]: _SugarRune moved too quickly! 84.4857327121596,29.5,-34.89601178561054
[13:44:09] [Server thread/INFO]: __DaWae__ issued server command: //set air
[13:44:43] [Server thread/INFO]: __DaWae__ issued server command: //pos2
[13:44:46] [Server thread/INFO]: __DaWae__ issued server command: //air
[13:44:52] [Server thread/INFO]: __DaWae__ issued server command: //pos1
[13:44:58] [Server thread/INFO]: __DaWae__ issued server command: //pos2
[13:45:00] [Server thread/INFO]: __DaWae__ issued server command: //set air
[13:45:34] [Server thread/INFO]: [CHAT GAMES] A(n) FILLOUT chat game has started in the server!
[13:46:54] [Server thread/INFO]: __DaWae__ issued server command: //set grass_block
[13:48:52] [Server thread/INFO]: _SugarRune issued server command: /tp __DaWae__
[13:50:33] [Server thread/INFO]: __DaWae__ issued server command: //pos2
[13:50:35] [Server thread/INFO]: __DaWae__ issued server command: //set air
[13:50:47] [Server thread/INFO]: __DaWae__ issued server command: //set air
[13:52:34] [Server thread/INFO]: [CHAT GAMES] A(n) RANDOM chat game has started in the server!
[13:53:00] [Server thread/INFO]: __DaWae__ issued server command: //copy
[13:53:08] [Server thread/INFO]: __DaWae__ issued server command: //paste
[13:53:12] [Server thread/INFO]: __DaWae__ issued server command: //paste
[13:53:15] [Server thread/INFO]: __DaWae__ issued server command: //paste
[13:53:31] [Server thread/INFO]: __DaWae__ issued server command: /tp _SugarRune
[13:53:31] [Server thread/WARN]: __DaWae__ moved too quickly! -64.79835880897313,11.087502307624845,-27.017443521851874
[13:55:05] [Server thread/INFO]: __DaWae__ issued server command: //copy
[13:55:10] [Server thread/INFO]: __DaWae__ issued server command: //paste
[13:55:52] [Server thread/INFO]: _SugarRune issued server command: /tp TKpobparit
[13:55:52] [Server thread/WARN]: _SugarRune moved too quickly! 52.130754072809935,-21.013326761993582,-12.156153905950418
[13:57:28] [Server thread/INFO]: __DaWae__ issued server command: //set dirt_path
[13:57:53] [Server thread/INFO]: __DaWae__ issued server command: //set grass_block
[13:58:00] [Server thread/INFO]: TKpobparit issued server command: /tp _SugarRune
[13:58:07] [Server thread/INFO]: __DaWae__ issued server command: //set grass_block
[13:59:34] [Server thread/INFO]: [CHAT GAMES] A(n) FILLOUT chat game has started in the server!
[14:06:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNSCRAMBLE chat game has started in the server!
[14:07:01] [Server thread/INFO]: TKpobparit issued server command: /tp _SugarRune
[14:08:23] [Server thread/INFO]: TKpobparit issued server command: /tp _SugarRune
[14:08:23] [Server thread/WARN]: TKpobparit moved too quickly! -17.0,-2.0,-23.0
[14:08:23] [Server thread/WARN]: TKpobparit moved too quickly! -17.0,-2.0,-23.0
[14:10:34] [Server thread/INFO]: [MMOCore] Autosaving 3 player datas, might take a while...
[14:12:15] [Server thread/INFO]: TKpobparit issued server command: /gamemode creative
[14:12:32] [Server thread/INFO]: __DaWae__ issued server command: /spawn
[14:12:32] [Server thread/WARN]: __DaWae__ moved too quickly! 4.931569461143397,-189.769509390034,-114.84778200338542
[14:13:10] [Server thread/INFO]: TKpobparit issued server command: /tp _SugarRune
[14:13:10] [Server thread/WARN]: TKpobparit moved too quickly! 99.91606771235433,-190.37899608424237,-77.82666315594963
[14:13:10] [Server thread/WARN]: TKpobparit moved too quickly! 99.91606771235433,-190.37899608424237,-77.82666315594963
[14:13:10] [Server thread/WARN]: TKpobparit moved too quickly! 99.91606771235433,-190.37899608424237,-77.82666315594963
[14:13:32] [Server thread/INFO]: __DaWae__ issued server command: //copy
[14:13:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNREVERSE chat game has started in the server!
[14:13:36] [Server thread/INFO]: __DaWae__ issued server command: //paste
[14:13:50] [Server thread/INFO]: __DaWae__ issued server command: //paste
[14:14:28] [Server thread/INFO]: __DaWae__ issued server command: //paste
[14:17:22] [Server thread/INFO]: __DaWae__ issued server command: //pos2
[14:17:24] [Server thread/INFO]: __DaWae__ issued server command: //set air
[14:20:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNREVERSE chat game has started in the server!
[14:20:53] [Server thread/INFO]: __DaWae__ issued server command: //copy
[14:20:56] [Server thread/INFO]: __DaWae__ issued server command: //past
[14:21:04] [Server thread/INFO]: __DaWae__ issued server command: //paste
[14:21:31] [Server thread/INFO]: __DaWae__ issued server command: //copy
[14:21:35] [Server thread/INFO]: __DaWae__ issued server command: //paste
[14:22:07] [Server thread/INFO]: __DaWae__ issued server command: //pos2
[14:22:14] [Server thread/INFO]: __DaWae__ issued server command: //copy
[14:22:18] [Server thread/INFO]: __DaWae__ issued server command: //paste
[14:23:52] [Server thread/INFO]: __DaWae__ issued server command: //copy
[14:23:57] [Server thread/INFO]: __DaWae__ issued server command: //paste
[14:24:02] [Server thread/INFO]: __DaWae__ issued server command: /undo
[14:24:09] [Server thread/INFO]: __DaWae__ issued server command: //paste
[14:24:11] [Server thread/INFO]: __DaWae__ issued server command: /undo
[14:24:25] [Server thread/INFO]: __DaWae__ issued server command: //copy
[14:24:29] [Server thread/INFO]: __DaWae__ issued server command: //paste
[14:24:44] [Server thread/INFO]: _SugarRune issued server command: /tp _SugarRune
[14:24:47] [Server thread/INFO]: _SugarRune issued server command: /tp __DaWae__
[14:24:47] [Server thread/WARN]: _SugarRune moved too quickly! 46.0,-25.0,44.0
[14:25:10] [Server thread/INFO]: __DaWae__ issued server command: //set grass_block
[14:27:34] [Server thread/INFO]: [CHAT GAMES] A(n) FILLOUT chat game has started in the server!
[14:29:07] [Server thread/INFO]: _SugarRune issued server command: /tp __DaWae__
[14:34:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNREVERSE chat game has started in the server!
[14:40:34] [Server thread/INFO]: [MMOCore] Autosaving 3 player datas, might take a while...
[14:41:29] [Server thread/INFO]: _SugarRune issued server command: /tp TKpobparit
[14:41:34] [Server thread/INFO]: [CHAT GAMES] A(n) RANDOM chat game has started in the server!
[14:48:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNREVERSE chat game has started in the server!
[14:55:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNREVERSE chat game has started in the server!
[15:02:34] [Server thread/INFO]: [CHAT GAMES] A(n) FILLOUT chat game has started in the server!
[15:09:34] [Server thread/INFO]: [CHAT GAMES] A(n) FILLOUT chat game has started in the server!
[15:10:34] [Server thread/INFO]: [MMOCore] Autosaving 3 player datas, might take a while...
[15:12:09] [Server thread/INFO]: TKpobparit lost connection: Disconnected
[15:12:09] [Server thread/INFO]: [-] TKpobparit
[15:16:34] [Server thread/INFO]: [CHAT GAMES] A(n) MATH chat game has started in the server!
[15:23:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNREVERSE chat game has started in the server!
[15:27:38] [Server thread/INFO]: _SugarRune issued server command: /home starter
[15:28:25] [Server thread/INFO]: [Essentials] Created a User for Miora (17cb9423-8e7c-20a2-9509-d5eb0a5fcfe9) for non Bukkit type: net.citizensnpcs.nms.v1_21_R5.entity.EntityHumanNPC$PlayerNPC
[15:30:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNREVERSE chat game has started in the server!
[15:36:09] [Server thread/INFO]: _SugarRune issued server command: /home starter
[15:37:26] [Server thread/INFO]: _SugarRune issued server command: /mmmenu
[15:37:34] [Server thread/INFO]: [CHAT GAMES] A(n) REACTION chat game has started in the server!
[15:40:34] [Server thread/INFO]: [MMOCore] Autosaving 2 player datas, might take a while...
[15:40:34] [Craft Scheduler Thread - 1994 - Vault/INFO]: [Vault] Checking for Updates ... 
[15:40:34] [Craft Scheduler Thread - 1994 - Vault/INFO]: [Vault] No new version available
[15:44:34] [Server thread/INFO]: [CHAT GAMES] A(n) FILLOUT chat game has started in the server!
[15:45:47] [Craft Scheduler Thread - 2036 - InteractiveChat/INFO]: [Not Secure] [15:45] ❖ _SugarRune ➠ ArcaneCube
[15:46:15] [Craft Scheduler Thread - 2052 - InteractiveChat/INFO]: [Not Secure] [15:46] ❖ _SugarRune ➠ AetherCraft
[15:51:34] [Server thread/INFO]: [CHAT GAMES] A(n) RANDOM chat game has started in the server!
[15:56:15] [Server thread/INFO]: _SugarRune issued server command: /home starter
[15:56:47] [Server thread/INFO]: _SugarRune issued server command: /npc select
[15:56:56] [Server thread/INFO]: _SugarRune issued server command: /npc skin King
[15:58:34] [Server thread/INFO]: [CHAT GAMES] A(n) FILLOUT chat game has started in the server!
[16:05:34] [Server thread/INFO]: [CHAT GAMES] A(n) MATH chat game has started in the server!
[16:10:34] [Server thread/INFO]: [MMOCore] Autosaving 2 player datas, might take a while...
[16:12:34] [Server thread/INFO]: [CHAT GAMES] A(n) REACTION chat game has started in the server!
[16:18:48] [User Authenticator #8/INFO]: UUID of player TKpobparit is 9671f71b-0258-318b-90df-b3b4fd6edd9f
[16:18:50] [Server thread/INFO]: TKpobparit[/         ip          ] logged in with entity id 234314 at ([CrownValley]27.985143729643568, 76.92516027047306, -802.5228719132325)
[16:18:50] [Server thread/INFO]: [+] TKpobparit
[16:19:18] [Server thread/INFO]: TKpobparit issued server command: /tp _SugarRune
[16:19:18] [Server thread/WARN]: TKpobparit moved too quickly! 84.455163020474,-1.0,-27.935470355923144
[16:19:18] [Server thread/WARN]: TKpobparit moved too quickly! 84.455163020474,-1.0,-27.935470355923144
[16:19:18] [Server thread/WARN]: TKpobparit moved too quickly! 84.455163020474,-1.0,-27.935470355923144
[16:19:18] [Server thread/WARN]: TKpobparit moved too quickly! 84.455163020474,-1.0,-27.935470355923144
[16:19:34] [Server thread/INFO]: [CHAT GAMES] A(n) RANDOM chat game has started in the server!
[16:20:33] [Server thread/INFO]: TKpobparit lost connection: Disconnected
[16:20:33] [Server thread/INFO]: [-] TKpobparit
[16:26:34] [Server thread/INFO]: [CHAT GAMES] A(n) FILLOUT chat game has started in the server!
[16:33:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNSCRAMBLE chat game has started in the server!
[16:40:34] [Server thread/INFO]: [MMOCore] Autosaving 2 player datas, might take a while...
[16:40:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNREVERSE chat game has started in the server!
[16:47:34] [Server thread/INFO]: [CHAT GAMES] A(n) RANDOM chat game has started in the server!
[16:54:34] [Server thread/INFO]: [CHAT GAMES] A(n) RANDOM chat game has started in the server!
[17:01:34] [Server thread/INFO]: [CHAT GAMES] A(n) REACTION chat game has started in the server!
[17:08:34] [Server thread/INFO]: [CHAT GAMES] A(n) REACTION chat game has started in the server!
[17:10:34] [Server thread/INFO]: [MMOCore] Autosaving 2 player datas, might take a while...
[17:15:34] [Server thread/INFO]: [CHAT GAMES] A(n) FILLOUT chat game has started in the server!
[17:20:37] [User Authenticator #9/INFO]: UUID of player CakeVelvet is ce1a8d30-f187-3312-b87d-cdd88291474c
[17:20:58] [Server thread/INFO]: CakeVelvet[/         ip          ] logged in with entity id 234354 at ([playworld]2.5, 77.0, 11.5)
[17:20:58] [Server thread/INFO]: [+] CakeVelvet
[17:21:28] [Server thread/INFO]: _SugarRune issued server command: /gamemode creative CakeVelvet
[17:22:34] [Server thread/INFO]: [CHAT GAMES] A(n) REACTION chat game has started in the server!
[17:22:40] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give CakeVelvet iron_ingot 5
[17:22:40] [Server thread/INFO]: [!] Core → Giving 5 of iron ingot to CakeVelvet.
[17:29:19] [Server thread/INFO]: CakeVelvet issued server command: /spawn
[17:29:19] [Server thread/INFO]: [Essentials] [!] Core → CakeVelvet was denied access to command.
[17:29:34] [Server thread/INFO]: [CHAT GAMES] A(n) REACTION chat game has started in the server!
[17:29:38] [Craft Scheduler Thread - 2589 - InteractiveChat/INFO]: [Not Secure] [17:29] ❖ CakeVelvet ➠ Sward
[17:29:43] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /give CakeVelvet iron_ingot 5
[17:29:43] [Server thread/INFO]: [!] Core → Giving 5 of iron ingot to CakeVelvet.
[17:30:30] [Server thread/INFO]: _SugarRune issued server command: /tphere CakeVelvet
[17:30:47] [User Authenticator #10/INFO]: UUID of player _SomsriX2 is 7171c062-3032-3287-a8a2-eee969e03a96
[17:30:51] [TAB Processing Thread/INFO]: [TAB] [WARN] Player _SomsriX2's group (beginner) is not in sorting list! Sorting list: owner,manager,dev,admin,mod,helper,builder,king,duke,paladin,lord,knight,default. Player will be sorted on the bottom.
[17:30:51] [Server thread/INFO]: _SomsriX2[/         ip         ] logged in with entity id 234448 at ([CrownValley]-69.52375708367416, 69.0, -869.6841777617243)
[17:30:51] [Server thread/INFO]: [+] _SomsriX2
[17:31:02] [Server thread/INFO]: _SugarRune issued server command: /npc select
[17:31:14] [Server thread/INFO]: [_SomsriX2: Set own game mode to Spectator Mode]
[17:31:34] [Server thread/INFO]: _SugarRune issued server command: /npc skin Xenos.png
[17:31:58] [Server thread/INFO]: [_SomsriX2: Set own game mode to Survival Mode]
[17:32:05] [Server thread/INFO]: _SomsriX2 issued server command: /npc select
[17:32:14] [Server thread/INFO]: _SomsriX2 issued server command: /npc skin --file
[17:32:32] [Server thread/INFO]: _SomsriX2 issued server command: /npc skin --file Miora
[17:32:44] [Server thread/INFO]: _SomsriX2 issued server command: /npc skin Miora
[17:32:52] [Server thread/INFO]: _SomsriX2 issued server command: /npc skin Miora.png
[17:33:37] [Server thread/INFO]: _SomsriX2 issued server command: /npc skin --url https://media.discordapp.net/attachments/832212165746360360/1439563249887477781/Miora.png?ex=691af940&is=6919a7c0&hm=1a24a749d009350edb8f448b5707c43dfd76d54eec9942e1a005ec8d62032988&=&format=webp&quality=lossless
[17:34:02] [Server thread/INFO]: _SomsriX2 issued server command: /citizens:citizens reload
[17:34:04] [Server thread/INFO]: _SomsriX2 issued server command: /citizens:citizens reload
[17:34:04] [Server thread/INFO]: [Citizens] Loaded 1 templates.
[17:34:04] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances d170e19a-82c9-20a2-be96-2a56c0777817
[17:34:04] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 17cb9423-8e7c-20a2-9509-d5eb0a5fcfe9
[17:34:04] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 00bde38e-a525-2648-ad25-76fd211636f0
[17:34:04] [Server thread/ERROR]: [Citizens] Player registered twice with different NPC instances 4c560c3f-8849-2058-8273-470d789e970e
[17:34:11] [Server thread/INFO]: _SomsriX2 issued server command: /npc skin --file Miora
[17:34:32] [Server thread/INFO]: _SomsriX2 issued server command: /npc skin --file Mistra
[17:36:34] [Server thread/INFO]: [CHAT GAMES] A(n) FILLOUT chat game has started in the server!
[17:36:38] [Craft Scheduler Thread - 2605 - InteractiveChat/INFO]: [Not Secure] [17:36] ❖ CakeVelvet ➠ _old
[17:36:53] [Craft Scheduler Thread - 2583 - InteractiveChat/INFO]: [Not Secure] [17:36] ❖ CakeVelvet ➠ _old
[17:37:21] [Server thread/INFO]: _SomsriX2 issued server command: /npc skin --file Mistra.png
[17:37:43] [Server thread/INFO]: _SugarRune issued server command: /npc select
[17:37:53] [Server thread/INFO]: _SugarRune issued server command: /npc skin --url https://media.discordapp.net/attachments/832212165746360360/1439563249426366654/Xenos.png?ex=691af940&is=6919a7c0&hm=ead8c97d2b868f31ec2ba5cb2cce85134a868dcb8bfaf57297245b7f321bb770&=&format=webp&quality=lossless
[17:37:58] [Server thread/INFO]: _SomsriX2 issued server command: /npc skin --file Mioara.png
[17:38:03] [Server thread/INFO]: _SomsriX2 issued server command: /npc skin --file Mioara.png
[17:38:09] [Server thread/INFO]: _SomsriX2 issued server command: /npc skin --file Xenos.png
[17:38:09] [Server thread/INFO]: _SugarRune issued server command: /npc skin --url https://tinyurl.com/5k533py3
[17:38:29] [Server thread/INFO]: _SomsriX2 issued server command: /npc skin --file Miora.png
[17:39:01] [Server thread/INFO]: _SugarRune issued server command: /npc skin --file Xenos.png
[17:40:34] [Server thread/INFO]: [MMOCore] Autosaving 4 player datas, might take a while...
[17:43:34] [Server thread/INFO]: [CHAT GAMES] A(n) MATH chat game has started in the server!
[17:45:07] [Server thread/INFO]: _SomsriX2 issued server command: /npc skin _SomsriX2
[17:45:18] [Server thread/INFO]: _SomsriX2 issued server command: /npc skin Dawae
[17:45:35] [Server thread/INFO]: _SomsriX2 issued server command: /npc skin Xenos
[17:45:59] [Server thread/INFO]: _SomsriX2 issued server command: /npc skin --file Miora.png -s EIEI
[17:47:17] [Server thread/INFO]: _SomsriX2 issued server command: /npc skin --file Miora.png -s Miora
[17:50:34] [Server thread/INFO]: [CHAT GAMES] A(n) REACTION chat game has started in the server!
[17:57:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNSCRAMBLE chat game has started in the server!
[18:03:11] [Server thread/INFO]: CakeVelvet lost connection: Disconnected
[18:03:11] [Server thread/INFO]: [-] CakeVelvet
[18:04:34] [Server thread/INFO]: [CHAT GAMES] A(n) MATH chat game has started in the server!
[18:07:15] [Server thread/INFO]: _SugarRune issued server command: /npc select
[18:07:26] [Server thread/INFO]: _SugarRune issued server command: /npc skin --file Mistra.png
[18:07:41] [Server thread/INFO]: _SugarRune issued server command: /npc select
[18:07:49] [Server thread/INFO]: _SugarRune issued server command: /npc skin --file Rowan.png
[18:10:34] [Server thread/INFO]: [MMOCore] Autosaving 3 player datas, might take a while...
[18:11:34] [Server thread/INFO]: [CHAT GAMES] A(n) REACTION chat game has started in the server!
[18:14:25] [Server thread/INFO]: _SugarRune issued server command: /npc create Miles
[18:15:02] [Server thread/INFO]: _SugarRune issued server command: /npc select
[18:15:09] [Server thread/INFO]: _SugarRune issued server command: /npc skin --url https://textures.minecraft.net/texture/abcfc7effe572d5a81468b8f0a7590e240a0060e3842440f73f6af1c34805c04
[18:16:59] [Server thread/INFO]: [Essentials] Created a User for Miora (17cb9423-8e7c-20a2-9509-d5eb0a5fcfe9) for non Bukkit type: net.citizensnpcs.nms.v1_21_R5.entity.EntityHumanNPC$PlayerNPC
[18:17:02] [User Authenticator #11/INFO]: UUID of player MALI_LA is 4321a8e4-8b5f-3fcb-906e-31dc27d8a6e8
[18:17:07] [Server thread/INFO]: MALI_LA[/         ip         ] logged in with entity id 235933 at ([CrownValley]126.61433640402215, 70.0, -848.5138397065908)
[18:17:07] [Server thread/INFO]: [+] MALI_LA
[18:17:40] [Server thread/INFO]: _SugarRune issued server command: /tphere MALI_LA
[18:18:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNSCRAMBLE chat game has started in the server!
[18:18:36] [Server thread/INFO]: _SugarRune issued server command: /tphere MALI_LA
[18:18:36] [Server thread/WARN]: MALI_LA moved too quickly! -135.148459503624,1.0,55.706346694535796
[18:18:58] [Server thread/INFO]: [Essentials] Created a User for Miles (54f42d5d-0ae5-265f-af88-bfb54740a260) for non Bukkit type: net.citizensnpcs.nms.v1_21_R5.entity.EntityHumanNPC$PlayerNPC
[18:20:13] [Server thread/INFO]: MALI_LA lost connection: Disconnected
[18:20:13] [Server thread/INFO]: [-] MALI_LA
[18:20:42] [Server thread/INFO]: _SugarRune issued server command: /npc create Eldon
[18:21:13] [Server thread/INFO]: _SomsriX2 issued server command: /ac
[18:21:27] [Server thread/INFO]: _SugarRune issued server command: /npc skin --url https://textures.minecraft.net/texture/df883a20d8c6124e45657504dcf14bd9674cd780a5beea75a770fab85a473a8f
[18:21:38] [Server thread/INFO]: _SomsriX2 issued server command: /lac
[18:21:53] [Server thread/INFO]: _SomsriX2 issued server command: /lac reload
[18:22:15] [Server thread/INFO]: _SugarRune issued server command: /npc create Seri
[18:22:56] [Server thread/INFO]: _SugarRune issued server command: /npc skin --url https://textures.minecraft.net/texture/7557700544fbdba84aff6749f798186fb31db4666ac744ae483b9ae0d1bb4fee
[18:23:43] [Server thread/INFO]: _SugarRune issued server command: /npc create Lyria
[18:24:41] [Server thread/INFO]: _SugarRune issued server command: /npc skin --url https://textures.minecraft.net/texture/bd1a2c370ea0507753c49eaaec70f5fd3ba3acb8b63f736e089227137bc2e809
[18:25:01] [Server thread/INFO]: _SugarRune issued server command: /npc skin --url https://minesk.in/ab8b7f2a39054fe0920781a4ae40e5d7
[18:25:34] [Server thread/INFO]: [CHAT GAMES] A(n) REACTION chat game has started in the server!
[18:25:43] [Server thread/INFO]: _SugarRune issued server command: /npc create Aira
[18:26:31] [Server thread/INFO]: _SugarRune issued server command: /
[18:26:35] [Server thread/INFO]: _SugarRune issued server command: /npc skin --url https://textures.minecraft.net/texture/7ff5eacf0460f3e906148ca6676c65fa68d7466e7e309741504e22e46b31987d
[18:27:08] [Server thread/INFO]: _SomsriX2 issued server command: /skin se v
[18:27:11] [Server thread/INFO]: _SomsriX2 issued server command: /skin se -v
[18:27:16] [Server thread/INFO]: _SugarRune issued server command: /npc create Arlen
[18:29:53] [Server thread/INFO]: _SugarRune issued server command: /npc skin --url https://textures.minecraft.net/texture/10bba11cebf884c5d234f060c09fa54dd45200e4eae6c0155b3846295b46b2fb
[18:32:34] [Server thread/INFO]: [CHAT GAMES] A(n) MATH chat game has started in the server!
[18:38:40] [User Authenticator #12/INFO]: UUID of player MALI_LA is 4321a8e4-8b5f-3fcb-906e-31dc27d8a6e8
[18:38:45] [Server thread/INFO]: MALI_LA[/         ip         ] logged in with entity id 236154 at ([CrownValley]-12.172547922734624, 69.0, -806.803349458449)
[18:38:45] [Server thread/INFO]: [+] MALI_LA
[18:39:22] [Server thread/INFO]: MALI_LA issued server command: /set skin
[18:39:29] [Server thread/INFO]: _SomsriX2 issued server command: /op MALI_LA
[18:39:29] [Server thread/INFO]: [_SomsriX2: Made MALI_LA a server operator]
[18:39:31] [Server thread/INFO]: MALI_LA issued server command: /set skin
[18:39:34] [Server thread/INFO]: [CHAT GAMES] A(n) FILLOUT chat game has started in the server!
[18:39:40] [Server thread/INFO]: MALI_LA issued server command: /skin set
[18:39:46] [Server thread/INFO]: _SomsriX2 issued server command: /tp MALI_LA
[18:39:46] [Server thread/WARN]: _SomsriX2 moved too quickly! -121.98196417147184,1.0,30.495315676647806
[18:39:46] [Server thread/WARN]: _SomsriX2 moved too quickly! -121.98196417147184,1.0,30.495315676647806
[18:40:03] [Server thread/INFO]: _SomsriX2 issued server command: /skin set Dawae
[18:40:11] [Server thread/INFO]: MALI_LA issued server command: /skin set DaWae
[18:40:28] [Server thread/INFO]: _SomsriX2 issued server command: /skinsrestorer applyskin _SomsriX2
[18:40:34] [Server thread/INFO]: [MMOCore] Autosaving 4 player datas, might take a while...
[18:40:39] [Server thread/INFO]: _SomsriX2 issued server command: /skin clear
[18:40:47] [Server thread/INFO]: _SomsriX2 issued server command: /skin history _SugarRune
[18:40:56] [Server thread/INFO]: _SomsriX2 issued server command: /skin help
[18:40:57] [Server thread/INFO]: MALI_LA lost connection: Disconnected
[18:40:57] [Server thread/INFO]: [-] MALI_LA
[18:42:07] [Server thread/INFO]: _SomsriX2 issued server command: /skin edit
[18:45:04] [Server thread/INFO]: _SugarRune issued server command: /tp _SomsriX2
[18:46:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNREVERSE chat game has started in the server!
[18:46:50] [Server thread/INFO]: [_SomsriX2: Set own game mode to Spectator Mode]
[18:46:57] [Server thread/INFO]: [_SomsriX2: Set own game mode to Creative Mode]
[18:47:09] [Server thread/INFO]: _SomsriX2 issued server command: /npc ai true
[18:47:13] [Server thread/INFO]: _SomsriX2 issued server command: /npc select
[18:47:16] [Server thread/INFO]: _SomsriX2 issued server command: /npc select
[18:47:20] [Server thread/INFO]: _SomsriX2 issued server command: /npc
[18:48:15] [User Authenticator #13/INFO]: UUID of player TKpobparit is 9671f71b-0258-318b-90df-b3b4fd6edd9f
[18:48:17] [Server thread/INFO]: TKpobparit[/         ip         ] logged in with entity id 236184 at ([CrownValley]124.5294649617621, 68.0, -827.7705882004808)
[18:48:17] [Server thread/INFO]: [+] TKpobparit
[18:50:35] [Server thread/INFO]: _SomsriX2 issued server command: /npc skin --url https://minesk.in/4892052f0f054900b7930bd1c8ce94e8
[18:50:44] [Server thread/INFO]: TKpobparit issued server command: /feed
[18:50:47] [Server thread/INFO]: TKpobparit issued server command: /fly
[18:53:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNREVERSE chat game has started in the server!
[19:00:34] [Server thread/INFO]: [CHAT GAMES] A(n) RANDOM chat game has started in the server!
[19:01:31] [Server thread/INFO]: _SomsriX2 issued server command: /tp @s 184 67.5 -801
[19:02:19] [Server thread/WARN]: TKpobparit moved wrongly!
[19:03:20] [Server thread/INFO]: TKpobparit issued server command: /feed
[19:07:34] [Server thread/INFO]: [CHAT GAMES] A(n) UNSCRAMBLE chat game has started in the server!
[19:08:37] [Server thread/INFO]: TKpobparit issued server command: /feed
[19:10:08] [Server thread/INFO]: _SomsriX2 issued server command: /npc select
[19:10:15] [Server thread/INFO]: _SomsriX2 issued server command: /npc skin Miora
[19:10:29] [Server thread/INFO]: _SomsriX2 issued server command: /npc skin --url https://minesk.in/4892052f0f054900b7930bd1c8ce94e8
[19:10:34] [Server thread/INFO]: [MMOCore] Autosaving 4 player datas, might take a while...
[19:11:33] [Server thread/INFO]: TKpobparit issued server command: /feed
[19:12:13] [Server thread/INFO]: _SomsriX2 issued server command: /gsit reload
[19:12:24] [Server thread/INFO]: _SomsriX2 issued server command: /plugman reload GSit
[19:12:24] [Server thread/INFO]: [GSit] Disabling GSit v3.0.1
[19:12:24] [Server thread/INFO]: [WorldGuard] Unregistering session handler dev.geco.gsit.link.worldguard.RegionFlagHandler
[19:12:24] [Server thread/INFO]: [GSit] The plugin was successfully disabled.
[19:12:24] [Server thread/INFO]: [PlugManX] Successfully removed provider for plugin: GSit
[19:12:25] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins\GSit-3.0.1.jar'...
[19:12:27] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins\GSit-3.0.1.jar' in 1348ms.
[19:12:27] [Server thread/INFO]: [GSit] Loading server plugin GSit v3.0.1
[19:12:27] [Server thread/INFO]: [GSit] Enabling GSit v3.0.1
[19:12:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [3.0.1]
[19:12:27] [Server thread/INFO]: [WorldGuard] Registering session handler dev.geco.gsit.link.worldguard.RegionFlagHandler
[19:12:27] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[19:12:27] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[19:12:27] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[19:12:27] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 3072ms or 61 ticks behind
[19:14:20] [Server thread/WARN]: TKpobparit moved wrongly!
[19:14:37] [Server thread/INFO]: [CHAT GAMES] A(n) UNREVERSE chat game has started in the server!
[19:17:02] [Server thread/WARN]: TKpobparit moved wrongly!
[19:19:02] [User Authenticator #14/INFO]: [LuckPerms] Another plugin has cancelled the connection for 2f4aabf0-3309-3791-87a5-fd65d1ce7dbb - plakem. No permissions data will be loaded.
[19:19:02] [User Authenticator #14/INFO]: Disconnecting plakem (/58.8.152.205:51294): [LoginSecurity] This account is registered under the name PlaKem, please log in as such.
[19:19:02] [User Authenticator #14/INFO]: UUID of player plakem is 2f4aabf0-3309-3791-87a5-fd65d1ce7dbb
[19:19:02] [Server thread/INFO]: plakem (/58.8.152.205:51294) lost connection: [LoginSecurity] This account is registered under the name PlaKem, please log in as such.
[19:19:18] [User Authenticator #14/INFO]: [LuckPerms] Another plugin has cancelled the connection for 2f4aabf0-3309-3791-87a5-fd65d1ce7dbb - plakem. No permissions data will be loaded.
[19:19:18] [User Authenticator #14/INFO]: Disconnecting plakem (/58.8.152.205:51309): [LoginSecurity] This account is registered under the name PlaKem, please log in as such.
[19:19:18] [User Authenticator #14/INFO]: UUID of player plakem is 2f4aabf0-3309-3791-87a5-fd65d1ce7dbb
[19:19:18] [Server thread/INFO]: plakem (/58.8.152.205:51309) lost connection: [LoginSecurity] This account is registered under the name PlaKem, please log in as such.
[19:19:27] [Server thread/INFO]: TKpobparit issued server command: /feed
[19:20:28] [User Authenticator #15/INFO]: UUID of player plala is 63e81b2c-d7ca-38ba-ae3b-48fab5e21420
[19:20:33] [Server thread/INFO]: plala[/         ip         ] logged in with entity id 269179 at ([playworld]6.5, 76.0, 14.5)
[19:20:33] [Server thread/INFO]: [+] plala
[19:20:57] [Craft Scheduler Thread - 3097 - InteractiveChat/INFO]: [Not Secure] [19:20] ❖ TKpobparit ➠ :>
[19:21:01] [Craft Scheduler Thread - 3069 - InteractiveChat/INFO]: [Not Secure] [19:21] ❖ TKpobparit ➠ :)
[19:21:02] [Craft Scheduler Thread - 3064 - InteractiveChat/INFO]: [Not Secure] [19:21] ❖ _SugarRune ➠ :D
[19:21:37] [Server thread/INFO]: [CHAT GAMES] A(n) RANDOM chat game has started in the server!
[19:21:38] [Server thread/INFO]: _SomsriX2 issued server command: /op plala
[19:21:38] [Server thread/INFO]: [_SomsriX2: Made plala a server operator]
[19:21:52] [Server thread/INFO]: plala issued server command: /skins set Dawae
[19:21:57] [Server thread/INFO]: plala issued server command: /skins
[19:22:06] [Server thread/INFO]: plala issued server command: /skins
[19:22:18] [Server thread/INFO]: plala issued server command: /npc select
[19:22:26] [Server thread/INFO]: plala issued server command: /npc skin Dawae
[19:22:30] [Server thread/INFO]: __DaWae__ lost connection: Disconnected
[19:22:30] [Server thread/INFO]: [-] __DaWae__
[19:22:49] [Server thread/INFO]: plala issued server command: /npc skin --file Miles
[19:22:51] [Server thread/INFO]: plala issued server command: /npc skin --file Miles.png
[19:22:55] [Server thread/INFO]: [Essentials] Created a User for Miles (54f42d5d-0ae5-265f-af88-bfb54740a260) for non Bukkit type: net.citizensnpcs.nms.v1_21_R5.entity.EntityHumanNPC$PlayerNPC
[19:22:58] [User Authenticator #16/INFO]: UUID of player __DaWae__ is d474331a-2999-3020-bf99-41fda008831e
[19:23:00] [Server thread/INFO]: __DaWae__[/          ip           ] logged in with entity id 269224 at ([CrownValley]-9.131024171601961, 70.0, -812.033702076889)
[19:23:00] [Server thread/INFO]: [+] __DaWae__
[19:23:06] [Server thread/INFO]: __DaWae__ lost connection: Disconnected
[19:23:06] [Server thread/INFO]: [-] __DaWae__
[19:23:08] [Server thread/INFO]: _SugarRune issued server command: /tp _SomsriX2
[19:23:45] [Server thread/INFO]: plala issued server command: /npc skin -s Dawae
[19:23:45] [Server thread/ERROR]: [Citizens] Could not fetch NMS method setProfile: [[org.bukkit.craftbukkit.inventory.CraftMetaSkull.setProfile(com.mojang.authlib.GameProfile).
[19:24:10] [Server thread/INFO]: plala issued server command: /npc skin -s 'asd' Dawae
[19:24:10] [Server thread/ERROR]: [Citizens] Could not fetch NMS method setProfile: [[org.bukkit.craftbukkit.inventory.CraftMetaSkull.setProfile(com.mojang.authlib.GameProfile).
[19:24:46] [Server thread/INFO]: plala issued server command: /skin set v
[19:24:51] [User Authenticator #17/INFO]: UUID of player __DaWae__ is d474331a-2999-3020-bf99-41fda008831e
[19:24:54] [Server thread/INFO]: __DaWae__[/          ip           ] logged in with entity id 269229 at ([CrownValley]-9.131024171601961, 70.0, -812.033702076889)
[19:24:54] [Server thread/INFO]: [+] __DaWae__
[19:25:06] [Server thread/INFO]: plala issued server command: /skin set
[19:25:11] [Server thread/INFO]: __DaWae__ issued server command: /skinsrestorer
[19:25:19] [Craft Scheduler Thread - 3066 - InteractiveChat/INFO]: [Not Secure] [19:25] ❖ _SugarRune ➠ เทควันโดบ๋อย
[19:25:21] [Server thread/INFO]: plala issued server command: /skin set Dawae Miles
[19:25:30] [Craft Scheduler Thread - 3093 - InteractiveChat/INFO]: [Not Secure] [19:25] ❖ _SugarRune ➠ เปลี่ยนสกินไม่ติดบ่
[19:25:33] [Server thread/INFO]: __DaWae__ issued server command: /sr drop
[19:25:39] [Server thread/INFO]: __DaWae__ issued server command: /skinsrestorer:sr drop
[19:25:46] [Server thread/INFO]: plala issued server command: /npc skin -e
[19:25:51] [Server thread/INFO]: __DaWae__ issued server command: /sr drop _DaWae_
[19:25:59] [Server thread/INFO]: __DaWae__ issued server command: /sr drop __DaWae__
[19:26:03] [Server thread/INFO]: plala issued server command: /sr
[19:26:07] [Server thread/INFO]: __DaWae__ issued server command: /sr reload
[19:26:15] [Server thread/INFO]: plala issued server command: /sr applyskin __DaWae__
[19:26:23] [Server thread/INFO]: plala issued server command: /sr applyskin TKpobparit
[19:26:37] [Server thread/INFO]: __DaWae__ issued server command: /sr purgeolddata
[19:26:40] [Server thread/INFO]: __DaWae__ issued server command: /sr purgeolddata 2
[19:26:56] [Server thread/INFO]: __DaWae__ issued server command: /sr applyskin __DaWae__
[19:27:03] [Server thread/INFO]: __DaWae__ issued server command: /skins
[19:28:37] [Server thread/INFO]: [CHAT GAMES] A(n) UNSCRAMBLE chat game has started in the server!
[19:29:15] [Craft Scheduler Thread - 3062 - InteractiveChat/INFO]: [Not Secure] [19:29] ❖ _SugarRune ➠ ตูดเหม็ฯ
[19:29:36] [Craft Scheduler Thread - 3066 - InteractiveChat/INFO]: [Not Secure] [19:29] ❖ _SugarRune ➠ ✿คุณชายตูดเหม็น✿
[19:29:45] [Craft Scheduler Thread - 3136 - InteractiveChat/INFO]: [Not Secure] [19:29] ❖ _SugarRune ➠ @__DaWae__ ✿คุณชายตูดเหม็น✿
[19:30:40] [Server thread/INFO]: __DaWae__ issued server command: /attribute
[19:35:37] [Server thread/INFO]: [CHAT GAMES] A(n) RANDOM chat game has started in the server!
[19:40:24] [Server thread/INFO]: _SomsriX2 issued server command: /deop plala
[19:40:24] [Server thread/INFO]: [_SomsriX2: Made plala no longer a server operator]
[19:40:37] [Server thread/INFO]: [MMOCore] Autosaving 5 player datas, might take a while...
[19:42:01] [Server thread/INFO]: [Essentials] Created a User for Miles (54f42d5d-0ae5-265f-af88-bfb54740a260) for non Bukkit type: net.citizensnpcs.nms.v1_21_R5.entity.EntityHumanNPC$PlayerNPC
[19:42:37] [Server thread/INFO]: [CHAT GAMES] A(n) FILLOUT chat game has started in the server!
[19:42:42] [Craft Scheduler Thread - 3176 - InteractiveChat/INFO]: [Not Secure] [19:42] ❖ _SomsriX2 ➠ !log