Paste #102684: npc CIT bug

Date: 2022/10/27 09:02:54 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887


[14:46:08] [ServerMain/INFO]: Building unoptimized datafixer
[14:46:09] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[14:46:11] [ServerMain/INFO]: Loaded 7 recipes
[14:46:13] [Server thread/INFO]: Starting minecraft server version 1.19.2
[14:46:13] [Server thread/WARN]: ****************************
[14:46:13] [Server thread/WARN]: YOU ARE RUNNING THIS SERVER AS AN ADMINISTRATIVE OR ROOT USER. THIS IS NOT ADVISED.
[14:46:13] [Server thread/WARN]: YOU ARE OPENING YOURSELF UP TO POTENTIAL RISKS WHEN DOING THIS.
[14:46:13] [Server thread/WARN]: FOR MORE INFORMATION, SEE https://madelinemiller.dev/blog/root-minecraft-server/
[14:46:13] [Server thread/WARN]: ****************************
[14:46:13] [Server thread/INFO]: Loading properties
[14:46:13] [Server thread/INFO]: This server is running Paper version git-Paper-210 (MC: 1.19.2) (Implementing API version 1.19.2-R0.1-SNAPSHOT) (Git: 0bdf997)
[14:46:13] [Server thread/INFO]: Server Ping Player Sample Count: 12
[14:46:13] [Server thread/INFO]: Using 4 threads for Netty based IO
[14:46:13] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 4 worker threads, and gen parallelism of 4 threads
[14:46:13] [Server thread/INFO]: Default game type: SURVIVAL
[14:46:13] [Server thread/INFO]: Generating keypair
[14:46:13] [Server thread/INFO]: Starting Minecraft server on *:25565
[14:46:14] [Server thread/INFO]: Using epoll channel type
[14:46:14] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[14:46:14] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[14:46:14] [Server thread/ERROR]: [STDERR] [org.bukkit.craftbukkit.v1_19_R1.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[14:46:19] [Server thread/WARN]: Legacy plugin ForceField v3.4 does not specify an api-version.
[14:46:19] [Server thread/WARN]: Legacy plugin AllesOderNichts v1.1.1 does not specify an api-version.
[14:46:19] [Server thread/WARN]: Legacy plugin AFK-Kick v1.1 does not specify an api-version.
[14:46:19] [Server thread/ERROR]: Could not load 'plugins/MythicCrucible-1.4.0.jar' in folder 'plugins'
org.bukkit.plugin.UnknownDependencyException: Unknown/missing dependency plugins: [MythicMobs]. Please download and install these plugins to run 'MythicCrucible'.
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:287) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.loadPlugins(CraftServer.java:423) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:278) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1100) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-210]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[14:46:19] [Server thread/INFO]: [NexEngine] Loading 1 libraries... please wait
[14:46:19] [Server thread/INFO]: [NexEngine] Loaded library /home/CityBuild/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[14:46:19] [Server thread/INFO]: [NexEngine] Loaded library /home/CityBuild/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[14:46:19] [Server thread/INFO]: [VotingPlugin] Loading 1 libraries... please wait
[14:46:19] [Server thread/INFO]: [VotingPlugin] Loaded library /home/CityBuild/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[14:46:19] [Server thread/INFO]: [VotingPlugin] Loaded library /home/CityBuild/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[14:46:19] [Server thread/INFO]: [VotingPlugin] Loaded library /home/CityBuild/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[14:46:19] [Server thread/INFO]: [VotingPlugin] Loaded library /home/CityBuild/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[14:46:19] [Server thread/INFO]: [VotingPlugin] Loaded library /home/CityBuild/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[14:46:19] [Server thread/INFO]: [VotingPlugin] Loaded library /home/CityBuild/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[14:46:20] [Server thread/INFO]: [PremiumVanish] Loading 1 libraries... please wait
[14:46:20] [Server thread/INFO]: [PremiumVanish] Loaded library /home/CityBuild/libraries/mysql/mysql-connector-java/8.0.20/mysql-connector-java-8.0.20.jar
[14:46:20] [Server thread/INFO]: [PremiumVanish] Loaded library /home/CityBuild/libraries/com/google/protobuf/protobuf-java/3.6.1/protobuf-java-3.6.1.jar
[14:46:20] [Server thread/INFO]: [WolfyUtilities] Loading 2 libraries... please wait
[14:46:21] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/CityBuild/libraries/com/google/inject/guice/5.1.0/guice-5.1.0.jar
[14:46:21] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/CityBuild/libraries/javax/inject/javax.inject/1/javax.inject-1.jar
[14:46:21] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/CityBuild/libraries/aopalliance/aopalliance/1.0/aopalliance-1.0.jar
[14:46:21] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/CityBuild/libraries/com/google/guava/guava/30.1-jre/guava-30.1-jre.jar
[14:46:21] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/CityBuild/libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar
[14:46:21] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/CityBuild/libraries/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
[14:46:21] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/CityBuild/libraries/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
[14:46:21] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/CityBuild/libraries/org/checkerframework/checker-qual/3.5.0/checker-qual-3.5.0.jar
[14:46:21] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/CityBuild/libraries/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.jar
[14:46:21] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/CityBuild/libraries/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar
[14:46:21] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/CityBuild/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[14:46:21] [Server thread/INFO]: [WolfyUtilities] NMS Version: v1_19_R1
[14:46:21] [Server thread/INFO]: [me.wolfyscript.lib.org.reflections.Reflections] Reflections took 350 ms to scan 1 urls, producing 1197 keys and 3753 values
[14:46:21] [Server thread/INFO]: [CustomCrafting] NMS Version: v1_19_R1
[14:46:22] [Server thread/INFO]: [Colored Signs] Loading ColoredSigns v5.0.0
[14:46:22] [Server thread/INFO]: [CSL] Loading ChunkSpawnerLimiter v4.1.6
[14:46:22] [Server thread/INFO]: [Replenish] Loading Replenish v1.4
[14:46:22] [Server thread/INFO]: [GFly] Loading GFly v[2.3.0.0]
[14:46:22] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.2
[14:46:22] [Server thread/INFO]: [ForceField] Loading ForceField v3.4
[14:46:22] [Server thread/INFO]: [HiveLook] Loading HiveLook v1.1.0
[14:46:22] [Server thread/INFO]: [AsyncSQL] Loading AsyncSQL v1.0-SNAPSHOT
[14:46:22] [Server thread/INFO]: [Core] Loading Core v0.5.5
[14:46:22] [Server thread/INFO]: [Core] Checking update for Core v0.5.5
[14:46:22] [Server thread/INFO]: [AllesOderNichts] Loading AllesOderNichts v1.1.1
[14:46:22] [Server thread/INFO]: [Gamemode-Change] Loading Gamemode-Change v3.8
[14:46:22] [Server thread/INFO]: [SupportChat] Loading SupportChat v1.3.1
[14:46:22] [Server thread/INFO]: [DisableElytra] Loading DisableElytra v1.4
[14:46:22] [Server thread/INFO]: [AFK-Kick] Loading AFK-Kick v1.1
[14:46:22] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v4.4.2
[14:46:22] [Server thread/INFO]: [ViaVersion] ViaVersion 4.4.2 is now loaded, injecting!
[14:46:22] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading 1.12 -> 1.13 mappings...
[14:46:22] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.13 -> 1.13.2 mappings...
[14:46:22] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.13.2 -> 1.14 mappings...
[14:46:22] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.14 -> 1.15 mappings...
[14:46:22] [Via-Mappingloader-4/INFO]: [ViaVersion] Loading 1.15 -> 1.16 mappings...
[14:46:22] [Via-Mappingloader-5/INFO]: [ViaVersion] Loading 1.16 -> 1.16.2 mappings...
[14:46:23] [Via-Mappingloader-6/INFO]: [ViaVersion] Loading 1.16.2 -> 1.17 mappings...
[14:46:23] [Via-Mappingloader-7/INFO]: [ViaVersion] Loading 1.17 -> 1.18 mappings...
[14:46:23] [Via-Mappingloader-8/INFO]: [ViaVersion] Loading 1.18 -> 1.19 mappings...
[14:46:23] [Server thread/INFO]: [ViaBackwards] Loading ViaBackwards v4.4.1
[14:46:23] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[14:46:23] [Server thread/INFO]: [ViaBackwards] Loading translations...
[14:46:23] [Via-Mappingloader-5/INFO]: [ViaBackwards] Loading 1.10 -> 1.9.4 mappings...
[14:46:23] [Via-Mappingloader-7/INFO]: [ViaBackwards] Loading 1.11 -> 1.10 mappings...
[14:46:23] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.12 -> 1.11 mappings...
[14:46:23] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.13 -> 1.12 mappings...
[14:46:23] [Via-Mappingloader-8/INFO]: [ViaBackwards] Loading 1.13.2 -> 1.13 mappings...
[14:46:23] [Via-Mappingloader-8/INFO]: [ViaBackwards] Loading 1.14 -> 1.13.2 mappings...
[14:46:23] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.15 -> 1.14 mappings...
[14:46:23] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.16 -> 1.15 mappings...
[14:46:23] [Via-Mappingloader-8/INFO]: [ViaBackwards] Loading 1.16.2 -> 1.16 mappings...
[14:46:23] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.17 -> 1.16.2 mappings...
[14:46:23] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.18 -> 1.17 mappings...
[14:46:23] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.19 -> 1.18 mappings...
[14:46:23] [Server thread/INFO]: [UnbreakableEnchantment] Loading UnbreakableEnchantment v1.0.0
[14:46:23] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.18
[14:46:23] [Server thread/INFO]: [SurvivalInvisiframes] Loading SurvivalInvisiframes v2.1.0
[14:46:23] [Server thread/INFO]: [InfinityStones] Loading InfinityStones v1.47
[14:46:23] [Server thread/INFO]: [EpicElevators] Loading EpicElevators v1.0
[14:46:23] [Server thread/INFO]: [Trashcan] Loading Trashcan v1.6
[14:46:23] [Server thread/INFO]: [CommandBlocker] Loading CommandBlocker v1.0-SNAPSHOT
[14:46:23] [Server thread/INFO]: [EntityCages] Loading EntityCages v1.0.5
[14:46:23] [Server thread/INFO]: [VariableEnderChests] Loading VariableEnderChests v1.5
[14:46:23] [Server thread/INFO]: [ez-broadcast] Loading ez-broadcast v1.5
[14:46:23] [Server thread/INFO]: [BuycraftX] Loading BuycraftX v12.0.8
[14:46:23] [Server thread/INFO]: [Votifier] Loading Votifier v2.7.3
[14:46:23] [Server thread/INFO]: [LoneLibs] Loading LoneLibs v1.0.19
[14:46:23] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.0.0-SNAPSHOT-b600
[14:46:23] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.19.2) has not yet been tested! Proceed with caution.
[14:46:25] [Server thread/INFO]: [SpigotOnlyProxyJoin] Loading SpigotOnlyProxyJoin v1.0-SNAPSHOT
[14:46:25] [Server thread/INFO]: [LibsDisguises] Loading LibsDisguises v10.0.31
[14:46:25] [Server thread/INFO]: [MobsManager] Loading MobsManager v4.1.0
[14:46:25] [Server thread/INFO]: [UltimateTNT] Loading UltimateTNT v1.11.6
[14:46:25] [Server thread/INFO]: [RHSignItem] Loading RHSignItem v1.18_R5
[14:46:25] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[14:46:25] [Server thread/INFO]: [InventoryAPI] Loading InventoryAPI v1.0
[14:46:25] [Server thread/INFO]: [ColoredAnvils] Loading ColoredAnvils v2.0.0
[14:46:25] [Server thread/INFO]: [CustomRecipeAPI] Loading CustomRecipeAPI v1.6.0
[14:46:25] [Server thread/INFO]: [OnlineTime] Loading OnlineTime v2.0.2
[14:46:25] [Server thread/INFO]: [NexEngine] Loading NexEngine v2.2.6 build-04/10/2022
[14:46:25] [Server thread/INFO]: [MyCommand] Loading MyCommand v5.7.2
[14:46:25] [Server thread/INFO]: [GamePoints] Loading GamePoints v1.3.4
[14:46:25] [Server thread/INFO]: [DeepStoragePlus] Loading DeepStoragePlus v1.11.6
[14:46:25] [Server thread/INFO]: [SimpleHomes] Loading SimpleHomes v2.6
[14:46:25] [Server thread/INFO]: [HeadDatabase] Loading HeadDatabase v4.17.0
[14:46:25] [Server thread/INFO]: [XConomy] Loading XConomy v2.19.5
[14:46:25] [Server thread/INFO]: [VotingPlugin] Loading VotingPlugin v6.9.2
[14:46:25] [Server thread/INFO]: [FastAsyncWorldEdit] Loading FastAsyncWorldEdit v2.4.9-SNAPSHOT-296;0d112b2
[14:46:26] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@41c13448]
[14:46:26] [Server thread/INFO]: [Booster] Loading Booster v7.7
[14:46:26] [Server thread/INFO]: [AdvancedTeleport] Loading AdvancedTeleport v5.6.4
[14:46:26] [Server thread/INFO]: [PlotSquared] Loading PlotSquared v6.10.2-Premium
[14:46:26] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.7+216b061
[14:46:26] [Server thread/INFO]: [PlotBorder] Loading PlotBorder v1.9.2
[14:46:26] [Server thread/INFO]: [ElementalGems] Loading ElementalGems v1.8.4
[14:46:26] [Server thread/INFO]: [DecentHolograms] Loading DecentHolograms v2.7.5
[14:46:26] [Server thread/INFO]: [ntdLuckyBlock] Loading ntdLuckyBlock v2.7.7
[14:46:26] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.1-b861
[14:46:26] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2673)
[14:46:26] [Server thread/INFO]: [Shopkeepers] Loading Shopkeepers v2.16.2
[14:46:27] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (328 ms).
[14:46:27] [Server thread/INFO]: [Shopkeepers] Loading config.
[14:46:27] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[14:46:27] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[14:46:27] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[14:46:27] [Server thread/INFO]: [ExcellentCrates] Loading ExcellentCrates v4.0.6
[14:46:27] [Server thread/INFO]: [UpgradeableHoppers] Loading UpgradeableHoppers v4.7.0
[14:46:27] [Server thread/INFO]: [GrapplingHook] Loading GrapplingHook v3.1
[14:46:27] [Server thread/INFO]: [GrapplingHook] Server version 1.19.2 identified using new API (1.13 and above).
[14:46:27] [Server thread/INFO]: [ModelEngine] Loading ModelEngine vR3.0.1
[14:46:27] [Server thread/INFO]: [ArmorStandTools] Loading ArmorStandTools v4.4.4
[14:46:27] [Server thread/INFO]: [ArmorStandTools] Registered custom WorldGuard flag: ast
[14:46:27] [Server thread/INFO]: [QuickShop] Loading QuickShop v5.1.0.9
[14:46:27] [Server thread/INFO]: [QuickShop] QuickShop Reremake - Early boot step - Booting up
[14:46:27] [Server thread/INFO]: [QuickShop] [OK] Signature Verify
[14:46:27] [Server thread/INFO]: [QuickShop] [OK] Plugin Manifest Check
[14:46:27] [Server thread/INFO]: [QuickShop] [OK] Potential Infection Characteristics Check
[14:46:27] [Server thread/INFO]: [QuickShop] Reading the configuration...
[14:46:27] [Server thread/INFO]: [QuickShop] Loading messages translation over-the-air (this may need take a while).
[14:46:27] [Server thread/INFO]: [QuickShop] Translation over-the-air platform selected: Crowdin
[14:46:27] [Server thread/INFO]: [QuickShop] Checking for translation updates, this may need a while...
[14:46:28] [Server thread/INFO]: [QuickShop] Loading up integration modules.
[14:46:28] [Server thread/INFO]: [QuickShop] QuickShop Reremake - Early boot step - Complete
[14:46:28] [Server thread/INFO]: [WanderingTrades] Loading WanderingTrades v1.7.3
[14:46:28] [Server thread/INFO]: [ItemsAdder] Loading ItemsAdder v3.2.3-r10
[14:46:28] [Server thread/INFO]: [Quests] Loading Quests v4.6.0-b361
[14:46:28] [Server thread/INFO]: [CustomDrops] Loading CustomDrops v1.9.4
[14:46:28] [Server thread/INFO]: [Multiverse-Inventories] Loading Multiverse-Inventories v4.2.3-b523
[14:46:28] [Server thread/INFO]: [Bank] Loading Bank v4.5.6-RELEASE
[14:46:28] [Server thread/INFO]: [Core] core-latest.jar//me.dablakbandit.core.config.comment.CommentConfiguration.saveToString(CommentConfiguration.java:41) Saving upgrade.yml
[14:46:28] [Server thread/INFO]: [Core] Checking update for Bank v4.5.6-RELEASE
[14:46:29] [Server thread/INFO]: [Core] core-latest.jar//me.dablakbandit.core.config.comment.CommentConfiguration.saveToString(CommentConfiguration.java:41) Saving config.yml
[14:46:29] [Server thread/INFO]: [Core] core-latest.jar//me.dablakbandit.core.config.comment.CommentConfiguration.saveToString(CommentConfiguration.java:41) Saving convert.yml
[14:46:29] [Server thread/INFO]: [Core] core-latest.jar//me.dablakbandit.core.config.comment.CommentConfiguration.saveToString(CommentConfiguration.java:41) Saving language.yml
[14:46:29] [Server thread/INFO]: [Core] Attempting to load default ItemUtils
[14:46:29] [Server thread/INFO]: [Core] Loaded default, enjoy :)
[14:46:29] [Server thread/INFO]: [Core] core-latest.jar//me.dablakbandit.core.config.comment.CommentConfiguration.saveToString(CommentConfiguration.java:41) Saving items.yml
[14:46:29] [Server thread/INFO]: [Core] core-latest.jar//me.dablakbandit.core.config.comment.CommentConfiguration.saveToString(CommentConfiguration.java:41) Saving inventories.yml
[14:46:29] [Server thread/INFO]: [Core] core-latest.jar//me.dablakbandit.core.config.comment.CommentConfiguration.saveToString(CommentConfiguration.java:41) Saving permissions.yml
[14:46:29] [Server thread/INFO]: [Core] core-latest.jar//me.dablakbandit.core.config.comment.CommentConfiguration.saveToString(CommentConfiguration.java:41) Saving itemblacklist.yml
[14:46:29] [Server thread/INFO]: [Core] core-latest.jar//me.dablakbandit.core.config.comment.CommentConfiguration.saveToString(CommentConfiguration.java:41) Saving sounds.yml
[14:46:29] [Server thread/INFO]: [Core] core-latest.jar//me.dablakbandit.core.config.comment.CommentConfiguration.saveToString(CommentConfiguration.java:41) Saving hiscores.yml
[14:46:29] [Server thread/INFO]: [Bank] Blocks enabled
[14:46:29] [Server thread/INFO]: [Bank] Signs enabled
[14:46:29] [Server thread/INFO]: [Bank] Bank loaded
[14:46:29] [Server thread/INFO]: [PremiumVanish] Loading PremiumVanish v2.7.22
[14:46:29] [Server thread/INFO]: [UltimateClans] Loading UltimateClans v5.5.1
[14:46:29] [Server thread/INFO]: [ItemEdit] Loading ItemEdit v2.19
[14:46:29] [Server thread/INFO]: [zAuctionHouseV3] Loading zAuctionHouseV3 v3.1.0.2
[14:46:29] [Server thread/INFO]: [BookShelf] Loading Bookshelf v3.1.0.0
[14:46:29] [Server thread/INFO]: [WorldsLegacy] Loading WorldsLegacy v1.0
[14:46:29] [Server thread/INFO]: [BreakBlock] Loading BreakBlock v1.0-SNAPSHOT
[14:46:29] [Server thread/INFO]: [DirectionalBlock] Loading DirectionalBlock v1.2
[14:46:29] [Server thread/INFO]: [InvSee++] Loading InvSeePlusPlus v0.12.10-SNAPSHOT
[14:46:29] [Server thread/INFO]: [ChatColor2] Loading ChatColor2 v1.12.3
[14:46:29] [Server thread/INFO]: [SCore] Loading SCore v3.5.7
[14:46:29] [Server thread/INFO]: [ExecutableBlocks] Loading ExecutableBlocks v3.5.7
[14:46:29] [Server thread/INFO]: [WolfyUtilities] Loading WolfyUtilities v4.16.7.0
[14:46:29] [Server thread/INFO]: [WolfyUtilities] Register json serializer/deserializer
[14:46:29] [Server thread/INFO]: [WolfyUtilities] Register CustomItem meta checks
[14:46:29] [Server thread/INFO]: [CustomCrafting] Loading CustomCrafting v3.16.8.1
[14:46:29] [Server thread/INFO]: [CustomCrafting] WolfyUtils API: v4.16.7.0
[14:46:29] [Server thread/INFO]: [CustomCrafting] CustomCrafting: v3.16.8.1
[14:46:29] [Server thread/INFO]: [CustomCrafting] Environment   : PROD
[14:46:29] [Server thread/INFO]: [CustomCrafting] Registering CustomItem Data
[14:46:29] [Server thread/INFO]: [CustomCrafting] Registering Result Extensions
[14:46:29] [Server thread/INFO]: [CustomCrafting] Registering Result Merge Adapters
[14:46:29] [Server thread/INFO]: [CustomCrafting] Registering Recipe Conditions
[14:46:29] [Server thread/INFO]: [CustomCrafting] Registering Recipe Types
[14:46:29] [Server thread/INFO]: [CustomCrafting] Registering Anvil Recipe Tasks
[14:46:29] [Server thread/INFO]: [CustomCrafting] Registering Type Registries
[14:46:29] [Server thread/INFO]: [PlugManX] Loading PlugManX v2.3.0
[14:46:29] [Server thread/INFO]: true
[14:46:29] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[14:46:29] [Server thread/INFO]: [Core] Enabling Core v0.5.5
[14:46:29] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.18
[14:46:31] [Server thread/INFO]:         __    
[14:46:31] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.18
[14:46:31] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[14:46:31] [Server thread/INFO]: 
[14:46:31] [Server thread/INFO]: [LuckPerms] Loading configuration...
[14:46:31] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[14:46:31] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[14:46:31] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[14:46:32] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[14:46:33] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[14:46:33] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[14:46:34] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 4772ms)
[14:46:34] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.19
[14:46:34] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b600
[14:46:34] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[14:46:34] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[14:46:35] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[14:46:35] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[14:46:35] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.6 build-04/10/2022
[14:46:35] [Server thread/INFO]: [NexEngine] Loaded NMS version: V1_19_R1
[14:46:35] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[14:46:35] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[14:46:35] [Server thread/INFO]: [NexEngine] Successfully hooked with Vault!
[14:46:35] [Server thread/INFO]: [NexEngine] Plugin loaded in 70 ms!
[14:46:35] [Server thread/INFO]: [XConomy] Enabling XConomy v2.19.5
[14:46:35] [Server thread/INFO]: [XConomy] UUID-Mode: Default
[14:46:35] [Server thread/INFO]: [XConomy] Language: GERMAN
[14:46:35] [Server thread/INFO]: [NexEngine] Successfully hooked with XConomy economy
[14:46:35] [Server thread/INFO]: [XConomy] Saving method - SQLite
[14:46:35] [Server thread/INFO]: [XConomy] SQLite successfully connected
[14:46:35] [Server thread/INFO]: [XConomy] XConomy successfully enabled
[14:46:35] [Server thread/INFO]: [XConomy] Found PlaceholderAPI
[14:46:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: xconomy [2.19.5]
[14:46:35] [Server thread/INFO]: [XConomy] PlaceholderAPI successfully hooked
[14:46:35] [Server thread/INFO]: [XConomy] ===== YiC =====
[14:46:35] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.4.9-SNAPSHOT-296;0d112b2
[14:46:35] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[14:46:35] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[14:46:35] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[14:46:35] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[14:46:35] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R1.PaperweightFaweAdapter as the Bukkit adapter
[14:46:36] [Server thread/INFO]: [PlotSquared] Enabling PlotSquared v6.10.2-Premium
[14:46:36] [Server thread/INFO]: [PlotSquared/ClassLoaderCaptionProvider] No resource for locale 'de' found in the plugin file.Please ensure you have placed the latest version of the file messages_de.json in the 'lang' folder.You may be able to find completed translations at https://intellectualsites.crowdin.com/plotsquared
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Loaded caption map for namespace 'plotsquared': com.plotsquared.core.configuration.caption.LocalizedCaptionMap
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: plot-expiry | Value: false
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: worlds | Value: false
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-named-road-mobs | Value: false
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: per-user-locale | Value: false
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: worldedit-restrictions | Value: true
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: external-placeholders | Value: true
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-owned-road-mobs | Value: false
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: disable-beacon-effect-overflow | Value: true
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: database | Value: true
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: component-presets | Value: true
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: chunk-processor | Value: false
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: extended-username-completion | Value: true
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: events | Value: true
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: commands | Value: true
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-mobs | Value: true
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-items | Value: false
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: database-purger | Value: false
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: economy | Value: true
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: persistent-road-regen | Value: true
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-vehicles | Value: false
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: default-locale | Value: de
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: use-mvdwapi | Value: true
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: persistent-meta | Value: true
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: tab-completed-aliases | Value: [plot, plots, p, plotsquared, plot2, p2, ps, 2, plotme, plotz, ap]
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: ban-deleter | Value: false
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: update-notifications | Value: true
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: rating-cache | Value: true
[14:46:36] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: comment-notifier | Value: true
[14:46:36] [Server thread/WARN]: [FastAsyncWorldEdit] Loaded class com.plotsquared.core.queue.QueueCoordinator from PlotSquared v6.10.2-Premium which is not a depend or softdepend of this plugin.
[14:46:37] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared version licensed to Spigot user 1445763
[14:46:37] [Server thread/INFO]: [PlotSquared/BukkitPlatform] https://www.spigotmc.org/resources/77506
[14:46:37] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Download ID: -1297513065
[14:46:37] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Thanks for supporting us :)
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #106(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #106(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #106(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #106(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #106(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #106(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #106(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #103(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #18(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #18(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #126(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #128(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #129(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #129(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #140(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #137(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #142(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #146(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #155(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #155(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #156(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #155(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #184(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #168(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #167(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #170(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #169(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #60(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #196(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #155(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #184(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #184(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #129(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #168(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #167(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #170(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #169(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #168(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #167(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #170(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #169(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #168(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #167(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #170(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #169(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #168(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #167(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #170(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #169(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #168(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #167(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #170(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #169(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #244(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #250(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #250(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #254(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #259(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #245(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #245(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #267(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #168(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #167(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #266(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #170(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #169(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #284(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #286(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #287(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #285(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #292(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #293(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #215(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #216(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #217(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #214(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #173(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #171(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #172(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #174(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #128(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #16(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #19(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #20(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #21(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #22(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #23(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #24(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #25(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #26(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #27(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #12(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #13(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #14(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #15(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #33(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #34(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #35(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #36(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #39(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #40(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #41(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #42(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #43(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #44(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #45(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #46(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #47(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #48(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #49(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #50(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #51(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #28(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #29(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #30(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #31(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #32(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #57(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #58(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #59(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #60(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #61(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #62(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #63(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #64(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #65(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #66(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #67(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #68(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #69(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #70(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #71(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #72(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #73(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #74(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #75(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #83(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #82(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #81(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #80(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #79(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #78(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #77(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #76(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #52(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #53(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #54(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #55(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #56(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #306(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #307(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #297(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #294(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #334(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #330(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #336(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #333(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #329(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #343(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #332(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #344(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #328(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #345(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #331(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #335(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #342(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #341(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #340(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #364(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #366(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #334(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #330(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #336(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #333(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #329(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #343(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #332(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #328(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #344(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #345(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #331(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #335(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #342(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #341(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #340(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #412(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #413(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #414(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #415(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #416(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #417(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #418(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #2147483647(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #486(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #499(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #502(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #330(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #336(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #334(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #333(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #329(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #343(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #344(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #332(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #328(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #331(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #335(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #345(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #342(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #341(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #340(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #489(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #334(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #330(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #336(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #333(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #329(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #343(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #332(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #328(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #344(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #345(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #331(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #335(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #342(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #341(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #340(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #592(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #596(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #602(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #656(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #334(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #330(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #336(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #333(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #343(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #329(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #332(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #344(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #328(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #345(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #331(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #335(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #342(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #341(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #340(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #692(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #432(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #715(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #336(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #330(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #334(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #343(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #333(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #329(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #344(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #332(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #328(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #345(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #331(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #335(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #342(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #341(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #340(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #336(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #330(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #334(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #343(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #333(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #329(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #344(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #332(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #328(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #345(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #331(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #335(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #342(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #341(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #340(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #1030(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #1029(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #1016(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #1028(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #1214(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #1219(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #872(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #1422(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #1429(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #1429(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[14:46:37] [Server thread/INFO]: [PlotSquared/PlotSquared] Connection to database established. Type: SQLite
[14:46:37] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into WorldEdit
[14:46:38] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using LuckPerms as a complementary UUID service
[14:46:38] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) 200 UUIDs will be cached
[14:46:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: plotsquared [3]
[14:46:38] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into PlaceholderAPI
[14:46:38] [Server thread/INFO]: [WolfyUtilities] Enabling WolfyUtilities v4.16.7.0
[14:46:38] [Server thread/INFO]: [WolfyUtilities] Minecraft version: 1.19.2
[14:46:38] [Server thread/INFO]: [WolfyUtilities] WolfyUtils version: 4.16.7.0
[14:46:38] [Server thread/INFO]: [WolfyUtilities] Environment: PROD
[14:46:38] [Server thread/INFO]: [WolfyUtilities] Loading Plugin integrations: 
[14:46:38] [Server thread/INFO]: [WolfyUtilities]  - PlaceholderAPI
[14:46:38] [Server thread/INFO]: [WolfyUtilities]  - ItemsAdder
[14:46:38] [Server thread/INFO]: [WolfyUtilities] Create & Init Plugin integrations: 
[14:46:38] [Server thread/INFO]: [WolfyUtilities] Register API references
[14:46:38] [Server thread/INFO]: [WolfyUtilities] Loading stored Custom Items
[14:46:38] [Server thread/INFO]: [WolfyUtilities] Loading Player Data
[14:46:38] [Server thread/INFO]: [WolfyUtilities] Loading Creative Mode Tabs
[14:46:38] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.3.0
[14:46:39] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[14:46:39] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[14:46:39] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[14:46:39] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[14:46:39] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[14:46:39] [Server thread/INFO]: Preparing level "WorldsLegacy"
[14:46:39] [Server thread/INFO]: [PlotSquared/PlotSquared] Detected world load for 'WorldsLegacy'
[14:46:39] [Server thread/INFO]: [PlotSquared/PlotSquared] - generator: PlotSquared>PlotSquared
[14:46:39] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot world: com.plotsquared.core.generator.HybridPlotWorld
[14:46:39] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot area manager: com.plotsquared.core.generator.HybridPlotManager
[14:46:39] [Server thread/INFO]: [P2] Bereichs-Flags: [animal-cap;20, leaf-decay;false, entity-cap;50]
[14:46:39] [Server thread/INFO]: [P2] Straßen-Flags: []
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - schematic: false
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - Dumping settings for ClassicPlotWorld with name WorldsLegacy
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_schematic_enabled = false
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_schematic = false
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_schematic_height = -1
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_lower = 4
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_upper = 45
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- schem_y = 64
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_height = 64
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_height = 64
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_height = 64
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- main_block = dirt
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- top_block = grass_block
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_block = stone_slab
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- claimed_wall_block = quartz_slab
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_filling = stone
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_block = oak_planks
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_bedrock = true
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- place_top_block = true
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_width = 40
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_width = 9
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_x = 0
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_z = 0
[14:46:39] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- size = 49
[14:46:39] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[14:46:39] [Server thread/INFO]: Time elapsed: 206 ms
[14:46:39] [Server thread/INFO]: [Colored Signs] Enabling ColoredSigns v5.0.0
[14:46:39] [Server thread/INFO]: [CSL] Enabling ChunkSpawnerLimiter v4.1.6
[14:46:40] [Server thread/INFO]: [CSL] [ACF] Enabled Asynchronous Tab Completion Support!
[14:46:40] [Server thread/INFO]: [Replenish] Enabling Replenish v1.4
[14:46:40] [Server thread/INFO]: [Replenish] Enabled Replenish v1.4
[14:46:40] [Server thread/INFO]: [GFly] Enabling GFly v[2.3.0.0]
[14:46:40] [Server thread/INFO]: [Fly] Das Plugin wurde erfolgreich aktiviert.
[14:46:40] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
[14:46:40] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.viaversion.viaversion.api.type.Type from ViaVersion v4.4.2 which is not a depend or softdepend of this plugin.
[14:46:40] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[14:46:40] [Server thread/INFO]: [WolfyUtilities] init PAPI event
[14:46:40] [Server thread/INFO]: [ForceField] Enabling ForceField v3.4*
[14:46:40] [Server thread/INFO]: [ForceField] ForceField V 3.4 starting...
[14:46:40] [Server thread/INFO]: [HiveLook] Enabling HiveLook v1.1.0
[14:46:40] [Server thread/INFO]: HiveLook v1.1.0 by pdev enabling...
[14:46:40] [Server thread/INFO]: Enabled in 25ms
[14:46:40] [Server thread/INFO]: [AsyncSQL] Enabling AsyncSQL v1.0-SNAPSHOT
[14:46:40] [Server thread/INFO]: [AllesOderNichts] Enabling AllesOderNichts v1.1.1*
[14:46:40] [Server thread/INFO]: [AllesOderNichts] [STDOUT] [STARTED] AllesOderNichts v.1.1.1 von xZaruk wurde aktiviert! 1
[14:46:40] [Server thread/WARN]: Nag author(s): '[xZaruk]' of 'AllesOderNichts' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:46:40] [Server thread/INFO]: [Gamemode-Change] Enabling Gamemode-Change v3.8
[14:46:40] [Server thread/INFO]: Enabling Gamemode Change...
[14:46:40] [Server thread/INFO]: [Gamemode Change] Loading Config
[14:46:40] [Server thread/INFO]: [Gamemode Change] Conifg loaded
[14:46:40] [Server thread/INFO]: Enabled Gamemode Change.
[14:46:40] [Server thread/INFO]: [SupportChat] Enabling SupportChat v1.3.1
[14:46:40] [Server thread/INFO]: [SupportChat] [ACF] Enabled Asynchronous Tab Completion Support!
[14:46:40] [Server thread/INFO]: [SupportChat] [STDOUT] [SupportChat] Plugin has been enabled!
[14:46:40] [Server thread/WARN]: Nag author(s): '[Dakir]' of 'SupportChat' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:46:40] [Server thread/INFO]: [DisableElytra] Enabling DisableElytra v1.4
[14:46:40] [Server thread/INFO]: [DisableElytra] [STDOUT] [DisableElytra] The plugin has been enabled!
[14:46:40] [Server thread/WARN]: Nag author(s): '[]' of 'DisableElytra' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:46:40] [Server thread/INFO]: [AFK-Kick] Enabling AFK-Kick v1.1*
[14:46:40] [Server thread/INFO]: [AFK-Kick] [STDOUT] AFKKick loaded!
[14:46:40] [Server thread/WARN]: Nag author(s): '[Hohi]' of 'AFK-Kick' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:46:40] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.4.2
[14:46:40] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.4.1
[14:46:40] [Server thread/INFO]: [UnbreakableEnchantment] Enabling UnbreakableEnchantment v1.0.0
[14:46:40] [Server thread/INFO]: [SurvivalInvisiframes] Enabling SurvivalInvisiframes v2.1.0
[14:46:40] [Server thread/INFO]: [InfinityStones] Enabling InfinityStones v1.47
[14:46:40] [Server thread/INFO]: [InfinityStones] [STDOUT] InfinityStones has been enabled!
[14:46:40] [Server thread/WARN]: Nag author(s): '[]' of 'InfinityStones' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:46:40] [Server thread/INFO]: [EpicElevators] Enabling EpicElevators v1.0
[14:46:40] [Server thread/INFO]: 
[14:46:40] [Server thread/INFO]: [Aufzug] EpicElevators Plugin has been enabled!
[14:46:40] [Server thread/INFO]: 
[14:46:40] [Server thread/INFO]: Author: _2late_
[14:46:40] [Server thread/INFO]: 
[14:46:40] [Server thread/INFO]: Support Discord: https://discord.gg/Uk7MTCaCPp
[14:46:40] [Server thread/INFO]: 
[14:46:40] [Server thread/INFO]: [Aufzug] PlotSquared connected!
[14:46:40] [Server thread/INFO]: [Trashcan] Enabling Trashcan v1.6
[14:46:40] [Server thread/INFO]: Plugin enabled !
[14:46:41] [Server thread/INFO]: [CommandBlocker] Enabling CommandBlocker v1.0-SNAPSHOT
[14:46:41] [Server thread/INFO]: [EntityCages] Enabling EntityCages v1.0.5
[14:46:41] [Server thread/INFO]: [VariableEnderChests] Enabling VariableEnderChests v1.5
[14:46:41] [Server thread/INFO]: [global] Opened database at plugins/VariableEnderChests/data.db successfully
[14:46:41] [Server thread/INFO]: [ez-broadcast] Enabling ez-broadcast v1.5
[14:46:41] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[14:46:41] [Server thread/INFO]: [BuycraftX] Validating your server key...
[14:46:41] [Server thread/WARN]: [BuycraftX] Your server and webstore online mode settings are mismatched. Unless you are using a proxy and server combination (such as BungeeCord/Spigot or LilyPad/Connect) that corrects UUIDs, then you may experience issues with packages not applying.
[14:46:41] [Server thread/WARN]: [BuycraftX] If you have verified that your set up is correct, you can suppress this message by setting is-bungeecord=true in your BuycraftX config.properties.
[14:46:42] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[14:46:42] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[14:46:42] [Server thread/INFO]: [Votifier] Loaded token for website: default
[14:46:42] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[14:46:42] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[14:46:42] [Server thread/INFO]: [SpigotOnlyProxyJoin] Enabling SpigotOnlyProxyJoin v1.0-SNAPSHOT
[14:46:42] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.31
[14:46:42] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0%0]:8192.
[14:46:42] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-10.0.31-Premium.jar
[14:46:42] [Server thread/INFO]: [LibsDisguises] Discovered nms version: v1_19_R1
[14:46:42] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1119
[14:46:42] [Server thread/INFO]: [LibsDisguises] Build Date: 09/08/2022 06:41
[14:46:42] [Server thread/INFO]: [LibsDisguises] Registered to: 1445763 (30)
[14:46:42] [Server thread/INFO]: [LibsDisguises] Premium enabled, thank you for supporting Lib's Disguises!
[14:46:48] [pool-28-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared will fetch UUIDs in groups of 200
[14:46:48] [pool-28-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared has cached 100,0% of UUIDs
[14:46:48] [pool-28-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared has cached all UUIDs
[14:46:55] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[14:46:55] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[14:46:55] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[14:46:55] [Server thread/INFO]: [MobsManager] Enabling MobsManager v4.1.0
[14:46:55] [Server thread/INFO]: [UltimateTNT] Enabling UltimateTNT v1.11.6
[14:46:55] [Server thread/INFO]: [RHSignItem] Enabling RHSignItem v1.18_R5
[14:46:55] [Server thread/INFO]: [RHSignItem] The plugin has been loaded!
[14:46:55] [Server thread/INFO]: [RHSignItem] You are using version 1.18_R5 /w 💕 by X0R3 & GeekLegend
[14:46:55] [Server thread/INFO]: [RHSignItem] Info:
[14:46:55] [Server thread/INFO]: [RHSignItem] If you want your server be presented on the plugin page, then please contact me! :)
[14:46:55] [Server thread/INFO]: [InventoryAPI] Enabling InventoryAPI v1.0
[14:46:55] [Server thread/INFO]: [ColoredAnvils] Enabling ColoredAnvils v2.0.0
[14:46:55] [Server thread/INFO]: [ColoredAnvils] ColoredAnvils v2.0.0 has been enabled!
[14:46:55] [Server thread/INFO]: [ColoredAnvils] git-Paper-210 (MC: 1.19.2)   1.19.2-R0.1-SNAPSHOT
[14:46:55] [Server thread/INFO]: [CustomRecipeAPI] Enabling CustomRecipeAPI v1.6.0
[14:46:55] [Server thread/INFO]: [CustomRecipeAPI] [STDOUT] [CRAPI] CustomRecipeAPI enabled!
[14:46:55] [Server thread/WARN]: Nag author(s): '[]' of 'CustomRecipeAPI' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:46:55] [Server thread/INFO]: [OnlineTime] Enabling OnlineTime v2.0.2
[14:46:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: onlinetime [2.0.2]
[14:46:55] [Server thread/INFO]: [OnlineTime] Hooked into PlaceholderAPI.
[14:46:55] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.2
[14:46:55] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.2*-=-=-=-=-=-=-=-=-=-*
[14:46:55] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[14:46:55] [Server thread/INFO]: | Command file(s) found : 1
[14:46:55] [Server thread/INFO]: | Config : Ready.
[14:46:55] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[14:46:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mycommand [1.0.0]
[14:46:55] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[14:46:55] [Server thread/INFO]: | Custom commands loaded : 12
[14:46:55] [Server thread/INFO]: | New update available : MyCommand v5.7.3
[14:46:55] [Server thread/INFO]: | 1 (custom) commands in cooldown added.
[14:46:55] [Server thread/WARN]: [MyCommand] Loaded class com.comphenix.protocol.events.PacketListener from ProtocolLib v5.0.0-SNAPSHOT-b600 which is not a depend or softdepend of this plugin.
[14:46:55] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[14:46:55] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[14:46:55] [Server thread/INFO]: [GamePoints] Enabling GamePoints v1.3.4
[14:46:55] [Server thread/INFO]: [GamePoints] Powered by: NexEngine
[14:46:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gamepoints [1.3.4]
[14:46:55] [Server thread/INFO]: [GamePoints] Successfully hooked with PlaceholderAPI!
[14:46:55] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[14:46:55] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@6f664193
[14:46:55] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[14:46:56] [Server thread/INFO]: [GamePoints] Stores Loaded: 2
[14:46:56] [Server thread/INFO]: [GamePoints] Plugin loaded in 151 ms!
[14:46:56] [Server thread/INFO]: [DeepStoragePlus] Enabling DeepStoragePlus v1.11.6
[14:46:56] [Server thread/INFO]: [DeepStoragePlus] [DeepStoragePlus] DeepStoragePlus enabled!
[14:46:56] [Server thread/INFO]: [SimpleHomes] Enabling SimpleHomes v2.6
[14:46:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: SimpleHomes [1.1]
[14:46:56] [Server thread/INFO]: 
[14:46:56] [Server thread/INFO]: >>
[14:46:56] [Server thread/INFO]: >> SimpleHomes Enabled
[14:46:56] [Server thread/INFO]: >> Version 2.6
[14:46:56] [Server thread/INFO]: >>
[14:46:56] [Server thread/INFO]: >> Developed by KayTeam © 2020 - 2022. All rights reserved.
[14:46:56] [Server thread/INFO]: >> https://www.kayteam.org
[14:46:56] [Server thread/INFO]: >>
[14:46:56] [Server thread/INFO]: 
[14:46:56] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.17.0
[14:46:56] [Server thread/INFO]: [HeadDatabase] Verwende "de_DE.lang" erstellt von Knatschkopp
[14:46:56] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[14:46:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: hdb [4.17.0]
[14:46:57] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.9.2
[14:46:57] [Server thread/WARN]: [VotingPlugin] Loaded class de.myzelyam.api.vanish.PostPlayerShowEvent from PremiumVanish v2.7.22 which is not a depend or softdepend of this plugin.
[14:46:57] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[14:46:57] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.9.2
[14:46:57] [Server thread/WARN]: [VotingPlugin] No vote has been recieved from https://minecraft-server.eu, may be an invalid service site. Please read: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[14:46:57] [Server thread/INFO]: [Booster] Enabling Booster v7.7
[14:46:57] [Server thread/INFO]: ----------------------------------------------------
[14:46:57] [Server thread/INFO]: 
[14:46:57] [Server thread/INFO]:   ____                  _            
[14:46:57] [Server thread/INFO]:  |  _ \                | |           
[14:46:57] [Server thread/INFO]:  | |_) | ___   ___  ___| |_ ___ _ __ 
[14:46:57] [Server thread/INFO]:  |  _ < / _ \ / _ \/ __| __/ _ \ '__|
[14:46:57] [Server thread/INFO]:  | |_) | (_) | (_) \__ \ ||  __/ |   
[14:46:57] [Server thread/INFO]:  |____/ \___/ \___/|___/\__\___|_|   
[14:46:57] [Server thread/INFO]: 
[14:46:57] [Server thread/INFO]: Das Plugin Booster wurde von JakobG programmiert!
[14:46:57] [Server thread/INFO]: Version: 7.7
[14:46:57] [Server thread/INFO]: 
[14:46:57] [Server thread/INFO]: ----------------------------------------------------
[14:46:57] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[14:46:57] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[14:46:57] [Server thread/INFO]: [Booster] MySQL verbunden!
[14:46:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: booster [7.7]
[14:46:57] [Server thread/INFO]: [Booster] PlaceholderAPI wurde geladen!
[14:46:57] [Server thread/INFO]: [AdvancedTeleport] Enabling AdvancedTeleport v5.6.4
[14:46:57] [Server thread/INFO]: [AdvancedTeleport] Advanced Teleport is now enabling...
[14:46:57] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.7+216b061
[14:46:57] [Server thread/INFO]: [WorldGuard] (WorldsLegacy) TNT ignition is PERMITTED.
[14:46:57] [Server thread/INFO]: [WorldGuard] (WorldsLegacy) Lighters are PERMITTED.
[14:46:57] [Server thread/INFO]: [WorldGuard] (WorldsLegacy) Lava fire is PERMITTED.
[14:46:57] [Server thread/INFO]: [WorldGuard] (WorldsLegacy) Fire spread is UNRESTRICTED.
[14:46:57] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'WorldsLegacy'
[14:46:57] [Server thread/INFO]: [WorldGuard] Loading region data...
[14:46:58] [Server thread/WARN]: [NexEngine] Loaded class com.sk89q.worldguard.WorldGuard from WorldGuard v7.0.7+216b061 which is not a depend or softdepend of this plugin.
[14:46:58] [Server thread/INFO]: [NexEngine] Successfully hooked with WorldGuard!
[14:46:58] [Server thread/INFO]: [PlotBorder] Enabling PlotBorder v1.9.2
[14:46:58] [Server thread/INFO]: [ElementalGems] Enabling ElementalGems v1.8.4
[14:46:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: elementalgems [1.8.4]
[14:46:58] [Server thread/INFO]: MySQL Enabled. Attempting to connect to database...
[14:46:58] [Server thread/INFO]: MySQL successfully connected
[14:46:58] [Server thread/INFO]: [ElementalGems] Created by ElementalGaming
[14:46:58] [Server thread/INFO]: [ElementalGems] -------------------------
[14:46:58] [Server thread/INFO]: [ElementalGems] Plugin has been Enabled!
[14:46:58] [Server thread/INFO]: [ElementalGems] -------------------------
[14:46:58] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.7.5
[14:46:58] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] Enabling ntdLuckyBlock v2.7.7
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] Thanks for installing PREMIUM plugin version!
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] Starting LuckyBlock (ntdLuckyBlock) v2.7.7, build101(01/10/2022), premium
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] user: 1445763, resource ID: 94872, nonce: -864864211
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock]   ╭╮╱╱╭╮╱╭┳━━━┳╮╭━┳╮╱╱╭┳━━╮╭╮╱╱╭━━━┳━━━┳╮╭━╮
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock]   ┃┃╱╱┃┃╱┃┃╭━╮┃┃┃╭┫╰╮╭╯┃╭╮┃┃┃╱╱┃╭━╮┃╭━╮┃┃┃╭╯
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock]   ┃┃╱╱┃┃╱┃┃┃╱╰┫╰╯╯╰╮╰╯╭┫╰╯╰┫┃╱╱┃┃╱┃┃┃╱╰┫╰╯╯
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock]   ┃┃╱╭┫┃╱┃┃┃╱╭┫╭╮┃╱╰╮╭╯┃╭━╮┃┃╱╭┫┃╱┃┃┃╱╭┫╭╮┃
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock]   ┃╰━╯┃╰━╯┃╰━╯┃┃┃╰╮╱┃┃╱┃╰━╯┃╰━╯┃╰━╯┃╰━╯┃┃┃╰╮
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock]   ╰━━━┻━━━┻━━━┻╯╰━╯╱╰╯╱╰━━━┻━━━┻━━━┻━━━┻╯╰━╯ NTD
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock]           Made with love by DenBeKKer
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] 
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] =-= SUPPORT  BUG REPORTING  FEATURE REQUESTING =-=
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock]  > Discord - https://discord.gg/vbYW3sperj
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock]  > Vkontakte - https://vk.com/danirodplay (Rus)
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] =-= SUPPORT  BUG REPORTING  FEATURE REQUESTING =-=
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] Loaded main material version
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] Loading NMS for your platform (git-Paper-210 (MC: 1.19.2), v1_19_R1)...
[14:46:58] [Server thread/WARN]: [ntdLuckyBlock] Loading unverified language file! It may contains exceptions or illegal words. Check before using is recommended
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] Loading language file "de" by Luke
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] FastAsyncWorldEdit support enabled
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] Vault connected
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] WorldEdit connected
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] WorldGuard connected
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] BedWars1058 not found
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] MBedwars not found
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] CoreProtect not found
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] TokenManager not found
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] SlimeFun not found
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] MMOItems not found
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] MythicMobs not found
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] Found 3/10 compatible plugins
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] Loading system...
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] Laden von 1 LuckyBlock-Typen...
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] Loaded 13 internal custom items...
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] Loaded 13 custom items... (Total)
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] Registered a new custom item - LuckyBow (0 events)
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] System loaded (took 27 ms)...
[14:46:58] [Server thread/INFO]: [ntdLuckyBlock] Enabled (took 113 ms)... 
[14:46:58] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[14:46:58] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[14:46:58] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[14:46:58] [Server thread/INFO]: Preparing start region for dimension minecraft:farmwelt
[14:47:00] [Server thread/INFO]: Time elapsed: 1222 ms
[14:47:00] [Server thread/INFO]: [WorldGuard] (Farmwelt) TNT ignition is PERMITTED.
[14:47:00] [Server thread/INFO]: [WorldGuard] (Farmwelt) Lighters are PERMITTED.
[14:47:00] [Server thread/INFO]: [WorldGuard] (Farmwelt) Lava fire is PERMITTED.
[14:47:00] [Server thread/INFO]: [WorldGuard] (Farmwelt) Fire spread is UNRESTRICTED.
[14:47:00] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Farmwelt'
[14:47:00] [Server thread/INFO]: Preparing start region for dimension minecraft:questwelt
[14:47:00] [Server thread/INFO]: Time elapsed: 33 ms
[14:47:00] [Server thread/INFO]: [WorldGuard] (Questwelt) TNT ignition is PERMITTED.
[14:47:00] [Server thread/INFO]: [WorldGuard] (Questwelt) Lighters are PERMITTED.
[14:47:00] [Server thread/INFO]: [WorldGuard] (Questwelt) Lava fire is PERMITTED.
[14:47:00] [Server thread/INFO]: [WorldGuard] (Questwelt) Fire spread is UNRESTRICTED.
[14:47:00] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Questwelt'
[14:47:00] [Server thread/INFO]: Preparing start region for dimension minecraft:nether
[14:47:00] [Server thread/INFO]: Time elapsed: 13 ms
[14:47:00] [Server thread/INFO]: [WorldGuard] (Nether) TNT ignition is PERMITTED.
[14:47:00] [Server thread/INFO]: [WorldGuard] (Nether) Lighters are PERMITTED.
[14:47:00] [Server thread/INFO]: [WorldGuard] (Nether) Lava fire is PERMITTED.
[14:47:00] [Server thread/INFO]: [WorldGuard] (Nether) Fire spread is UNRESTRICTED.
[14:47:00] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Nether'
[14:47:00] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Testwelt
[14:47:00] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[14:47:00] [Server thread/INFO]: Preparing start region for dimension minecraft:ende
[14:47:00] [Server thread/INFO]: Time elapsed: 73 ms
[14:47:00] [Server thread/INFO]: [WorldGuard] (Ende) TNT ignition is PERMITTED.
[14:47:00] [Server thread/INFO]: [WorldGuard] (Ende) Lighters are PERMITTED.
[14:47:00] [Server thread/INFO]: [WorldGuard] (Ende) Lava fire is PERMITTED.
[14:47:00] [Server thread/INFO]: [WorldGuard] (Ende) Fire spread is UNRESTRICTED.
[14:47:00] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Ende'
[14:47:00] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: fw
[14:47:00] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[14:47:00] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Eventwelt
[14:47:00] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[14:47:00] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world
[14:47:00] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[14:47:00] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world_the_end
[14:47:00] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[14:47:00] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[14:47:01] [Server thread/INFO]: Time elapsed: 138 ms
[14:47:01] [Server thread/INFO]: [WorldGuard] (WorldsLegacy_the_end) TNT ignition is PERMITTED.
[14:47:01] [Server thread/INFO]: [WorldGuard] (WorldsLegacy_the_end) Lighters are PERMITTED.
[14:47:01] [Server thread/INFO]: [WorldGuard] (WorldsLegacy_the_end) Lava fire is PERMITTED.
[14:47:01] [Server thread/INFO]: [WorldGuard] (WorldsLegacy_the_end) Fire spread is UNRESTRICTED.
[14:47:01] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'WorldsLegacy_the_end'
[14:47:01] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: world_nether
[14:47:01] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[14:47:01] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[14:47:01] [Server thread/INFO]: Time elapsed: 193 ms
[14:47:01] [Server thread/INFO]: [WorldGuard] (WorldsLegacy_nether) TNT ignition is PERMITTED.
[14:47:01] [Server thread/INFO]: [WorldGuard] (WorldsLegacy_nether) Lighters are PERMITTED.
[14:47:01] [Server thread/INFO]: [WorldGuard] (WorldsLegacy_nether) Lava fire is PERMITTED.
[14:47:01] [Server thread/INFO]: [WorldGuard] (WorldsLegacy_nether) Fire spread is UNRESTRICTED.
[14:47:01] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'WorldsLegacy_nether'
[14:47:01] [Server thread/INFO]: [Multiverse-Core] 7 - World(s) loaded.
[14:47:01] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[14:47:01] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[14:47:01] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2673)
[14:47:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[14:47:02] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[14:47:02] [Server thread/WARN]: [NexEngine] Loaded class net.citizensnpcs.api.trait.TraitInfo from Citizens v2.0.30-SNAPSHOT (build 2673) which is not a depend or softdepend of this plugin.
[14:47:02] [Server thread/INFO]: [NexEngine] Successfully hooked with Citizens!
[14:47:02] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.16.2
[14:47:02] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
[14:47:02] [Server thread/INFO]: [Shopkeepers] Loading the data of 1 shopkeepers ...
[14:47:02] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.0.6
[14:47:02] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[14:47:02] [Server thread/INFO]: [ExcellentCrates] Successfully hooked with DecentHolograms!
[14:47:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: excellentcrates [4.0.6]
[14:47:02] [Server thread/INFO]: [ExcellentCrates] Successfully hooked with PlaceholderAPI!
[14:47:02] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Starting...
[14:47:02] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-3 - Added connection org.sqlite.jdbc4.JDBC4Connection@599299ac
[14:47:02] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Start completed.
[14:47:02] [Server thread/INFO]: [ExcellentCrates] Loaded 5 animation configs.
[14:47:02] [Server thread/INFO]: [ExcellentCrates] Loaded 10 crate keys.
[14:47:02] [Server thread/INFO]: [ExcellentCrates] Loaded 2 crate menus.
[14:47:02] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 202 ms!
[14:47:02] [Server thread/INFO]: [UpgradeableHoppers] Enabling UpgradeableHoppers v4.7.0
[14:47:02] [Server thread/INFO]: [UpgradeableHoppers] Version: 4.7.0 Previous: 4.7.0
[14:47:02] [Server thread/INFO]: [UpgradeableHoppers] Server: 1.19.x running Paper
[14:47:02] [Server thread/INFO]: [UpgradeableHoppers] Licensed to: 1445763
[14:47:02] [Server thread/INFO]: [UpgradeableHoppers] Experiencing issues or having questions? Join our Discord!
[14:47:02] [Server thread/INFO]: [UpgradeableHoppers] Discord: https://discord.gg/B4MAJVk
[14:47:02] [Server thread/INFO]: [UpgradeableHoppers] Wiki: https://github.com/Angeschossen/UpgradeableHoppers/wiki
[14:47:02] [Server thread/INFO]: [UpgradeableHoppers]  
[14:47:02] [Server thread/INFO]: [UpgradeableHoppers] Using SQLITE as database driver.
[14:47:02] [Server thread/INFO]: [UpgradeableHoppers] Successful connected to SQL database.
[14:47:02] [Server thread/INFO]: [UpgradeableHoppers] There are hoppers in 219 chunks of world 'WorldsLegacy'.
[14:47:02] [Server thread/INFO]: [UpgradeableHoppers] Database is ready.
[14:47:02] [Server thread/INFO]: [GrapplingHook] Enabling GrapplingHook v3.1
[14:47:02] [Server thread/INFO]: [GrapplingHook] +-----------------------------------------------+
[14:47:02] [Server thread/INFO]: [GrapplingHook]   Server Version: 1.19.2 -> API-Version: 1.13 and above
[14:47:02] [Server thread/INFO]: [GrapplingHook]   WorldGuard loaded
[14:47:02] [Server thread/INFO]: [GrapplingHook]   Grappling hooks loaded: 5
[14:47:02] [Server thread/INFO]: [GrapplingHook] +---------------[ By Keule2 (16ms) ]-------------+
[14:47:02] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR3.0.1
[14:47:02] [Server thread/INFO]: [ModelEngine] Compatibility applied: Citizens
[14:47:02] [Server thread/INFO]: [ArmorStandTools] Enabling ArmorStandTools v4.4.4
[14:47:02] [Server thread/INFO]: [ArmorStandTools] PlotSquared plugin was found. PlotSquared support enabled.
[14:47:02] [Server thread/INFO]: [ArmorStandTools] WorldGuard plugin found. WorldGuard support enabled.
[14:47:02] [Server thread/INFO]: [QuickShop] Enabling QuickShop v5.1.0.9
[14:47:02] [Server thread/INFO]: [QuickShop] QuickShop Reremake
[14:47:02] [Server thread/INFO]: [QuickShop] Starting plugin self-test, please wait...
[14:47:03] [Server thread/INFO]: [QuickShop] [OK] Signature Verify
[14:47:03] [Server thread/INFO]: [QuickShop] [OK] Plugin Manifest Check
[14:47:03] [Server thread/INFO]: [QuickShop] [OK] Potential Infection Characteristics Check
[14:47:03] [Server thread/INFO]: [QuickShop] [OK] Java Runtime Environment Version Test
[14:47:03] [Server thread/INFO]: [QuickShop] Running QuickShop-Reremake on NMS version v1_19_R1 For Minecraft version 1.19.2
[14:47:03] [Server thread/INFO]: [QuickShop] [OK] Spigot Based Server Test
[14:47:03] [Server thread/INFO]: [QuickShop] [OK] Old QuickShop Test
[14:47:03] [Server thread/INFO]: [QuickShop] [OK] ModdedServer Based Test
[14:47:03] [Server thread/INFO]: [QuickShop] [OK] CoreSupport Test
[14:47:03] [Server thread/INFO]: [QuickShop] [OK] Virtual DisplayItem Support Test
[14:47:03] [Server thread/INFO]: [QuickShop] [OK] GameVersion supporting Test
[14:47:03] [Server thread/INFO]: [QuickShop] [OK] PacketListenerAPI Conflict Test
[14:47:03] [Server thread/INFO]: [QuickShop] [OK] Permission Manager Test
[14:47:03] [Server thread/INFO]: [QuickShop] [OK] End of life Test
[14:47:03] [Server thread/INFO]: [QuickShop] Reading the configuration...
[14:47:03] [Server thread/INFO]: [QuickShop] Developers: PotatoCraft Studio, Netherfoam, Timtower, KaiNoMood (KaiKikuchi), jho5245, Ghost_chu, cakoyo, Ectabro, portlek, log4b0at, Andre601, deadman96385, Vlvxingze, DoctaEnkoda, Mgazul, TiaraRinne, sandtechnology, Starmism, Chris6ix, Rean Schwarzer, mart-r, raphtaliapt, Tim269, creatorfromhell, LoneDev6, judgetread, confuxeon, ibmibmibm, yannicklamprecht, PyvesB, PaulBGD, ORelio, JoschuaSchneider, Starmium, harry0198, efekurbann, tdiant
[14:47:03] [Server thread/INFO]: [QuickShop] Original author: Netherfoam, Timtower, KaiNoMood
[14:47:03] [Server thread/INFO]: [QuickShop] Let's start loading the plugin
[14:47:03] [Server thread/INFO]: [QuickShop] Chat processor selected: Hardcoded BungeeChat Lib
[14:47:03] [Server thread/INFO]: [QuickShop] Loading plugin translations files...
[14:47:03] [Server thread/INFO]: [QuickShop] Game assets server selected: Mojang API
[14:47:03] [Server thread/INFO]: [QuickShop] Loading items translations...
[14:47:03] [Server thread/INFO]: [QuickShop] Loading enchantments translations...
[14:47:03] [Server thread/INFO]: [QuickShop] Loading potions translations...
[14:47:03] [Server thread/INFO]: [QuickShop] Successfully loaded PlaceHolderAPI support!
[14:47:03] [Server thread/INFO]: [QuickShop] Successfully loaded WorldEdit support!
[14:47:03] [Server thread/INFO]: [QuickShop] Using Virtual Item display, loading ProtocolLib support...
[14:47:03] [Server thread/INFO]: [QuickShop] Successfully loaded ProtocolLib support!
[14:47:03] [Server thread/INFO]: [QuickShop] Setting up database...
[14:47:03] [Server thread/INFO]: [QuickShop] Checking and updating database columns, it may take a while...
[14:47:03] [Server thread/INFO]: [QuickShop] Finished!
[14:47:03] [Server thread/INFO]: [QuickShop] Selected permission provider: Bukkit
[14:47:03] [Server thread/INFO]: [QuickShop] Registering commands...
[14:47:03] [Server thread/INFO]: [QuickShop] Loaded 1 rules for listener blacklist.
[14:47:03] [Server thread/INFO]: [QuickShop] EventManager selected: QSEventManager
[14:47:03] [Server thread/INFO]: [QuickShop] Fetching shops from the database...If plugin stuck there, check your database connection.
[14:47:03] [Server thread/INFO]: [QuickShop] Loading shops from the database...
[14:47:04] [Server thread/INFO]: [QuickShop] >> Shop Loader Information
[14:47:04] [Server thread/INFO]: [QuickShop] Total           shops: 52
[14:47:04] [Server thread/INFO]: [QuickShop] Valid           shops: 52
[14:47:04] [Server thread/INFO]: [QuickShop] Pending              : 21
[14:47:04] [Server thread/INFO]: [QuickShop] Waiting worlds loaded: 0
[14:47:04] [Server thread/INFO]: [QuickShop] Waiting chunks loaded: 31
[14:47:04] [Server thread/INFO]: [QuickShop] Done! Used 96ms to loaded shops in database.
[14:47:04] [Server thread/INFO]: [QuickShop] Registering listeners...
[14:47:04] [Server thread/INFO]: [QuickShop] Cleaning MsgUtils...
[14:47:04] [Server thread/INFO]: [QuickShop] Cleaning purchase messages from the database that are over a week old...
[14:47:04] [Server thread/INFO]: [QuickShop] Log actions is enabled, actions will log in the qs.log file!
[14:47:04] [Server thread/INFO]: [QuickShop] [Shop Purger] Purge not enabled!
[14:47:04] [Server thread/INFO]: [QuickShop] QuickShop Loaded! 1122 ms.
[14:47:04] [Server thread/INFO]: [QuickShop] Using economy system: XConomy
[14:47:04] [Server thread/INFO]: [WanderingTrades] Enabling WanderingTrades v1.7.3
[14:47:04] [Server thread/INFO]: [WanderingTrades] Successfully registered Mojang Brigadier support for commands.
[14:47:04] [Server thread/INFO]: [WanderingTrades] Successfully registered asynchronous command completion listener.
[14:47:04] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v3.2.3-r10
[14:47:04] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[14:47:04] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R1' loaded!
[14:47:04] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[14:47:04] [Server thread/INFO]: [ItemsAdder] 
  ___  ___        __        __   __   ___  __      ItemsAdder 3.2.3-r10
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     LoneLibs 1.0.19
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Paper git-Paper-210 (MC: 1.19.2)
                                               
[14:47:04] [Server thread/INFO]: [ItemsAdder] LightAPI not installed, please install it to see blocks emitting light: https://a.devs.beer/lightapi-new
[14:47:05] [Server thread/INFO]: [ItemsAdder] Registered Citizens NPC Trait: customentity
[14:47:05] [Server thread/INFO]: [Quests] Enabling Quests v4.6.0-b361
[14:47:05] [Server thread/WARN]: [Quests] There are new language phrases in /lang/de-DE/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[14:47:05] [Server thread/WARN]: [Quests] There are new language phrases in /lang/de-DE/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[14:47:05] [Server thread/WARN]: [Quests] There are new language phrases in /lang/de-DE/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[14:47:05] [Server thread/INFO]: [Quests] Loaded language de-DE. Translations via Crowdin
[14:47:05] [Server thread/INFO]: [Quests] Successfully linked Quests with Citizens 2.0.30-SNAPSHOT (build 2673)
[14:47:05] [Server thread/INFO]: [Quests] Loading storage implementation: YAML
[14:47:05] [Server thread/INFO]: [CustomDrops] Enabling CustomDrops v1.9.4
[14:47:05] [Server thread/INFO]: [Multiverse-Inventories] Enabling Multiverse-Inventories v4.2.3-b523
[14:47:05] [Server thread/INFO]: [Multiverse-Inventories] The following worlds for group 'default' are not loaded: world_the_end, Eventwelt, world
[14:47:05] [Server thread/INFO]: [Multiverse-Inventories 4.2.3-b523] enabled.
[14:47:05] [Server thread/INFO]: [Bank] Enabling Bank v4.5.6-RELEASE
[14:47:06] [Server thread/INFO]: [Bank] Bank Enabled
[14:47:06] [Server thread/WARN]: [Core] Loaded class me.dablakbandit.bank.inventory.admin.BankAdminInventories from Bank v4.5.6-RELEASE which is not a depend or softdepend of this plugin.
[14:47:06] [Server thread/INFO]: [PremiumVanish] Enabling PremiumVanish v2.7.22
[14:47:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: premiumvanish [2.7.22]
[14:47:06] [Server thread/INFO]: [PremiumVanish] Hooked into PlaceholderAPI
[14:47:06] [Server thread/INFO]: [PremiumVanish] Hooked into LibsDisguises
[14:47:06] [Server thread/INFO]: [PremiumVanish] Hooked into Citizens
[14:47:06] [Server thread/INFO]: [UltimateClans] Enabling UltimateClans v5.5.1
[14:47:06] [Server thread/INFO]: [UltimateClans] ========================================
[14:47:06] [Server thread/INFO]: [UltimateClans]  _     _  _        _                              ______  _                     
[14:47:06] [Server thread/INFO]: [UltimateClans] | |   | || | _    (_)               _            / _____)| |                  V5
[14:47:06] [Server thread/INFO]: [UltimateClans] | |   | || || |_   _  ____    ____ | |_    ____ | /      | |  ____  ____    ___ 
[14:47:06] [Server thread/INFO]: [UltimateClans] | |   | || ||  _) | ||    \  / _  ||  _)  / _  )| |      | | / _  ||  _ \  /___)
[14:47:06] [Server thread/INFO]: [UltimateClans] | |___| || || |__ | || | | |( ( | || |__ ( (/ / | \_____ | |( ( | || | | ||___ |
[14:47:06] [Server thread/INFO]: [UltimateClans]  \______||_| \___)|_||_|_|_| \_||_| \___) \____) \______)|_| \_||_||_| |_|(___/ 
[14:47:06] [Server thread/INFO]: [UltimateClans]  
[14:47:06] [Server thread/INFO]: [UltimateClans] Licensed to: Thorsten (15699)
[14:47:06] [Server thread/INFO]: [UltimateClans] Language: DE (default)
[14:47:06] [Server thread/INFO]: [me.ulrich.clans.library.hikari.HikariDataSource] HikariPool-1 - Starting...
[14:47:06] [Server thread/INFO]: [me.ulrich.clans.library.hikari.HikariDataSource] HikariPool-1 - Start completed.
[14:47:06] [Server thread/INFO]: [UltimateClans] Setup database: SQLITE (Medium)
[14:47:06] [Server thread/INFO]: [UltimateClans]  - Clan database [OK]
[14:47:06] [Server thread/INFO]: [UltimateClans]  - Player database [OK]
[14:47:06] [Server thread/INFO]: [UltimateClans] Setup hooks...
[14:47:06] [Server thread/INFO]: [UltimateClans]  - ProtocolLib
[14:47:06] [Server thread/INFO]: [UltimateClans]  - PlaceholderAPI
[14:47:06] [Server thread/INFO]: [UltimateClans]  - ItemsAdder
[14:47:06] [Server thread/INFO]: [UltimateClans]  - WorldGuard 7+
[14:47:06] [Server thread/INFO]: [UltimateClans]  - DecentHolograms
[14:47:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: uclans [UClans V5]
[14:47:06] [Server thread/INFO]: [UltimateClans] Setup bedrock hook...
[14:47:06] [Server thread/INFO]: [UltimateClans]  - Not found.
[14:47:06] [Server thread/INFO]: [UltimateClans] Setup economy...
[14:47:06] [Server thread/INFO]: [UltimateClans]  - Vault
[14:47:06] [Server thread/INFO]: [UltimateClans] Economy: VAULT
[14:47:06] [Server thread/INFO]: [UltimateClans] Started support for Signs.
[14:47:06] [Server thread/INFO]: [UltimateClans] Loaded 46 commands.
[14:47:07] [Server thread/INFO]: [UltimateClans] Setup Addons...
[14:47:07] [Server thread/INFO]: [UltimateClans] ========================================
[14:47:07] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v2.19
[14:47:07] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[14:47:07] [Server thread/INFO]: [ItemEdit] Hooked into PlaceHolderAPI:
[14:47:07] [Server thread/INFO]: [ItemEdit] placeholders:
[14:47:07] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[14:47:07] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[14:47:07] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[14:47:07] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[14:47:07] [Server thread/INFO]: [ItemEdit]       Values: inventory, equip, inventoryandequip, hand, offhand, head, chest, legs, feet
[14:47:07] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[14:47:07] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[14:47:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: itemedit [1.0]
[14:47:07] [Server thread/INFO]: [zAuctionHouseV3] Enabling zAuctionHouseV3 v3.1.0.2
[14:47:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] === ENABLE START ===
[14:47:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Plugin Version V3.1.0.2
[14:47:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] /home/CityBuild/plugins/zAuctionHouseV3/config.json loaded successfully !
[14:47:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Loading of 3 tax items
[14:47:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Loading of 2 price items
[14:47:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Loading the Blocks category with 898 materials
[14:47:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Loading the Potions category with 17 materials
[14:47:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Loading the Tools category with 16 materials
[14:47:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Loading the Weapons category with 8 materials
[14:47:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Attention, the category misc is empty
[14:47:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: zauctionhouse [3.1.0.2]
[14:47:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Loading 3 inventories
[14:47:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Loading 0 commands
[14:47:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] /home/CityBuild/plugins/zAuctionHouseV3/items.json loaded successfully !
[14:47:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] === ENABLE DONE (117ms) ===
[14:47:07] [Server thread/INFO]: [BookShelf] Enabling Bookshelf v3.1.0.0
[14:47:07] [Server thread/INFO]: [Bookshelf] Hooked into SuperVanish/PremiumVanish!
[14:47:07] [Server thread/INFO]: [Bookshelf] Hooked into WorldGuard!
[14:47:07] [Server thread/INFO]: [Bookshelf] Hooked into PlotSquared (v6)!
[14:47:07] [Bookshelf World Processing Thread #0/INFO]: [Bookshelf] Preparing bookshelves in spawn chunks in WorldsLegacy: 0%
[14:47:07] [Server thread/INFO]: [Bookshelf] Preparing bookshelves in spawn chunks in WorldsLegacy: 100%
[14:47:07] [Bookshelf World Processing Thread #1/INFO]: [Bookshelf] Preparing bookshelves in spawn chunks in Farmwelt: 0%
[14:47:07] [Server thread/INFO]: [Bookshelf] Preparing bookshelves in spawn chunks in Farmwelt: 100%
[14:47:07] [Bookshelf World Processing Thread #2/INFO]: [Bookshelf] Preparing bookshelves in spawn chunks in Questwelt: 0%
[14:47:07] [Server thread/INFO]: [Bookshelf] Preparing bookshelves in spawn chunks in Questwelt: 100%
[14:47:07] [Bookshelf World Processing Thread #3/INFO]: [Bookshelf] Preparing bookshelves in spawn chunks in Nether: 0%
[14:47:07] [Server thread/INFO]: [Bookshelf] Preparing bookshelves in spawn chunks in Nether: 100%
[14:47:07] [Bookshelf World Processing Thread #4/INFO]: [Bookshelf] Preparing bookshelves in spawn chunks in Ende: 0%
[14:47:07] [Server thread/INFO]: [Bookshelf] Preparing bookshelves in spawn chunks in Ende: 100%
[14:47:07] [Bookshelf World Processing Thread #5/INFO]: [Bookshelf] Preparing bookshelves in spawn chunks in WorldsLegacy_the_end: 0%
[14:47:07] [Server thread/INFO]: [Bookshelf] Preparing bookshelves in spawn chunks in WorldsLegacy_the_end: 100%
[14:47:07] [Bookshelf World Processing Thread #6/INFO]: [Bookshelf] Preparing bookshelves in spawn chunks in WorldsLegacy_nether: 0%
[14:47:07] [Server thread/INFO]: [Bookshelf] Preparing bookshelves in spawn chunks in WorldsLegacy_nether: 100%
[14:47:07] [Server thread/INFO]: [Bookshelf] BookShelf has been Enabled!
[14:47:07] [Server thread/INFO]: [WorldsLegacy] Enabling WorldsLegacy v1.0
[14:47:07] [Server thread/WARN]: [WorldsLegacy] Loaded class net.cytocloud.asyncsql.AsyncSQL from AsyncSQL v1.0-SNAPSHOT which is not a depend or softdepend of this plugin.
[14:47:07] [Server thread/INFO]: Alle Systeme wurden erfolgreich registriert.
[14:47:07] [Server thread/INFO]: [BreakBlock] Enabling BreakBlock v1.0-SNAPSHOT
[14:47:07] [Server thread/INFO]: Ein externes System wurde registriert "breakblock"
[14:47:07] [Server thread/INFO]: [DirectionalBlock] Enabling DirectionalBlock v1.2
[14:47:07] [Server thread/INFO]: [DirectionalBlock] Plugin Enabled
[14:47:07] [Server thread/INFO]: [InvSee++] Enabling InvSeePlusPlus v0.12.10-SNAPSHOT
[14:47:07] [Server thread/INFO]: [ChatColor2] Enabling ChatColor2 v1.12.3
[14:47:07] [Server thread/INFO]: [CityBuild] ChatColor 2 Version 1.12.3 has been enabled.
[14:47:07] [Server thread/INFO]: [CityBuild] Current update: Customisable listener priority!
[14:47:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cc [1.12.3]
[14:47:07] [Server thread/INFO]: [CityBuild] PlaceholderAPI has been hooked.
[14:47:07] [Server thread/INFO]: [CityBuild] Metrics is enabled for this plugin. Stats sent to https://bstats.org/plugin/bukkit/ChatColor2
[14:47:07] [Server thread/INFO]: [SCore] Enabling SCore v3.5.7
[14:47:07] [Server thread/INFO]: ================ [SCore] ================
[14:47:07] [Server thread/INFO]: [SCore] ExecutableBlocks hooked !
[14:47:07] [Server thread/INFO]: [SCore] PlaceholderAPI hooked !
[14:47:07] [Server thread/INFO]: [SCore] WorldGuard hooked !
[14:47:07] [Server thread/INFO]: [SCore] Vault hooked !
[14:47:07] [Server thread/INFO]: [SCore] Multiverse-Core hooked !
[14:47:07] [Server thread/INFO]: [SCore] ProtocolLib hooked !
[14:47:07] [Server thread/INFO]: [SCore] PlotSquared hooked !
[14:47:07] [Server thread/INFO]: [SCore] HeadDatabase hooked !
[14:47:07] [Server thread/INFO]: [SCore] DecentHolograms hooked !
[14:47:07] [Server thread/INFO]: [SCore] ItemsAdder hooked !
[14:47:07] [Server thread/INFO]: [SCore] Locale setup: EN
[14:47:07] [Server thread/INFO]: [SCore] Language setup on EN
[14:47:07] [Server thread/INFO]: [SCore]  Connection to the db...
[14:47:07] [Server thread/INFO]: [SCore] [SCore] Verification of the table SecurityOP...
[14:47:07] [Server thread/INFO]: [SCore] [SCore] Verification of the table Commands...
[14:47:07] [Server thread/INFO]: [SCore] [SCore] Verification of the table Cooldowns...
[14:47:07] [Server thread/INFO]: [SCore] [SCore] Verification of the table Commands Player...
[14:47:07] [Server thread/INFO]: [SCore] [SCore] Verification of the table Commands Entity...
[14:47:07] [Server thread/INFO]: [SCore] [SCore] Verification of the table Commands Block...
[14:47:07] [Server thread/INFO]: [SCore] Verification of the table UsePerDay...
[14:47:08] [Server thread/ERROR]: &cERROR, Couldn't load the Enchantment value of enchantment from config, value: BUNNY_HOP &7&oSProjectile: trident1 &6>> Enchantments available: Look in-game, it's the same name
[14:47:08] [Server thread/ERROR]: &cERROR, Couldn't load the Enchantment value of enchantment from config, value: BUNNY_HOP &7&oSProjectile: tridentCustom1 &6>> Enchantments available: Look in-game, it's the same name
[14:47:08] [Server thread/INFO]: [SCore] 0 saved commands loaded !
[14:47:08] [Server thread/INFO]: ================ [SCore] ================
[14:47:08] [Server thread/INFO]: [ExecutableBlocks] Enabling ExecutableBlocks v3.5.7
[14:47:08] [Server thread/INFO]: [ExecutableBlocks] ================ [ExecutableBlocks] ================
[14:47:08] [Server thread/INFO]: [ExecutableBlocks] WorldEdit hooked !
[14:47:08] [Server thread/INFO]: [ExecutableBlocks] ItemsAdder hooked !
[14:47:08] [Server thread/INFO]: [ExecutableBlocks] Connection to the db...
[14:47:08] [Server thread/INFO]: [ExecutableBlocks] 12 ExecutableBlock(s)Placed loaded !
[14:47:08] [Server thread/INFO]: [ExecutableBlocks] ================ [ExecutableBlocks] ================
[14:47:08] [Server thread/INFO]: [CustomCrafting] Enabling CustomCrafting v3.16.8.1
[14:47:08] [Server thread/INFO]: [CustomCrafting] ____ _  _ ____ ___ ____ _  _ ____ ____ ____ ____ ___ _ _  _ ____ 
[14:47:08] [Server thread/INFO]: [CustomCrafting] |    |  | [__   |  |  | |\/| |    |__/ |__| |___  |  | |\ | | __ 
[14:47:08] [Server thread/INFO]: [CustomCrafting] |___ |__| ___]  |  |__| |  | |___ |  \ |  | |     |  | | \| |__]
[14:47:08] [Server thread/INFO]: [CustomCrafting]     Version    | v3.16.8.1
[14:47:08] [Server thread/INFO]: [CustomCrafting]     WolfyUtils | v4.16.7.0
[14:47:08] [Server thread/INFO]: [CustomCrafting]     Bukkit     | git-Paper-210 (MC: 1.19.2)(API: 1.19.2-R0.1-SNAPSHOT)
[14:47:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[14:47:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R1' loaded!
[14:47:08] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[14:47:09] [Server thread/INFO]: [CustomCrafting] 
[14:47:09] [Server thread/INFO]: [CustomCrafting] Special thanks to my Patrons for supporting this project: 
[14:47:09] [Server thread/INFO]: [CustomCrafting] Omarlatif, Nat R, Junye Zhou, Apprehentice, PwassonDoDouce, Mr_Mint_
[14:47:09] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[14:47:09] [Thread-31/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[14:47:09] [Server thread/INFO]: [CustomCrafting] Loaded fallback language "en_US" v6.0.0 translated by WolfyScript
[14:47:09] [Server thread/INFO]: [CustomCrafting] Loaded active language "en_US" v6.0.0 translated by WolfyScript
[14:47:09] [Server thread/INFO]: [CustomCrafting] Detected ProtocolLib... initiating additional features.
[14:47:09] [Server thread/INFO]: [CustomCrafting] Registering PlaceHolder
[14:47:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: customcrafting [3.16.8.1]
[14:47:09] [Server thread/INFO]: [CustomCrafting] Data destination: LOCAL
[14:47:09] [Server thread/INFO]: [CustomCrafting] Initiating Inventory GUIs
[14:47:09] [Server thread/INFO]: [CustomCrafting] Register ItemCreator Tabs
[14:47:10] [Server thread/INFO]: [CustomCrafting] Loading Cauldrons
[14:47:10] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[14:47:10] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[14:47:10] [Server thread/INFO]: Running delayed init tasks
[14:47:10] [Server thread/WARN]: [FastAsyncWorldEdit] Loaded class com.sk89q.worldguard.protection.association.RegionAssociable from WorldGuard v7.0.7+216b061 which is not a depend or softdepend of this plugin.
[14:47:10] [Craft Scheduler Thread - 16 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[14:47:10] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] 
[14:47:10] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[14:47:10] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] Generating beararmor.bbmodel.
[14:47:10] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[14:47:10] [Craft Scheduler Thread - 15 - GamePoints/INFO]: [GamePoints] Updating balance top...
[14:47:10] [Craft Scheduler Thread - 36 - GamePoints/INFO]: [GamePoints] Auto-save: Saved 0 online users | 0 offline users.
[14:47:10] [Craft Scheduler Thread - 23 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[14:47:10] [Craft Scheduler Thread - 41 - Vault/INFO]: [Vault] Checking for Updates ... 
[14:47:10] [Craft Scheduler Thread - 15 - GamePoints/INFO]: [GamePoints] Balance top updated in 9 ms!
[14:47:10] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.plotsquared.PlotSquaredFeature] Optimizing PlotSquared
[14:47:10] [Craft Scheduler Thread - 7 - PlotSquared/INFO]: [PlotSquared/UpdateUtility] Congratulations! You are running the latest PlotSquared version
[14:47:10] [Craft Scheduler Thread - 17 - GrapplingHook/INFO]: [GrapplingHook] There is a new update available: v_3.1 (Current version: v_3.1)
[14:47:10] [Craft Scheduler Thread - 6 - Booster/INFO]: [Booster] Keine Updates vorhanden!
[14:47:10] [Craft Scheduler Thread - 18 - AdvancedTeleport/INFO]: [AdvancedTeleport] Plugin is up to date!
[14:47:10] [Craft Scheduler Thread - 5 - XConomy/INFO]: [XConomy] Is the latest version
[14:47:10] [Craft Scheduler Thread - 41 - Vault/INFO]: [Vault] No new version available
[14:47:10] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Plugin 'PlotSquared' v6 found. Using it now.
[14:47:10] [Craft Scheduler Thread - 16 - DecentHolograms/INFO]: [DecentHolograms] Loaded 4 holograms!
[14:47:10] [Craft Scheduler Thread - 20 - ItemEdit/INFO]: [ItemEdit] New Update at https://spigotmc.org/resources/40993
[14:47:10] [Craft Scheduler Thread - 27 - ItemsAdder/INFO]: [ItemsAdder] 

[ItemsAdder] UPDATE available: https://www.spigotmc.org/resources/73355/
[ItemsAdder] Current version: 3.2.3-r10 | Online version: 3.2.4-beta1

[14:47:10] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19.1/2 (760)
[14:47:10] [Craft Scheduler Thread - 40 - QuickShop/INFO]: [QuickShop] Failed to check for an update on build server! It might be an internet issue or the build server host is down. If you want disable the update checker, you can disable in config.yml, but we still high-recommend check for updates on SpigotMC.org often, Error: Did not get expected response code, got 403 for https://ci.codemc.io/job/PotatoCraft-Studio/job/QuickShop-Reremake/lastSuccessfulBuild/artifact/target/BUILDINFO
[14:47:11] [Craft Scheduler Thread - 26 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.1.0.2] No update available.
[14:47:11] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] 
[14:47:11] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] Generating bearmeg.bbmodel.
[14:47:11] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] 
[14:47:11] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] Generating dolphin.bbmodel.
[14:47:11] [Server thread/INFO]: [ExcellentCrates] Loaded 10 crates.
[14:47:11] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] 
[14:47:11] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] Generating forestdoe.bbmodel.
[14:47:11] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] 
[14:47:11] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] Generating forestfawn.bbmodel.
[14:47:11] [Server thread/INFO]: [QuickShop] Registering bStats metrics...
[14:47:11] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] 
[14:47:11] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] Generating foreststag.bbmodel.
[14:47:11] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] 
[14:47:11] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] Generating mantaray.bbmodel.
[14:47:11] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] 
[14:47:11] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] Generating whaleshark.bbmodel.
[14:47:11] [Craft Scheduler Thread - 30 - ModelEngine/WARN]: [ModelEngine] --Warning: The bone tailfinpart is translated too far away from the pivot. Maximum translation is 80x80x80. [ 95.20414733886719, -6.400000095367432, 0.0 ]
[14:47:11] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] 
[14:47:11] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] Generating wolfblack.bbmodel.
[14:47:11] [Craft Scheduler Thread - 29 - WanderingTrades/INFO]: [WanderingTrades] There is an update available for WanderingTrades!
[14:47:11] [Craft Scheduler Thread - 29 - WanderingTrades/INFO]: [WanderingTrades] This server is running version v1.7.3, which is 1 versions outdated.
[14:47:11] [Craft Scheduler Thread - 29 - WanderingTrades/INFO]: [WanderingTrades] Download the latest version, v1.8.0 from GitHub at the link below:
[14:47:11] [Craft Scheduler Thread - 29 - WanderingTrades/INFO]: [WanderingTrades] https://github.com/jpenilla/WanderingTrades/releases/tag/v1.8.0
[14:47:11] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] 
[14:47:11] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] Generating wolfgrey.bbmodel.
[14:47:11] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] 
[14:47:11] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] Generating wolfwhite.bbmodel.
[14:47:11] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] 
[14:47:11] [Craft Scheduler Thread - 30 - ModelEngine/INFO]: [ModelEngine] Resource pack zipped.
[14:47:11] [Craft Scheduler Thread - 9 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 49357 heads!
[14:47:11] [Craft Scheduler Thread - 12 - VariableEnderChests/INFO]: [VariableEnderChests] There is a new update available.
[14:47:11] [Craft Scheduler Thread - 9 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[14:47:12] [Server thread/INFO]: [ItemsAdder] [Pack] Extracting utility resource_pack assets from .jar
[14:47:12] [Server thread/INFO]: [ItemsAdder] [Pack] DONE extracting utility resource_pack assets from .jar
[14:47:12] [Craft Scheduler Thread - 25 - ItemsAdder/INFO]: [ItemsAdder] [License] Spigot product licensed to: Insom96 (1445763)
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_jungle_log with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_jungle_log_x with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_jungle_log_z with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:light_gray_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:cyan_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:purple_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:blue_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:brown_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:green_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:red_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:black_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:white_mossy_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:orange_mossy_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:magenta_mossy_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:light_blue_mossy_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:lime_mossy_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:yellow_mossy_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:pink_mossy_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:gray_mossy_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:light_gray_mossy_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:cyan_mossy_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:purple_mossy_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:blue_mossy_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:brown_mossy_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:green_mossy_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:red_mossy_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:black_mossy_cobblestone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of example:dispenser with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of example:dispenser_south with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of example:dispenser_west with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of example:dispenser_east with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of example:dispenser_up with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of example:dispenser_down with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:white_glowstone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:orange_glowstone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:magenta_glowstone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:light_blue_glowstone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:lime_glowstone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:yellow_glowstone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:pink_glowstone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:gray_glowstone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:light_gray_glowstone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:cyan_glowstone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:purple_glowstone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:blue_glowstone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:brown_glowstone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:green_glowstone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:red_glowstone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:black_glowstone with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_warped_stem with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_warped_stem_x with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_warped_stem_z with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_birch_log with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_birch_log_x with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_birch_log_z with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of example:bamboo_block with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of example:bamboo_block_x with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of example:bamboo_block_z with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of diorite_cut:diorite_cut with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of diorite_cut:diorite_cut_basketweave with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of diorite_cut:diorite_cut_bond with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of diorite_cut:diorite_cut_brick with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of diorite_cut:diorite_cut_herringbone_brick with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of diorite_cut:diorite_cut_small_brick with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of diorite_cut:diorite_cut_polished with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of diorite_cut:diorite_cut_square with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of diorite_cut:diorite_cut_slab with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of diorite_cut:diorite_cut_pillar with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of diorite_cut:diorite_cut_pillar_x with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of diorite_cut:diorite_cut_pillar_z with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:white_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:orange_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:magenta_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:light_blue_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:lime_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:yellow_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:pink_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:gray_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:light_gray_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:cyan_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:purple_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:blue_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:brown_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:green_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:red_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:black_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:white_cracked_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:orange_cracked_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:magenta_cracked_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:light_blue_cracked_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:lime_cracked_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:yellow_cracked_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:pink_cracked_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:gray_cracked_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:light_gray_cracked_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:cyan_cracked_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:purple_cracked_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:blue_cracked_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:brown_cracked_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:green_cracked_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:red_cracked_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:black_cracked_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:white_mossy_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:orange_mossy_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:magenta_mossy_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:light_blue_mossy_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:lime_mossy_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:yellow_mossy_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:pink_mossy_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:gray_mossy_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:light_gray_mossy_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:cyan_mossy_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:purple_mossy_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:blue_mossy_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:brown_mossy_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:green_mossy_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:red_mossy_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:black_mossy_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:white_chiseled_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:orange_chiseled_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:magenta_chiseled_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:light_blue_chiseled_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:lime_chiseled_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:yellow_chiseled_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:pink_chiseled_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:gray_chiseled_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:light_gray_chiseled_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:cyan_chiseled_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:purple_chiseled_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:blue_chiseled_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:brown_chiseled_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:green_chiseled_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:red_chiseled_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:black_chiseled_stone_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:white_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:orange_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:magenta_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:light_blue_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:lime_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:yellow_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:pink_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:gray_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:light_gray_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:cyan_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:purple_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:blue_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:brown_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:green_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:red_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:black_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_acacia_log with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_acacia_log_x with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_acacia_log_z with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_oak_log with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_oak_log_x with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_oak_log_z with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of example:furnace with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of example:furnace_north with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of example:furnace_east with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of example:furnace_west with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:white_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:orange_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:magenta_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:light_blue_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:lime_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:yellow_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:pink_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:gray_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:light_gray_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:cyan_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:purple_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:blue_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:brown_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:green_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:red_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:black_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:white_cracked_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:orange_cracked_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:magenta_cracked_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:light_blue_cracked_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:lime_cracked_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:yellow_cracked_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:pink_cracked_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:gray_cracked_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:light_gray_cracked_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:cyan_cracked_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:purple_cracked_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:blue_cracked_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:brown_cracked_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:green_cracked_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:red_cracked_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:black_cracked_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:white_chiseled_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:orange_chiseled_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:magenta_chiseled_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:light_blue_chiseled_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:lime_chiseled_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:yellow_chiseled_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:pink_chiseled_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:gray_chiseled_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:light_gray_chiseled_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:cyan_chiseled_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:purple_chiseled_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:blue_chiseled_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:brown_chiseled_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:green_chiseled_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:red_chiseled_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of painter:black_chiseled_nether_bricks with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_spruce_log with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_spruce_log_x with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:13] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_spruce_log_z with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:14] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_crimson_stem with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:14] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_crimson_stem_x with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:14] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_crimson_stem_z with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:14] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_dark_oak_log with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:14] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_dark_oak_log_x with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:14] [Server thread/INFO]: [ItemsAdder] Failed to load BlockData of wood:carved_dark_oak_log_z with internal id 0, type REAL_NOTE. Try to delete storage/xx_ids_cache.yml file and restart.
[14:47:14] [Server thread/ERROR]: [ItemsAdder] [STDERR] Model doesn't exists! /home/CityBuild/plugins/ItemsAdder/data/resource_pack/assets/anmobs/models/entity/wendingo/.metadata
[14:47:14] [Server thread/WARN]: Nag author(s): '[LoneDev]' of 'ItemsAdder' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:47:14] [Server thread/INFO]: [UltimateClans] Loaded 5 clan(s).
[14:47:14] [Server thread/INFO]: [UltimateClans] Loaded 160 player(s).
[14:47:15] [Server thread/INFO]: [Citizens] 38 NPCs geladen.
[14:47:15] [Server thread/INFO]: [UpgradeableHoppers] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[14:47:15] [Server thread/INFO]: [UpgradeableHoppers] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[14:47:15] [Server thread/INFO]: [UpgradeableHoppers] Successfully added region provider: PlotSquared Type: CLAIMING
[14:47:15] [Server thread/INFO]: [UpgradeableHoppers] Successfully added region provider: WorldGuard Type: SERVER
[14:47:15] [Server thread/INFO]: [UpgradeableHoppers] Successful integrated Vault economy into economy system. Name: XConomy
[14:47:15] [Server thread/INFO]: [QuickShop] Using economy system: XConomy
[14:47:15] [Server thread/INFO]: [Multiverse-Inventories] First run!
[14:47:15] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[14:47:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.7.0]
[14:47:15] [Server thread/INFO]: Vanish Placeholders - Hooked into SuperVanish or PremiumVanish
[14:47:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vanish [1.2]
[14:47:15] [Server thread/INFO]: 2 placeholder hook(s) registered! 1 placeholder hook(s) have an update available.
[14:47:15] [Server thread/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[14:47:15] [Server thread/INFO]: [Core] core-latest.jar//me.dablakbandit.core.config.comment.CommentConfiguration.saveToString(CommentConfiguration.java:41) Saving items.yml
[14:47:15] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Loading inventories in progress...
[14:47:15] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Successful loading of the inventory auction !
[14:47:15] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Successful loading of the inventory buyconfirm !
[14:47:15] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Successful loading of the inventory removeconfirm !
[14:47:15] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Successful loading of the inventory expire !
[14:47:15] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Successful loading of the inventory buying !
[14:47:15] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Successful loading of the inventory items !
[14:47:15] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Successful loading of the inventory categories !
[14:47:15] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Successful loading of the inventory sell !
[14:47:15] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Successful loading of the inventory sellshow !
[14:47:15] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Successful loading of the inventory category !
[14:47:15] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Successful loading of the inventory adminremove !
[14:47:15] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Successful loading of the inventory search !
[14:47:15] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Successful loading of the inventory show !
[14:47:15] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Inventories loading complete.
[14:47:15] [Server thread/INFO]: Done (62.623s)! For help, type "help"
[14:47:15] [Server thread/INFO]: Timings Reset
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] Result item tables_and_chairs:crimson_table not found in crafting recipe recipes.crafting_table.crimson_table, file /data/items_packs/tables_and_chairs/tables.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] Result item tables_and_chairs:warped_table not found in crafting recipe recipes.crafting_table.warped_table, file /data/items_packs/tables_and_chairs/tables.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] Result item tables_and_chairs:crimson_leg_table not found in crafting recipe recipes.crafting_table.crimson_leg_table, file /data/items_packs/tables_and_chairs/tables.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] Result item tables_and_chairs:warped_leg_table not found in crafting recipe recipes.crafting_table.warped_leg_table, file /data/items_packs/tables_and_chairs/tables.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] Result item tables_and_chairs:crimson_block_table not found in crafting recipe recipes.crafting_table.crimson_block_table, file /data/items_packs/tables_and_chairs/tables.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] Result item tables_and_chairs:warped_block_table not found in crafting recipe recipes.crafting_table.warped_block_table, file /data/items_packs/tables_and_chairs/tables.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] Ingredient not found 'itemsadder:sweet' for recipe 'sugaricecream'. File: /data/items_packs/summer/summer.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] Ingredient not found 'itemsadder:sweet' for recipe 'chocolateicecream'. File: /data/items_packs/summer/summer.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] World populator tin_ore failed to load. No world matched world. Maybe wrong name or it doesn't exists. File: /data/items_packs/terraria/bloques.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] World populator lead_ore failed to load. No world matched world. Maybe wrong name or it doesn't exists. File: /data/items_packs/terraria/bloques.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] World populator silver_ore failed to load. No world matched world. Maybe wrong name or it doesn't exists. File: /data/items_packs/terraria/bloques.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] World populator tungsten_ore failed to load. No world matched world. Maybe wrong name or it doesn't exists. File: /data/items_packs/terraria/bloques.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] World populator platinum_ore failed to load. No world matched world. Maybe wrong name or it doesn't exists. File: /data/items_packs/terraria/bloques.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] World populator demonite_ore failed to load. No world matched world. Maybe wrong name or it doesn't exists. File: /data/items_packs/terraria/bloques.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] World populator meteorite_ore failed to load. No world matched world. Maybe wrong name or it doesn't exists. File: /data/items_packs/terraria/bloques.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] World populator hellstone_ore failed to load. No world matched world_nether. Maybe wrong name or it doesn't exists. File: /data/items_packs/terraria/bloques.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] World populator cobalt_ore failed to load. No world matched world. Maybe wrong name or it doesn't exists. File: /data/items_packs/terraria/bloques.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] World populator cobalt_ore_deepslate failed to load. No world matched world. Maybe wrong name or it doesn't exists. File: /data/items_packs/terraria/bloques.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] World populator palladium_ore failed to load. No world matched world. Maybe wrong name or it doesn't exists. File: /data/items_packs/terraria/bloques.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] World populator palladium_ore_deepslate failed to load. No world matched world. Maybe wrong name or it doesn't exists. File: /data/items_packs/terraria/bloques.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] World populator orichalcum_ore failed to load. No world matched world. Maybe wrong name or it doesn't exists. File: /data/items_packs/terraria/bloques.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] World populator orichalcum_ore_deepslate failed to load. No world matched world. Maybe wrong name or it doesn't exists. File: /data/items_packs/terraria/bloques.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] World populator mythril_ore failed to load. No world matched world. Maybe wrong name or it doesn't exists. File: /data/items_packs/terraria/bloques.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] World populator mythril_ore_deepslate failed to load. No world matched world. Maybe wrong name or it doesn't exists. File: /data/items_packs/terraria/bloques.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] World populator adamantite_ore failed to load. No world matched world. Maybe wrong name or it doesn't exists. File: /data/items_packs/terraria/bloques.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] World populator adamantite_ore_deepslate failed to load. No world matched world. Maybe wrong name or it doesn't exists. File: /data/items_packs/terraria/bloques.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] World populator titanium_ore failed to load. No world matched world. Maybe wrong name or it doesn't exists. File: /data/items_packs/terraria/bloques.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] World populator titanium_ore_deepslate failed to load. No world matched world. Maybe wrong name or it doesn't exists. File: /data/items_packs/terraria/bloques.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] World populator chlorophyte_ore failed to load. No world matched world. Maybe wrong name or it doesn't exists. File: /data/items_packs/terraria/bloques.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] World populator chlorophyte_ore_deepslate failed to load. No world matched world. Maybe wrong name or it doesn't exists. File: /data/items_packs/terraria/bloques.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] World populator luminite_ore failed to load. No world matched world_the_end. Maybe wrong name or it doesn't exists. File: /data/items_packs/terraria/bloques.yml
[14:47:15] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] Surface decorator plastic_waste failed to load. Unknown block plastic_waste. File: /data/items_packs/worlddeco/water/surface_decorators.yml
[14:47:16] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5316ms or 106 ticks behind
[14:47:16] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] Loaded 3241 items
[14:47:16] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] Used 171/188 REAL block IDs
[14:47:16] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] Used 1008/750 REAL_NOTE block IDs
[14:47:16] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] Used 22/63 REAL_TRANSPARENT block IDs
[14:47:16] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] Used 25/127 REAL_WIRE block IDs
[14:47:16] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] Used 5/14 FIRE block IDs
[14:47:16] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] Used 608/6608 font_images
[14:47:16] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] Ignoring loot: block 'itemsadder:ruby_ore' not found for loot 'ruby_ore' in file '/home/CityBuild/plugins/ItemsAdder/data/items_packs/more_minerals/minerals.yml'
[14:47:16] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] Ignoring loot: block 'plastic_waste' not found for loot 'plastic_waste' in file '/home/CityBuild/plugins/ItemsAdder/data/items_packs/worlddeco/water/loots.yml'
[14:47:16] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[14:47:16] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[14:47:16] [Server thread/WARN]: me.blackvein.quests.exceptions.QuestFormatException: Requirement quests has unknown quest name custom10, place it earlier in file so it loads first, see quest of ID custom11
[14:47:16] [Server thread/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuestRequirements(Quests.java:2260)
[14:47:16] [Server thread/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuests(Quests.java:1792)
[14:47:16] [Server thread/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.lambda$delayLoadQuestInfo$3(Quests.java:848)
[14:47:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[14:47:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1473)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:446)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1173)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[14:47:16] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[14:47:16] [Server thread/WARN]: me.blackvein.quests.exceptions.QuestFormatException: Requirement quests has unknown quest name custom26, place it earlier in file so it loads first, see quest of ID custom27
[14:47:16] [Server thread/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuestRequirements(Quests.java:2260)
[14:47:16] [Server thread/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuests(Quests.java:1792)
[14:47:16] [Server thread/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.lambda$delayLoadQuestInfo$3(Quests.java:848)
[14:47:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[14:47:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1473)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:446)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1173)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[14:47:16] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[14:47:16] [Server thread/WARN]: me.blackvein.quests.exceptions.QuestFormatException: Requirement quests has unknown quest name custom27, place it earlier in file so it loads first, see quest of ID custom28
[14:47:16] [Server thread/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuestRequirements(Quests.java:2260)
[14:47:16] [Server thread/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuests(Quests.java:1792)
[14:47:16] [Server thread/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.lambda$delayLoadQuestInfo$3(Quests.java:848)
[14:47:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[14:47:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1473)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:446)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1173)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[14:47:16] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[14:47:16] [Server thread/WARN]: me.blackvein.quests.exceptions.StageFormatException: break-block-durability is missing, see quest Weißes Glück stage 1
[14:47:16] [Server thread/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuestStages(Quests.java:2507)
[14:47:16] [Server thread/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuests(Quests.java:1801)
[14:47:16] [Server thread/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.lambda$delayLoadQuestInfo$3(Quests.java:848)
[14:47:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[14:47:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1473)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:446)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1173)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[14:47:16] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[14:47:16] [Server thread/WARN]: me.blackvein.quests.exceptions.StageFormatException: break-block-durability is missing, see quest Gold Gold Gold stage 1
[14:47:16] [Server thread/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuestStages(Quests.java:2507)
[14:47:16] [Server thread/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuests(Quests.java:1801)
[14:47:16] [Server thread/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.lambda$delayLoadQuestInfo$3(Quests.java:848)
[14:47:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[14:47:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1473)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:446)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1173)
[14:47:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[14:47:16] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[14:47:16] [Server thread/INFO]: [Quests] Loaded 52 Quest(s), 7 Action(s), 1 Condition(s) and 811 Phrase(s)
[14:47:16] [Server thread/WARN]: [Quests] Unable to consider custom objectives because quest for custom11 was null
[14:47:16] [Server thread/WARN]: [Quests] Unable to consider custom objectives because quest for custom27 was null
[14:47:16] [Server thread/WARN]: [Quests] Unable to consider custom objectives because quest for custom28 was null
[14:47:16] [Server thread/WARN]: [Quests] Unable to consider custom objectives because quest for custom55 was null
[14:47:16] [Server thread/WARN]: [Quests] Unable to consider custom objectives because quest for custom57 was null
[14:47:17] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded 63 categories
[14:47:17] [Craft Scheduler Thread - 26 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded 3241 items and stuff in 5508ms
[14:47:17] [Craft Scheduler Thread - 19 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin has an update available! Your Version: 6.9.2 New Version: 6.9.5
[14:47:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: img [1.0.1]
[14:47:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: iaplayerstat [1.0.1]
[14:47:17] [Server thread/INFO]: [ItemsAdder] Reloading ItemsAdder Custom Entities Citizens NPCs
[14:47:18] [Craft Scheduler Thread - 19 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Resourcepack URL is valid (auto-external-host), LastEdit: 2022-10-27_12-48. Url: http://resourcepack.host/dl/KQS3mF8kiisb6xhOYgbUVLmpWbDcHhg7/pack.zip
[14:47:18] [Server thread/INFO]: [WolfyUtilities] Dependencies Loaded. Calling DependenciesLoadedEvent!
[14:47:18] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[14:47:18] [Server thread/INFO]: [CustomCrafting] Loading Recipes & Items
[14:47:18] [Server thread/INFO]: [CustomCrafting] - - - - [Local Storage] - - - -
[14:47:18] [Server thread/INFO]: [CustomCrafting] [LOCAL] Looking through data folder...
[14:47:18] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Items
[14:47:18] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Recipes
[14:47:18] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 21 recipes; Skipped: 0 error/s, 0 already existing
[14:47:18] [Server thread/INFO]: [CustomCrafting] [LOCAL_OLD] Loaded 0 recipes; Skipped: 0 error/s, 0 already existing
[14:47:18] [Server thread/INFO]: [CustomCrafting] [LOCAL_LEGACY] Loaded 0 recipes; Skipped: 0 error/s, 0 already existing
[14:47:18] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 21 recipes
[14:47:18] [Server thread/INFO]: [CustomCrafting] 
[14:47:18] [Server thread/INFO]: [CustomCrafting] Indexing Recipe Book...
[14:47:18] [Server thread/INFO]: [CustomCrafting] Indexed Recipe Book!
[14:47:18] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[14:47:19] [Craft Scheduler Thread - 35 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:47:19] [Craft Scheduler Thread - 35 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:47:19] [Craft Scheduler Thread - 29 - VotingPlugin/WARN]: [VotingPlugin] Detected an issue with voting sites, check the server startup log for more details: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[14:47:21] [ForkJoinPool.commonPool-worker-14/INFO]: [UpgradeableHoppers] You're using the latest version.
[14:47:25] [Server thread/INFO]: [MyCommand] found an update for MyCommand. Type /mycommand for more infos.
[14:48:17] [Craft Scheduler Thread - 35 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:48:17] [Craft Scheduler Thread - 35 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:49:17] [Craft Scheduler Thread - 22 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:49:17] [Craft Scheduler Thread - 22 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:49:30] [User Authenticator #0/INFO]: UUID of player Raphi21239 is 5323cad3-e19c-4dc4-bf2b-568f44f21842
[14:49:31] [Server thread/INFO]: Check for Proxy Connection Raphi21239
[14:49:31] [Bank - Loader Thread/INFO]: [Bank] Loading 5323cad3-e19c-4dc4-bf2b-568f44f21842
[14:49:31] [Bank - Loader Thread/INFO]: [Bank] Loaded 5323cad3-e19c-4dc4-bf2b-568f44f21842 after 42ms
[14:49:31] [Server thread/INFO]: Raphi21239[/217.251.101.191:37249] logged in with entity id 2011 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[14:49:31] [Craft Scheduler Thread - 34 - SpigotOnlyProxyJoin/INFO]: Took 452ms (true)
[14:49:31] [User Authenticator #0/INFO]: UUID of player DreiCpO is f0ba820a-ba83-46bc-a31a-cea4b7ffab23
[14:49:32] [Server thread/INFO]: Check for Proxy Connection DreiCpO
[14:49:32] [Bank - Loader Thread/INFO]: [Bank] Loading f0ba820a-ba83-46bc-a31a-cea4b7ffab23
[14:49:32] [Bank - Loader Thread/INFO]: [Bank] Loaded f0ba820a-ba83-46bc-a31a-cea4b7ffab23 after 11ms
[14:49:32] [Server thread/INFO]: DreiCpO[/46.87.11.93:47545] logged in with entity id 2021 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[14:49:32] [Craft Scheduler Thread - 34 - SpigotOnlyProxyJoin/INFO]: Took 179ms (true)
[14:49:35] [User Authenticator #0/INFO]: UUID of player Insom96 is 60d70ce9-b7c0-4abb-ae07-ebf5f3256741
[14:49:35] [Server thread/INFO]: [Core] Plugin Bank has an update! Old: v4.5.6-RELEASE, New: v4.5.9-RELEASE
[14:49:35] [Server thread/INFO]: Check for Proxy Connection Insom96
[14:49:35] [Bank - Loader Thread/INFO]: [Bank] Loading 60d70ce9-b7c0-4abb-ae07-ebf5f3256741
[14:49:35] [Bank - Loader Thread/INFO]: [Bank] Loaded 60d70ce9-b7c0-4abb-ae07-ebf5f3256741 after 15ms
[14:49:35] [Server thread/INFO]: Insom96[/93.233.171.43:46747] logged in with entity id 2032 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[14:49:35] [Craft Scheduler Thread - 16 - SpigotOnlyProxyJoin/INFO]: Took 252ms (true)
[14:49:35] [User Authenticator #0/INFO]: UUID of player P1tbull is 212909b0-5440-4b5f-ae81-1b35a41723f5
[14:49:35] [Server thread/INFO]: Check for Proxy Connection P1tbull
[14:49:36] [Bank - Loader Thread/INFO]: [Bank] Loading 212909b0-5440-4b5f-ae81-1b35a41723f5
[14:49:36] [Bank - Loader Thread/INFO]: [Bank] Loaded 212909b0-5440-4b5f-ae81-1b35a41723f5 after 10ms
[14:49:36] [Server thread/INFO]: P1tbull[/2.201.135.183:44837] logged in with entity id 2033 at ([WorldsLegacy]-24.56203526544533, 70.3, 73.34123820673149)
[14:49:36] [Craft Scheduler Thread - 46 - SpigotOnlyProxyJoin/INFO]: Took 228ms (true)
[14:49:37] [User Authenticator #0/INFO]: UUID of player Nalijah is b7b5c0b6-727c-4b71-b7e7-c15993305cea
[14:49:37] [Server thread/INFO]: Check for Proxy Connection Nalijah
[14:49:37] [Bank - Loader Thread/INFO]: [Bank] Loading b7b5c0b6-727c-4b71-b7e7-c15993305cea
[14:49:37] [Bank - Loader Thread/INFO]: [Bank] Loaded b7b5c0b6-727c-4b71-b7e7-c15993305cea after 12ms
[14:49:37] [User Authenticator #0/INFO]: UUID of player Goldsteener is cb7fc50e-a14f-4634-8f41-b6a2e5c56ecd
[14:49:37] [Server thread/INFO]: Nalijah[/31.18.128.1:58853] logged in with entity id 2055 at ([WorldsLegacy]-24.56203526544533, 70.3, 73.34123820673149)
[14:49:37] [Craft Scheduler Thread - 35 - SpigotOnlyProxyJoin/INFO]: Took 138ms (true)
[14:49:37] [Server thread/INFO]: Check for Proxy Connection Goldsteener
[14:49:37] [Bank - Loader Thread/INFO]: [Bank] Loading cb7fc50e-a14f-4634-8f41-b6a2e5c56ecd
[14:49:37] [User Authenticator #0/INFO]: UUID of player DarkPhoenix1512 is 6fc547ac-54d0-48b7-abe1-3f27981f9651
[14:49:37] [Server thread/INFO]: Goldsteener[/79.245.163.160:42201] logged in with entity id 2066 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[14:49:37] [Craft Scheduler Thread - 9 - SpigotOnlyProxyJoin/INFO]: Took 111ms (true)
[14:49:37] [Bank - Loader Thread/INFO]: [Bank] Loaded cb7fc50e-a14f-4634-8f41-b6a2e5c56ecd after 32ms
[14:49:38] [Server thread/INFO]: Check for Proxy Connection DarkPhoenix1512
[14:49:38] [Bank - Loader Thread/INFO]: [Bank] Loading 6fc547ac-54d0-48b7-abe1-3f27981f9651
[14:49:38] [Bank - Loader Thread/INFO]: [Bank] Loaded 6fc547ac-54d0-48b7-abe1-3f27981f9651 after 27ms
[14:49:38] [Server thread/INFO]: DarkPhoenix1512[/95.223.82.80:34521] logged in with entity id 2070 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[14:49:38] [Craft Scheduler Thread - 25 - SpigotOnlyProxyJoin/INFO]: Took 98ms (true)
[14:49:42] [User Authenticator #0/INFO]: UUID of player Blackangel1908 is c3b14b5c-1ede-4a85-a9c2-0d5970ffd14c
[14:49:42] [Server thread/INFO]: Check for Proxy Connection Blackangel1908
[14:49:43] [Bank - Loader Thread/INFO]: [Bank] Loading c3b14b5c-1ede-4a85-a9c2-0d5970ffd14c
[14:49:43] [Bank - Loader Thread/INFO]: [Bank] Loaded c3b14b5c-1ede-4a85-a9c2-0d5970ffd14c after 11ms
[14:49:43] [Server thread/INFO]: Blackangel1908[/95.90.206.241:43295] logged in with entity id 2076 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[14:49:43] [Craft Scheduler Thread - 19 - SpigotOnlyProxyJoin/INFO]: Took 96ms (true)
[14:49:55] [User Authenticator #0/INFO]: UUID of player VIK_BikeBunny is b735be25-b1a7-4f14-8ea8-8f708be31a1a
[14:49:55] [Server thread/INFO]: Check for Proxy Connection VIK_BikeBunny
[14:49:55] [Bank - Loader Thread/INFO]: [Bank] Loading b735be25-b1a7-4f14-8ea8-8f708be31a1a
[14:49:55] [Bank - Loader Thread/INFO]: [Bank] Loaded b735be25-b1a7-4f14-8ea8-8f708be31a1a after 11ms
[14:49:55] [Server thread/INFO]: VIK_BikeBunny[/213.162.81.136:42339] logged in with entity id 2079 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[14:49:55] [Craft Scheduler Thread - 48 - SpigotOnlyProxyJoin/INFO]: Took 86ms (true)
[14:49:56] [User Authenticator #0/INFO]: UUID of player KuZuUri is 0804d25b-d84e-4db3-a94d-b3264b848fda
[14:49:56] [Server thread/INFO]: Check for Proxy Connection KuZuUri
[14:49:56] [Bank - Loader Thread/INFO]: [Bank] Loading 0804d25b-d84e-4db3-a94d-b3264b848fda
[14:49:56] [Server thread/INFO]: KuZuUri[/93.194.115.142:45735] logged in with entity id 2099 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[14:49:56] [Bank - Loader Thread/INFO]: [Bank] Loaded 0804d25b-d84e-4db3-a94d-b3264b848fda after 19ms
[14:49:56] [Craft Scheduler Thread - 28 - SpigotOnlyProxyJoin/INFO]: Took 78ms (true)
[14:49:57] [User Authenticator #0/INFO]: UUID of player IIRedRoseLinaII is 90219ad6-b913-4a56-8ddf-15b077267741
[14:49:57] [Server thread/INFO]: Check for Proxy Connection IIRedRoseLinaII
[14:49:57] [Bank - Loader Thread/INFO]: [Bank] Loading 90219ad6-b913-4a56-8ddf-15b077267741
[14:49:57] [Server thread/INFO]: IIRedRoseLinaII[/46.87.11.93:32879] logged in with entity id 2137 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[14:49:57] [Craft Scheduler Thread - 40 - SpigotOnlyProxyJoin/INFO]: Took 78ms (true)
[14:49:57] [Bank - Loader Thread/INFO]: [Bank] Loaded 90219ad6-b913-4a56-8ddf-15b077267741 after 17ms
[14:49:58] [Timer-4/INFO]: [Voting] Der Spieler IIRedRoseLinaII hat gerade gevoted.
[14:49:58] [Server thread/INFO]: [CaseOpening] Given x1 of Vote-Kisten key(s) to IIRedRoseLinaII.
[14:50:04] [Server thread/WARN]: [NexEngine] Loaded class me.clip.placeholderapi.PlaceholderAPI from PlaceholderAPI v2.11.2 which is not a depend or softdepend of this plugin.
[14:50:04] [Server thread/INFO]: [CaseOpening] Opened default crate menu for P1tbull.
[14:50:11] [User Authenticator #0/INFO]: UUID of player Draco2B85 is 701a3785-ed79-4288-a43e-1f4b7a08acf6
[14:50:11] [Server thread/INFO]: Check for Proxy Connection Draco2B85
[14:50:11] [Bank - Loader Thread/INFO]: [Bank] Loading 701a3785-ed79-4288-a43e-1f4b7a08acf6
[14:50:11] [Server thread/INFO]: Draco2B85[/95.116.135.27:33469] logged in with entity id 2140 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[14:50:11] [Bank - Loader Thread/INFO]: [Bank] Loaded 701a3785-ed79-4288-a43e-1f4b7a08acf6 after 15ms
[14:50:11] [Craft Scheduler Thread - 46 - SpigotOnlyProxyJoin/INFO]: Took 117ms (true)
[14:50:12] [User Authenticator #0/INFO]: UUID of player _ESC is db746193-3666-4d89-a298-0cafc160059c
[14:50:12] [Server thread/INFO]: [Core] Plugin Bank has an update! Old: v4.5.6-RELEASE, New: v4.5.9-RELEASE
[14:50:12] [Server thread/INFO]: Check for Proxy Connection _ESC
[14:50:12] [Bank - Loader Thread/INFO]: [Bank] Loading db746193-3666-4d89-a298-0cafc160059c
[14:50:12] [Bank - Loader Thread/INFO]: [Bank] Loaded db746193-3666-4d89-a298-0cafc160059c after 13ms
[14:50:12] [Server thread/INFO]: _ESC[/87.152.162.21:57511] logged in with entity id 2151 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[14:50:12] [Craft Scheduler Thread - 45 - SpigotOnlyProxyJoin/INFO]: Took 190ms (true)
[14:50:12] [Bank - Loader Thread/INFO]: [Bank] Saving db746193-3666-4d89-a298-0cafc160059c
[14:50:12] [Server thread/INFO]: _ESC lost connection: Invalid move player packet received
[14:50:12] [Server thread/INFO]: [VariableEnderChests] Saving data for _ESC
[14:50:12] [Bank - Loader Thread/INFO]: [Bank] Saved db746193-3666-4d89-a298-0cafc160059c after 26ms
[14:50:13] [Server thread/INFO]: [CaseOpening] Opened default crate menu for DreiCpO.
[14:50:15] [Craft Scheduler Thread - 44 - BuycraftX/INFO]: [BuycraftX] Sending 14 analytic events
[14:50:16] [Server thread/INFO]: DreiCpO issued server command: /p h
[14:50:17] [Craft Scheduler Thread - 22 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:50:18] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Blackangel1908.
[14:50:18] [Craft Scheduler Thread - 22 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:50:20] [Server thread/INFO]: DreiCpO issued server command: /ptime day
[14:50:27] [Server thread/INFO]: Goldsteener issued server command: /p h
[14:50:30] [Server thread/INFO]: P1tbull issued server command: /warp quest
[14:50:37] [Server thread/INFO]: Nalijah lost connection: Das eingeben hat zu lange gedauert
[14:50:37] [Server thread/INFO]: [VariableEnderChests] Saving data for Nalijah
[14:50:37] [Bank - Loader Thread/INFO]: [Bank] Saving b7b5c0b6-727c-4b71-b7e7-c15993305cea
[14:50:37] [Bank - Loader Thread/INFO]: [Bank] Saved b7b5c0b6-727c-4b71-b7e7-c15993305cea after 17ms
[14:50:40] [Server thread/INFO]: DarkPhoenix1512 issued server command: /msg Blackangel1908 Wann kommt Seppel wieder?
[14:50:44] [Server thread/INFO]: [CaseOpening] Opened default crate menu for IIRedRoseLinaII.
[14:50:46] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Insom96.
[14:50:46] [Server thread/INFO]: [CaseOpening] Opened default crate menu for KuZuUri.
[14:50:47] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Insom96.
[14:50:51] [Server thread/INFO]: Blackangel1908 issued server command: /p v comfarm
[14:50:52] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Raphi21239.
[14:50:55] [Server thread/INFO]: Blackangel1908 issued server command: /r gleich
[14:50:55] [User Authenticator #0/INFO]: UUID of player Nalijah is b7b5c0b6-727c-4b71-b7e7-c15993305cea
[14:50:56] [Server thread/INFO]: Check for Proxy Connection Nalijah
[14:50:56] [Bank - Loader Thread/INFO]: [Bank] Loading b7b5c0b6-727c-4b71-b7e7-c15993305cea
[14:50:56] [Server thread/INFO]: Nalijah[/31.18.128.1:48359] logged in with entity id 2258 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[14:50:56] [Craft Scheduler Thread - 28 - SpigotOnlyProxyJoin/INFO]: Took 97ms (true)
[14:50:56] [Bank - Loader Thread/INFO]: [Bank] Loaded b7b5c0b6-727c-4b71-b7e7-c15993305cea after 23ms
[14:50:58] [Server thread/INFO]: [CaseOpening] Opened default crate menu for VIK_BikeBunny.
[14:51:00] [Server thread/WARN]: [Quests] There are new language phrases in /lang/en-US/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[14:51:00] [Server thread/WARN]: [Quests] There are new language phrases in /lang/en-US/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[14:51:00] [Server thread/WARN]: [Quests] There are new language phrases in /lang/en-US/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[14:51:00] [Server thread/INFO]: [Quests] Loaded language en-US. Translations via Crowdin
[14:51:00] [Server thread/INFO]: KuZuUri issued server command: /ec
[14:51:00] [Server thread/INFO]: [CaseOpening] Opened default crate menu for DarkPhoenix1512.
[14:51:02] [Server thread/INFO]: [CaseOpening] Opened default crate menu for IIRedRoseLinaII.
[14:51:07] [Server thread/INFO]: Blackangel1908 issued server command: /ah
[14:51:08] [Server thread/INFO]: VIK_BikeBunny issued server command: /p h 5
[14:51:09] [User Authenticator #0/INFO]: UUID of player _ESC is db746193-3666-4d89-a298-0cafc160059c
[14:51:09] [Server thread/INFO]: [Core] Plugin Bank has an update! Old: v4.5.6-RELEASE, New: v4.5.9-RELEASE
[14:51:09] [Server thread/INFO]: Check for Proxy Connection _ESC
[14:51:09] [Bank - Loader Thread/INFO]: [Bank] Loading db746193-3666-4d89-a298-0cafc160059c
[14:51:09] [Server thread/INFO]: _ESC[/87.152.162.21:58841] logged in with entity id 2337 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[14:51:09] [Bank - Loader Thread/INFO]: [Bank] Loaded db746193-3666-4d89-a298-0cafc160059c after 10ms
[14:51:09] [Craft Scheduler Thread - 5 - SpigotOnlyProxyJoin/INFO]: Took 103ms (true)
[14:51:15] [Craft Scheduler Thread - 10 - BuycraftX/INFO]: [BuycraftX] Sending 3 analytic events
[14:51:16] [Server thread/INFO]: Draco2B85 issued server command: /p h 2
[14:51:18] [Craft Scheduler Thread - 47 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:51:18] [Craft Scheduler Thread - 47 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:51:18] [Netty Epoll Server IO #3/WARN]: [ItemsAdder] DarkPhoenix1512 mined unknown block warden:sculk_block -29, 68, 56
[14:51:19] [Server thread/INFO]: IIRedRoseLinaII issued server command: /p h
[14:51:20] [Server thread/INFO]: KuZuUri issued server command: /p h
[14:51:23] [Server thread/INFO]: Raphi21239 issued server command: /p h
[14:51:24] [Server thread/INFO]: KuZuUri issued server command: /home keramik
[14:51:24] [Netty Epoll Server IO #3/WARN]: [ItemsAdder] DarkPhoenix1512 mined unknown block warden:sculk_block -31, 68, 57
[14:51:25] [Netty Epoll Server IO #3/WARN]: [ItemsAdder] DarkPhoenix1512 mined unknown block warden:catalizador -32, 68, 56
[14:51:26] [Netty Epoll Server IO #3/WARN]: [ItemsAdder] DarkPhoenix1512 mined unknown block warden:sculk_block -31, 68, 55
[14:51:27] [Netty Epoll Server IO #3/WARN]: [ItemsAdder] DarkPhoenix1512 mined unknown block warden:catalizador -30, 68, 55
[14:51:29] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Draco2B85.
[14:51:32] [Server thread/INFO]: KuZuUri issued server command: /ec
[14:51:39] [Server thread/INFO]: KuZuUri issued server command: /ec
[14:51:41] [Server thread/INFO]: DarkPhoenix1512 issued server command: /spawn
[14:51:47] [Netty Epoll Server IO #2/WARN]: Nalijah sent expired chat: '667306'. Is the client/server system time unsynchronized? c: 1666881983 s: 1666882307
[14:51:51] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Nalijah.
[14:51:52] [Server thread/INFO]: [CaseOpening] Opened default crate menu for _ESC.
[14:51:53] [Server thread/INFO]: Insom96 issued server command: /crate key show Blackangel1908
[14:52:06] [Netty Epoll Server IO #3/WARN]: [ItemsAdder] DarkPhoenix1512 mined unknown block warden:sculk_block -29, 68, 54
[14:52:11] [Async Chat Thread - #2/INFO]: [Not Secure] Creator | IIRedRoseLinaII: huhu alle zsm <3
[14:52:14] [Netty Epoll Server IO #3/WARN]: [ItemsAdder] DarkPhoenix1512 mined unknown block warden:sculk_block -32, 68, 54
[14:52:15] [Netty Epoll Server IO #3/WARN]: [ItemsAdder] DarkPhoenix1512 mined unknown block warden:sculk_block -33, 68, 55
[14:52:16] [Async Chat Thread - #2/INFO]: [Not Secure] Mysterious | KuZuUri: hUHU
[14:52:19] [Craft Scheduler Thread - 43 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:52:19] [Craft Scheduler Thread - 43 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:52:21] [Server thread/INFO]: DarkPhoenix1512 issued server command: /spawn
[14:52:23] [Server thread/INFO]: Raphi21239 issued server command: /chatcolor gui
[14:52:24] [Server thread/INFO]: DreiCpO issued server command: /spawn
[14:52:28] [Server thread/INFO]: DarkPhoenix1512 issued server command: /spawn
[14:52:34] [Async Chat Thread - #2/INFO]: [Not Secure] Mysterious | Raphi21239: huhu IIRedRoseLinaII
[14:52:34] [Server thread/INFO]: DarkPhoenix1512 issued server command: /spawn
[14:52:40] [Async Chat Thread - #2/INFO]: [Not Secure] [VIK] Legendary | VIK_BikeBunny: grüß euch
[14:52:47] [Server thread/INFO]: [CaseOpening] Given x15 of Köpfe-Kisten key(s) to P1tbull.
[14:52:49] [Server thread/INFO]: [CaseOpening] Opened default crate menu for P1tbull.
[14:52:51] [Async Chat Thread - #2/INFO]: [Not Secure] [STOCK] Premium | Goldsteener: moin
[14:52:52] [Server thread/INFO]: [CaseOpening] Opened default crate menu for P1tbull.
[14:52:54] [Server thread/INFO]: [CaseOpening] Opened default crate menu for P1tbull.
[14:52:54] [Async Chat Thread - #2/INFO]: [Not Secure] [TEAM] [V] Owner | Insom96: so das mit den Kisten machen wir dann über den Discord in den Tickets :)
[14:52:56] [Server thread/INFO]: [CaseOpening] Opened default crate menu for P1tbull.
[14:52:58] [Server thread/INFO]: [CaseOpening] Opened default crate menu for P1tbull.
[14:52:59] [Server thread/INFO]: [CaseOpening] Opened default crate menu for P1tbull.
[14:53:00] [Server thread/INFO]: DreiCpO issued server command: /p h
[14:53:00] [Server thread/INFO]: [CaseOpening] Opened default crate menu for P1tbull.
[14:53:02] [Server thread/INFO]: [CaseOpening] Opened default crate menu for P1tbull.
[14:53:03] [Server thread/INFO]: [CaseOpening] Opened default crate menu for P1tbull.
[14:53:04] [Server thread/INFO]: [CaseOpening] Opened default crate menu for P1tbull.
[14:53:06] [Server thread/INFO]: [CaseOpening] Opened default crate menu for P1tbull.
[14:53:07] [Server thread/INFO]: [CaseOpening] Opened default crate menu for P1tbull.
[14:53:08] [Server thread/INFO]: [CaseOpening] Opened default crate menu for P1tbull.
[14:53:09] [Server thread/INFO]: [CaseOpening] Opened default crate menu for P1tbull.
[14:53:11] [Server thread/INFO]: [CaseOpening] Opened default crate menu for P1tbull.
[14:53:13] [Server thread/INFO]: [CaseOpening] Opened default crate menu for P1tbull.
[14:53:15] [Async Chat Thread - #2/INFO]: [Not Secure] Spieler | DarkPhoenix1512: Insom ist das Normal komm mahl
[14:53:18] [Craft Scheduler Thread - 48 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:53:18] [Craft Scheduler Thread - 48 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:53:21] [Server thread/INFO]: _ESC issued server command: /tpo DarkPhoenix1512
[14:53:21] [Server thread/INFO]: Insom96 issued server command: /tpo DarkPhoenix1512
[14:53:31] [Async Chat Thread - #2/INFO]: [Not Secure] [TEAM] [V] Admin | _ESC: DarkPhoenix1512 Was denn?
[14:53:46] [Async Chat Thread - #2/INFO]: [Not Secure] Spieler | DarkPhoenix1512: Ja also das hier der Boden fehlt
[14:54:01] [Server thread/INFO]: KuZuUri issued server command: /ah
[14:54:04] [Server thread/INFO]: Insom96 issued server command: /ff
[14:54:05] [Server thread/WARN]: [ForceField] Task #29 for ForceField v3.4 generated an exception
java.lang.IllegalArgumentException: No enum constant org.bukkit.Sound.CHICKEN_EGG_POP
    at java.lang.Enum.valueOf(Enum.java:273) ~[?:?]
    at org.bukkit.Sound.valueOf(Sound.java:13) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at me.Artur_Gamez.ForceFieldMain.run(ForceFieldMain.java:122) ~[ForceField (3).jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.2.jar:git-Paper-210]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1473) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-210]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[14:54:05] [Server thread/WARN]: [ForceField] Task #29 for ForceField v3.4 generated an exception
java.lang.IllegalArgumentException: No enum constant org.bukkit.Sound.CHICKEN_EGG_POP
    at java.lang.Enum.valueOf(Enum.java:273) ~[?:?]
    at org.bukkit.Sound.valueOf(Sound.java:13) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at me.Artur_Gamez.ForceFieldMain.run(ForceFieldMain.java:122) ~[ForceField (3).jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.2.jar:git-Paper-210]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1473) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-210]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[14:54:07] [Server thread/WARN]: [ForceField] Task #29 for ForceField v3.4 generated an exception
java.lang.IllegalArgumentException: No enum constant org.bukkit.Sound.CHICKEN_EGG_POP
    at java.lang.Enum.valueOf(Enum.java:273) ~[?:?]
    at org.bukkit.Sound.valueOf(Sound.java:13) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at me.Artur_Gamez.ForceFieldMain.run(ForceFieldMain.java:122) ~[ForceField (3).jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.2.jar:git-Paper-210]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1473) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-210]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[14:54:08] [Server thread/WARN]: [ForceField] Task #29 for ForceField v3.4 generated an exception
java.lang.IllegalArgumentException: No enum constant org.bukkit.Sound.CHICKEN_EGG_POP
    at java.lang.Enum.valueOf(Enum.java:273) ~[?:?]
    at org.bukkit.Sound.valueOf(Sound.java:13) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at me.Artur_Gamez.ForceFieldMain.run(ForceFieldMain.java:122) ~[ForceField (3).jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.2.jar:git-Paper-210]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1473) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-210]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[14:54:10] [Server thread/WARN]: [ForceField] Task #29 for ForceField v3.4 generated an exception
java.lang.IllegalArgumentException: No enum constant org.bukkit.Sound.CHICKEN_EGG_POP
    at java.lang.Enum.valueOf(Enum.java:273) ~[?:?]
    at org.bukkit.Sound.valueOf(Sound.java:13) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at me.Artur_Gamez.ForceFieldMain.run(ForceFieldMain.java:122) ~[ForceField (3).jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.2.jar:git-Paper-210]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1473) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-210]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[14:54:14] [Async Chat Thread - #2/INFO]: [Not Secure] Spieler | P1tbull: frech xD
[14:54:18] [Craft Scheduler Thread - 22 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:54:19] [Craft Scheduler Thread - 22 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:54:22] [Server thread/WARN]: [ForceField] Task #29 for ForceField v3.4 generated an exception
java.lang.IllegalArgumentException: No enum constant org.bukkit.Sound.CHICKEN_EGG_POP
    at java.lang.Enum.valueOf(Enum.java:273) ~[?:?]
    at org.bukkit.Sound.valueOf(Sound.java:13) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at me.Artur_Gamez.ForceFieldMain.run(ForceFieldMain.java:122) ~[ForceField (3).jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.2.jar:git-Paper-210]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1473) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-210]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[14:54:22] [Server thread/WARN]: [ForceField] Task #29 for ForceField v3.4 generated an exception
java.lang.IllegalArgumentException: No enum constant org.bukkit.Sound.CHICKEN_EGG_POP
    at java.lang.Enum.valueOf(Enum.java:273) ~[?:?]
    at org.bukkit.Sound.valueOf(Sound.java:13) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at me.Artur_Gamez.ForceFieldMain.run(ForceFieldMain.java:122) ~[ForceField (3).jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.2.jar:git-Paper-210]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1473) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-210]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[14:54:22] [Server thread/WARN]: [ForceField] Task #29 for ForceField v3.4 generated an exception
java.lang.IllegalArgumentException: No enum constant org.bukkit.Sound.CHICKEN_EGG_POP
    at java.lang.Enum.valueOf(Enum.java:273) ~[?:?]
    at org.bukkit.Sound.valueOf(Sound.java:13) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at me.Artur_Gamez.ForceFieldMain.run(ForceFieldMain.java:122) ~[ForceField (3).jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.2.jar:git-Paper-210]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1473) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-210]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[14:54:23] [Server thread/WARN]: [ForceField] Task #29 for ForceField v3.4 generated an exception
java.lang.IllegalArgumentException: No enum constant org.bukkit.Sound.CHICKEN_EGG_POP
    at java.lang.Enum.valueOf(Enum.java:273) ~[?:?]
    at org.bukkit.Sound.valueOf(Sound.java:13) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at me.Artur_Gamez.ForceFieldMain.run(ForceFieldMain.java:122) ~[ForceField (3).jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.2.jar:git-Paper-210]
    at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1473) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-210]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-210]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[14:54:24] [Server thread/INFO]: Insom96 issued server command: /ff
[14:54:31] [Async Chat Thread - #2/INFO]: [Not Secure] Spieler | DarkPhoenix1512: Und man kann die auch abbauen
[14:54:50] [Server thread/INFO]: Draco2B85 issued server command: /spawn
[14:54:53] [Server thread/INFO]: KuZuUri issued server command: /ec
[14:55:01] [Server thread/INFO]: Insom96 issued server command: /v
[14:55:02] [User Authenticator #1/INFO]: UUID of player TML_ShadowDiamat is 72b326b0-ace5-43f4-8ed3-1cb83f141769
[14:55:02] [Server thread/INFO]: Check for Proxy Connection TML_ShadowDiamat
[14:55:02] [Bank - Loader Thread/INFO]: [Bank] Loading 72b326b0-ace5-43f4-8ed3-1cb83f141769
[14:55:02] [Bank - Loader Thread/INFO]: [Bank] Loaded 72b326b0-ace5-43f4-8ed3-1cb83f141769 after 11ms
[14:55:02] [Server thread/INFO]: TML_ShadowDiamat[/89.247.169.232:33875] logged in with entity id 7074 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[14:55:02] [Craft Scheduler Thread - 10 - SpigotOnlyProxyJoin/INFO]: Took 99ms (true)
[14:55:02] [Server thread/INFO]: IIRedRoseLinaII issued server command: /ptime day
[14:55:14] [User Authenticator #1/INFO]: UUID of player o0Rhinna0o is ab2c2533-0423-4ed4-be73-cb2f2c82a437
[14:55:14] [Server thread/INFO]: [Core] Plugin Bank has an update! Old: v4.5.6-RELEASE, New: v4.5.9-RELEASE
[14:55:14] [Server thread/INFO]: Check for Proxy Connection o0Rhinna0o
[14:55:14] [Bank - Loader Thread/INFO]: [Bank] Loading ab2c2533-0423-4ed4-be73-cb2f2c82a437
[14:55:14] [Bank - Loader Thread/INFO]: [Bank] Loaded ab2c2533-0423-4ed4-be73-cb2f2c82a437 after 9ms
[14:55:14] [Server thread/INFO]: o0Rhinna0o[/79.207.210.120:53257] logged in with entity id 7235 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[14:55:14] [Craft Scheduler Thread - 55 - SpigotOnlyProxyJoin/INFO]: Took 166ms (true)
[14:55:15] [Craft Scheduler Thread - 51 - BuycraftX/INFO]: [BuycraftX] Sending 2 analytic events
[14:55:17] [Server thread/INFO]: P1tbull issued server command: /invsee DarkPhoenix1512
[14:55:19] [Craft Scheduler Thread - 30 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:55:19] [Craft Scheduler Thread - 30 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:55:21] [Async Chat Thread - #2/INFO]: [Not Secure] [TEAM] [V] Admin | _ESC: DarkPhoenix1512 konntest du die abbauen?
[14:55:25] [Async Chat Thread - #2/INFO]: [Not Secure] Spieler | DarkPhoenix1512: Also gerade ging es noch
[14:55:54] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v1 vote record from /162.55.69.49:45948 -> Vote (from:minecraft-server.eu username:TML_ShadowDiamat address:2001:9e8:bc:1600:: timeStamp:1666889754 additionalData:null)
[14:55:54] [Server thread/INFO]: [VotingPlugin] Received a vote from service site 'minecraft-server.eu' by player 'TML_ShadowDiamat'!
[14:55:54] [Timer-2/INFO]: [Voting] Der Spieler TML_ShadowDiamat hat gerade gevoted.
[14:55:54] [Server thread/INFO]: [CaseOpening] Given x1 of Vote-Kisten key(s) to TML_ShadowDiamat.
[14:55:57] [Async Chat Thread - #2/INFO]: [Not Secure] Spieler | DarkPhoenix1512: Komischer bug
[14:56:04] [Async Chat Thread - #2/INFO]: [Not Secure] Spieler | P1tbull: Will auch sowas haben
[14:56:19] [Craft Scheduler Thread - 47 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:56:19] [Craft Scheduler Thread - 47 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:56:23] [Async Chat Thread - #2/INFO]: [Not Secure] [TEAM] Owner | Insom96: es ist kein Bug
[14:56:28] [Server thread/INFO]: [CaseOpening] Opened default crate menu for TML_ShadowDiamat.
[14:56:34] [Async Chat Thread - #2/INFO]: [Not Secure] [STOCK] Premium | Goldsteener: sondern ein feature? :D
[14:56:35] [Server thread/INFO]: [CaseOpening] Opened default crate menu for TML_ShadowDiamat.
[14:56:40] [Async Chat Thread - #2/INFO]: [Not Secure] [TEAM] Owner | Insom96: weder noch
[14:57:09] [Server thread/INFO]: TML_ShadowDiamat issued server command: /p h 1
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saving 6fc547ac-54d0-48b7-abe1-3f27981f9651
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saved 6fc547ac-54d0-48b7-abe1-3f27981f9651 after 17ms
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saving 701a3785-ed79-4288-a43e-1f4b7a08acf6
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saved 701a3785-ed79-4288-a43e-1f4b7a08acf6 after 16ms
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saving b7b5c0b6-727c-4b71-b7e7-c15993305cea
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saved b7b5c0b6-727c-4b71-b7e7-c15993305cea after 15ms
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saving 5323cad3-e19c-4dc4-bf2b-568f44f21842
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saved 5323cad3-e19c-4dc4-bf2b-568f44f21842 after 17ms
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saving 60d70ce9-b7c0-4abb-ae07-ebf5f3256741
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saved 60d70ce9-b7c0-4abb-ae07-ebf5f3256741 after 11ms
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saving 90219ad6-b913-4a56-8ddf-15b077267741
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saved 90219ad6-b913-4a56-8ddf-15b077267741 after 14ms
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saving 0804d25b-d84e-4db3-a94d-b3264b848fda
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saved 0804d25b-d84e-4db3-a94d-b3264b848fda after 10ms
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saving cb7fc50e-a14f-4634-8f41-b6a2e5c56ecd
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saved cb7fc50e-a14f-4634-8f41-b6a2e5c56ecd after 20ms
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saving b735be25-b1a7-4f14-8ea8-8f708be31a1a
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saved b735be25-b1a7-4f14-8ea8-8f708be31a1a after 19ms
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saving 72b326b0-ace5-43f4-8ed3-1cb83f141769
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saved 72b326b0-ace5-43f4-8ed3-1cb83f141769 after 16ms
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saving ab2c2533-0423-4ed4-be73-cb2f2c82a437
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saved ab2c2533-0423-4ed4-be73-cb2f2c82a437 after 16ms
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saving f0ba820a-ba83-46bc-a31a-cea4b7ffab23
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saved f0ba820a-ba83-46bc-a31a-cea4b7ffab23 after 13ms
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saving 212909b0-5440-4b5f-ae81-1b35a41723f5
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saved 212909b0-5440-4b5f-ae81-1b35a41723f5 after 12ms
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saving c3b14b5c-1ede-4a85-a9c2-0d5970ffd14c
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saved c3b14b5c-1ede-4a85-a9c2-0d5970ffd14c after 17ms
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saving db746193-3666-4d89-a298-0cafc160059c
[14:57:16] [Bank - Loader Thread/INFO]: [Bank] Saved db746193-3666-4d89-a298-0cafc160059c after 16ms
[14:57:19] [Craft Scheduler Thread - 64 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:57:20] [Craft Scheduler Thread - 64 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:57:24] [Async Chat Thread - #2/INFO]: [Not Secure] [TEAM] Owner | Insom96: DarkPhoenix1512 mit welcher Version bist du da?
[14:57:25] [Server thread/INFO]: o0Rhinna0o issued server command: /gm 1
[14:57:32] [Async Chat Thread - #2/INFO]: [Not Secure] Spieler | DarkPhoenix1512: Der Neusten
[14:57:36] [Async Chat Thread - #2/INFO]: [Not Secure] [TEAM] Owner | Insom96: definiere
[14:57:45] [Async Chat Thread - #2/INFO]: [Not Secure] Spieler | DarkPhoenix1512: Also 1.19.2
[14:58:05] [Server thread/INFO]: Insom96 issued server command: /ec
[14:58:15] [Async Chat Thread - #2/INFO]: [Not Secure] Spieler | DarkPhoenix1512: Ich Rejoine mahl und schaue ob es dann immer noch geht
[14:58:19] [Craft Scheduler Thread - 55 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:58:20] [Craft Scheduler Thread - 55 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:58:27] [Server thread/INFO]: DarkPhoenix1512 lost connection: Disconnected
[14:58:27] [Server thread/INFO]: [VariableEnderChests] Saving data for DarkPhoenix1512
[14:58:27] [Bank - Loader Thread/INFO]: [Bank] Saving 6fc547ac-54d0-48b7-abe1-3f27981f9651
[14:58:27] [Bank - Loader Thread/INFO]: [Bank] Saved 6fc547ac-54d0-48b7-abe1-3f27981f9651 after 18ms
[14:58:36] [User Authenticator #2/INFO]: UUID of player DarkPhoenix1512 is 6fc547ac-54d0-48b7-abe1-3f27981f9651
[14:58:36] [Server thread/INFO]: Check for Proxy Connection DarkPhoenix1512
[14:58:36] [Bank - Loader Thread/INFO]: [Bank] Loading 6fc547ac-54d0-48b7-abe1-3f27981f9651
[14:58:36] [Bank - Loader Thread/INFO]: [Bank] Loaded 6fc547ac-54d0-48b7-abe1-3f27981f9651 after 11ms
[14:58:36] [Server thread/INFO]: DarkPhoenix1512[/95.223.82.80:45409] logged in with entity id 10195 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[14:58:36] [Craft Scheduler Thread - 67 - SpigotOnlyProxyJoin/INFO]: Took 59ms (true)
[14:58:46] [Async Chat Thread - #2/INFO]: [Not Secure] Spieler | P1tbull: Ich vermisse noch meine 15 köpfe Kisten von heute morgen :(
[14:58:51] [Server thread/INFO]: [CaseOpening] Opened default crate menu for o0Rhinna0o.
[14:59:00] [Server thread/INFO]: DreiCpO issued server command: /spawn
[14:59:03] [Netty Epoll Server IO #2/WARN]: Nalijah sent expired chat: 'Wir arbeiten daran!'. Is the client/server system time unsynchronized? c: 1666881983 s: 1666882743
[14:59:03] [Async Chat Thread - #2/INFO]: [Not Secure] [TEAM] [V] Builder | Nalijah: Wir arbeiten daran!
[14:59:04] [Async Chat Thread - #2/INFO]: [Not Secure] [STOCK] Premium | Goldsteener: insom hat doch gesagt mach ein ticket auf =)
[14:59:06] [Async Chat Thread - #2/INFO]: [Not Secure] [TEAM] [V] Admin | _ESC: P1tbull schreib dazu bitte ein Erstattungsticket im Discord. :D
[14:59:09] [Server thread/INFO]: [CaseOpening] Opened default crate menu for DreiCpO.
[14:59:11] [Server thread/INFO]: [CaseOpening] Opened default crate menu for DreiCpO.
[14:59:15] [Craft Scheduler Thread - 30 - BuycraftX/INFO]: [BuycraftX] Sending 2 analytic events
[14:59:16] [Async Chat Thread - #2/INFO]: [Not Secure] Spieler | P1tbull: _ESC xD
[14:59:20] [Craft Scheduler Thread - 22 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:59:20] [Craft Scheduler Thread - 22 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:59:30] [Server thread/INFO]: [CaseOpening] Opened default crate menu for DreiCpO.
[14:59:30] [Server thread/INFO]: TML_ShadowDiamat issued server command: /craft
[14:59:32] [Server thread/INFO]: KuZuUri issued server command: /ec
[14:59:40] [Server thread/INFO]: _ESC issued server command: /ec
[14:59:47] [Server thread/INFO]: [CaseOpening] Opened default crate menu for DreiCpO.
[14:59:55] [Server thread/INFO]: _ESC issued server command: /ec o0Rhinna0o
[15:00:03] [Server thread/INFO]: Insom96 issued server command: /tpohere Draco2B85
[15:00:05] [Server thread/INFO]: TML_ShadowDiamat issued server command: /ec
[15:00:20] [Craft Scheduler Thread - 75 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:00:20] [Craft Scheduler Thread - 75 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:00:24] [Async Chat Thread - #4/INFO]: [Not Secure] Spieler | DarkPhoenix1512: Geht jetzt ned mehr komisch
[15:00:29] [User Authenticator #3/INFO]: UUID of player HerrSeppel is e847bf81-d977-420d-87ae-bdb64f841d4a
[15:00:29] [Server thread/INFO]: Check for Proxy Connection HerrSeppel
[15:00:29] [Bank - Loader Thread/INFO]: [Bank] Loading e847bf81-d977-420d-87ae-bdb64f841d4a
[15:00:29] [Server thread/INFO]: HerrSeppel[/95.90.206.241:58495] logged in with entity id 11401 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[15:00:29] [Bank - Loader Thread/INFO]: [Bank] Loaded e847bf81-d977-420d-87ae-bdb64f841d4a after 11ms
[15:00:29] [Craft Scheduler Thread - 53 - SpigotOnlyProxyJoin/INFO]: Took 103ms (true)
[15:00:45] [Server thread/INFO]: KuZuUri issued server command: /p h
[15:00:47] [Server thread/INFO]: [CaseOpening] Opened default crate menu for DreiCpO.
[15:00:53] [Server thread/INFO]: DreiCpO issued server command: /bit store
[15:00:59] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[15:00:59] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R1' loaded!
[15:00:59] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[15:00:59] [Thread-104/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[15:01:04] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:01:09] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:01:10] [Async Chat Thread - #4/INFO]: [Not Secure] Spieler | P1tbull: Sind die neuen namen gewollt ? ^^
[15:01:15] [Craft Scheduler Thread - 30 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[15:01:17] [Netty Epoll Server IO #2/WARN]: Nalijah sent expired chat: 'ja...'. Is the client/server system time unsynchronized? c: 1666881983 s: 1666882877
[15:01:17] [Async Chat Thread - #4/INFO]: [Not Secure] [TEAM] [V] Builder | Nalijah: ja...
[15:01:18] [Server thread/INFO]: KuZuUri issued server command: /ah
[15:01:20] [Craft Scheduler Thread - 21 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:01:20] [Craft Scheduler Thread - 21 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:01:23] [Server thread/INFO]: DreiCpO issued server command: /p h
[15:01:28] [Server thread/INFO]: DreiCpO issued server command: /bitwelt
[15:01:28] [Server thread/INFO]: DreiCpO issued server command: /warp Event
[15:01:30] [Server thread/INFO]: Draco2B85 issued server command: /p h 2
[15:01:34] [Async Chat Thread - #4/INFO]: [Not Secure] [STOCK] Premium | Goldsteener: welche neuen namen?
[15:01:34] [Server thread/INFO]: DreiCpO issued server command: /warp bitwelt
[15:01:37] [Async Chat Thread - #4/INFO]: [Not Secure] [BIER] Legendary | Blackangel1908: welche neue namen
[15:01:39] [Server thread/INFO]: IIRedRoseLinaII issued server command: /p h
[15:01:39] [Netty Epoll Server IO #2/WARN]: Nalijah sent expired chat: 'natürlich nicht.'. Is the client/server system time unsynchronized? c: 1666881983 s: 1666882899
[15:01:39] [Async Chat Thread - #4/INFO]: [Not Secure] [TEAM] [V] Builder | Nalijah: natürlich nicht.
[15:02:01] [Server thread/INFO]: HerrSeppel issued server command: /p h 2
[15:02:07] [Timer-13/INFO]: [zAuctionHouseV3 v3.1.0.2] /home/CityBuild/plugins/zAuctionHouseV3/items.json successfully saved !
[15:02:15] [Server thread/INFO]: KuZuUri issued server command: /home deep
[15:02:16] [Craft Scheduler Thread - 58 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 16 online users | 0 offline users.
[15:02:16] [Craft Scheduler Thread - 80 - GamePoints/INFO]: [GamePoints] Auto-save: Saved 16 online users | 0 offline users.
[15:02:19] [Async Chat Thread - #4/INFO]: [Not Secure] Spieler | P1tbull: Stell dich mal vor die Angel Quest oder dem Fleischer ^^
[15:02:20] [Craft Scheduler Thread - 75 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:02:21] [Craft Scheduler Thread - 75 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:02:37] [Server thread/INFO]: HerrSeppel issued server command: /p add TML_ShadowDiamat
[15:02:41] [Server thread/INFO]: HerrSeppel issued server command: /p add TML_ShadowDiamat
[15:02:41] [Async Chat Thread - #4/INFO]: [Not Secure] Premium | DreiCpO: wie bekommt man jetzt die bits wenn die bitwelt nicht geht ?
[15:03:12] [Async Chat Thread - #4/INFO]: [Not Secure] Creator | HerrSeppel: t
[15:03:14] [Server thread/INFO]: IIRedRoseLinaII issued server command: /warp nether
[15:03:18] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=Nether},x=208.0,y=11.0,z=-1129.0,pitch=0.0,yaw=0.0}
[15:03:21] [Craft Scheduler Thread - 81 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:03:21] [Craft Scheduler Thread - 81 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:03:32] [Netty Epoll Server IO #2/WARN]: Nalijah sent expired chat: 'Die NPC´s ziehen gerade um. Lasst euch überraschen'. Is the client/server system time unsynchronized? c: 1666881983 s: 1666883012
[15:03:32] [Async Chat Thread - #4/INFO]: [Not Secure] [TEAM] [V] Builder | Nalijah: Die NPC´s ziehen gerade um. Lasst euch überraschen
[15:03:34] [Server thread/INFO]: TML_ShadowDiamat issued server command: /p v HerrSeppel
[15:03:39] [Server thread/INFO]: TML_ShadowDiamat issued server command: /p v HerrSeppel 2
[15:03:45] [Server thread/INFO]: Blackangel1908 issued server command: /ah
[15:03:52] [Server thread/INFO]: HerrSeppel issued server command: /booster
[15:04:01] [Server thread/INFO]: 


[Booster] HerrSeppel hat den Fly-Booster aktiviert! x1
[15:04:05] [Server thread/WARN]: HerrSeppel moved too quickly! -7.839073356736151,5.0627646802300035,8.017288080663889
[15:04:12] [Async Chat Thread - #4/INFO]: [Not Secure] [TEAM] [V] Admin | o0Rhinna0o: Die Bitwelt gibt es schon einige Tage nicht mehr. Dafür haben wir ja die Bit Quest, die ist auch demnächst wieder verfügbar
[15:04:21] [Craft Scheduler Thread - 71 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:04:21] [Craft Scheduler Thread - 71 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:04:32] [Async Chat Thread - #4/INFO]: [Not Secure] Premium | DreiCpO: alles klar
[15:04:32] [Server thread/INFO]: Insom96 issued server command: /version
[15:04:34] [Async Chat Thread - #4/INFO]: [Not Secure] Spieler | DarkPhoenix1512: Also CIT-f3becdabd ist noch nicht ausgewandert
[15:04:55] [Netty Epoll Server IO #2/WARN]: Nalijah sent expired chat: 'Der hat kein Visum erhalten und muss hier bleiben'. Is the client/server system time unsynchronized? c: 1666881983 s: 1666883095
[15:04:55] [Async Chat Thread - #4/INFO]: [Not Secure] [TEAM] [V] Builder | Nalijah: Der hat kein Visum erhalten und muss hier bleiben
[15:05:04] [Server thread/INFO]: Insom96 issued server command: /version Citizens
[15:05:13] [Async Chat Thread - #4/INFO]: [Not Secure] Spieler | DarkPhoenix1512: Ja der ahme Fleischer
[15:05:21] [Craft Scheduler Thread - 70 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:05:21] [Craft Scheduler Thread - 70 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:05:25] [Server thread/INFO]: P1tbull issued server command: /p h
[15:05:42] [Server thread/INFO]: KuZuUri issued server command: /p h
[15:05:57] [Async Chat Thread - #4/INFO]: [Not Secure] Spieler | DarkPhoenix1512: Hättet ihr nicht wenigstens denn Fischer mit nehmen können XD
[15:05:59] [Server thread/INFO]: VIK_BikeBunny issued server command: /p h 5
[15:06:01] [Server thread/INFO]: o0Rhinna0o issued server command: /home wither
[15:06:10] [Server thread/INFO]: DarkPhoenix1512 issued server command: /p v HerrSeppel
[15:06:13] [Server thread/INFO]: DarkPhoenix1512 issued server command: /p v HerrSeppel 2
[15:06:15] [Server thread/INFO]: » WorldsLegacy Alle Items und Mobs werden in 60 Sekunden entfernt!
[15:06:19] [Netty Epoll Server IO #2/WARN]: Nalijah sent expired chat: 'den wollte dort auch niemand :D'. Is the client/server system time unsynchronized? c: 1666881983 s: 1666883179
[15:06:19] [Async Chat Thread - #4/INFO]: [Not Secure] [TEAM] [V] Builder | Nalijah: den wollte dort auch niemand :D
[15:06:21] [Craft Scheduler Thread - 67 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:06:22] [Craft Scheduler Thread - 67 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:06:22] [Server thread/INFO]: Nalijah issued server command: /p h
[15:06:23] [Server thread/INFO]: o0Rhinna0o issued server command: /ec
[15:06:29] [Server thread/INFO]: KuZuUri issued server command: /ah
[15:06:30] [Async Chat Thread - #4/INFO]: [Not Secure] Spieler | P1tbull: Wieso wohl xD
[15:06:31] [Server thread/INFO]: KuZuUri issued server command: /ah
[15:06:43] [Server thread/INFO]: Nalijah issued server command: /breakblock
[15:06:44] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:06:45] [Server thread/INFO]: » WorldsLegacy Alle Items und Mobs werden in 30 Sekunden entfernt!
[15:06:45] [Server thread/INFO]: DarkPhoenix1512 issued server command: /msg HerrSeppel na das kann was werden mit 3 leute
[15:06:46] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:06:50] [Server thread/INFO]: Nalijah issued server command: /Ec
[15:06:52] [Server thread/INFO]: Nalijah issued server command: /ec
[15:06:56] [Server thread/INFO]: KuZuUri issued server command: /home nether
[15:07:05] [Server thread/INFO]: » WorldsLegacy Alle Items und Mobs werden in 10 Sekunden entfernt!
[15:07:15] [Server thread/INFO]: » WorldsLegacy Es wurden 395 Mobs und Items entfernt!
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saving 701a3785-ed79-4288-a43e-1f4b7a08acf6
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saved 701a3785-ed79-4288-a43e-1f4b7a08acf6 after 13ms
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saving 6fc547ac-54d0-48b7-abe1-3f27981f9651
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saved 6fc547ac-54d0-48b7-abe1-3f27981f9651 after 9ms
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saving b7b5c0b6-727c-4b71-b7e7-c15993305cea
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saved b7b5c0b6-727c-4b71-b7e7-c15993305cea after 22ms
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saving 5323cad3-e19c-4dc4-bf2b-568f44f21842
[15:07:16] [Craft Scheduler Thread - 79 - GamePoints/INFO]: [GamePoints] Updating balance top...
[15:07:16] [Craft Scheduler Thread - 79 - GamePoints/INFO]: [GamePoints] Balance top updated in 1 ms!
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saved 5323cad3-e19c-4dc4-bf2b-568f44f21842 after 14ms
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saving 60d70ce9-b7c0-4abb-ae07-ebf5f3256741
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saved 60d70ce9-b7c0-4abb-ae07-ebf5f3256741 after 23ms
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saving 90219ad6-b913-4a56-8ddf-15b077267741
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saved 90219ad6-b913-4a56-8ddf-15b077267741 after 21ms
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saving 0804d25b-d84e-4db3-a94d-b3264b848fda
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saved 0804d25b-d84e-4db3-a94d-b3264b848fda after 14ms
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saving cb7fc50e-a14f-4634-8f41-b6a2e5c56ecd
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saved cb7fc50e-a14f-4634-8f41-b6a2e5c56ecd after 11ms
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saving b735be25-b1a7-4f14-8ea8-8f708be31a1a
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saved b735be25-b1a7-4f14-8ea8-8f708be31a1a after 16ms
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saving 72b326b0-ace5-43f4-8ed3-1cb83f141769
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saved 72b326b0-ace5-43f4-8ed3-1cb83f141769 after 15ms
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saving ab2c2533-0423-4ed4-be73-cb2f2c82a437
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saved ab2c2533-0423-4ed4-be73-cb2f2c82a437 after 11ms
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saving f0ba820a-ba83-46bc-a31a-cea4b7ffab23
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saved f0ba820a-ba83-46bc-a31a-cea4b7ffab23 after 15ms
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saving 212909b0-5440-4b5f-ae81-1b35a41723f5
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saved 212909b0-5440-4b5f-ae81-1b35a41723f5 after 17ms
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saving c3b14b5c-1ede-4a85-a9c2-0d5970ffd14c
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saved c3b14b5c-1ede-4a85-a9c2-0d5970ffd14c after 12ms
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saving db746193-3666-4d89-a298-0cafc160059c
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saved db746193-3666-4d89-a298-0cafc160059c after 18ms
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saving e847bf81-d977-420d-87ae-bdb64f841d4a
[15:07:16] [Bank - Loader Thread/INFO]: [Bank] Saved e847bf81-d977-420d-87ae-bdb64f841d4a after 11ms
[15:07:24] [Craft Scheduler Thread - 64 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:07:24] [Craft Scheduler Thread - 64 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:07:27] [Server thread/INFO]: IIRedRoseLinaII issued server command: /p v DreiCpO
[15:07:34] [Server thread/INFO]: P1tbull issued server command: /homes
[15:07:49] [Server thread/INFO]: DreiCpO issued server command: /home nether
[15:07:55] [Server thread/INFO]: P1tbull issued server command: /homes
[15:08:19] [Server thread/INFO]: Nalijah issued server command: /c
[15:08:22] [Craft Scheduler Thread - 30 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:08:22] [Craft Scheduler Thread - 30 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:08:22] [Server thread/INFO]: Nalijah issued server command: /v
[15:08:59] [Server thread/INFO]: o0Rhinna0o issued server command: /ec
[15:09:01] [Server thread/INFO]: Insom96 issued server command: /warp quest
[15:09:05] [Server thread/INFO]: Nalijah issued server command: /home stöcker
[15:09:05] [Server thread/INFO]: o0Rhinna0o issued server command: /p h 3
[15:09:25] [Craft Scheduler Thread - 90 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:09:25] [Craft Scheduler Thread - 90 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:09:38] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5011ms or 100 ticks behind
[15:09:42] [Server thread/INFO]: Insom96 issued server command: /npc create &2Howard
[15:09:49] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:09:59] [Server thread/INFO]: DreiCpO issued server command: /p h
[15:10:07] [Server thread/INFO]: Insom96 issued server command: /npc skin --url https://minecraft.novaskin.me/skin/4807003967/Magier
[15:10:07] [Server thread/INFO]: o0Rhinna0o issued server command: /tpo Insom96
[15:10:15] [Server thread/INFO]: DarkPhoenix1512 issued server command: /p i
[15:10:23] [Server thread/INFO]: Insom96 issued server command: /npc skin --url http://novask.in/5962914034.png
[15:10:29] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5010ms or 100 ticks behind
[15:10:32] [Craft Scheduler Thread - 87 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:10:32] [Craft Scheduler Thread - 87 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:10:35] [Server thread/INFO]: Insom96 issued server command: /npc type Villager
[15:10:55] [Server thread/INFO]: [PlotSquared/PlotPlayer] Registered class org.bukkit.craftbukkit.v1_19_R1.entity.CraftPlayer as with converter for interface org.bukkit.entity.Player
[15:11:08] [Server thread/INFO]: Insom96 issued server command: /npc type Player
[15:11:19] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5026ms or 100 ticks behind
[15:11:27] [Server thread/INFO]: DarkPhoenix1512 lost connection: Disconnected
[15:11:27] [Server thread/INFO]: [VariableEnderChests] Saving data for DarkPhoenix1512
[15:11:27] [Bank - Loader Thread/INFO]: [Bank] Saving 6fc547ac-54d0-48b7-abe1-3f27981f9651
[15:11:27] [Bank - Loader Thread/INFO]: [Bank] Saved 6fc547ac-54d0-48b7-abe1-3f27981f9651 after 23ms
[15:11:32] [Craft Scheduler Thread - 99 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[15:11:40] [Craft Scheduler Thread - 21 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:11:40] [Craft Scheduler Thread - 21 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:11:55] [Server thread/INFO]: Insom96 issued server command: /npc remove
[15:12:16] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5010ms or 100 ticks behind
[15:12:34] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:12:48] [Craft Scheduler Thread - 91 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:12:48] [Craft Scheduler Thread - 91 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:12:51] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5418ms or 108 ticks behind
[15:13:07] [Server thread/INFO]: Blackangel1908 issued server command: /msg HerrSeppel brauchst du noch redstone lampen und wenn ja wie viel
[15:13:11] [Server thread/INFO]: Insom96 issued server command: /citizens reload
[15:13:17] [Server thread/INFO]: Insom96 issued server command: /citizens reload
[15:13:24] [Server thread/INFO]: DreiCpO issued server command: /warp farmwelt
[15:13:29] [Server thread/INFO]: Insom96 issued server command: /citizens reload
[15:13:39] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5005ms or 100 ticks behind
[15:13:51] [Server thread/INFO]: VIK_BikeBunny issued server command: /spawn
[15:13:55] [Craft Scheduler Thread - 89 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:13:55] [Craft Scheduler Thread - 89 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:13:58] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:13:59] [Server thread/INFO]: Blackangel1908 issued server command: /spawn
[15:14:00] [Server thread/INFO]: VIK_BikeBunny issued server command: /p h 5
[15:14:04] [Server thread/INFO]: KuZuUri issued server command: /sethome nether
[15:14:06] [Server thread/INFO]: KuZuUri issued server command: /p h
[15:14:08] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Blackangel1908.
[15:14:23] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5002ms or 100 ticks behind
[15:14:23] [Server thread/INFO]: VIK_BikeBunny issued server command: /spawn
[15:14:29] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:14:35] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:14:44] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:14:47] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:14:58] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5362ms or 107 ticks behind
[15:15:01] [Server thread/INFO]: Insom96 issued server command: /citizens reload
[15:15:05] [Craft Scheduler Thread - 101 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:15:05] [Craft Scheduler Thread - 101 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:15:05] [Server thread/INFO]: Insom96 issued server command: /citizens reload
[15:15:10] [Server thread/INFO]: DreiCpO issued server command: /p h
[15:15:25] [Server thread/INFO]: KuZuUri issued server command: /trash
[15:15:25] [Server thread/INFO]: VIK_BikeBunny issued server command: /perks
[15:15:38] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5004ms or 100 ticks behind
[15:15:48] [Server thread/INFO]: DreiCpO issued server command: /warp Fichte
[15:15:52] [Server thread/INFO]: KuZuUri issued server command: /p h
[15:15:54] [Server thread/INFO]: DreiCpO issued server command: /home Fichte
[15:16:13] [Craft Scheduler Thread - 53 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:16:13] [Craft Scheduler Thread - 53 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:16:21] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5005ms or 100 ticks behind
[15:16:23] [Server thread/INFO]: KuZuUri issued server command: /craft
[15:16:32] [Async Chat Thread - #6/INFO]: [Not Secure] [STOCK] Premium | Goldsteener: Hat jeman zufällig ein Wüstenbiom wo ich mich austoben könnte? :D
[15:16:36] [Server thread/INFO]: KuZuUri issued server command: /craft
[15:16:48] [Server thread/INFO]: KuZuUri issued server command: /craft
[15:16:50] [Server thread/INFO]: KuZuUri issued server command: /craft
[15:16:50] [Server thread/INFO]: Goldsteener issued server command: /ah
[15:16:57] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:17:01] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Goldsteener buy x64 Quartz block to KuZuUri for 7000$.
[15:17:02] [Server thread/INFO]: VIK_BikeBunny issued server command: /home home4
[15:17:04] [Server thread/INFO]: Goldsteener issued server command: /ah
[15:17:04] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5014ms or 100 ticks behind
[15:17:06] [Server thread/INFO]: KuZuUri issued server command: /craft
[15:17:07] [Timer-13/INFO]: [zAuctionHouseV3 v3.1.0.2] /home/CityBuild/plugins/zAuctionHouseV3/items.json successfully saved !
[15:17:07] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:17:10] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Goldsteener buy x64 Quartz block to KuZuUri for 7000$.
[15:17:11] [Server thread/INFO]: Goldsteener issued server command: /ah
[15:17:14] [Server thread/INFO]: KuZuUri issued server command: /ah
[15:17:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Goldsteener buy x64 Quartz block to KuZuUri for 7000$.
[15:17:14] [Server thread/INFO]: VIK_BikeBunny issued server command: /home home5
[15:17:15] [Server thread/INFO]: KuZuUri issued server command: /craft
[15:17:16] [Server thread/INFO]: Goldsteener issued server command: /ah
[15:17:21] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Goldsteener buy x64 Quartz block to KuZuUri for 7000$.
[15:17:22] [Server thread/INFO]: VIK_BikeBunny issued server command: /p h 5
[15:17:22] [Craft Scheduler Thread - 93 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:17:22] [Craft Scheduler Thread - 93 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:17:23] [Server thread/INFO]: Goldsteener issued server command: /ah
[15:17:24] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:17:25] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Goldsteener buy x64 Quartz block to KuZuUri for 7000$.
[15:17:26] [Server thread/INFO]: Goldsteener issued server command: /ah
[15:17:27] [Server thread/INFO]: VIK_BikeBunny issued server command: /home home5
[15:17:30] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Goldsteener buy x64 Quartz block to KuZuUri for 7000$.
[15:17:32] [Server thread/INFO]: Goldsteener issued server command: /ah
[15:17:33] [Server thread/INFO]: KuZuUri issued server command: /craft
[15:17:35] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Goldsteener buy x64 Quartz block to KuZuUri for 7000$.
[15:17:37] [Server thread/INFO]: Goldsteener issued server command: /ah
[15:17:38] [Server thread/INFO]: KuZuUri issued server command: /ah
[15:17:41] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 6370ms or 127 ticks behind
[15:17:47] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Goldsteener remove x1 Baklava form buy
[15:17:48] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Goldsteener remove x1 Camera form buy
[15:17:48] [User Authenticator #4/INFO]: UUID of player _LadyRias_ is ac1efbea-f97b-4b22-b5f3-3a2e4f73c8ac
[15:17:48] [Server thread/INFO]: Check for Proxy Connection _LadyRias_
[15:17:48] [Bank - Loader Thread/INFO]: [Bank] Loading ac1efbea-f97b-4b22-b5f3-3a2e4f73c8ac
[15:17:48] [Bank - Loader Thread/INFO]: [Bank] Loaded ac1efbea-f97b-4b22-b5f3-3a2e4f73c8ac after 13ms
[15:17:48] [Server thread/INFO]: _LadyRias_[/88.130.145.145:52989] logged in with entity id 71616 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[15:17:48] [Craft Scheduler Thread - 94 - SpigotOnlyProxyJoin/INFO]: Took 92ms (true)
[15:17:48] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Goldsteener remove x1 Parrot (red) form buy
[15:17:49] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Goldsteener remove x64 Quartz block form buy
[15:17:49] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Goldsteener remove x64 Quartz block form buy
[15:17:49] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Goldsteener remove x64 Quartz block form buy
[15:17:49] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Goldsteener remove x64 Quartz block form buy
[15:17:49] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Goldsteener remove x64 Quartz block form buy
[15:17:50] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Goldsteener remove x64 Quartz block form buy
[15:17:50] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] Goldsteener remove x64 Quartz block form buy
[15:17:50] [Server thread/INFO]: VIK_BikeBunny issued server command: /tpahere Goldsteener
[15:17:54] [Server thread/INFO]: DreiCpO issued server command: /p h
[15:17:55] [Server thread/INFO]: KuZuUri issued server command: /ah
[15:18:02] [Server thread/INFO]: KuZuUri issued server command: /p h
[15:18:06] [Async Chat Thread - #8/INFO]: [Not Secure] [VIK] Legendary | VIK_BikeBunny: goldsteener hast ne tpa
[15:18:09] [Server thread/INFO]: Goldsteener issued server command: /tpayes
[15:18:13] [User Authenticator #4/INFO]: UUID of player TRE_Bullet is 1dde7084-5344-4ad8-af93-edba8416c002
[15:18:14] [Server thread/INFO]: Check for Proxy Connection TRE_Bullet
[15:18:14] [Bank - Loader Thread/INFO]: [Bank] Loading 1dde7084-5344-4ad8-af93-edba8416c002
[15:18:14] [Server thread/INFO]: TRE_Bullet[/78.48.107.87:39715] logged in with entity id 72468 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[15:18:14] [Craft Scheduler Thread - 102 - SpigotOnlyProxyJoin/INFO]: Took 79ms (true)
[15:18:14] [Bank - Loader Thread/INFO]: [Bank] Loaded 1dde7084-5344-4ad8-af93-edba8416c002 after 17ms
[15:18:16] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5388ms or 107 ticks behind
[15:18:19] [Async Chat Thread - #8/INFO]: [Not Secure] [STOCK] Premium | Goldsteener: juhu danke =)
[15:18:23] [Server thread/INFO]: KuZuUri issued server command: /ah sell 7000
[15:18:23] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri added x64 Quartz block in auction for 7000$.
[15:18:24] [Craft Scheduler Thread - 105 - BuycraftX/INFO]: [BuycraftX] Sending 2 analytic events
[15:18:24] [Server thread/INFO]: [CustomCrafting] Saving Cauldrons
[15:18:24] [Craft Scheduler Thread - 99 - LibsDisguises/INFO]: [LibsDisguises] Now looking for update on Github..
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saving 701a3785-ed79-4288-a43e-1f4b7a08acf6
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saved 701a3785-ed79-4288-a43e-1f4b7a08acf6 after 16ms
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saving b7b5c0b6-727c-4b71-b7e7-c15993305cea
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saved b7b5c0b6-727c-4b71-b7e7-c15993305cea after 13ms
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saving 5323cad3-e19c-4dc4-bf2b-568f44f21842
[15:18:24] [Craft Scheduler Thread - 94 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 17 online users | 0 offline users.
[15:18:24] [Craft Scheduler Thread - 118 - GamePoints/INFO]: [GamePoints] Auto-save: Saved 17 online users | 0 offline users.
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saved 5323cad3-e19c-4dc4-bf2b-568f44f21842 after 20ms
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saving 60d70ce9-b7c0-4abb-ae07-ebf5f3256741
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saved 60d70ce9-b7c0-4abb-ae07-ebf5f3256741 after 15ms
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saving ac1efbea-f97b-4b22-b5f3-3a2e4f73c8ac
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saved ac1efbea-f97b-4b22-b5f3-3a2e4f73c8ac after 12ms
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saving 90219ad6-b913-4a56-8ddf-15b077267741
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saved 90219ad6-b913-4a56-8ddf-15b077267741 after 16ms
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saving 0804d25b-d84e-4db3-a94d-b3264b848fda
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saved 0804d25b-d84e-4db3-a94d-b3264b848fda after 11ms
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saving cb7fc50e-a14f-4634-8f41-b6a2e5c56ecd
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saved cb7fc50e-a14f-4634-8f41-b6a2e5c56ecd after 22ms
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saving b735be25-b1a7-4f14-8ea8-8f708be31a1a
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saved b735be25-b1a7-4f14-8ea8-8f708be31a1a after 18ms
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saving 72b326b0-ace5-43f4-8ed3-1cb83f141769
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saved 72b326b0-ace5-43f4-8ed3-1cb83f141769 after 15ms
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saving 1dde7084-5344-4ad8-af93-edba8416c002
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saved 1dde7084-5344-4ad8-af93-edba8416c002 after 19ms
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saving ab2c2533-0423-4ed4-be73-cb2f2c82a437
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saved ab2c2533-0423-4ed4-be73-cb2f2c82a437 after 12ms
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saving f0ba820a-ba83-46bc-a31a-cea4b7ffab23
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saved f0ba820a-ba83-46bc-a31a-cea4b7ffab23 after 14ms
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saving 212909b0-5440-4b5f-ae81-1b35a41723f5
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saved 212909b0-5440-4b5f-ae81-1b35a41723f5 after 16ms
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saving c3b14b5c-1ede-4a85-a9c2-0d5970ffd14c
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saved c3b14b5c-1ede-4a85-a9c2-0d5970ffd14c after 11ms
[15:18:24] [Bank - Loader Thread/INFO]: [Bank] Saving db746193-3666-4d89-a298-0cafc160059c
[15:18:25] [Bank - Loader Thread/INFO]: [Bank] Saved db746193-3666-4d89-a298-0cafc160059c after 36ms
[15:18:25] [Bank - Loader Thread/INFO]: [Bank] Saving e847bf81-d977-420d-87ae-bdb64f841d4a
[15:18:25] [Bank - Loader Thread/INFO]: [Bank] Saved e847bf81-d977-420d-87ae-bdb64f841d4a after 14ms
[15:18:26] [Server thread/INFO]: KuZuUri issued server command: /ah sell 7000
[15:18:26] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri added x64 Quartz block in auction for 7000$.
[15:18:27] [Async Chat Thread - #8/INFO]: [Not Secure] [VIK] Legendary | VIK_BikeBunny: das kann ich dir anbieten
[15:18:28] [Server thread/INFO]: KuZuUri issued server command: /ah sell 7000
[15:18:28] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri added x64 Quartz block in auction for 7000$.
[15:18:31] [Server thread/INFO]: KuZuUri issued server command: /ah sell 7000
[15:18:31] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri added x64 Quartz block in auction for 7000$.
[15:18:33] [Server thread/INFO]: KuZuUri issued server command: /ah sell 7000
[15:18:33] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri added x64 Quartz block in auction for 7000$.
[15:18:33] [Async Chat Thread - #8/INFO]: [Not Secure] [STOCK] Premium | Goldsteener: ja, super :D
[15:18:35] [Craft Scheduler Thread - 125 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:18:35] [Server thread/INFO]: KuZuUri issued server command: /ah sell 7000
[15:18:35] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri added x64 Quartz block in auction for 7000$.
[15:18:35] [Craft Scheduler Thread - 125 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:18:37] [Async Chat Thread - #8/INFO]: [Not Secure] [STOCK] Premium | Goldsteener: bekommste was?
[15:18:38] [Server thread/INFO]: KuZuUri issued server command: /ah sell 7000
[15:18:38] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri added x64 Quartz block in auction for 7000$.
[15:18:40] [Server thread/INFO]: KuZuUri issued server command: /ah sell 7000
[15:18:40] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri added x64 Quartz block in auction for 7000$.
[15:18:43] [Server thread/INFO]: KuZuUri issued server command: /ah sell 7000
[15:18:43] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri added x64 Quartz block in auction for 7000$.
[15:18:44] [Server thread/INFO]: VIK_BikeBunny issued server command: /spawn
[15:18:49] [Server thread/INFO]: KuZuUri issued server command: /ah
[15:18:52] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5666ms or 113 ticks behind
[15:18:52] [Async Chat Thread - #8/INFO]: [Not Secure] [VIK] Legendary | VIK_BikeBunny: ne
[15:19:05] [Async Chat Thread - #8/INFO]: [Not Secure] [STOCK] Premium | Goldsteener: tausend dank =)
[15:19:08] [Async Chat Thread - #8/INFO]: [Not Secure] Mysterious | KuZuUri: Quarz lässt sich gut verkaufen :)
[15:19:09] [Async Chat Thread - #8/INFO]: [Not Secure] [VIK] Legendary | VIK_BikeBunny: gerne
[15:19:13] [Server thread/INFO]: KuZuUri issued server command: /bank open
[15:19:16] [Server thread/WARN]: [Core] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[15:19:27] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5288ms or 105 ticks behind
[15:19:46] [Craft Scheduler Thread - 128 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:19:46] [Craft Scheduler Thread - 128 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:19:47] [Server thread/INFO]: Blackangel1908 issued server command: /p h 2
[15:19:56] [Server thread/INFO]: VIK_BikeBunny issued server command: /p h 5
[15:20:03] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 6206ms or 124 ticks behind
[15:20:04] [Server thread/INFO]: Goldsteener issued server command: /sethome sand
[15:20:11] [Async Chat Thread - #10/INFO]: [Not Secure] [BIER] Master | TRE_Bullet: Einen schönen guten Tag zusammen
[15:20:12] [Server thread/INFO]: Goldsteener issued server command: /ec
[15:20:28] [Async Chat Thread - #10/INFO]: [Not Secure] Spieler | _LadyRias_: hallomeine lieben
[15:20:35] [Async Chat Thread - #10/INFO]: [Not Secure] Premium | DreiCpO: hallo _LadyRias_
[15:20:35] [Server thread/INFO]: KuZuUri issued server command: /ah
[15:20:39] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5005ms or 100 ticks behind
[15:20:42] [Async Chat Thread - #10/INFO]: [Not Secure] [BIER] Master | TRE_Bullet: Hallo _LadyRias_
[15:20:54] [Async Chat Thread - #10/INFO]: [Not Secure] Creator | IIRedRoseLinaII: _LadyRias_ huhu
[15:20:56] [Craft Scheduler Thread - 122 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:20:56] [Craft Scheduler Thread - 122 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:21:13] [Server thread/INFO]: Goldsteener issued server command: /p h
[15:21:14] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5518ms or 110 ticks behind
[15:21:42] [Server thread/INFO]: [CaseOpening] Opened default crate menu for _LadyRias_.
[15:21:48] [Server thread/INFO]: DreiCpO issued server command: /p h
[15:21:50] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5435ms or 108 ticks behind
[15:21:52] [Server thread/INFO]: _LadyRias_ issued server command: /vote
[15:21:52] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:21:58] [Server thread/INFO]: _LadyRias_ issued server command: /ah
[15:22:03] [Server thread/INFO]: KuZuUri issued server command: /spawn
[15:22:03] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] _LadyRias_ buy x64 Quartz block to KuZuUri for 7000$.
[15:22:05] [Server thread/INFO]: _LadyRias_ issued server command: /ah
[15:22:07] [Craft Scheduler Thread - 128 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:22:08] [Craft Scheduler Thread - 128 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:22:08] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] _LadyRias_ buy x64 Quartz block to KuZuUri for 7000$.
[15:22:11] [Server thread/INFO]: _LadyRias_ issued server command: /ah
[15:22:12] [Server thread/INFO]: o0Rhinna0o issued server command: /crate key give DarkPhoenix1512 vote 1
[15:22:19] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] _LadyRias_ buy x64 Quartz block to KuZuUri for 7000$.
[15:22:21] [Server thread/INFO]: _LadyRias_ issued server command: /ah
[15:22:22] [Server thread/INFO]: KuZuUri issued server command: /ah
[15:22:23] [Server thread/INFO]: DreiCpO issued server command: /ec
[15:22:28] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] _LadyRias_ buy x64 Quartz block to KuZuUri for 7000$.
[15:22:31] [Server thread/INFO]: _LadyRias_ issued server command: /ah
[15:22:34] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] _LadyRias_ buy x64 Quartz block to KuZuUri for 7000$.
[15:22:36] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:22:36] [Server thread/INFO]: _LadyRias_ issued server command: /ah
[15:22:40] [Server thread/INFO]: KuZuUri issued server command: /p h
[15:22:44] [Server thread/INFO]: KuZuUri issued server command: /ah
[15:22:44] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] _LadyRias_ buy x64 Quartz block to KuZuUri for 7000$.
[15:22:46] [Server thread/INFO]: _LadyRias_ issued server command: /ah
[15:22:52] [Server thread/INFO]: KuZuUri issued server command: /ah
[15:22:53] [Server thread/INFO]: VIK_BikeBunny issued server command: /p h 5
[15:22:57] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5010ms or 100 ticks behind
[15:23:02] [Server thread/INFO]: TRE_Bullet issued server command: /p v bullet
[15:23:02] [Async Chat Thread - #12/INFO]: [Not Secure] Spieler | _LadyRias_: 7AH
[15:23:07] [Server thread/INFO]: KuZuUri issued server command: /ah sell 7000
[15:23:07] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri added x64 Quartz block in auction for 7000$.
[15:23:08] [Async Chat Thread - #12/INFO]: [Not Secure] [BIER] Master | TRE_Bullet: fast
[15:23:08] [Server thread/INFO]: _LadyRias_ issued server command: /ah
[15:23:09] [Server thread/INFO]: KuZuUri issued server command: /ah sell 7000
[15:23:09] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri added x64 Quartz block in auction for 7000$.
[15:23:12] [Craft Scheduler Thread - 120 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:23:12] [Craft Scheduler Thread - 120 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:23:12] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] _LadyRias_ remove x64 Quartz block form buy
[15:23:12] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] _LadyRias_ remove x64 Quartz block form buy
[15:23:12] [Server thread/INFO]: KuZuUri issued server command: /ah sell 7000
[15:23:12] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri added x64 Quartz block in auction for 7000$.
[15:23:13] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] _LadyRias_ remove x64 Quartz block form buy
[15:23:13] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] _LadyRias_ remove x64 Quartz block form buy
[15:23:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] _LadyRias_ remove x64 Quartz block form buy
[15:23:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] _LadyRias_ remove x64 Quartz block form buy
[15:23:14] [Server thread/INFO]: KuZuUri issued server command: /ah sell 7000
[15:23:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri added x64 Quartz block in auction for 7000$.
[15:23:17] [Server thread/INFO]: KuZuUri issued server command: /ah sell 7000
[15:23:17] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri added x64 Quartz block in auction for 7000$.
[15:23:19] [Server thread/INFO]: KuZuUri issued server command: /ah sell 7000
[15:23:19] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri added x64 Quartz block in auction for 7000$.
[15:23:20] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:23:21] [Server thread/INFO]: KuZuUri issued server command: /ah
[15:23:21] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=WorldsLegacy},x=-35.0,y=63.0,z=-485.0,pitch=0.0,yaw=0.0}
[15:23:26] [Server thread/INFO]: KuZuUri issued server command: /ah sell 7000
[15:23:26] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri added x64 Quartz block in auction for 7000$.
[15:23:28] [Server thread/INFO]: KuZuUri issued server command: /ah sell 7000
[15:23:28] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri added x64 Quartz block in auction for 7000$.
[15:23:30] [Server thread/INFO]: KuZuUri issued server command: /ah sell 7000
[15:23:30] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri added x64 Quartz block in auction for 7000$.
[15:23:31] [Server thread/INFO]: KuZuUri issued server command: /ah
[15:23:33] [Async Chat Thread - #12/INFO]: [Not Secure] Spieler | _LadyRias_: ja meine tastatur spinnt etwas
[15:23:45] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5003ms or 100 ticks behind
[15:23:46] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri remove x64 Quartz block form storage
[15:23:46] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri remove x64 Quartz block form storage
[15:23:47] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri remove x64 Quartz block form storage
[15:23:48] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri remove x64 Quartz block form storage
[15:23:48] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri remove x64 Quartz block form storage
[15:23:49] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri remove x64 Quartz block form storage
[15:23:49] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri remove x64 Quartz block form storage
[15:23:49] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri remove x64 Quartz block form storage
[15:23:50] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri remove x64 Quartz block form storage
[15:23:54] [Server thread/INFO]: Goldsteener issued server command: /home wald
[15:23:59] [Async Chat Thread - #12/INFO]: [Not Secure] [BIER] Master | TRE_Bullet: sag ich auch aber jeder weiss ich manchmal fettfinger XD
[15:24:02] [Server thread/INFO]: P1tbull issued server command: /ah
[15:24:08] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v1 vote record from /162.55.69.49:46110 -> Vote (from:minecraft-server.eu username:_LadyRias_ address:2001:9e8:5b82:1a00:: timeStamp:1666891448 additionalData:null)
[15:24:08] [Server thread/INFO]: [VotingPlugin] Received a vote from service site 'minecraft-server.eu' by player '_LadyRias_'!
[15:24:09] [Timer-2/INFO]: [Voting] Der Spieler _LadyRias_ hat gerade gevoted.
[15:24:09] [Server thread/INFO]: [CaseOpening] Given x1 of Vote-Kisten key(s) to _LadyRias_.
[15:24:18] [Server thread/INFO]: KuZuUri issued server command: /p h
[15:24:23] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 8046ms or 160 ticks behind
[15:24:23] [Craft Scheduler Thread - 118 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:24:24] [Craft Scheduler Thread - 118 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:24:28] [Async Chat Thread - #12/INFO]: [Not Secure] Spieler | _LadyRias_: he he okay
[15:24:29] [Server thread/INFO]: [CaseOpening] Opened default crate menu for _LadyRias_.
[15:24:29] [Server thread/INFO]: o0Rhinna0o issued server command: /crate key give Blackangel1908 kopf 15
[15:24:29] [Server thread/INFO]: VIK_BikeBunny issued server command: /home home9
[15:24:34] [Server thread/INFO]: [CaseOpening] Opened default crate menu for _LadyRias_.
[15:24:35] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:24:41] [Server thread/INFO]: Insom96 issued server command: /npc select
[15:24:41] [Server thread/INFO]: Draco2B85 issued server command: /vote
[15:24:46] [Server thread/INFO]: Draco2B85 issued server command: /vote
[15:24:50] [Server thread/INFO]: VIK_BikeBunny issued server command: /home home8
[15:24:52] [Server thread/INFO]: Insom96 issued server command: /npc rename &2&lVerkäuferin Rosel
[15:25:02] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 8911ms or 178 ticks behind
[15:25:04] [Server thread/INFO]: Insom96 issued server command: /npc respawn
[15:25:06] [Server thread/INFO]: DreiCpO issued server command: /p h
[15:25:08] [Server thread/INFO]: Blackangel1908 issued server command: /spawn
[15:25:14] [Server thread/INFO]: _LadyRias_ issued server command: /ah sell 5000
[15:25:14] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] _LadyRias_ added x8 Dekorativer Luckyblock in auction for 5000$.
[15:25:18] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Blackangel1908.
[15:25:25] [Server thread/INFO]: _LadyRias_ issued server command: /p h
[15:25:26] [Server thread/INFO]: VIK_BikeBunny issued server command: /p h 5
[15:25:30] [Server thread/INFO]: _LadyRias_ issued server command: /p h 2
[15:25:36] [Server thread/INFO]: Blackangel1908 issued server command: /ec
[15:25:39] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Blackangel1908.
[15:25:39] [Server thread/INFO]: KuZuUri issued server command: /bank open
[15:25:41] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 9115ms or 182 ticks behind
[15:25:41] [Server thread/INFO]: VIK_BikeBunny issued server command: /home home8
[15:25:42] [Craft Scheduler Thread - 125 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:25:42] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Blackangel1908.
[15:25:42] [Craft Scheduler Thread - 125 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:25:44] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Blackangel1908.
[15:25:47] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Blackangel1908.
[15:25:49] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Blackangel1908.
[15:25:51] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Blackangel1908.
[15:25:52] [Server thread/INFO]: KuZuUri issued server command: /ah
[15:25:56] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Blackangel1908.
[15:25:56] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri remove x64 Quartz block form storage
[15:25:57] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri remove x64 Quartz block form storage
[15:25:57] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] KuZuUri remove x64 Quartz block form storage
[15:25:58] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Blackangel1908.
[15:25:59] [Server thread/WARN]: VIK_BikeBunny moved wrongly!
[15:26:00] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Blackangel1908.
[15:26:01] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Blackangel1908.
[15:26:03] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Blackangel1908.
[15:26:06] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Blackangel1908.
[15:26:07] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=WorldsLegacy},x=-43.0,y=69.0,z=-477.0,pitch=0.0,yaw=0.0}
[15:26:07] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Blackangel1908.
[15:26:09] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Blackangel1908.
[15:26:11] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Blackangel1908.
[15:26:16] [Server thread/INFO]: Blackangel1908 issued server command: /home lager
[15:26:17] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 6357ms or 127 ticks behind
[15:26:26] [Server thread/INFO]: o0Rhinna0o issued server command: /v
[15:26:39] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=WorldsLegacy},x=-40.0,y=74.0,z=-476.0,pitch=0.0,yaw=0.0}
[15:26:47] [Server thread/INFO]: DreiCpO issued server command: /p h
[15:26:55] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 7962ms or 159 ticks behind
[15:26:56] [Craft Scheduler Thread - 116 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:26:56] [Craft Scheduler Thread - 116 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:27:11] [Server thread/INFO]: _LadyRias_ issued server command: /p h
[15:27:32] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v1 vote record from /162.55.69.49:59180 -> Vote (from:minecraft-server.eu username:Draco2B85 address:2a01:c23:95d5:4000:: timeStamp:1666891652 additionalData:null)
[15:27:32] [Server thread/INFO]: [VotingPlugin] Received a vote from service site 'minecraft-server.eu' by player 'Draco2B85'!
[15:27:32] [Timer-2/INFO]: [Voting] Der Spieler Draco2B85 hat gerade gevoted.
[15:27:32] [Server thread/INFO]: [CaseOpening] Given x1 of Vote-Kisten key(s) to Draco2B85.
[15:27:34] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 8863ms or 177 ticks behind
[15:27:37] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:27:39] [Server thread/INFO]: KuZuUri issued server command: /ah
[15:27:42] [Server thread/INFO]: VIK_BikeBunny issued server command: /perks
[15:27:51] [Server thread/INFO]: KuZuUri issued server command: /ah
[15:28:04] [Server thread/INFO]: DreiCpO issued server command: /p h
[15:28:05] [Server thread/INFO]: KuZuUri issued server command: /ah
[15:28:09] [Server thread/INFO]: KuZuUri issued server command: /ah
[15:28:13] [Async Chat Thread - #14/INFO]: [Not Secure] Premium | DreiCpO: hat einer eine Netherwarze ?
[15:28:15] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 10545ms or 210 ticks behind
[15:28:16] [Craft Scheduler Thread - 146 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:28:16] [Craft Scheduler Thread - 146 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:28:29] [Async Chat Thread - #14/INFO]: [Not Secure] Spieler | P1tbull: DreiCpO komm mein 1tes
[15:28:31] [Server thread/INFO]: P1tbull issued server command: /p h
[15:28:37] [Server thread/INFO]: KuZuUri issued server command: /p h
[15:28:37] [Server thread/WARN]: KuZuUri moved too quickly! 35.03735404296543,8.861871621813563,19.536048777391557
[15:28:37] [Server thread/INFO]: DreiCpO issued server command: /p v P1tbull
[15:28:38] [Server thread/INFO]: KuZuUri issued server command: /p h 2
[15:28:39] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Draco2B85.
[15:28:40] [Server thread/INFO]: KuZuUri issued server command: /p h
[15:28:41] [Server thread/INFO]: Insom96 issued server command: /npc select
[15:28:51] [Server thread/INFO]: [CaseOpening] Opened default crate menu for Draco2B85.
[15:28:56] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 11310ms or 226 ticks behind
[15:28:57] [Async Chat Thread - #14/INFO]: [Not Secure] [BIER] Master | TRE_Bullet: Hallo P1tbull :D
[15:28:57] [Server thread/INFO]: Insom96 issued server command: /npc name (-h(over))
[15:29:00] [Async Chat Thread - #14/INFO]: [Not Secure] Premium | DreiCpO: danke was bekommst du ?
[15:29:01] [Async Chat Thread - #14/INFO]: [Not Secure] Spieler | P1tbull: Hallo
[15:29:06] [Async Chat Thread - #14/INFO]: [Not Secure] Spieler | P1tbull: Gar nix DreiCpO
[15:29:06] [Server thread/INFO]: Insom96 issued server command: /npc name -h
[15:29:11] [Async Chat Thread - #14/INFO]: [Not Secure] Premium | DreiCpO: dankeschön <
[15:29:14] [Server thread/INFO]: Insom96 issued server command: /npc name -h
[15:29:19] [Server thread/INFO]: Insom96 issued server command: /npc name
[15:29:21] [Server thread/INFO]: _LadyRias_ issued server command: /ah
[15:29:22] [Server thread/INFO]: _ESC issued server command: /msg Draco2B85 Schau mal deine PN in Discord. :P
[15:29:22] [Server thread/INFO]: » WorldsLegacy Alle Items und Mobs werden in 60 Sekunden entfernt!
[15:29:24] [Server thread/INFO]: DreiCpO issued server command: /p h
[15:29:27] [Async Chat Thread - #14/INFO]: [Not Secure] [BIER] Master | TRE_Bullet: alles gut bei dir P1tbull?
[15:29:34] [Server thread/INFO]: IIRedRoseLinaII issued server command: /craft
[15:29:37] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 11318ms or 226 ticks behind
[15:29:38] [Async Chat Thread - #14/INFO]: [Not Secure] Spieler | P1tbull: Ja und selbst ?
[15:29:39] [Craft Scheduler Thread - 139 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:29:39] [Craft Scheduler Thread - 139 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:29:44] [Async Chat Thread - #14/INFO]: [Not Secure] [BIER] Master | TRE_Bullet: ja muss :)
[15:29:51] [Server thread/INFO]: DreiCpO issued server command: /p h
[15:30:05] [Server thread/INFO]: » WorldsLegacy Alle Items und Mobs werden in 30 Sekunden entfernt!
[15:30:07] [Server thread/INFO]: _LadyRias_ issued server command: /home lag
[15:30:11] [Server thread/INFO]: _LadyRias_ issued server command: /home lag1
[15:30:13] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:30:15] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:30:17] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:30:19] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 11447ms or 228 ticks behind
[15:30:22] [Server thread/INFO]: IIRedRoseLinaII issued server command: /home fichte
[15:30:23] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:30:28] [Server thread/INFO]: KuZuUri issued server command: /home nether
[15:30:33] [Server thread/INFO]: » WorldsLegacy Alle Items und Mobs werden in 10 Sekunden entfernt!
[15:30:46] [Server thread/INFO]: _LadyRias_ issued server command: /p h 2
[15:30:49] [Server thread/INFO]: » WorldsLegacy Es wurden 702 Mobs und Items entfernt!
[15:30:50] [Bank - Loader Thread/INFO]: [Bank] Saving 701a3785-ed79-4288-a43e-1f4b7a08acf6
[15:30:50] [Bank - Loader Thread/INFO]: [Bank] Saved 701a3785-ed79-4288-a43e-1f4b7a08acf6 after 13ms
[15:30:50] [Bank - Loader Thread/INFO]: [Bank] Saving b7b5c0b6-727c-4b71-b7e7-c15993305cea
[15:30:50] [Bank - Loader Thread/INFO]: [Bank] Saved b7b5c0b6-727c-4b71-b7e7-c15993305cea after 22ms
[15:30:50] [Bank - Loader Thread/INFO]: [Bank] Saving 5323cad3-e19c-4dc4-bf2b-568f44f21842
[15:30:50] [Bank - Loader Thread/INFO]: [Bank] Saved 5323cad3-e19c-4dc4-bf2b-568f44f21842 after 12ms
[15:30:50] [Bank - Loader Thread/INFO]: [Bank] Saving 60d70ce9-b7c0-4abb-ae07-ebf5f3256741
[15:30:50] [Bank - Loader Thread/INFO]: [Bank] Saved 60d70ce9-b7c0-4abb-ae07-ebf5f3256741 after 12ms
[15:30:50] [Bank - Loader Thread/INFO]: [Bank] Saving ac1efbea-f97b-4b22-b5f3-3a2e4f73c8ac
[15:30:50] [Craft Scheduler Thread - 154 - GamePoints/INFO]: [GamePoints] Updating balance top...
[15:30:50] [Craft Scheduler Thread - 154 - GamePoints/INFO]: [GamePoints] Balance top updated in 2 ms!
[15:30:50] [Bank - Loader Thread/INFO]: [Bank] Saved ac1efbea-f97b-4b22-b5f3-3a2e4f73c8ac after 39ms
[15:30:50] [Bank - Loader Thread/INFO]: [Bank] Saving 90219ad6-b913-4a56-8ddf-15b077267741
[15:30:51] [Bank - Loader Thread/INFO]: [Bank] Saved 90219ad6-b913-4a56-8ddf-15b077267741 after 23ms
[15:30:51] [Bank - Loader Thread/INFO]: [Bank] Saving 0804d25b-d84e-4db3-a94d-b3264b848fda
[15:30:51] [Bank - Loader Thread/INFO]: [Bank] Saved 0804d25b-d84e-4db3-a94d-b3264b848fda after 14ms
[15:30:51] [Bank - Loader Thread/INFO]: [Bank] Saving cb7fc50e-a14f-4634-8f41-b6a2e5c56ecd
[15:30:51] [Bank - Loader Thread/INFO]: [Bank] Saved cb7fc50e-a14f-4634-8f41-b6a2e5c56ecd after 19ms
[15:30:51] [Bank - Loader Thread/INFO]: [Bank] Saving b735be25-b1a7-4f14-8ea8-8f708be31a1a
[15:30:51] [Bank - Loader Thread/INFO]: [Bank] Saved b735be25-b1a7-4f14-8ea8-8f708be31a1a after 16ms
[15:30:51] [Bank - Loader Thread/INFO]: [Bank] Saving 72b326b0-ace5-43f4-8ed3-1cb83f141769
[15:30:51] [Bank - Loader Thread/INFO]: [Bank] Saved 72b326b0-ace5-43f4-8ed3-1cb83f141769 after 12ms
[15:30:51] [Bank - Loader Thread/INFO]: [Bank] Saving 1dde7084-5344-4ad8-af93-edba8416c002
[15:30:51] [Bank - Loader Thread/INFO]: [Bank] Saved 1dde7084-5344-4ad8-af93-edba8416c002 after 16ms
[15:30:51] [Bank - Loader Thread/INFO]: [Bank] Saving ab2c2533-0423-4ed4-be73-cb2f2c82a437
[15:30:51] [Bank - Loader Thread/INFO]: [Bank] Saved ab2c2533-0423-4ed4-be73-cb2f2c82a437 after 36ms
[15:30:51] [Bank - Loader Thread/INFO]: [Bank] Saving f0ba820a-ba83-46bc-a31a-cea4b7ffab23
[15:30:51] [Bank - Loader Thread/INFO]: [Bank] Saved f0ba820a-ba83-46bc-a31a-cea4b7ffab23 after 21ms
[15:30:51] [Bank - Loader Thread/INFO]: [Bank] Saving 212909b0-5440-4b5f-ae81-1b35a41723f5
[15:30:51] [Bank - Loader Thread/INFO]: [Bank] Saved 212909b0-5440-4b5f-ae81-1b35a41723f5 after 13ms
[15:30:51] [Bank - Loader Thread/INFO]: [Bank] Saving c3b14b5c-1ede-4a85-a9c2-0d5970ffd14c
[15:30:51] [Bank - Loader Thread/INFO]: [Bank] Saved c3b14b5c-1ede-4a85-a9c2-0d5970ffd14c after 12ms
[15:30:51] [Bank - Loader Thread/INFO]: [Bank] Saving db746193-3666-4d89-a298-0cafc160059c
[15:30:51] [Bank - Loader Thread/INFO]: [Bank] Saved db746193-3666-4d89-a298-0cafc160059c after 29ms
[15:30:51] [Bank - Loader Thread/INFO]: [Bank] Saving e847bf81-d977-420d-87ae-bdb64f841d4a
[15:30:51] [Bank - Loader Thread/INFO]: [Bank] Saved e847bf81-d977-420d-87ae-bdb64f841d4a after 11ms
[15:31:06] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 17706ms or 354 ticks behind
[15:31:09] [Craft Scheduler Thread - 135 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:31:09] [Craft Scheduler Thread - 135 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:31:10] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=Farmwelt},x=6297.0,y=-25.0,z=2209.0,pitch=0.0,yaw=0.0}
[15:31:10] [Server thread/INFO]: TRE_Bullet issued server command: /bit store
[15:31:15] [Server thread/INFO]: KuZuUri issued server command: /p h
[15:31:17] [Server thread/INFO]: _LadyRias_ issued server command: /p h
[15:31:24] [Server thread/INFO]: [GamePoints] TRE_Bullet purchased 'perk6' in 'spezial' store for 5000000 points.
[15:31:24] [Server thread/INFO]: [CaseOpening] Given x5 of Legendäre-Kisten key(s) to TRE_Bullet.
[15:31:35] [Server thread/INFO]: KuZuUri issued server command: /bank open
[15:31:47] [Async Chat Thread - #16/INFO]: [Not Secure] [VIK] Legendary | VIK_BikeBunny: goldseener bist nochda?
[15:31:49] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 12058ms or 241 ticks behind
[15:31:53] [Server thread/INFO]: KuZuUri issued server command: /qs silentremove 94ddc52b-5f5e-429f-b4f5-296d545ddf6e
[15:31:55] [Server thread/INFO]: Goldsteener issued server command: /home sand
[15:31:58] [Server thread/INFO]: Goldsteener issued server command: /home sand
[15:32:05] [Server thread/INFO]: IIRedRoseLinaII issued server command: /p h
[15:32:07] [Timer-13/INFO]: [zAuctionHouseV3 v3.1.0.2] /home/CityBuild/plugins/zAuctionHouseV3/items.json successfully saved !
[15:32:10] [Async Chat Thread - #16/INFO]: [Not Secure] [STOCK] Premium | Goldsteener: gerade wieder da :D
[15:32:15] [Server thread/INFO]: KuZuUri issued server command: /qs create 125
[15:32:22] [Async Chat Thread - #16/INFO]: [Not Secure] [BIER] Master | TRE_Bullet: owei
[15:32:22] [Async Chat Thread - #16/INFO]: [Not Secure] [VIK] Legendary | VIK_BikeBunny: hab noch mehr sand wenn du magst
[15:32:24] [Server thread/INFO]: KuZuUri issued server command: /bank open
[15:32:28] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 9535ms or 190 ticks behind
[15:32:30] [Craft Scheduler Thread - 145 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:32:30] [Craft Scheduler Thread - 145 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:32:32] [Async Chat Thread - #16/INFO]: [Not Secure] [STOCK] Premium | Goldsteener: alles gut, das reicht mir glaube =) aber danke
[15:32:39] [Async Chat Thread - #16/INFO]: [Not Secure] [VIK] Legendary | VIK_BikeBunny: okay
[15:32:48] [Server thread/INFO]: _ESC issued server command: /warp quest
[15:32:51] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:32:53] [Server thread/INFO]: _LadyRias_ issued server command: /p h 2
[15:33:08] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 9820ms or 196 ticks behind
[15:33:18] [Server thread/INFO]: Goldsteener issued server command: /home wald
[15:33:42] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:33:46] [Server thread/INFO]: _LadyRias_ issued server command: /craft
[15:33:51] [Server thread/INFO]: Insom96 issued server command: /tpo o0Rhinna0o
[15:33:52] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 14379ms or 287 ticks behind
[15:33:53] [Server thread/INFO]: _ESC issued server command: /tpo o0Rhinna0o
[15:33:55] [Craft Scheduler Thread - 153 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:33:55] [Craft Scheduler Thread - 153 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:34:02] [Server thread/INFO]: _LadyRias_ issued server command: /craft
[15:34:17] [Server thread/INFO]: DreiCpO issued server command: /craft
[15:34:23] [Async Chat Thread - #18/INFO]: [Not Secure] Mysterious | KuZuUri: Auf meinen 1 gs gibt es wieder frischen Quarz Blöcke zu kaufen :)
[15:34:25] [Server thread/INFO]: KuZuUri issued server command: /p h
[15:34:36] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 13569ms or 271 ticks behind
[15:34:36] [Server thread/WARN]: _ESC moved too quickly! 36.716429688393745,0.0,-7.827792633458159
[15:34:43] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:34:57] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:35:03] [Server thread/INFO]: KuZuUri issued server command: /home nether
[15:35:22] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 15854ms or 317 ticks behind
[15:35:25] [Craft Scheduler Thread - 139 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:35:25] [Craft Scheduler Thread - 139 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:35:49] [Server thread/INFO]: DreiCpO issued server command: /p h
[15:35:58] [Server thread/INFO]: _LadyRias_ issued server command: /nether
[15:35:58] [Server thread/INFO]: _LadyRias_ issued server command: /warp nether
[15:36:00] [Server thread/INFO]: Goldsteener issued server command: /sethome biene
[15:36:02] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=Nether},x=129.0,y=10.0,z=-1120.0,pitch=0.0,yaw=0.0}
[15:36:03] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 11002ms or 220 ticks behind
[15:36:06] [Server thread/INFO]: KuZuUri issued server command: /p h
[15:36:22] [Server thread/WARN]: Goldsteener moved wrongly!
[15:36:44] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 10969ms or 219 ticks behind
[15:36:46] [Craft Scheduler Thread - 163 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:36:46] [Craft Scheduler Thread - 163 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:36:49] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=Farmwelt},x=423.0,y=76.0,z=3337.0,pitch=0.0,yaw=0.0}
[15:36:55] [Server thread/INFO]: DreiCpO issued server command: /p h
[15:36:57] [User Authenticator #5/INFO]: UUID of player DasPinguin is 88e5b549-728b-49d4-8e76-2e6eee2cf510
[15:36:57] [Server thread/INFO]: Check for Proxy Connection DasPinguin
[15:36:57] [Bank - Loader Thread/INFO]: [Bank] Loading 88e5b549-728b-49d4-8e76-2e6eee2cf510
[15:36:57] [Bank - Loader Thread/INFO]: [Bank] Loaded 88e5b549-728b-49d4-8e76-2e6eee2cf510 after 15ms
[15:36:57] [Server thread/INFO]: DasPinguin[/176.199.209.54:33535] logged in with entity id 144722 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[15:36:57] [Craft Scheduler Thread - 160 - SpigotOnlyProxyJoin/INFO]: Took 109ms (true)
[15:37:01] [Server thread/INFO]: KuZuUri issued server command: /home nether
[15:37:22] [Server thread/INFO]: DreiCpO issued server command: /craft
[15:37:28] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 14864ms or 297 ticks behind
[15:37:38] [Server thread/INFO]: [CaseOpening] Opened default crate menu for DasPinguin.
[15:37:47] [Server thread/INFO]: DasPinguin issued server command: /p v P1tbull
[15:37:47] [Server thread/WARN]: DasPinguin moved too quickly! -428.97891625875565,-4.0,-692.154327238831
[15:37:48] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=Farmwelt},x=5675.0,y=86.0,z=2164.0,pitch=0.0,yaw=0.0}
[15:38:00] [Server thread/INFO]: DasPinguin issued server command: /quest
[15:38:01] [Craft Scheduler Thread - 160 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[15:38:01] [Craft Scheduler Thread - 158 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 18 online users | 1 offline users.
[15:38:01] [Craft Scheduler Thread - 153 - GamePoints/INFO]: [GamePoints] Auto-save: Saved 18 online users | 0 offline users.
[15:38:07] [Server thread/INFO]: DreiCpO issued server command: /p h
[15:38:17] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 18243ms or 364 ticks behind
[15:38:20] [Craft Scheduler Thread - 150 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:38:20] [Craft Scheduler Thread - 150 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:38:56] [Server thread/INFO]: DasPinguin issued server command: /quest
[15:39:03] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 16238ms or 324 ticks behind
[15:39:13] [Server thread/INFO]: [Booster] Der Fly-Booster wird in 60 Sekunden deaktiviert! Danach x0
[15:39:47] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 14278ms or 285 ticks behind
[15:39:50] [Craft Scheduler Thread - 146 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:39:50] [Craft Scheduler Thread - 146 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:39:56] [Server thread/INFO]: [Booster] Der Fly-Booster wird in 30 Sekunden deaktiviert! Danach x0
[15:40:25] [Server thread/INFO]: [Booster] Der Fly-Booster wird in 10 Sekunden deaktiviert! Danach x0
[15:40:30] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 13203ms or 264 ticks behind
[15:40:33] [Server thread/INFO]: [Booster] Der Fly-Booster wird in 5 Sekunden deaktiviert! Danach x0
[15:40:33] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:40:40] [Server thread/INFO]: 


[Booster] Fly-Booster wurde nun deaktiviert!
[15:40:42] [Server thread/INFO]: TRE_Bullet issued server command: /ah
[15:41:16] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 15514ms or 310 ticks behind
[15:41:19] [Craft Scheduler Thread - 147 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:41:20] [Craft Scheduler Thread - 147 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:42:00] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 14701ms or 294 ticks behind
[15:42:47] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 16895ms or 337 ticks behind
[15:42:51] [Craft Scheduler Thread - 181 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:42:51] [Craft Scheduler Thread - 181 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:42:58] [Server thread/INFO]: TML_ShadowDiamat issued server command: /booster
[15:43:22] [Server thread/INFO]: TML_ShadowDiamat issued server command: /booster
[15:43:33] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 15700ms or 314 ticks behind
[15:43:36] [Server thread/INFO]: VIK_BikeBunny issued server command: /sethome home8
[15:43:36] [Server thread/WARN]: Insom96 moved too quickly! -7.4080411096484005,-5.0,6.604811031951613
[15:43:36] [Server thread/WARN]: Insom96 moved too quickly! -7.057758911720487,-5.0,6.173827390120778
[15:43:39] [Server thread/INFO]: VIK_BikeBunny issued server command: /p h 5
[15:43:40] [Server thread/INFO]: HerrSeppel lost connection: Disconnected
[15:43:40] [Server thread/INFO]: [VariableEnderChests] Saving data for HerrSeppel
[15:43:40] [Bank - Loader Thread/INFO]: [Bank] Saving e847bf81-d977-420d-87ae-bdb64f841d4a
[15:43:40] [Bank - Loader Thread/INFO]: [Bank] Saved e847bf81-d977-420d-87ae-bdb64f841d4a after 15ms
[15:43:43] [Server thread/INFO]: DasPinguin issued server command: /ah
[15:43:51] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:44:03] [Craft Scheduler Thread - 183 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[15:44:17] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 13706ms or 274 ticks behind
[15:44:20] [Craft Scheduler Thread - 160 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:44:21] [Craft Scheduler Thread - 160 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:44:24] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=WorldsLegacy},x=-38.0,y=79.0,z=-472.0,pitch=0.0,yaw=0.0}
[15:44:25] [User Authenticator #6/INFO]: UUID of player HerrSeppel is e847bf81-d977-420d-87ae-bdb64f841d4a
[15:44:25] [Server thread/INFO]: Check for Proxy Connection HerrSeppel
[15:44:25] [Bank - Loader Thread/INFO]: [Bank] Loading e847bf81-d977-420d-87ae-bdb64f841d4a
[15:44:25] [Server thread/INFO]: HerrSeppel[/95.90.206.241:54639] logged in with entity id 202148 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[15:44:25] [Bank - Loader Thread/INFO]: [Bank] Loaded e847bf81-d977-420d-87ae-bdb64f841d4a after 12ms
[15:44:25] [Craft Scheduler Thread - 184 - SpigotOnlyProxyJoin/INFO]: Took 92ms (true)
[15:44:32] [Server thread/INFO]: _ESC issued server command: /iframe get
[15:44:56] [Server thread/INFO]: VIK_BikeBunny issued server command: /perks
[15:45:00] [Server thread/INFO]: HerrSeppel issued server command: /p h 2
[15:45:01] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 13883ms or 277 ticks behind
[15:45:01] [Server thread/WARN]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE `tick-limiter`] Detected and cancelled item lag source at Location{world=CraftWorld{name=WorldsLegacy},x=-457.0,y=57.0,z=-617.0,pitch=0.0,yaw=99.259026}
[15:45:07] [Server thread/INFO]: Villager EntityVillager['Villager'/194773, uuid='71fac9a8-df4c-45f9-9fc9-9ceb6605420b', l='ServerLevel[Farmwelt]', x=60.57, y=89.00, z=4670.50, cpos=[3, 291], tl=34961, v=true] died, message: 'Villager was slain by Zombie'
[15:45:22] [Server thread/INFO]: KuZuUri issued server command: /sethome nether
[15:45:23] [Server thread/INFO]: KuZuUri issued server command: /p h
[15:45:29] [Craft Scheduler Thread - 154 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saving 701a3785-ed79-4288-a43e-1f4b7a08acf6
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saved 701a3785-ed79-4288-a43e-1f4b7a08acf6 after 15ms
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saving b7b5c0b6-727c-4b71-b7e7-c15993305cea
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saved b7b5c0b6-727c-4b71-b7e7-c15993305cea after 34ms
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saving 5323cad3-e19c-4dc4-bf2b-568f44f21842
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saved 5323cad3-e19c-4dc4-bf2b-568f44f21842 after 10ms
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saving 60d70ce9-b7c0-4abb-ae07-ebf5f3256741
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saved 60d70ce9-b7c0-4abb-ae07-ebf5f3256741 after 11ms
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saving ac1efbea-f97b-4b22-b5f3-3a2e4f73c8ac
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saved ac1efbea-f97b-4b22-b5f3-3a2e4f73c8ac after 11ms
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saving 90219ad6-b913-4a56-8ddf-15b077267741
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saved 90219ad6-b913-4a56-8ddf-15b077267741 after 17ms
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saving 0804d25b-d84e-4db3-a94d-b3264b848fda
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saved 0804d25b-d84e-4db3-a94d-b3264b848fda after 11ms
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saving cb7fc50e-a14f-4634-8f41-b6a2e5c56ecd
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saved cb7fc50e-a14f-4634-8f41-b6a2e5c56ecd after 12ms
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saving b735be25-b1a7-4f14-8ea8-8f708be31a1a
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saved b735be25-b1a7-4f14-8ea8-8f708be31a1a after 12ms
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saving 72b326b0-ace5-43f4-8ed3-1cb83f141769
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saved 72b326b0-ace5-43f4-8ed3-1cb83f141769 after 11ms
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saving 1dde7084-5344-4ad8-af93-edba8416c002
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saved 1dde7084-5344-4ad8-af93-edba8416c002 after 18ms
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saving 88e5b549-728b-49d4-8e76-2e6eee2cf510
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saved 88e5b549-728b-49d4-8e76-2e6eee2cf510 after 15ms
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saving ab2c2533-0423-4ed4-be73-cb2f2c82a437
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saved ab2c2533-0423-4ed4-be73-cb2f2c82a437 after 16ms
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saving f0ba820a-ba83-46bc-a31a-cea4b7ffab23
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saved f0ba820a-ba83-46bc-a31a-cea4b7ffab23 after 12ms
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saving 212909b0-5440-4b5f-ae81-1b35a41723f5
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saved 212909b0-5440-4b5f-ae81-1b35a41723f5 after 16ms
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saving c3b14b5c-1ede-4a85-a9c2-0d5970ffd14c
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saved c3b14b5c-1ede-4a85-a9c2-0d5970ffd14c after 36ms
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saving db746193-3666-4d89-a298-0cafc160059c
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saved db746193-3666-4d89-a298-0cafc160059c after 27ms
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saving e847bf81-d977-420d-87ae-bdb64f841d4a
[15:45:29] [Bank - Loader Thread/INFO]: [Bank] Saved e847bf81-d977-420d-87ae-bdb64f841d4a after 14ms
[15:45:33] [Server thread/INFO]: TML_ShadowDiamat issued server command: /bank open
[15:45:33] [Server thread/WARN]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE `tick-limiter`] Detected and cancelled item lag source at Location{world=CraftWorld{name=WorldsLegacy},x=-455.0,y=60.0,z=-609.0,pitch=0.0,yaw=154.5013}
[15:45:42] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 11781ms or 235 ticks behind
[15:45:46] [Craft Scheduler Thread - 147 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:45:46] [Craft Scheduler Thread - 147 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:45:50] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:45:53] [Server thread/INFO]: [Core] Attempting to load default AnvilUtil
[15:45:53] [Server thread/INFO]: [Core] Loaded default, enjoy :)
[15:45:53] [Server thread/INFO]: [Core] Attempting to load default PacketUtils
[15:45:53] [Server thread/INFO]: [Core] Loaded default, enjoy :)
[15:45:54] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:46:07] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=WorldsLegacy},x=-38.0,y=78.0,z=-472.0,pitch=0.0,yaw=0.0}
[15:46:13] [Server thread/INFO]: HerrSeppel issued server command: /bank open
[15:46:20] [Server thread/INFO]: Nalijah issued server command: /ec
[15:46:21] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 9140ms or 182 ticks behind
[15:46:53] [Server thread/INFO]: o0Rhinna0o issued server command: /spawn
[15:47:00] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 8381ms or 167 ticks behind
[15:47:03] [Craft Scheduler Thread - 185 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:47:04] [Craft Scheduler Thread - 185 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:47:07] [Timer-13/INFO]: [zAuctionHouseV3 v3.1.0.2] /home/CityBuild/plugins/zAuctionHouseV3/items.json successfully saved !
[15:47:20] [Server thread/WARN]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE `tick-limiter`] Detected and cancelled item lag source at Location{world=CraftWorld{name=WorldsLegacy},x=-459.0,y=61.0,z=-600.0,pitch=0.0,yaw=265.04926}
[15:47:21] [User Authenticator #7/INFO]: UUID of player FTF_DiscordTime is 2ac7a5b6-b4ed-40ab-8476-870c9c2d195e
[15:47:21] [Server thread/INFO]: Check for Proxy Connection FTF_DiscordTime
[15:47:21] [Bank - Loader Thread/INFO]: [Bank] Loading 2ac7a5b6-b4ed-40ab-8476-870c9c2d195e
[15:47:21] [Server thread/INFO]: FTF_DiscordTime[/91.59.68.105:38281] logged in with entity id 228976 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[15:47:21] [Craft Scheduler Thread - 139 - SpigotOnlyProxyJoin/INFO]: Took 110ms (true)
[15:47:21] [Bank - Loader Thread/INFO]: [Bank] Loaded 2ac7a5b6-b4ed-40ab-8476-870c9c2d195e after 17ms
[15:47:22] [Server thread/INFO]: DasPinguin issued server command: /quest
[15:47:27] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:47:37] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 7387ms or 147 ticks behind
[15:47:46] [Server thread/WARN]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE `tick-limiter`] Detected and cancelled item lag source at Location{world=CraftWorld{name=WorldsLegacy},x=-446.0,y=61.0,z=-597.0,pitch=0.0,yaw=44.144417}
[15:47:47] [Server thread/INFO]: HerrSeppel issued server command: /bank open
[15:47:49] [Server thread/INFO]: FTF_DiscordTime issued server command: /v
[15:47:54] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:47:55] [Server thread/INFO]: Nalijah issued server command: /p h 3
[15:47:58] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:48:03] [Craft Scheduler Thread - 189 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[15:48:05] [Server thread/INFO]: KuZuUri issued server command: /spawn
[15:48:13] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 6399ms or 127 ticks behind
[15:48:14] [Server thread/INFO]: _ESC issued server command: /p h
[15:48:15] [Server thread/INFO]: FTF_DiscordTime issued server command: /v
[15:48:15] [Server thread/INFO]: DreiCpO issued server command: /p h
[15:48:17] [Craft Scheduler Thread - 167 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:48:17] [Craft Scheduler Thread - 167 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:48:19] [Server thread/INFO]: KuZuUri issued server command: /bank open
[15:48:20] [Server thread/INFO]: FTF_DiscordTime issued server command: /v
[15:48:23] [Server thread/INFO]: FTF_DiscordTime issued server command: /gamemode 3
[15:48:25] [Server thread/INFO]: FTF_DiscordTime issued server command: /tpo HerrSeppel
[15:48:29] [Server thread/INFO]: FTF_DiscordTime issued server command: /gamemode 0
[15:48:30] [Server thread/INFO]: FTF_DiscordTime issued server command: /v
[15:48:30] [Server thread/INFO]: KuZuUri issued server command: /bank open
[15:48:35] [Server thread/INFO]: KuZuUri issued server command: /p h
[15:48:56] [Server thread/INFO]: DasPinguin issued server command: /p v P1tbull
[15:49:03] [User Authenticator #8/INFO]: UUID of player Suppano_ is ac7afe5c-1523-43fa-875a-df9338a58db7
[15:49:03] [Server thread/INFO]: Check for Proxy Connection Suppano_
[15:49:03] [Bank - Loader Thread/INFO]: [Bank] Loading ac7afe5c-1523-43fa-875a-df9338a58db7
[15:49:03] [Server thread/INFO]: Suppano_[/46.207.50.61:47027] logged in with entity id 237739 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[15:49:03] [Craft Scheduler Thread - 164 - SpigotOnlyProxyJoin/INFO]: Took 107ms (true)
[15:49:03] [Bank - Loader Thread/INFO]: [Bank] Loaded ac7afe5c-1523-43fa-875a-df9338a58db7 after 15ms
[15:49:03] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5072ms or 101 ticks behind
[15:49:10] [Craft Scheduler Thread - 147 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[15:49:24] [Craft Scheduler Thread - 180 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:49:24] [Craft Scheduler Thread - 180 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:49:24] [Server thread/INFO]: DasPinguin issued server command: /p v P1tbull
[15:49:28] [Server thread/INFO]: P1tbull issued server command: /p h
[15:49:34] [Async Chat Thread - #22/INFO]: [Not Secure] [BIER] Legendary | Blackangel1908: weis man schon wan die quest welt auf geht
[15:49:42] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5004ms or 100 ticks behind
[15:50:17] [Server thread/INFO]: [Quests] ac7afe5c-1523-43fa-875a-df9338a58db7 started quest Ewiges Angeln
[15:50:18] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5729ms or 114 ticks behind
[15:50:18] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:50:24] [Async Chat Thread - #22/INFO]: [Not Secure] [STOCK] [V] Creator+ | Suppano_: Heyhoooo
[15:50:25] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:50:29] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:50:29] [Server thread/INFO]: Suppano_ issued server command: /v
[15:50:32] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:50:33] [Async Chat Thread - #22/INFO]: [Not Secure] Premium | DreiCpO: hallo suppano
[15:50:34] [Netty Epoll Server IO #1/WARN]: DasPinguin sent expired chat: 'huhu vanish Suppano_ :D'. Is the client/server system time unsynchronized? c: 1666881983 s: 1666885834
[15:50:34] [Async Chat Thread - #22/INFO]: [Not Secure] Spieler | DasPinguin: huhu vanish Suppano_ :D
[15:50:35] [Server thread/INFO]: o0Rhinna0o issued server command: /warp Quest
[15:50:36] [Craft Scheduler Thread - 196 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:50:36] [Craft Scheduler Thread - 196 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:50:41] [Async Chat Thread - #22/INFO]: [Not Secure] Creator | IIRedRoseLinaII: huhu Suppano_
[15:50:54] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 6616ms or 132 ticks behind
[15:51:06] [Server thread/INFO]: IIRedRoseLinaII issued server command: /home fichte
[15:51:14] [Server thread/INFO]: TML_ShadowDiamat issued server command: /bank open
[15:51:24] [Server thread/INFO]: DreiCpO issued server command: /p h
[15:51:33] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 8500ms or 170 ticks behind
[15:51:33] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:51:39] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:51:55] [Craft Scheduler Thread - 147 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:51:56] [Craft Scheduler Thread - 147 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:52:12] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:52:15] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 12353ms or 247 ticks behind
[15:52:18] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:52:48] [Async Chat Thread - #24/INFO]: [Not Secure] [STOCK] Premium | Goldsteener: glaube insom gönnt keine fichtenbiome :D
[15:52:51] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:52:55] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:52:56] [Server thread/INFO]: _ESC issued server command: /homes
[15:52:57] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 11647ms or 232 ticks behind
[15:53:14] [Server thread/INFO]: DreiCpO issued server command: /p h
[15:53:16] [Server thread/INFO]: Goldsteener issued server command: /sethome biene2
[15:53:18] [Craft Scheduler Thread - 180 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:53:19] [Craft Scheduler Thread - 180 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:53:19] [Async Chat Thread - #24/INFO]: [Not Secure] [TEAM] [V] Admin | _ESC: Goldsteener Ich hab hier eins, brauchst du´s?
[15:53:24] [Async Chat Thread - #24/INFO]: [Not Secure] [STOCK] Premium | Goldsteener: gerne
[15:53:30] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:53:37] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:53:38] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 11125ms or 222 ticks behind
[15:53:38] [Async Chat Thread - #24/INFO]: [Not Secure] [TEAM] [V] Admin | _ESC: Kann ich dich tp? Bist ready?
[15:53:38] [Server thread/INFO]: o0Rhinna0o issued server command: /gm 1
[15:53:44] [Async Chat Thread - #24/INFO]: [Not Secure] [STOCK] Premium | Goldsteener: immer ready :D
[15:53:48] [Server thread/INFO]: o0Rhinna0o issued server command: /gamerule sendCommandFeedback
[15:53:48] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -48 151 -349 -45 151 -348 minecraft:grass_block[snowy=false] replace air
[15:53:48] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -48 154 -348 minecraft:spruce_slab[type=top,waterlogged=false]
[15:53:48] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -48, 154, -348]
[15:53:48] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -48 151 -347 minecraft:spruce_slab[type=double,waterlogged=false]
[15:53:48] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -48, 151, -347]
[15:53:48] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -48 152 -347 -48 154 -347 minecraft:spruce_stairs[facing=east,half=top,shape=inner_left,waterlogged=false] replace air
[15:53:48] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 3 blocks]
[15:53:48] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -48 155 -347 minecraft:green_terracotta
[15:53:48] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -48, 155, -347]
[15:53:48] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -48 151 -346 minecraft:dirt
[15:53:48] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -48, 151, -346]
[15:53:48] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -48 152 -346 minecraft:barrel[facing=south,open=false]
[15:53:48] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -48, 152, -346]
[15:53:48] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -48 155 -346 minecraft:spruce_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]
[15:53:48] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -48, 155, -346]
[15:53:48] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -48 156 -346 minecraft:white_concrete
[15:53:48] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -48, 156, -346]
[15:53:48] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -48 151 -345 -48 151 -344 minecraft:spruce_slab[type=top,waterlogged=false] replace air
[15:53:48] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:53:48] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -48 155 -345 minecraft:spruce_stairs[facing=east,half=top,shape=straight,waterlogged=false]
[15:53:48] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -48, 155, -345]
[15:53:48] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -48 156 -345 minecraft:green_terracotta
[15:53:48] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -48, 156, -345]
[15:53:48] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -48 155 -344 minecraft:spruce_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]
[15:53:48] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -48, 155, -344]
[15:53:48] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -48 156 -344 minecraft:white_concrete
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -48, 156, -344]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -48 151 -343 -47 151 -343 minecraft:dirt replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -48 152 -343 minecraft:barrel[facing=south,open=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -48, 152, -343]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -48 154 -343 minecraft:spruce_stairs[facing=east,half=top,shape=straight,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -48, 154, -343]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -48 155 -343 minecraft:green_terracotta
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -48, 155, -343]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -48 151 -342 -47 151 -342 minecraft:coarse_dirt replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -48 152 -342 minecraft:campfire[facing=north,lit=false,signal_fire=false,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -48, 152, -342]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -48 154 -342 minecraft:spruce_slab[type=top,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -48, 154, -342]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -48 151 -341 minecraft:coarse_dirt
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -48, 151, -341]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -48 151 -340 -47 151 -340 minecraft:coarse_dirt replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 1 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -47 152 -348 -47 153 -348 minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=false,west=false] replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -47 154 -348 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -47, 154, -348]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -47 151 -347 minecraft:dirt
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -47, 151, -347]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -47 152 -347 -47 153 -347 minecraft:oak_log[axis=y] replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -47 154 -347 minecraft:white_concrete
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -47, 154, -347]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -47 151 -346 -47 151 -344 minecraft:spruce_slab[type=double,waterlogged=false] replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 3 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -47 152 -346 minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=false,west=true]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -47, 152, -346]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -47 154 -346 minecraft:spruce_stairs[facing=north,half=top,shape=straight,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -47, 154, -346]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -47 155 -346 minecraft:green_terracotta
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -47, 155, -346]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -47 152 -345 minecraft:spruce_fence_gate[facing=east,in_wall=false,open=false,powered=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -47, 152, -345]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -47 154 -345 minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -47, 154, -345]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -47 155 -345 minecraft:white_concrete
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -47, 155, -345]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -47 152 -344 minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=false,west=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -47, 152, -344]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -47 154 -344 minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -47, 154, -344]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -47 155 -344 minecraft:green_terracotta
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -47, 155, -344]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -47 152 -343 -47 153 -343 minecraft:oak_log[axis=y] replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -47 154 -343 minecraft:white_concrete
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -47, 154, -343]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -47 152 -342 -47 153 -342 minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=false,west=false] replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -47 154 -342 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -47, 154, -342]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -47 151 -341 -46 151 -341 minecraft:grass_block[snowy=false] replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -46 152 -349 minecraft:grass
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -46, 152, -349]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -46 151 -347 -45 151 -342 minecraft:grass_block[snowy=false] replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 5 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -46 152 -347 -46 153 -347 minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=false,west=true] replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -46 154 -347 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -46, 154, -347]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -46 154 -346 minecraft:spruce_slab[type=top,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -46, 154, -346]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -46 155 -345 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -46, 155, -345]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -46 154 -344 minecraft:spruce_slab[type=top,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -46, 154, -344]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -46 152 -343 -46 153 -343 minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=false,west=true] replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -46 154 -343 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -46, 154, -343]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -46 152 -342 minecraft:fern
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -46, 152, -342]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -46 152 -340 minecraft:barrel[facing=west,open=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -46, 152, -340]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -45 152 -349 minecraft:cornflower
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -45, 152, -349]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -45 152 -346 minecraft:fern
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -45, 152, -346]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -45 152 -345 minecraft:grass
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -45, 152, -345]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -45 152 -343 minecraft:grass
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -45, 152, -343]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -45 152 -341 minecraft:barrel[facing=up,open=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -45, 152, -341]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /summon minecraft:armor_stand -45.574078 150.900000 -338.899494
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Summoned new Armor Stand]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /summon minecraft:armor_stand -46.150000 152.000000 -340.700000
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Summoned new Armor Stand]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /summon minecraft:armor_stand -47.500000 152.000000 -341.500000
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Summoned new Armor Stand]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /summon minecraft:armor_stand -47.133333 152.150000 -345.207444
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Summoned new Armor Stand]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -53 151 -349 -49 151 -348 minecraft:grass_block[snowy=false] replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -53 151 -347 minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -53, 151, -347]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -53 152 -347 minecraft:smoker[facing=south,lit=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -53, 152, -347]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -53 151 -346 -52 151 -343 minecraft:grass_block[snowy=false] replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 4 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -53 151 -341 -51 151 -341 minecraft:dirt_path replace air
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -53 151 -340 -52 151 -340 minecraft:dirt_path replace air
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -52 152 -347 minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=false,west=true]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -52, 152, -347]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -52 153 -347 minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=false,west=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -52, 153, -347]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -52 154 -347 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -52, 154, -347]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -52 152 -346 -51 152 -346 minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -52 154 -346 minecraft:spruce_slab[type=top,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -52, 154, -346]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -52 155 -345 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -52, 155, -345]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -52 154 -344 minecraft:spruce_slab[type=top,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -52, 154, -344]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -52 152 -343 -52 153 -343 minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=false,west=false] replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -52 154 -343 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -52, 154, -343]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -52 151 -342 minecraft:grass_block[snowy=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -52, 151, -342]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -52 152 -342 minecraft:grass
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -52, 152, -342]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -51 152 -348 -51 153 -348 minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=false,west=false] replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -51 154 -348 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -51, 154, -348]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -51 152 -347 -51 153 -347 minecraft:oak_log[axis=y] replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -51 154 -347 minecraft:white_concrete
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -51, 154, -347]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -51 151 -346 minecraft:spruce_slab[type=top,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -51, 151, -346]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -51 154 -346 minecraft:spruce_stairs[facing=north,half=top,shape=straight,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -51, 154, -346]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -51 155 -346 minecraft:green_terracotta
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -51, 155, -346]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -51 151 -345 -49 151 -344 minecraft:spruce_slab[type=top,waterlogged=false] replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 6 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -51 152 -345 -51 152 -344 minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -51 154 -345 minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -51, 154, -345]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -51 155 -345 minecraft:white_concrete
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -51, 155, -345]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -51 154 -344 minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -51, 154, -344]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -51 155 -344 minecraft:green_terracotta
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -51, 155, -344]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -51 151 -343 -49 151 -343 minecraft:dirt replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -51 152 -343 -51 153 -343 minecraft:oak_log[axis=y] replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -51 154 -343 minecraft:white_concrete
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -51, 154, -343]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -51 151 -342 -49 151 -342 minecraft:coarse_dirt replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -51 152 -342 -51 153 -342 minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=false,west=false] replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -51 154 -342 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -51, 154, -342]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -50 154 -348 minecraft:spruce_slab[type=top,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -50, 154, -348]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -50 152 -347 -50 154 -347 minecraft:spruce_stairs[facing=west,half=top,shape=inner_right,waterlogged=false] replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 3 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -50 155 -347 minecraft:green_terracotta
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -50, 155, -347]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -50 151 -346 minecraft:dirt
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -50, 151, -346]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -50 152 -346 minecraft:barrel[facing=south,open=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -50, 152, -346]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -50 155 -346 minecraft:spruce_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -50, 155, -346]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -50 156 -346 minecraft:white_concrete
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -50, 156, -346]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -50 155 -345 minecraft:spruce_stairs[facing=west,half=top,shape=straight,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -50, 155, -345]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -50 156 -345 minecraft:green_terracotta
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -50, 156, -345]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -50 155 -344 minecraft:spruce_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -50, 155, -344]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -50 156 -344 minecraft:white_concrete
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -50, 156, -344]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -50 152 -343 -49 152 -343 minecraft:barrel[facing=south,open=false] replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -50 154 -343 minecraft:spruce_stairs[facing=west,half=top,shape=straight,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -50, 154, -343]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -50 155 -343 minecraft:green_terracotta
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -50, 155, -343]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -50 152 -342 minecraft:campfire[facing=north,lit=false,signal_fire=false,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -50, 152, -342]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -50 154 -342 minecraft:spruce_slab[type=top,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -50, 154, -342]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -50 151 -341 -49 151 -341 minecraft:coarse_dirt replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 1 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -49 152 -348 minecraft:fern
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -49, 152, -348]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -49 155 -348 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -49, 155, -348]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -49 151 -347 -49 151 -346 minecraft:spruce_slab[type=top,waterlogged=false] replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -49 152 -347 -49 154 -347 minecraft:spruce_stairs[facing=north,half=top,shape=straight,waterlogged=false] replace air
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 3 blocks]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -49 155 -347 minecraft:white_concrete
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -49, 155, -347]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -49 155 -346 minecraft:spruce_stairs[facing=north,half=top,shape=straight,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -49, 155, -346]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -49 156 -346 minecraft:green_terracotta
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -49, 156, -346]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -49 154 -345 minecraft:lantern[hanging=true,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -49, 154, -345]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -49 155 -345 minecraft:chain[axis=y,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -49, 155, -345]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -49 156 -345 minecraft:white_concrete
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -49, 156, -345]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -49 155 -344 minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -49, 155, -344]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -49 156 -344 minecraft:green_terracotta
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -49, 156, -344]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -49 154 -343 minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -49, 154, -343]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -49 155 -343 minecraft:white_concrete
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -49, 155, -343]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -49 155 -342 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -49, 155, -342]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /summon minecraft:armor_stand -50.500000 152.000000 -343.500000
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Summoned new Armor Stand]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /summon minecraft:armor_stand -48.533200 153.800000 -343.749500
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Summoned new Armor Stand]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /summon minecraft:armor_stand -48.339394 151.600000 -345.199855
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Summoned new Armor Stand]
[15:53:49] [Server thread/INFO]: o0Rhinna0o issued server command: /summon minecraft:armor_stand -49.500000 153.000000 -345.500000
[15:53:49] [Server thread/INFO]: [o0Rhinna0o: Summoned new Armor Stand]
[15:53:49] [Server thread/INFO]: Insom96 issued server command: /quests editor
[15:53:52] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:53:55] [Server thread/INFO]: _ESC issued server command: /tpohere Goldsteener
[15:53:57] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:53:58] [Server thread/WARN]: _LadyRias_ was kicked for floating too long!
[15:53:58] [Server thread/INFO]: _LadyRias_ lost connection: Flying is not enabled on this server
[15:53:58] [Server thread/INFO]: [VariableEnderChests] Saving data for _LadyRias_
[15:53:58] [Bank - Loader Thread/INFO]: [Bank] Saving ac1efbea-f97b-4b22-b5f3-3a2e4f73c8ac
[15:53:58] [Bank - Loader Thread/INFO]: [Bank] Saved ac1efbea-f97b-4b22-b5f3-3a2e4f73c8ac after 21ms
[15:54:00] [Async Chat Thread - #24/INFO]: [Not Secure] [STOCK] Premium | Goldsteener: juhu danke <3
[15:54:02] [Async Chat Thread - #24/INFO]: [Not Secure] [TEAM] [V] Admin | _ESC: Gerne
[15:54:04] [Server thread/INFO]: TML_ShadowDiamat issued server command: /booster
[15:54:16] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 7806ms or 156 ticks behind
[15:54:18] [Craft Scheduler Thread - 185 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[15:54:29] [User Authenticator #9/INFO]: UUID of player _LadyRias_ is ac1efbea-f97b-4b22-b5f3-3a2e4f73c8ac
[15:54:29] [Server thread/INFO]: Check for Proxy Connection _LadyRias_
[15:54:29] [Bank - Loader Thread/INFO]: [Bank] Loading ac1efbea-f97b-4b22-b5f3-3a2e4f73c8ac
[15:54:29] [Bank - Loader Thread/INFO]: [Bank] Loaded ac1efbea-f97b-4b22-b5f3-3a2e4f73c8ac after 14ms
[15:54:29] [Server thread/INFO]: _LadyRias_[/88.130.145.145:37063] logged in with entity id 262025 at ([WorldsLegacy]-24.56203526544533, 70.3, 73.34123820673149)
[15:54:29] [Craft Scheduler Thread - 185 - SpigotOnlyProxyJoin/INFO]: Took 99ms (true)
[15:54:36] [Craft Scheduler Thread - 213 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:54:36] [Craft Scheduler Thread - 213 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:54:38] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:54:46] [Server thread/INFO]: P1tbull issued server command: /craft
[15:54:46] [Netty Epoll Server IO #1/WARN]: DasPinguin sent expired chat: 'nix zu danken :D'. Is the client/server system time unsynchronized? c: 1666881983 s: 1666886086
[15:54:46] [Async Chat Thread - #24/INFO]: [Not Secure] Spieler | DasPinguin: nix zu danken :D
[15:54:55] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 9884ms or 197 ticks behind
[15:54:55] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:55:00] [Server thread/INFO]: Goldsteener issued server command: /sethome fichte
[15:55:05] [Server thread/INFO]: Goldsteener issued server command: /homes
[15:55:10] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:55:16] [Server thread/INFO]: IIRedRoseLinaII issued server command: /p v DreiCpO
[15:55:22] [Server thread/INFO]: DasPinguin issued server command: /quest
[15:55:32] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 6936ms or 138 ticks behind
[15:55:35] [Craft Scheduler Thread - 213 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[15:55:38] [Server thread/INFO]: [Quests] Player 60d70ce9-b7c0-4abb-ae07-ebf5f3256741 saved quest Seltene Stücke
[15:55:42] [Server thread/INFO]: Insom96 issued server command: /questadmin neuladen
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]: [Quests] There are new language phrases in /lang/de-DE/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]: [Quests] There are new language phrases in /lang/de-DE/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]: [Quests] There are new language phrases in /lang/de-DE/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[15:55:42] [Craft Scheduler Thread - 174 - Quests/INFO]: [Quests] Loaded language de-DE. Translations via Crowdin
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]: me.blackvein.quests.exceptions.QuestFormatException: Requirement quests has unknown quest name custom10, place it earlier in file so it loads first, see quest of ID custom11
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuestRequirements(Quests.java:2260)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuests(Quests.java:1792)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.lambda$reload$4(Quests.java:1725)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]: me.blackvein.quests.exceptions.QuestFormatException: Requirement quests has unknown quest name custom26, place it earlier in file so it loads first, see quest of ID custom27
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuestRequirements(Quests.java:2260)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuests(Quests.java:1792)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.lambda$reload$4(Quests.java:1725)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]: me.blackvein.quests.exceptions.QuestFormatException: Requirement quests has unknown quest name custom27, place it earlier in file so it loads first, see quest of ID custom28
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuestRequirements(Quests.java:2260)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuests(Quests.java:1792)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.lambda$reload$4(Quests.java:1725)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]: me.blackvein.quests.exceptions.StageFormatException: break-block-durability is missing, see quest Weißes Glück stage 1
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuestStages(Quests.java:2507)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuests(Quests.java:1801)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.lambda$reload$4(Quests.java:1725)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]: me.blackvein.quests.exceptions.StageFormatException: break-block-durability is missing, see quest Gold Gold Gold stage 1
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuestStages(Quests.java:2507)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuests(Quests.java:1801)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.lambda$reload$4(Quests.java:1725)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]: [Quests] Unable to consider custom objectives because quest for custom11 was null
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]: [Quests] Unable to consider custom objectives because quest for custom27 was null
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]: [Quests] Unable to consider custom objectives because quest for custom28 was null
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]: [Quests] Unable to consider custom objectives because quest for custom55 was null
[15:55:42] [Craft Scheduler Thread - 174 - Quests/WARN]: [Quests] Unable to consider custom objectives because quest for custom57 was null
[15:55:46] [Server thread/INFO]: _LadyRias_ issued server command: /p h
[15:55:51] [Craft Scheduler Thread - 212 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:55:51] [Craft Scheduler Thread - 212 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:55:58] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:56:07] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5101ms or 102 ticks behind
[15:56:08] [Server thread/INFO]: IIRedRoseLinaII issued server command: /booster
[15:56:16] [Server thread/INFO]: KuZuUri issued server command: /ec
[15:56:26] [Server thread/INFO]: _LadyRias_ issued server command: /ah sell 2000
[15:56:26] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] _LadyRias_ added x64 Magma block in auction for 2000$.
[15:56:30] [Server thread/INFO]: IIRedRoseLinaII issued server command: /booster
[15:56:33] [Server thread/INFO]: _LadyRias_ issued server command: /ah sell 2000
[15:56:33] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] _LadyRias_ added x64 Magma block in auction for 2000$.
[15:56:35] [Server thread/INFO]: Goldsteener issued server command: /p h
[15:56:39] [Server thread/INFO]: _LadyRias_ issued server command: /ah sell 2000
[15:56:43] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5327ms or 106 ticks behind
[15:56:44] [Server thread/INFO]: » WorldsLegacy Alle Items und Mobs werden in 60 Sekunden entfernt!
[15:56:45] [Server thread/INFO]: 


[Booster] IIRedRoseLinaII hat den Fly-Booster aktiviert! x1
[15:56:47] [Server thread/INFO]: _LadyRias_ issued server command: /ec
[15:56:53] [Server thread/INFO]: _LadyRias_ issued server command: /ah
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /gamerule sendCommandFeedback
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -47 151 -331 -43 151 -326 minecraft:grass_block[snowy=false] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 8 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -47 152 -326 minecraft:grass
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -47, 152, -326]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -47 151 -325 -33 151 -323 minecraft:grass_block[snowy=false] replace air
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -47 152 -324 minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=none]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -47, 152, -324]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -46 152 -326 minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=none]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -46, 152, -326]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -46 154 -325 -46 155 -325 minecraft:pink_wool replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -46 156 -325 minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=false,west=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -46, 156, -325]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -46 154 -324 -46 155 -324 minecraft:lever[face=wall,facing=south,powered=true] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -46 156 -324 minecraft:spruce_fence_gate[facing=west,in_wall=false,open=false,powered=true]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -46, 156, -324]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -46 152 -323 minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -46, 152, -323]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -46 153 -323 -46 155 -323 minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=false,west=false] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 3 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -46 156 -323 minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=false,west=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -46, 156, -323]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -45 152 -325 minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=none]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -45, 152, -325]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -45 154 -325 -45 155 -325 minecraft:lever[face=wall,facing=east,powered=true] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -44 152 -330 minecraft:grass
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -44, 152, -330]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -44 152 -327 minecraft:fern
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -44, 152, -327]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -44 152 -324 minecraft:cornflower
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -44, 152, -324]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -43 152 -331 minecraft:fern
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -43, 152, -331]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -43 152 -330 -43 153 -330 minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=false,west=false] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -43 154 -330 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -43, 154, -330]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -43 154 -329 minecraft:spruce_slab[type=top,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -43, 154, -329]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -43 155 -328 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -43, 155, -328]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -43 154 -327 minecraft:spruce_slab[type=top,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -43, 154, -327]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -43 152 -326 -43 153 -326 minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=false,west=false] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -43 154 -326 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -43, 154, -326]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -43 152 -324 minecraft:grass
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -43, 152, -324]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -42 151 -331 -38 151 -331 minecraft:coarse_dirt replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 4 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -42 152 -331 -42 153 -331 minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=false,west=false] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -42 154 -331 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -42, 154, -331]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -42 151 -330 -38 151 -330 minecraft:dirt replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 5 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -42 152 -330 -42 153 -330 minecraft:oak_log[axis=y] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -42 154 -330 minecraft:white_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -42, 154, -330]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -42 151 -329 -42 151 -327 minecraft:spruce_slab[type=double,waterlogged=false] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 3 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -42 152 -329 minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=false,west=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -42, 152, -329]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -42 154 -329 minecraft:spruce_stairs[facing=north,half=top,shape=straight,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -42, 154, -329]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -42 155 -329 minecraft:cyan_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -42, 155, -329]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -42 152 -328 minecraft:spruce_fence_gate[facing=west,in_wall=false,open=false,powered=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -42, 152, -328]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -42 154 -328 minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -42, 154, -328]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -42 155 -328 minecraft:white_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -42, 155, -328]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -42 152 -327 minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=false,west=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -42, 152, -327]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -42 154 -327 minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -42, 154, -327]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -42 155 -327 minecraft:cyan_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -42, 155, -327]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -42 151 -326 minecraft:dirt
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -42, 151, -326]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -42 152 -326 -42 153 -326 minecraft:oak_log[axis=y] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -42 154 -326 minecraft:white_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -42, 154, -326]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -42 152 -325 -42 153 -325 minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=false,west=false] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -42 154 -325 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -42, 154, -325]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -42 152 -323 minecraft:azure_bluet
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -42, 152, -323]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -41 154 -331 minecraft:spruce_slab[type=top,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -41, 154, -331]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -41 152 -330 -39 152 -330 minecraft:barrel[facing=north,open=false] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 3 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -41 154 -330 minecraft:spruce_stairs[facing=west,half=top,shape=straight,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -41, 154, -330]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -41 155 -330 minecraft:cyan_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -41, 155, -330]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -41 151 -329 -38 151 -327 minecraft:spruce_slab[type=top,waterlogged=false] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 12 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -41 155 -329 minecraft:spruce_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -41, 155, -329]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -41 156 -329 minecraft:white_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -41, 156, -329]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -41 155 -328 minecraft:spruce_stairs[facing=west,half=top,shape=straight,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -41, 155, -328]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -41 156 -328 minecraft:cyan_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -41, 156, -328]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -41 155 -327 minecraft:spruce_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -41, 155, -327]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -41 156 -327 minecraft:white_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -41, 156, -327]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -41 151 -326 minecraft:spruce_slab[type=double,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -41, 151, -326]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -41 152 -326 -41 154 -326 minecraft:spruce_stairs[facing=west,half=top,shape=inner_left,waterlogged=false] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 3 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -41 155 -326 minecraft:cyan_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -41, 155, -326]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -41 154 -325 minecraft:spruce_slab[type=top,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -41, 154, -325]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -41 152 -323 minecraft:grass
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -41, 152, -323]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -40 155 -331 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -40, 155, -331]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -40 154 -330 minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -40, 154, -330]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -40 155 -330 minecraft:white_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -40, 155, -330]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -40 155 -329 minecraft:spruce_stairs[facing=north,half=top,shape=straight,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -40, 155, -329]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -40 156 -329 minecraft:cyan_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -40, 156, -329]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -40 154 -328 minecraft:lantern[hanging=true,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -40, 154, -328]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -40 155 -328 minecraft:chain[axis=y,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -40, 155, -328]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -40 156 -328 minecraft:white_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -40, 156, -328]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -40 155 -327 minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -40, 155, -327]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -40 156 -327 minecraft:cyan_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -40, 156, -327]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -40 151 -326 minecraft:spruce_slab[type=top,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -40, 151, -326]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -40 152 -326 -40 154 -326 minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=false] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 3 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -40 155 -326 minecraft:white_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -40, 155, -326]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -40 152 -325 minecraft:fern
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -40, 152, -325]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -40 155 -325 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -40, 155, -325]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -39 154 -331 minecraft:spruce_slab[type=top,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -39, 154, -331]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -39 154 -330 minecraft:spruce_stairs[facing=east,half=top,shape=straight,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -39, 154, -330]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -39 155 -330 minecraft:cyan_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -39, 155, -330]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -39 155 -329 minecraft:spruce_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -39, 155, -329]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -39 156 -329 minecraft:white_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -39, 156, -329]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -39 155 -328 minecraft:spruce_stairs[facing=east,half=top,shape=straight,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -39, 155, -328]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -39 156 -328 minecraft:cyan_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -39, 156, -328]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -39 155 -327 minecraft:spruce_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -39, 155, -327]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -39 156 -327 minecraft:white_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -39, 156, -327]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -39 151 -326 minecraft:spruce_slab[type=double,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -39, 151, -326]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -39 152 -326 minecraft:barrel[facing=north,open=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -39, 152, -326]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -39 153 -326 -39 154 -326 minecraft:spruce_stairs[facing=east,half=top,shape=inner_right,waterlogged=false] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -39 155 -326 minecraft:cyan_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -39, 155, -326]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -39 154 -325 minecraft:spruce_slab[type=top,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -39, 154, -325]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -38 152 -331 -38 153 -331 minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=false,west=false] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -38 154 -331 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -38, 154, -331]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -38 152 -330 -38 153 -330 minecraft:oak_log[axis=y] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -38 154 -330 minecraft:white_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -38, 154, -330]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -38 152 -329 minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=false,west=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -38, 152, -329]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -38 154 -329 minecraft:spruce_stairs[facing=north,half=top,shape=straight,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -38, 154, -329]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -38 155 -329 minecraft:cyan_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -38, 155, -329]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -38 152 -328 minecraft:spruce_fence_gate[facing=east,in_wall=false,open=false,powered=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -38, 152, -328]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -38 154 -328 minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -38, 154, -328]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -38 155 -328 minecraft:white_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -38, 155, -328]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -38 152 -327 minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=false,west=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -38, 152, -327]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -38 154 -327 minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -38, 154, -327]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -38 155 -327 minecraft:cyan_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -38, 155, -327]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -38 151 -326 minecraft:dirt
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -38, 151, -326]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -38 152 -326 -38 153 -326 minecraft:oak_log[axis=y] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -38 154 -326 minecraft:white_concrete
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -38, 154, -326]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -38 152 -325 -38 153 -325 minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=false,west=false] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -38 154 -325 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -38, 154, -325]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -37 151 -331 -33 151 -326 minecraft:grass_block[snowy=false] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -37 152 -331 minecraft:grass
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -37, 152, -331]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -37 152 -330 -37 153 -330 minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=false,west=true] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -37 154 -330 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -37, 154, -330]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -37 154 -329 minecraft:spruce_slab[type=top,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -37, 154, -329]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -37 155 -328 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -37, 155, -328]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -37 154 -327 minecraft:spruce_slab[type=top,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -37, 154, -327]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -37 152 -326 -37 153 -326 minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=false,west=true] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -37 154 -326 minecraft:spruce_slab[type=bottom,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -37, 154, -326]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -36 152 -329 -36 152 -328 minecraft:grass replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -36 152 -327 minecraft:fern
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -36, 152, -327]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -36 152 -326 minecraft:azure_bluet
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -36, 152, -326]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -35 152 -331 -34 152 -331 minecraft:fern replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -35 152 -330 minecraft:grass
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -35, 152, -330]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -35 152 -323 minecraft:grass
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -35, 152, -323]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -34 152 -328 minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -34, 152, -328]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -34 153 -328 minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=false,west=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -34, 153, -328]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -34 152 -324 minecraft:cornflower
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -34, 152, -324]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -33 152 -330 minecraft:azure_bluet
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -33, 152, -330]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -33 152 -328 minecraft:campfire[facing=south,lit=true,signal_fire=false,waterlogged=false]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -33, 152, -328]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -33 153 -328 minecraft:spruce_fence_gate[facing=south,in_wall=false,open=false,powered=true]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -33, 153, -328]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -33 152 -323 minecraft:grass
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -33, 152, -323]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /summon minecraft:armor_stand -39.500000 152.000000 -326.500000
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Summoned new Armor Stand]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /summon minecraft:armor_stand -45.389741 152.550000 -324.439964
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Summoned new Armor Stand]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /summon minecraft:armor_stand -36.500000 152.000000 -326.500000
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Summoned new Armor Stand]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /summon minecraft:armor_stand -46.500000 152.000000 -328.500000
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Summoned new Armor Stand]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /summon minecraft:armor_stand -40.367400 153.800000 -328.181500
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Summoned new Armor Stand]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /summon minecraft:armor_stand -33.850000 152.000000 -327.800000
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Summoned new Armor Stand]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /summon minecraft:armor_stand -32.264002 151.850000 -327.470292
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Summoned new Armor Stand]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -32 151 -330 -30 151 -330 minecraft:grass_block[snowy=false] replace air
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -32 151 -329 -29 151 -323 minecraft:grass_block[snowy=false] replace air
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -32 153 -329 -31 153 -329 minecraft:lever[face=wall,facing=north,powered=true] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -32 152 -328 -31 152 -328 minecraft:campfire[facing=south,lit=true,signal_fire=false,waterlogged=false] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -32 153 -328 -31 153 -328 minecraft:pink_wool replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -32 153 -327 -31 153 -327 minecraft:lever[face=wall,facing=south,powered=true] replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 2 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -32 152 -326 minecraft:azure_bluet
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -32, 152, -326]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -31 152 -325 minecraft:grass
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -31, 152, -325]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /fill -31 152 -324 -30 152 -324 minecraft:fern replace air
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Successfully filled 1 blocks]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -30 152 -330 minecraft:grass
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -30, 152, -330]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -30 152 -328 minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -30, 152, -328]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -30 153 -328 minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=false,west=true]
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -30, 153, -328]
[15:56:56] [Server thread/INFO]: o0Rhinna0o issued server command: /setblock -29 152 -325 minecraft:azure_bluet
[15:56:56] [Server thread/INFO]: [o0Rhinna0o: Changed the block at -29, 152, -325]
[15:57:01] [Craft Scheduler Thread - 142 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:57:01] [Craft Scheduler Thread - 142 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:57:18] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5732ms or 114 ticks behind
[15:57:20] [Server thread/INFO]: » WorldsLegacy Alle Items und Mobs werden in 30 Sekunden entfernt!
[15:57:26] [Server thread/INFO]: _ESC issued server command: /tpo Goldsteener
[15:57:29] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] _LadyRias_ buy x1 Diamond pickaxe to CreepaTv for 10$.
[15:57:34] [Server thread/INFO]: _LadyRias_ issued server command: /ah
[15:57:34] [Server thread/INFO]: VIK_BikeBunny lost connection: Disconnected
[15:57:34] [Server thread/INFO]: [VariableEnderChests] Saving data for VIK_BikeBunny
[15:57:34] [Bank - Loader Thread/INFO]: [Bank] Saving b735be25-b1a7-4f14-8ea8-8f708be31a1a
[15:57:34] [Bank - Loader Thread/INFO]: [Bank] Saved b735be25-b1a7-4f14-8ea8-8f708be31a1a after 17ms
[15:57:39] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.2] _LadyRias_ remove x1 Diamond pickaxe form buy
[15:57:42] [Server thread/INFO]: » WorldsLegacy Alle Items und Mobs werden in 10 Sekunden entfernt!
[15:57:52] [Server thread/INFO]: Insom96 issued server command: /quests editor
[15:57:53] [Server thread/INFO]: » WorldsLegacy Es wurden 27 Mobs und Items entfernt!
[15:57:54] [Craft Scheduler Thread - 202 - Core/INFO]: [Core] [Core] Checking for 2 updates.
[15:57:54] [Craft Scheduler Thread - 217 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[15:57:54] [Craft Scheduler Thread - 202 - Core/INFO]: [Core] Checking update for Core v0.5.5
[15:57:54] [Server thread/INFO]: [CustomCrafting] Saving Cauldrons
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saving ac7afe5c-1523-43fa-875a-df9338a58db7
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saved ac7afe5c-1523-43fa-875a-df9338a58db7 after 14ms
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saving 701a3785-ed79-4288-a43e-1f4b7a08acf6
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saved 701a3785-ed79-4288-a43e-1f4b7a08acf6 after 12ms
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saving b7b5c0b6-727c-4b71-b7e7-c15993305cea
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saved b7b5c0b6-727c-4b71-b7e7-c15993305cea after 11ms
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saving 5323cad3-e19c-4dc4-bf2b-568f44f21842
[15:57:54] [Craft Scheduler Thread - 222 - GamePoints/INFO]: [GamePoints] Updating balance top...
[15:57:54] [Craft Scheduler Thread - 222 - GamePoints/INFO]: [GamePoints] Balance top updated in 2 ms!
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saved 5323cad3-e19c-4dc4-bf2b-568f44f21842 after 14ms
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saving 60d70ce9-b7c0-4abb-ae07-ebf5f3256741
[15:57:54] [Craft Scheduler Thread - 202 - Core/INFO]: [Core] Checking update for Bank v4.5.9-RELEASE
[15:57:54] [Craft Scheduler Thread - 213 - GamePoints/INFO]: [GamePoints] Auto-save: Saved 19 online users | 0 offline users.
[15:57:54] [Craft Scheduler Thread - 207 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 19 online users | 0 offline users.
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saved 60d70ce9-b7c0-4abb-ae07-ebf5f3256741 after 26ms
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saving ac1efbea-f97b-4b22-b5f3-3a2e4f73c8ac
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saved ac1efbea-f97b-4b22-b5f3-3a2e4f73c8ac after 10ms
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saving 90219ad6-b913-4a56-8ddf-15b077267741
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saved 90219ad6-b913-4a56-8ddf-15b077267741 after 15ms
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saving 0804d25b-d84e-4db3-a94d-b3264b848fda
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saved 0804d25b-d84e-4db3-a94d-b3264b848fda after 11ms
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saving 2ac7a5b6-b4ed-40ab-8476-870c9c2d195e
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saved 2ac7a5b6-b4ed-40ab-8476-870c9c2d195e after 14ms
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saving cb7fc50e-a14f-4634-8f41-b6a2e5c56ecd
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saved cb7fc50e-a14f-4634-8f41-b6a2e5c56ecd after 34ms
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saving 72b326b0-ace5-43f4-8ed3-1cb83f141769
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saved 72b326b0-ace5-43f4-8ed3-1cb83f141769 after 12ms
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saving 1dde7084-5344-4ad8-af93-edba8416c002
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saved 1dde7084-5344-4ad8-af93-edba8416c002 after 21ms
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saving 88e5b549-728b-49d4-8e76-2e6eee2cf510
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saved 88e5b549-728b-49d4-8e76-2e6eee2cf510 after 12ms
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saving ab2c2533-0423-4ed4-be73-cb2f2c82a437
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saved ab2c2533-0423-4ed4-be73-cb2f2c82a437 after 13ms
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saving f0ba820a-ba83-46bc-a31a-cea4b7ffab23
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saved f0ba820a-ba83-46bc-a31a-cea4b7ffab23 after 11ms
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saving 212909b0-5440-4b5f-ae81-1b35a41723f5
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saved 212909b0-5440-4b5f-ae81-1b35a41723f5 after 35ms
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saving c3b14b5c-1ede-4a85-a9c2-0d5970ffd14c
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saved c3b14b5c-1ede-4a85-a9c2-0d5970ffd14c after 11ms
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saving db746193-3666-4d89-a298-0cafc160059c
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saved db746193-3666-4d89-a298-0cafc160059c after 9ms
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saving e847bf81-d977-420d-87ae-bdb64f841d4a
[15:57:54] [Bank - Loader Thread/INFO]: [Bank] Saved e847bf81-d977-420d-87ae-bdb64f841d4a after 12ms
[15:57:55] [Server thread/INFO]: DasPinguin issued server command: /quest welt
[15:57:59] [Server thread/INFO]: o0Rhinna0o issued server command: /ia
[15:58:01] [Server thread/INFO]: _LadyRias_ issued server command: /p h2
[15:58:02] [Server thread/INFO]: DasPinguin issued server command: /warp quest
[15:58:03] [Server thread/INFO]: [ItemsAdder] GUI error: can't find font_image. Check ia_gui.yml, attribute: settings.category_view.font_image.name
[15:58:05] [Server thread/INFO]: _LadyRias_ issued server command: /p h 2
[15:58:07] [Server thread/INFO]: [ItemsAdder] GUI error: can't find font_image. Check ia_gui.yml, attribute: settings.category_view.font_image.name
[15:58:09] [Craft Scheduler Thread - 204 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:58:09] [Craft Scheduler Thread - 204 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:58:11] [Server thread/INFO]: [ItemsAdder] GUI error: can't find font_image. Check ia_gui.yml, attribute: settings.category_view.font_image.name
[15:58:17] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5009ms or 100 ticks behind
[15:58:20] [Server thread/INFO]: FTF_DiscordTime issued server command: /p h 5
[15:58:27] [User Authenticator #10/INFO]: UUID of player SY_Elbing85 is 1954af97-b9e2-40ca-9ddf-3f64bd605cdf
[15:58:27] [Server thread/INFO]: Check for Proxy Connection SY_Elbing85
[15:58:27] [Bank - Loader Thread/INFO]: [Bank] Loading 1954af97-b9e2-40ca-9ddf-3f64bd605cdf
[15:58:27] [Server thread/INFO]: SY_Elbing85[/84.183.169.11:41449] logged in with entity id 305163 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[15:58:27] [Craft Scheduler Thread - 223 - SpigotOnlyProxyJoin/INFO]: Took 119ms (true)
[15:58:27] [Bank - Loader Thread/INFO]: [Bank] Loaded 1954af97-b9e2-40ca-9ddf-3f64bd605cdf after 18ms
[15:58:34] [Server thread/INFO]: FTF_DiscordTime issued server command: /ec
[15:58:34] [User Authenticator #10/INFO]: UUID of player MarGem89 is b6b870c4-7c5a-407f-a5d7-eee992708b2f
[15:58:35] [Server thread/INFO]: Check for Proxy Connection MarGem89
[15:58:35] [Bank - Loader Thread/INFO]: [Bank] Loading b6b870c4-7c5a-407f-a5d7-eee992708b2f
[15:58:35] [Server thread/INFO]: MarGem89[/79.207.210.120:50705] logged in with entity id 306429 at ([WorldsLegacy]-24.56203526544533, 69.3, 73.34123820673149)
[15:58:35] [Craft Scheduler Thread - 189 - SpigotOnlyProxyJoin/INFO]: Took 125ms (true)
[15:58:35] [Bank - Loader Thread/INFO]: [Bank] Loaded b6b870c4-7c5a-407f-a5d7-eee992708b2f after 17ms
[15:58:36] [Server thread/INFO]: FTF_DiscordTime issued server command: /ha
[15:58:38] [Server thread/INFO]: FTF_DiscordTime issued server command: /ah
[15:59:00] [Server thread/INFO]: P1tbull issued server command: /craft
[15:59:00] [Craft Scheduler Thread - 189 - BuycraftX/INFO]: [BuycraftX] Sending 2 analytic events
[15:59:04] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5002ms or 100 ticks behind
[15:59:12] [Server thread/INFO]: [CaseOpening] Opened default crate menu for MarGem89.
[15:59:13] [Async Chat Thread - #27/INFO]: [Not Secure] [BIER] Spieler | SY_Elbing85: abend
[15:59:16] [Craft Scheduler Thread - 220 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:59:16] [Craft Scheduler Thread - 220 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:59:21] [Server thread/INFO]: IIRedRoseLinaII issued server command: /home fichte
[15:59:23] [Server thread/INFO]: SY_Elbing85 issued server command: /p h
[15:59:29] [Async Chat Thread - #27/INFO]: [Not Secure] Spieler | _LadyRias_: dir auch ein guten abend
[15:59:42] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5012ms or 100 ticks behind
[15:59:47] [Server thread/INFO]: SY_Elbing85 issued server command: /p v buch
[15:59:48] [Server thread/INFO]: _ESC issued server command: /hdb search id:44000
[16:00:01] [Server thread/INFO]: P1tbull issued server command: /craft
[16:00:02] [Server thread/INFO]: DasPinguin issued server command: /craft
[16:00:05] [Server thread/INFO]: _ESC issued server command: /hdb search id:43986
[16:00:15] [Server thread/INFO]: _ESC issued server command: /hdb search id:44002
[16:00:15] [Server thread/INFO]: SY_Elbing85 issued server command: /home nether
[16:00:19] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 6713ms or 134 ticks behind
[16:00:20] [Server thread/INFO]: SY_Elbing85 issued server command: /homes
[16:00:27] [Server thread/INFO]: _ESC issued server command: /p h
[16:00:28] [Craft Scheduler Thread - 221 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:00:28] [Craft Scheduler Thread - 221 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:00:29] [Server thread/INFO]: DasPinguin issued server command: /craft
[16:00:29] [Server thread/INFO]: SY_Elbing85 issued server command: /home safe
[16:00:33] [Server thread/INFO]: [Quests] Player 60d70ce9-b7c0-4abb-ae07-ebf5f3256741 saved quest Böse Konkurrenz
[16:00:38] [Server thread/INFO]: FTF_DiscordTime issued server command: /tpo HerrSeppel
[16:00:38] [Server thread/INFO]: Insom96 issued server command: /questadmin neuladen
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]: [Quests] There are new language phrases in /lang/de-DE/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]: [Quests] There are new language phrases in /lang/de-DE/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]: [Quests] There are new language phrases in /lang/de-DE/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[16:00:38] [Craft Scheduler Thread - 178 - Quests/INFO]: [Quests] Loaded language de-DE. Translations via Crowdin
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]: me.blackvein.quests.exceptions.QuestFormatException: Requirement quests has unknown quest name custom10, place it earlier in file so it loads first, see quest of ID custom11
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuestRequirements(Quests.java:2260)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuests(Quests.java:1792)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.lambda$reload$4(Quests.java:1725)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]: me.blackvein.quests.exceptions.QuestFormatException: Requirement quests has unknown quest name custom26, place it earlier in file so it loads first, see quest of ID custom27
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuestRequirements(Quests.java:2260)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuests(Quests.java:1792)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.lambda$reload$4(Quests.java:1725)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]: me.blackvein.quests.exceptions.QuestFormatException: Requirement quests has unknown quest name custom27, place it earlier in file so it loads first, see quest of ID custom28
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuestRequirements(Quests.java:2260)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuests(Quests.java:1792)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.lambda$reload$4(Quests.java:1725)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]: me.blackvein.quests.exceptions.StageFormatException: break-block-durability is missing, see quest Weißes Glück stage 1
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuestStages(Quests.java:2507)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuests(Quests.java:1801)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.lambda$reload$4(Quests.java:1725)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]: me.blackvein.quests.exceptions.StageFormatException: break-block-durability is missing, see quest Gold Gold Gold stage 1
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuestStages(Quests.java:2507)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.loadQuests(Quests.java:1801)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at Quests-4.6.0.jar//me.blackvein.quests.Quests.lambda$reload$4(Quests.java:1725)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftTask.run(CraftTask.java:101)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]: [Quests] Unable to consider custom objectives because quest for custom11 was null
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]: [Quests] Unable to consider custom objectives because quest for custom27 was null
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]: [Quests] Unable to consider custom objectives because quest for custom28 was null
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]: [Quests] Unable to consider custom objectives because quest for custom55 was null
[16:00:38] [Craft Scheduler Thread - 178 - Quests/WARN]: [Quests] Unable to consider custom objectives because quest for custom57 was null
[16:00:49] [Server thread/INFO]: P1tbull issued server command: /p h
[16:00:50] [Server thread/INFO]: SY_Elbing85 issued server command: /homes
[16:00:56] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 7232ms or 144 ticks behind
[16:00:57] [Server thread/INFO]: SY_Elbing85 issued server command: /home stein
[16:01:04] [Server thread/INFO]: SY_Elbing85 issued server command: /homes
[16:01:12] [Server thread/INFO]: SY_Elbing85 issued server command: /home home
[16:01:29] [Server thread/INFO]: SY_Elbing85 issued server command: /home stein
[16:01:31] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5113ms or 102 ticks behind
[16:01:37] [Server thread/INFO]: SY_Elbing85 issued server command: /home stein*
[16:01:40] [Craft Scheduler Thread - 223 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:01:41] [Craft Scheduler Thread - 223 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:01:43] [Async Chat Thread - #28/INFO]: [Not Secure] [BIER] Master | TRE_Bullet: Nabend SY_Elbing85
[16:01:50] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=Farmwelt},x=5398.0,y=69.0,z=838.0,pitch=0.0,yaw=0.0}
[16:01:53] [Server thread/INFO]: Blackangel1908 issued server command: /kopf HerrSeppel
[16:02:04] [Server thread/INFO]: IIRedRoseLinaII issued server command: /p v DreiCpO
[16:02:07] [Timer-13/INFO]: [zAuctionHouseV3 v3.1.0.2] /home/CityBuild/plugins/zAuctionHouseV3/items.json successfully saved !
[16:02:07] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5805ms or 116 ticks behind
[16:02:16] [Async Chat Thread - #28/INFO]: [Not Secure] [BIER] Spieler | SY_Elbing85: mal ne farge gibt es irgendweine möglichkeit hier exp zufarmen?
[16:02:17] [Server thread/INFO]: DasPinguin issued server command: /p v P1tbull
[16:02:22] [Server thread/INFO]: SY_Elbing85 issued server command: /spawn
[16:02:25] [Server thread/INFO]: DreiCpO issued server command: /p h
[16:02:25] [Async Chat Thread - #28/INFO]: [Not Secure] [BIER] Master | TRE_Bullet: ja /p v xp