Paste #137746: Unnamed Server Log Paste

Date: 2025/12/02 07:51:57 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
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


[15:17:39] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.9+10-LTS; Eclipse Adoptium Temurin-21.0.9+10) on Linux 6.1.0-37-amd64 (amd64)
[15:17:39] [ServerMain/INFO]: [bootstrap] Loading Pufferfish 1.21.8-33-HEAD@77b0097 (2025-09-14T20:50:50Z) for Minecraft 1.21.8
[15:17:40] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[15:17:41] [ServerMain/INFO]: [PluginInitializerManager] Initialized 51 plugins
[15:17:41] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (3):
 - CrazyVouchers (5.1.4), FancyHolograms (2.8.0), nightcore (2.10.1)
[15:17:41] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (48):
 - AuctionHouse (2.2), BetterRTP (3.6.13), ChatControl (11.6.0), Chunky (1.4.40), Citizens (2.0.40-SNAPSHOT (build 3987)), CoreProtect (23.0), CozyTags (1.0), DiscordBridge (1.0.0), EpicRename (3.12.2), Essentials (2.21.2), EssentialsChat (2.21.2), EssentialsSpawn (2.21.2), ExcellentCrates (6.5.1), FastAsyncWorldEdit (2.14.1-SNAPSHOT-1215+0ce8c14), GSit (3.0.1), GriefPrevention (16.18.5), InventoryRollbackPlus (1.7.8), KitsX (1.0-RELEASE), LuckPerms (5.5.17), Multiverse-Core (5.3.4-pre.3), NBTAPI (2.15.3), NPCSpawner (1.0.0), NexEngine (2.2.12), OpenAudioMc (6.10.15), PL-Hide (1.5.22), PlaceholderAPI (2.11.7), ProtocolLib (5.4.0), PvPManager (4.1.16), RedstoneDetector (0.3), ServerListPlus (3.5.0), ShopGUIPlus (1.111.0), ShopGUIPlusSilkSpawnersBridge (1.10.1), SilkSpawners (8.3.0), TAB (5.3.2), UltimateRewards (2.13.3), UltimateTeams (4.7.2), UltraCosmetics (3.14-RELEASE), Vault (1.7.3-b131), VaultLeaderboards (1.1), ViaVersion (5.5.1), VoidSpawn (1.22.0), Votifier (2.7.3), WorldGuard (7.0.14+2339-43997ec), XPad (1.4.0), ajLeaderboards (2.10.1), cozycraft (1.4.0), floodgate (2.2.5-SNAPSHOT (b121-55a85ec)), voicechat (2.6.6)
[15:17:44] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[15:17:46] [ServerMain/INFO]: Loaded 1407 recipes
[15:17:46] [ServerMain/INFO]: Loaded 1520 advancements
[15:17:46] [ServerMain/INFO]: [ca.spottedleaf.dataconverter.minecraft.datatypes.MCTypeRegistry] Initialising converters for DataConverter...
[15:17:46] [ServerMain/INFO]: [ca.spottedleaf.dataconverter.minecraft.datatypes.MCTypeRegistry] Finished initialising converters for DataConverter in 266.5ms
[15:17:46] [Server thread/INFO]: Starting minecraft server version 1.21.8
[15:17:46] [Server thread/INFO]: Loading properties
[15:17:46] [Server thread/INFO]: This server is running Pufferfish version 1.21.8-33-HEAD@77b0097 (2025-09-14T20:50:50Z) (Implementing API version 1.21.8-R0.1-SNAPSHOT)
[15:17:46] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[15:17:46] [Server thread/INFO]: Server Ping Player Sample Count: 12
[15:17:46] [Server thread/INFO]: Using 4 threads for Netty based IO
[15:17:46] [Server thread/INFO]: [MoonriseCommon] Paper is using 1 worker threads, 1 I/O threads
[15:17:46] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[15:17:47] [Server thread/WARN]: [Pufferfish] SIMD operations are available for your server, but are not configured!
[15:17:47] [Server thread/WARN]: [Pufferfish] To enable additional optimizations, add "--add-modules=jdk.incubator.vector" to your startup flags, BEFORE the "-jar".
[15:17:47] [Server thread/WARN]: [Pufferfish] If you have already added this flag, then SIMD operations are not supported on your JVM or CPU.
[15:17:47] [Server thread/WARN]: [Pufferfish] Debug: Java: 21.0.9, test run: true
[15:17:47] [Server thread/INFO]: Default game type: SURVIVAL
[15:17:47] [Server thread/INFO]: Generating keypair
[15:17:47] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25565
[15:17:47] [Server thread/INFO]: Using epoll channel type
[15:17:47] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[15:17:47] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[15:17:47] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loading 3 libraries... please wait
[15:17:47] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.1.0/HikariCP-5.1.0.jar
[15:17:47] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library /home/container/libraries/com/github/ben-manes/caffeine/caffeine/3.1.8/caffeine-3.1.8.jar
[15:17:47] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.37.0/checker-qual-3.37.0.jar
[15:17:47] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.jar
[15:17:47] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.jar
[15:17:47] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 3 libraries... please wait
[15:17:47] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/ch/ethz/globis/phtree/phtree/2.8.2/phtree-2.8.2.jar
[15:17:47] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[15:17:47] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.16/fastutil-8.5.16.jar
[15:17:47] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loading 2 libraries... please wait
[15:17:47] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/container/libraries/com/github/cryptomorin/XSeries/13.5.1/XSeries-13.5.1.jar
[15:17:47] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/container/libraries/com/zaxxer/HikariCP/7.0.2/HikariCP-7.0.2.jar
[15:17:47] [Server thread/INFO]: [SpigotLibraryLoader] [UltraCosmetics] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.17/slf4j-api-2.0.17.jar
[15:17:47] [Server thread/INFO]: [SpigotLibraryLoader] [AuctionHouse] Loading 1 libraries... please wait
[15:17:47] [Server thread/INFO]: [SpigotLibraryLoader] [AuctionHouse] Loaded library /home/container/libraries/org/json/json/20231013/json-20231013.jar
[15:17:48] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[15:17:48] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[15:17:48] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[15:17:48] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[15:17:48] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[15:17:55] [Server thread/WARN]: Legacy plugin RedstoneDetector v0.3 does not specify an api-version.
[15:17:55] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateTeams] Loading 7 libraries... please wait
[15:17:55] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateTeams] Loaded library /home/container/libraries/com/mysql/mysql-connector-j/9.2.0/mysql-connector-j-9.2.0.jar
[15:17:55] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateTeams] Loaded library /home/container/libraries/com/google/protobuf/protobuf-java/4.29.0/protobuf-java-4.29.0.jar
[15:17:55] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateTeams] Loaded library /home/container/libraries/org/mariadb/jdbc/mariadb-java-client/3.4.1/mariadb-java-client-3.4.1.jar
[15:17:55] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateTeams] Loaded library /home/container/libraries/com/github/waffle/waffle-jna/3.3.0/waffle-jna-3.3.0.jar
[15:17:55] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateTeams] Loaded library /home/container/libraries/net/java/dev/jna/jna/5.13.0/jna-5.13.0.jar
[15:17:55] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateTeams] Loaded library /home/container/libraries/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0.jar
[15:17:55] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateTeams] Loaded library /home/container/libraries/org/slf4j/jcl-over-slf4j/2.0.7/jcl-over-slf4j-2.0.7.jar
[15:17:55] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateTeams] Loaded library /home/container/libraries/com/github/ben-manes/caffeine/caffeine/2.9.3/caffeine-2.9.3.jar
[15:17:55] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateTeams] Loaded library /home/container/libraries/org/xerial/sqlite-jdbc/3.46.1.0/sqlite-jdbc-3.46.1.0.jar
[15:17:55] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateTeams] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[15:17:55] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateTeams] Loaded library /home/container/libraries/com/h2database/h2/2.3.232/h2-2.3.232.jar
[15:17:55] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateTeams] Loaded library /home/container/libraries/com/zaxxer/HikariCP/6.2.1/HikariCP-6.2.1.jar
[15:17:55] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateTeams] Loaded library /home/container/libraries/org/postgresql/postgresql/42.7.3/postgresql-42.7.3.jar
[15:17:55] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateTeams] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.42.0/checker-qual-3.42.0.jar
[15:17:55] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateTeams] Loaded library /home/container/libraries/redis/clients/jedis/5.2.0/jedis-5.2.0.jar
[15:17:55] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateTeams] Loaded library /home/container/libraries/org/apache/commons/commons-pool2/2.12.0/commons-pool2-2.12.0.jar
[15:17:55] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateTeams] Loaded library /home/container/libraries/org/json/json/20240303/json-20240303.jar
[15:17:55] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateTeams] Loaded library /home/container/libraries/com/google/code/gson/gson/2.11.0/gson-2.11.0.jar
[15:17:55] [Server thread/INFO]: [SpigotLibraryLoader] [UltimateTeams] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.27.0/error_prone_annotations-2.27.0.jar
[15:17:55] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.5.1
[15:17:55] [Server thread/INFO]: [ViaVersion] ViaVersion 5.5.1 is now loaded. Registering protocol transformers and injecting...
[15:17:55] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[15:17:55] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[15:17:55] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.5.17
[15:17:56] [Server thread/INFO]: [LuckPerms] Loading configuration...
[15:17:56] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[15:17:56] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.14.1-SNAPSHOT-1215+0ce8c14
[15:17:57] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@44ebe421]
[15:17:57] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.7
[15:17:57] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.14+2339-43997ec
[15:17:57] [Server thread/INFO]: [CoreLogging] Loading server plugin Multiverse-Core v5.3.4-pre.3
[15:17:57] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.5-SNAPSHOT (b121-55a85ec)
[15:17:57] [Server thread/INFO]: [floodgate] Took 418ms to boot Floodgate
[15:17:57] [Server thread/INFO]: [SilkSpawners] Loading server plugin SilkSpawners v8.3.0
[15:17:57] [Server thread/INFO]: [GriefPrevention] Loading server plugin GriefPrevention v16.18.5
[15:17:57] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.3.2
[15:17:57] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.2
[15:17:57] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0
[15:17:57] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[15:17:57] [Server thread/INFO]: [ShopGUIPlus] Loading server plugin ShopGUIPlus v1.111.0
[15:17:57] [Server thread/INFO]: [PvPManager] Loading server plugin PvPManager v4.1.16
[15:17:57] [Server thread/INFO]: [PvPManager] Registering WorldGuard flags...
[15:17:57] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.15.3
[15:17:57] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.8! Trying to find NMS support
[15:17:57] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R5' loaded!
[15:17:57] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[15:17:57] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.10.1
[15:17:57] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.13
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.10.1
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[15:17:57] [Thread-7/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okhttp
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okhttp
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio-jvm
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio-jvm
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk8
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk8
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-common
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-common
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for annotations
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for annotations
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk7
[15:17:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk7
[15:17:57] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.40
[15:17:57] [Server thread/INFO]: [VoidSpawn] Loading server plugin VoidSpawn v1.22.0
[15:17:57] [Server thread/INFO]: [GSit] Loading server plugin GSit v3.0.1
[15:17:57] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.40-SNAPSHOT (build 3987)
[15:17:58] [Server thread/INFO]: [UltraCosmetics] Loading server plugin UltraCosmetics v3.14-RELEASE
[15:17:58] [Server thread/INFO]: [AuctionHouse] Loading server plugin AuctionHouse v2.2
[15:17:58] [Server thread/INFO]: [EpicRename] Loading server plugin EpicRename v3.12.2
[15:17:58] [Server thread/INFO]: [ServerListPlus] Loading server plugin ServerListPlus v3.5.0
[15:17:58] [Server thread/INFO]: [KitsX] Loading server plugin KitsX v1.0-RELEASE
[15:17:58] [Server thread/INFO]: [NPCSpawner] Loading server plugin NPCSpawner v1.0.0
[15:17:58] [Server thread/INFO]: [CrazyVouchers] Loading server plugin CrazyVouchers v5.1.4
[15:17:58] [Server thread/INFO]: [UltimateRewards] Loading server plugin UltimateRewards v2.13.3
[15:17:58] [Server thread/INFO]: [ShopGUIPlusSilkSpawnersBridge] Loading server plugin ShopGUIPlusSilkSpawnersBridge v1.10.1
[15:17:58] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v23.0
[15:17:58] [Server thread/INFO]: [OpenAudioMc] Loading server plugin OpenAudioMc v6.10.15
[15:17:58] [Server thread/INFO]: [FancyHolograms] Loading server plugin FancyHolograms v2.8.0
[15:17:58] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.2
[15:17:58] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.12
[15:17:58] [Server thread/INFO]: [voicechat] Loading server plugin voicechat v2.6.6
[15:17:58] [Server thread/INFO]: [ChatControl] Loading server plugin ChatControl v11.6.0
[15:17:58] [FancyLogger/INFO]: [FancyHolograms] (Server thread) INFO: Successfully loaded FancyHolograms version 2.8.0
[15:17:58] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.21.2
[15:17:58] [Server thread/INFO]: [RedstoneDetector] Loading server plugin RedstoneDetector v0.3
[15:17:58] [Server thread/INFO]: [VaultLeaderboards] Loading server plugin VaultLeaderboards v1.1
[15:17:58] [Server thread/INFO]: [CozyTags] Loading server plugin CozyTags v1.0
[15:17:58] [Server thread/INFO]: [cozycraft] Loading server plugin cozycraft v1.4.0
[15:17:58] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v6.5.1
[15:17:58] [Server thread/INFO]: [PL-Hide] Loading server plugin PL-Hide v1.5.22
[15:17:58] [Server thread/INFO]: [UltimateTeams] Loading server plugin UltimateTeams v4.7.2
[15:17:58] [Server thread/INFO]: [XPad] Loading server plugin XPad v1.4.0
[15:17:58] [Server thread/INFO]: [InventoryRollbackPlus] Loading server plugin InventoryRollbackPlus v1.7.8
[15:17:58] [Server thread/INFO]: [DiscordBridge] Loading server plugin DiscordBridge v1.0.0
[15:17:58] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[15:17:58] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.5.17
[15:17:59] [Server thread/INFO]:         __    
[15:17:59] [Server thread/INFO]:   |    |__)   LuckPerms v5.5.17
[15:17:59] [Server thread/INFO]:   |___ |      Running on Bukkit - Pufferfish
[15:17:59] [Server thread/INFO]: 
[15:17:59] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[15:17:59] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[15:17:59] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[15:18:00] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[15:18:00] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[15:18:00] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[15:18:00] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1790ms)
[15:18:00] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[15:18:00] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[15:18:00] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[15:18:00] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[15:18:00] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[15:18:00] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.14.1-SNAPSHOT-1215+0ce8c14
[15:18:00] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[15:18:00] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[15:18:00] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[15:18:00] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[15:18:00] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_6.PaperweightFaweAdapter as the Bukkit adapter
[15:18:01] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0
[15:18:01] [Server thread/INFO]: [nightcore] Enabling nightcore v2.10.1
[15:18:01] [Server thread/INFO]: [nightcore] Server version detected as 1.21.8. Using paper-bridge.
[15:18:01] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 14 build(s) out of date.
You are running build 1215, the latest version is build 1229.
Update at https://ci.athion.net/job/FastAsyncWorldEdit
[15:18:01] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[15:18:01] [Server thread/INFO]: [nightcore] Time zone set as Europe/Amsterdam
[15:18:01] [Server thread/INFO]: [nightcore] Loaded 2 color schemes.
[15:18:01] [Server thread/INFO]: [nightcore] Using 'custom' color scheme.
[15:18:01] [Server thread/INFO]: [nightcore] Registered permissions provider: LuckPerms
[15:18:01] [Server thread/INFO]: [nightcore] Registered item provider: 'vanilla'.
[15:18:01] [Server thread/INFO]: [nightcore] Registered item provider: 'excellentcrates'.
[15:18:01] [Server thread/INFO]: [nightcore] Registered item provider: 'excellentcrates_crate'.
[15:18:01] [Server thread/INFO]: [nightcore] Registered item provider: 'excellentcrates_key'.
[15:18:01] [Server thread/INFO]: [nightcore] Vault detected! Loading currency...
[15:18:01] [Server thread/INFO]: [nightcore] Currency registered: 'vault'.
[15:18:01] [Server thread/INFO]: [nightcore] Currency registered: 'xp_level'.
[15:18:01] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] A new release for FastAsyncWorldEdit is available: 2.14.2. You are currently on 2.14.1.
Download from https://modrinth.com/plugin/fastasyncworldedit or https://hangar.papermc.io/IntellectualSites/FastAsyncWorldEdit
[15:18:01] [Server thread/INFO]: [nightcore] Currency registered: 'gold'.
[15:18:01] [Server thread/INFO]: [nightcore] Currency registered: 'emerald'.
[15:18:01] [Server thread/INFO]: [nightcore] Currency registered: 'custom_diamond'.
[15:18:01] [Server thread/INFO]: [nightcore] Plugin loaded in 222 ms!
[15:18:01] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.12
[15:18:01] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[15:18:01] [Server thread/WARN]: [NexEngine] ==================================
[15:18:01] [Server thread/WARN]: [NexEngine] WARNING: You're running an outdated/deprecated server version (Unknown)!
[15:18:01] [Server thread/WARN]: [NexEngine] Support for this version will be dropped soon.
[15:18:01] [Server thread/WARN]: [NexEngine] Please, upgrade your server to at least 1.18.2.
[15:18:01] [Server thread/WARN]: [NexEngine] ==================================
[15:18:01] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[15:18:01] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[15:18:01] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[15:18:01] [Server thread/INFO]: [NexEngine] Plugin loaded in 53 ms!
[15:18:01] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[15:18:01] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[15:18:01] [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.
[15:18:01] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[15:18:01] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[15:18:01] [Server thread/INFO]: Preparing level "world"
[15:18:02] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[15:18:02] [Server thread/INFO]: Preparing spawn area: 0%
[15:18:02] [Server thread/INFO]: Preparing spawn area: 6%
[15:18:02] [Server thread/INFO]: Time elapsed: 588 ms
[15:18:02] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[15:18:02] [Server thread/INFO]: Preparing spawn area: 0%
[15:18:03] [Server thread/INFO]: Time elapsed: 195 ms
[15:18:03] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[15:18:03] [Server thread/INFO]: Preparing spawn area: 0%
[15:18:03] [Server thread/INFO]: Time elapsed: 56 ms
[15:18:03] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.5.1
[15:18:03] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.7-1.21.8 (772)
[15:18:03] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.7
[15:18:03] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[15:18:03] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.14+2339-43997ec
[15:18:03] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[15:18:03] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[15:18:03] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[15:18:03] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[15:18:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[15:18:03] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[15:18:03] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[15:18:03] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[15:18:03] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[15:18:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[15:18:03] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[15:18:03] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[15:18:03] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[15:18:03] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[15:18:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[15:18:03] [Server thread/INFO]: [WorldGuard] Loading region data...
[15:18:03] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v5.3.4-pre.3
[15:18:04] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[15:18:04] [Server thread/INFO]: Preparing spawn area: 0%
[15:18:04] [Server thread/INFO]: Time elapsed: 183 ms
[15:18:04] [Server thread/INFO]: [WorldGuard] (spawn) TNT ignition is PERMITTED.
[15:18:04] [Server thread/INFO]: [WorldGuard] (spawn) Lighters are PERMITTED.
[15:18:04] [Server thread/INFO]: [WorldGuard] (spawn) Lava fire is PERMITTED.
[15:18:04] [Server thread/INFO]: [WorldGuard] (spawn) Fire spread is UNRESTRICTED.
[15:18:04] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawn'
[15:18:04] [Server thread/INFO]: Preparing start region for dimension minecraft:pvp-arena
[15:18:04] [Server thread/INFO]: Preparing spawn area: 0%
[15:18:04] [Server thread/INFO]: Time elapsed: 81 ms
[15:18:04] [Server thread/INFO]: [WorldGuard] (pvp-arena) TNT ignition is PERMITTED.
[15:18:04] [Server thread/INFO]: [WorldGuard] (pvp-arena) Lighters are PERMITTED.
[15:18:04] [Server thread/INFO]: [WorldGuard] (pvp-arena) Lava fire is PERMITTED.
[15:18:04] [Server thread/INFO]: [WorldGuard] (pvp-arena) Fire spread is UNRESTRICTED.
[15:18:04] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'pvp-arena'
[15:18:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: multiverse-core [5.3.4-pre.3]
[15:18:04] [Server thread/INFO]: [Multiverse-Core] API service loaded!
[15:18:04] [Server thread/INFO]: [Multiverse-Core] Version 5.3.4-pre.3 (API v5.3) Enabled - By dumptruckman, Rigby, fernferret, lithium3141, main--, benwoo1110 and Zax71
[15:18:04] [Server thread/INFO]: [Multiverse-Core] Loving Multiverse-Core? Please consider supporting the project with a small donation: https://github.com/sponsors/Multiverse
[15:18:04] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.5-SNAPSHOT (b121-55a85ec)
[15:18:05] [Server thread/INFO]: [SilkSpawners] Enabling SilkSpawners v8.3.0
[15:18:05] [Server thread/INFO]: [SilkSpawners] WorldGuard was found and support is enabled
[15:18:05] [Server thread/INFO]: [SilkSpawners] Mimic was not found and support is disabled
[15:18:05] [Server thread/INFO]: [SilkSpawners] Loading support for v1_21_R5
[15:18:05] [Server thread/INFO]: [SilkSpawners] AutoUpdater is enabled and now running.
[15:18:05] [Server thread/INFO]: [SilkSpawners] BarAPI is disabled due to config setting.
[15:18:05] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.5
[15:18:05] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[15:18:05] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:6) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[15:18:05] [Server thread/INFO]: [GriefPrevention] 409 total claims loaded.
[15:18:05] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[15:18:05] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[15:18:05] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[15:18:05] [Server thread/INFO]: [GriefPrevention] Boot finished.
[15:18:05] [Server thread/INFO]: [TAB] Enabling TAB v5.3.2
[15:18:05] [Server thread/INFO]: [TAB] Enabled in 186ms
[15:18:05] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.2
[15:18:05] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[15:18:05] [Server thread/INFO]: [Essentials] No kits found to migrate.
[15:18:05] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[15:18:05] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[15:18:05] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[15:18:05] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[15:18:05] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[15:18:05] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[15:18:05] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[15:18:05] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[15:18:05] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[15:18:05] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[15:18:05] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[15:18:05] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[15:18:05] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[15:18:05] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[15:18:05] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[15:18:05] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[15:18:05] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[15:18:05] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[15:18:05] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[15:18:05] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[15:18:05] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[15:18:05] [Server thread/INFO]: [Essentials] Selected Legacy Biome Name Provider as the provider for BiomeNameProvider
[15:18:05] [Server thread/INFO]: [Essentials] Selected 1.21.4+ Sync Commands Provider as the provider for SyncCommandsProvider
[15:18:05] [Server thread/INFO]: [Essentials] Loaded 43880 items from items.json.
[15:18:05] [Server thread/INFO]: [Essentials] Using locale nl
[15:18:06] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[15:18:06] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[15:18:06] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[15:18:06] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[15:18:06] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[15:18:06] [Server thread/INFO]: [Votifier] Loaded token for website: default
[15:18:06] [Server thread/INFO]: [Votifier] ------------------------------------------------------------------------------
[15:18:06] [Server thread/INFO]: [Votifier] Your Votifier port is less than 0, so we assume you do NOT want to start the
[15:18:06] [Server thread/INFO]: [Votifier] votifier port server! Votifier will not listen for votes over any port, and
[15:18:06] [Server thread/INFO]: [Votifier] will only listen for pluginMessaging forwarded votes!
[15:18:06] [Server thread/INFO]: [Votifier] ------------------------------------------------------------------------------
[15:18:06] [Server thread/INFO]: [Votifier] Receiving votes over PluginMessaging channel 'nuvotifier:votes'.
[15:18:06] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.111.0
[15:18:06] [Server thread/WARN]: [ShopGUIPlus] Error occurred when loading specialElements > balance  (config.yml), item not loaded: No item specified
[15:18:06] [Server thread/INFO]: [PvPManager] Enabling PvPManager v4.1.16
[15:18:06] [Server thread/INFO]: [PvPManager] Using player nametags: false
[15:18:06] [Server thread/INFO]: [PvPManager] Connected to SQLITE database successfully
[15:18:06] [Server thread/INFO]: [PvPManager] Players stored: 351
[15:18:06] [Server thread/INFO]: [PvPManager] WorldGuard Found! Enabling Support For WorldGuard Regions
[15:18:06] [Server thread/INFO]: [WorldGuard] Registering session handler me.chancesd.pvpmanager.ds
[15:18:06] [Server thread/INFO]: [PvPManager] Essentials Found! Hooked successfully
[15:18:06] [Server thread/INFO]: [PvPManager] Vault Found! Using it for currency related features
[15:18:06] [Server thread/INFO]: [PvPManager] PlaceholderAPI Found! Hooked successfully
[15:18:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pvpmanager [4.1.16]
[15:18:06] [Server thread/INFO]: [PvPManager] GriefPrevention Found! Enabling borders and checking conflicting settings
[15:18:06] [Server thread/WARN]: [PvPManager] GriefPrevention has some combat features without showing any feedback messages. Make sure to set PunishLogout to false and set CombatTimeoutSeconds to 0 seconds in GP config. Conflicts with those features often get wrongly blamed on PvPManager due to lack of GP feedback messages.
[15:18:06] [Server thread/INFO]: [PvPManager] TAB Found! Using TAB to change nametags instead of scoreboards
[15:18:06] [Server thread/INFO]: [PvPManager] NPC spawning is supported in this version! (v1_21_R5)
[15:18:06] [Server thread/INFO]: [PvPManager] Auto Respawn is supported in this version! Using 1.15+ gamerules
[15:18:06] [Server thread/INFO]: [PvPManager] Starting border task with radius 6 and rate of 150ms
[15:18:06] [Server thread/INFO]: [PvPManager] PvPManager v4.1.16 enabled (214 ms)
[15:18:06] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.15.3
[15:18:06] [Server thread/INFO]: [NBTAPI] Checking bindings...
[15:18:06] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[15:18:06] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[15:18:06] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[15:18:06] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[15:18:06] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.13
[15:18:06] [Server thread/INFO]: [BetterRTP] Respecting `GriefPrevention` was SUCCESSFULLY registered
[15:18:06] [Server thread/INFO]: [BetterRTP] Cooldown = 3600
[15:18:06] [Server thread/INFO]: [BetterRTP] Loading Overrides...
[15:18:06] [Server thread/INFO]: [BetterRTP] - Override 'spawn' -> 'world' added
[15:18:06] [Server thread/INFO]: [BetterRTP] Loading World Types...
[15:18:06] [Server thread/INFO]: [BetterRTP] - World Type for 'world' set to 'NORMAL'
[15:18:06] [Server thread/INFO]: [BetterRTP] - World Type for 'world_nether' set to 'NETHER'
[15:18:06] [Server thread/INFO]: [BetterRTP] - World Type for 'world_the_end' set to 'NORMAL'
[15:18:06] [Server thread/INFO]: [BetterRTP] - World Type for 'pvp-arena' set to 'NORMAL'
[15:18:06] [Server thread/INFO]: [BetterRTP] Loading Defaults...
[15:18:06] [Server thread/INFO]: [BetterRTP] - UseWorldBorder: true
[15:18:06] [Server thread/INFO]: [BetterRTP] - CenterX: 0
[15:18:06] [Server thread/INFO]: [BetterRTP] - CenterZ: 0
[15:18:06] [Server thread/INFO]: [BetterRTP] - MaxRadius: 3000
[15:18:06] [Server thread/INFO]: [BetterRTP] - MinRadius: 1000
[15:18:06] [Server thread/INFO]: [BetterRTP] - Price: 0
[15:18:06] [Server thread/INFO]: [BetterRTP] - MinY: 0
[15:18:06] [Server thread/INFO]: [BetterRTP] - MaxY: 320
[15:18:06] [Server thread/INFO]: [BetterRTP] - Cooldown (default): 3600
[15:18:06] [Server thread/INFO]: [BetterRTP] Loading Custom Worlds...
[15:18:07] [Server thread/ERROR]: [BetterRTP] The particle 'EXPLOSION_NORMAL' created a fatal error when loading particles! Your MC version isn't supported!
[15:18:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.13]
[15:18:07] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.10.1
[15:18:07] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[15:18:07] [Server thread/INFO]: [ajLeaderboards] Loaded 5 boards
[15:18:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.10.1]
[15:18:07] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[15:18:07] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.10.1 by ajgeiss0702 enabled!
[15:18:07] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.40
[15:18:07] [Server thread/INFO]: [VoidSpawn] Enabling VoidSpawn v1.22.0
[15:18:07] [Server thread/INFO]: [VoidSpawn] No SkyBlock plugins found, disabling island mode support.
[15:18:07] [Server thread/INFO]: [VoidSpawn] v1.22.0 by EnderCrest enabled
[15:18:07] [Server thread/INFO]: [GSit] Enabling GSit v3.0.1
[15:18:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [3.0.1]
[15:18:07] [Server thread/INFO]: [WorldGuard] Registering session handler dev.geco.gsit.link.worldguard.RegionFlagHandler
[15:18:07] [Server thread/INFO]: [CozyCraft] De plugin is succesvol ingeschakeld.
[15:18:07] [Server thread/INFO]: [CozyCraft] Linken met PlaceholderAPI succesvol!
[15:18:07] [Server thread/INFO]: [CozyCraft] Linken met WorldGuard succesvol!
[15:18:07] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.40-SNAPSHOT (build 3987)
[15:18:07] [Server thread/INFO]: [Citizens] Detected system language [[nl]]. If you'd like you can contribute to Citizens translations via our Discord! https://discord.gg/Q6pZGSR
[15:18:08] [Server thread/INFO]: [Citizens] Loaded 1 templates.
[15:18:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizens [1.0.0]
[15:18:08] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[15:18:08] [Server thread/INFO]: [UltraCosmetics] Enabling UltraCosmetics v3.14-RELEASE
[15:18:08] [Server thread/INFO]: [UltraCosmetics] Checking for update...
[15:18:08] [Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[15:18:08] [Server thread/INFO]: [UltraCosmetics] Thanks for using UltraCosmetics! Version: 3.14-RELEASE (commit 40f8ef9)
[15:18:08] [Server thread/INFO]: [UltraCosmetics] Plugin by Datatags. Original Author: iSach
[15:18:08] [Server thread/INFO]: [UltraCosmetics] Link: https://bit.ly/UltraCosmetics
[15:18:08] [Server thread/INFO]: [UltraCosmetics] Initializing module v1_21 (expected version: 1.21.10)
[15:18:08] [Server thread/INFO]: [UltraCosmetics] Loading NMS-less mode...
[15:18:08] [Server thread/INFO]: [UltraCosmetics] Loaded NMS-less mode
[15:18:08] [Server thread/INFO]: [UltraCosmetics] Paper-specific features enabled
[15:18:09] [Server thread/INFO]: [UltraCosmetics] 
[15:18:09] [Server thread/WARN]: [UltraCosmetics] Morphs require Lib's Disguises, but it is not installed. Morphs will be disabled.
[15:18:09] [Server thread/INFO]: [UltraCosmetics] 
[15:18:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultracosmetics [3.14-RELEASE]
[15:18:09] [Server thread/INFO]: [UltraCosmetics] Hooked into PlaceholderAPI
[15:18:09] [Server thread/INFO]: [WorldGuard] Registering session handler be.isach.ultracosmetics.worldguard.FlagManager
[15:18:09] [Server thread/INFO]: [UltraCosmetics] 
[15:18:09] [Server thread/INFO]: [UltraCosmetics] WorldGuard custom flags enabled
[15:18:09] [Server thread/INFO]: [UltraCosmetics] 
[15:18:09] [Server thread/INFO]: [UltraCosmetics] Hooked into Vault:EssentialsX Economy for economy.
[15:18:09] [Server thread/INFO]: [UltraCosmetics] 
[15:18:09] [Server thread/INFO]: [UltraCosmetics] 
[15:18:09] [Server thread/INFO]: [UltraCosmetics] UltraCosmetics successfully finished loading in 1278ms!
[15:18:09] [Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[15:18:09] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v2.2
[15:18:09] [Server thread/INFO]: [AuctionHouse] AuctionHouse has been enabled!
[15:18:09] [Server thread/INFO]: [EpicRename] Enabling EpicRename v3.12.2
[15:18:09] [Server thread/INFO]: [EpicRename] [CheckServerVersion] Server running 1.20.5 or newer. Hex color code support has been enabled.
[15:18:09] [Server thread/INFO]: [EpicRename] Version: 3.12.2 MC Version: ONE_DOT_TWENTY_DOT_FIVE_OR_NEWER
[15:18:09] [Server thread/INFO]: [EpicRename] This plugin is Copyright (c) 2025 Justin "JustBru00" Brubaker. This plugin is licensed under the MPL v2.0. You can view a copy of the MPL v2.0 license at: http://bit.ly/2eMknxx
[15:18:09] [Server thread/INFO]: [EpicRename] Starting to enable plugin...
[15:18:09] [PvPManager Worker Thread - 0/INFO]: PvP ➤ Update available: 4.1.28 Current version: 4.1.16
[15:18:09] [PvPManager Worker Thread - 0/INFO]: PvP ➤ Follow the link to download: https://www.spigotmc.org/resources/pvpmanager.10610
[15:18:09] [Server thread/INFO]: [EpicRename] Prefix set to: '[EpicRename] '
[15:18:09] [Server thread/INFO]: [EpicRename] Plugin Enabled!
[15:18:09] [Server thread/INFO]: [ServerListPlus] Enabling ServerListPlus v3.5.0
[15:18:09] [Server thread/INFO]: [ServerListPlus] [Core] Reloading configuration...
[15:18:09] [Server thread/INFO]: [ServerListPlus] [Core] Loaded configuration: ServerStatusConf
[15:18:09] [Server thread/INFO]: [ServerListPlus] [Core] Loaded configuration: PluginConf
[15:18:09] [Server thread/INFO]: [ServerListPlus] [Core] Loaded configuration: BukkitConf
[15:18:09] [Server thread/WARN]: [ServerListPlus] [Core] Configuration is not enabled, nothing will be changed on the server! Please execute /slp enable to enable the configuration.
[15:18:09] [Server thread/INFO]: [ServerListPlus] [Core] Reloading saved player identities...
[15:18:09] [pool-82-thread-1/INFO]: [ajLeaderboards] You are up to date! (2.10.1)
[15:18:09] [Server thread/INFO]: [ServerListPlus] Successfully loaded!
[15:18:09] [Server thread/INFO]: [ServerListPlus] ServerListPlus v3.5.0 enabled.
[15:18:09] [Server thread/INFO]: [KitsX] Enabling KitsX v1.0-RELEASE
[15:18:09] [Server thread/INFO]: [KitsX] Economy support enabled via EssentialsX Economy
[15:18:09] [Server thread/INFO]: [KitsX] Loaded 2 kits!
[15:18:09] [Server thread/INFO]: [KitsX] KitsX has been enabled!
[15:18:09] [Server thread/INFO]: [KitsX] Economy support enabled!
[15:18:09] [Server thread/INFO]: [NPCSpawner] Enabling NPCSpawner v1.0.0
[15:18:09] [Server thread/INFO]: [NPCSpawner] ℹ️ No NPCs found in YAML file
[15:18:09] [Server thread/INFO]: [NPCSpawner] NPCSpawner has been enabled!
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Enabling CrazyVouchers v5.1.4
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Cannot extract users.yml to plugins/CrazyVouchers/users.yml, because it already exists.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Cannot extract data.yml to plugins/CrazyVouchers/data.yml, because it already exists.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Cannot extract folder codes to plugins/CrazyVouchers, because it already exists @ plugins/CrazyVouchers/codes.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Cannot extract folder Starter-Money.yml to plugins/CrazyVouchers/codes, because it already exists @ plugins/CrazyVouchers/codes/Starter-Money.yml.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Cannot extract folder vouchers to plugins/CrazyVouchers, because it already exists @ plugins/CrazyVouchers/vouchers.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Cannot extract folder PlayerHead.yml to plugins/CrazyVouchers/vouchers, because it already exists @ plugins/CrazyVouchers/vouchers/PlayerHead.yml.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Cannot extract folder money.yml to plugins/CrazyVouchers/vouchers, because it already exists @ plugins/CrazyVouchers/vouchers/money.yml.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Cannot extract folder Example.yml to plugins/CrazyVouchers/vouchers, because it already exists @ plugins/CrazyVouchers/vouchers/Example.yml.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Cannot extract folder Example-Arg.yml to plugins/CrazyVouchers/vouchers, because it already exists @ plugins/CrazyVouchers/vouchers/Example-Arg.yml.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Successfully deleted path plugins/CrazyVouchers/examples/vouchers/PlayerHead.yml, re-generating the examples later.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Successfully deleted path plugins/CrazyVouchers/examples/vouchers/Example.yml, re-generating the examples later.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Successfully deleted path plugins/CrazyVouchers/examples/vouchers/Example-Arg.yml, re-generating the examples later.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Successfully deleted path plugins/CrazyVouchers/examples/vouchers.yml, re-generating the examples later.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Successfully deleted path plugins/CrazyVouchers/examples/vouchers, re-generating the examples later.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Successfully deleted path plugins/CrazyVouchers/examples/users.yml, re-generating the examples later.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Successfully deleted path plugins/CrazyVouchers/examples/locale/en-US.yml, re-generating the examples later.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Successfully deleted path plugins/CrazyVouchers/examples/locale, re-generating the examples later.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Successfully deleted path plugins/CrazyVouchers/examples/data.yml, re-generating the examples later.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Successfully deleted path plugins/CrazyVouchers/examples/config.yml, re-generating the examples later.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Successfully deleted path plugins/CrazyVouchers/examples/codes/Starter-Money.yml, re-generating the examples later.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Successfully deleted path plugins/CrazyVouchers/examples/codes.yml, re-generating the examples later.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Successfully deleted path plugins/CrazyVouchers/examples/codes, re-generating the examples later.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Successfully deleted path plugins/CrazyVouchers/examples, re-generating the examples later.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Cannot extract codes.yml to plugins/CrazyVouchers/examples/codes.yml, because it already exists.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Cannot extract vouchers.yml to plugins/CrazyVouchers/examples/vouchers.yml, because it already exists.
[15:18:09] [Server thread/INFO]: [CrazyVouchers] Done (21.942s)
[15:18:09] [Server thread/INFO]: [UltimateRewards] Enabling UltimateRewards v2.13.3
[15:18:09] [Server thread/INFO]: [UltimateRewards] Initializing database pool with mysql...
[15:18:09] [Server thread/INFO]: [eu.athelion.ultimaterewards.shaded.hikari.HikariDataSource] UltimateRewards-Pool - Starting...
[15:18:09] [Server thread/INFO]: [eu.athelion.ultimaterewards.shaded.hikari.HikariDataSource] UltimateRewards-Pool - Start completed.
[15:18:10] [Server thread/INFO]: [UltimateRewards] Successfully connected to MySQL v11.4.8-MariaDB-deb12-log database!
[15:18:10] [Server thread/INFO]: [UltimateRewards] Extracting table columns took 15ms
[15:18:10] [Server thread/INFO]: [UltimateRewards] Preparing alter table statements took 18ms
[15:18:10] [Server thread/INFO]: [UltimateRewards] Executing alter table statements took 0ms
[15:18:10] [Server thread/INFO]: [UltimateRewards] EssentialsHook has been registered.
[15:18:10] [Server thread/INFO]: [UltimateRewards] VotifierHook has been registered.
[15:18:10] [Server thread/INFO]: [UltimateRewards] VaultHook has been registered.
[15:18:10] [Server thread/INFO]: [UltimateRewards] WorldGuardHook has been registered.
[15:18:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimaterewards [2.13.3]
[15:18:10] [Server thread/INFO]: [UltimateRewards] PlaceholderApiPreRegister has been registered.
[15:18:10] [Server thread/INFO]: [UltimateRewards] Loaded 0 scheduled and 0 repeatable tasks!
[15:18:10] [Server thread/INFO]: [UltimateRewards] Loading rewards...
[15:18:10] [Server thread/INFO]: [UltimateRewards] 12 rewards have been loaded from rewards folder!
[15:18:10] [Server thread/INFO]: [UltimateRewards] Loading guis...
[15:18:10] [Server thread/INFO]: [ShopGUIPlusSilkSpawnersBridge] Enabling ShopGUIPlusSilkSpawnersBridge v1.10.1
[15:18:10] [Server thread/INFO]: [SilkSpawners] WorldGuard was found and support is enabled
[15:18:10] [Server thread/INFO]: [SilkSpawners] Mimic was not found and support is disabled
[15:18:10] [Server thread/INFO]: [SilkSpawners] Loading support for v1_21_R5
[15:18:10] [Server thread/INFO]: [ShopGUIPlus] Registered spawners support for SilkSpawners.
[15:18:10] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v23.0
[15:18:10] [Server thread/INFO]: [CoreProtect] CoreProtect Community Edition has been successfully enabled! 
[15:18:10] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[15:18:10] [Server thread/INFO]: --------------------
[15:18:10] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[15:18:10] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[15:18:10] [Server thread/INFO]: --------------------
[15:18:10] [Server thread/INFO]: [OpenAudioMc] Enabling OpenAudioMc v6.10.15
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Starting OpenAudioMc, build 1552 by Mats
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Using the main config file..
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Starting configuration module
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Using the main config file..
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Starting configuration module
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Detected md_5 chat support, using default user adapter
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Skipped 46/46 migrations.
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] ModuleLoaderService: Loading modules from /home/container/plugins/OpenAudioMc/modules
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Using networking class com.craftmend.openaudiomc.spigot.modules.proxy.service.ProxyNetworkingService
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Initializing connection service...
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Starting authentication module
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] This server already has an account, skipping sign up.
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Adding spigot tables
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for Alias
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (alias<->Alias.java)
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for ClientDataStore
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (client_data_store<->ClientDataStore.java)
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for MojangProfile
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (mojang_profile<->MojangProfile.java)
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for RegionProperties
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (region_properties<->RegionProperties.java)
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for Speaker
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (speaker<->Speaker.java)
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for StoredWorldChunk
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (stored_world_chunk<->StoredWorldChunk.java)
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for TimedRegionProperties
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (timed_region_properties<->TimedRegionProperties.java)
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for MediaRule
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (media_rule<->MediaRule.java)
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Initializing account details
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Loading aliases...
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Loaded 0 aliases
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Enabling the 1.13 speaker system
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Starting redstone speaker tick task with interval 5 ticks
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for Playlist
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (playlists<->Playlist.java)
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for PlaylistEntry
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (playlist_entries<->PlaylistEntry.java)
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Loaded 0 media chunks from file.
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Loading static voice channels..
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Created static channel: survival
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Created static channel: off-topic
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Created static channel: staff-chat
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Created static channel: admin-chat
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Loaded 4 static voice channels
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Plugin Essentials is already enabled, running handler
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Plugin WorldGuard is already enabled, running handler
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Turns out you have WorldGuard installed! enabling regions and the region tasks..
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Scanning 0 regions for duplicates (out of 0 total regions)
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] No duplicate regions found, skipping cleanup...
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Plugin PlaceholderAPI is already enabled, running handler
[15:18:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: oa [1.0.0]
[15:18:10] [Server thread/INFO]: [OpenAudioMc] [info] Starting and loading took 22724MS
[15:18:10] [Server thread/INFO]: [FancyHolograms] Enabling FancyHolograms v2.8.0
[15:18:10] [FancyLogger/INFO]: [FancyHolograms] (Server thread) INFO: Successfully enabled FancyHolograms version 2.8.0
[15:18:10] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.2
[15:18:10] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[15:18:10] [Server thread/INFO]: [voicechat] Enabling voicechat v2.6.6
[15:18:10] [Server thread/INFO]: [voicechat] Initializing compatibility for version 1.21.8-R0.1
[15:18:10] [Server thread/INFO]: [voicechat] Compatibility version 20
[15:18:10] [Server thread/INFO]: [voicechat] Successfully initialized commodore command completion
[15:18:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: voicechat [2.6.6]
[15:18:10] [Server thread/INFO]: [voicechat] Successfully registered PlaceholderAPI expansion
[15:18:10] [Server thread/INFO]: [voicechat] Successfully added ViaVersion mappings
[15:18:10] [Server thread/INFO]: [ChatControl] Enabling ChatControl v11.6.0
[15:18:10] [Server thread/INFO]: [ChatControl]  ____ _  _ ____ ___ ____ ____ _  _ ___ ____ ____ _     
[15:18:10] [Server thread/INFO]: [ChatControl]  |    |__| |__|  |  |    |  | |\ |  |  |__/ |  | |    
[15:18:10] [Server thread/INFO]: [ChatControl]  |___ |  | |  |  |  |___ |__| | \|  |  |  \ |__| |___
[15:18:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatcontrol [11.6.0]
[15:18:11] [Server thread/INFO]: [ChatControl] Warning: No such localization: nl_NL in plugin's jar, using keys from the disk file or from the default English locale for keys that are missing.
[15:18:11] [Server thread/INFO]: [ChatControl] Note: Hooked into Essentials (set Tag.Backward_Compatible to enable nick support)
[15:18:11] [Server thread/INFO]: [ChatControl] Warning: TAB detected. Use %chatcontrol_player_nick_section%, %chatcontrol_player_prefix_section% and %chatcontrol_player_suffix_section% variables in groups.yml to ensure compatibility.
[15:18:11] [Server thread/INFO]:   
[15:18:11] [Server thread/INFO]: [ChatControl] For documentation & tutorial, see:
[15:18:11] [Server thread/INFO]: [ChatControl] https://docs.mineacademy.org/chatcontrol
[15:18:11] [Server thread/INFO]:   
[15:18:11] [Server thread/INFO]: [ChatControl] Loaded! Random joke: Never closes database connections #dailyLeaks #patched
[15:18:11] [Server thread/INFO]:   
[15:18:11] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.2
[15:18:11] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[15:18:11] [Server thread/INFO]: [RedstoneDetector] Enabling RedstoneDetector v0.3*
[15:18:11] [Server thread/INFO]: [VaultLeaderboards] Enabling VaultLeaderboards v1.1
[15:18:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: vaultleaderboards [1.1]
[15:18:11] [Server thread/INFO]: [VaultLeaderboards] Registered PlaceholderAPI placeholders.
[15:18:11] [Server thread/INFO]: [VaultLeaderboards] VaultLeaderboards enabled successfully!
[15:18:11] [Server thread/INFO]: [CozyTags] Enabling CozyTags v1.0
[15:18:11] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-AshenCoins - Starting...
[15:18:11] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-AshenCoins - Added connection com.mysql.cj.jdbc.ConnectionImpl@1dd6d138
[15:18:11] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-AshenCoins - Start completed.
[15:18:11] [Server thread/INFO]: [CozyTags] Hikari database pool initialized succesfully.
[15:18:11] [Server thread/INFO]: [CozyTags] Process SQL Tabellen succesvol gelukt
[15:18:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tags [1.0.0]
[15:18:11] [ForkJoinPool.commonPool-worker-1/INFO]: [CozyTags] Loading tag og -> &8[&#FF9B00&lOG&r&8]
[15:18:11] [ForkJoinPool.commonPool-worker-1/INFO]: [CozyTags] Ophalen tags succesvol gelukt
[15:18:11] [ForkJoinPool.commonPool-worker-2/INFO]: [CozyTags] Ophalen playerdata succesvol gelukt
[15:18:11] [Server thread/INFO]: [cozycraft] Enabling cozycraft v1.4.0
[15:18:11] [Server thread/INFO]: [cozycraft] CozyCraft is ingeschakeld!
[15:18:11] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v6.5.1
[15:18:11] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[15:18:11] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ExcellentCratesPool - Starting...
[15:18:11] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] ExcellentCratesPool - Added connection org.sqlite.jdbc4.JDBC4Connection@34544b32
[15:18:11] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ExcellentCratesPool - Start completed.
[15:18:11] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crate openings.
[15:18:11] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crate keys.
[15:18:11] [Server thread/INFO]: [ExcellentCrates] Loaded 3 rarities!
[15:18:12] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crates.
[15:18:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [6.5.1]
[15:18:12] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 538 ms!
[15:18:12] [Server thread/INFO]: [PL-Hide] Enabling PL-Hide v1.5.22
[15:18:12] [Server thread/INFO]: [UltimateTeams] Enabling UltimateTeams v4.7.2
[15:18:12] [Server thread/INFO]: [UltimateTeams] [ACF] Enabled Asynchronous Tab Completion Support!
[15:18:12] [Server thread/INFO]: [UltimateTeams] Initializing plugin config & locale files...
[15:18:12] [Server thread/INFO]: [UltimateTeams] Successfully initialized plugin config & locale files
[15:18:12] [Server thread/INFO]: [UltimateTeams] Initializing SQLite database connection...
[15:18:12] [Server thread/INFO]: [UltimateTeams] Database tables created
[15:18:12] [Server thread/INFO]: [UltimateTeams] Successfully initialized SQLite database connection
[15:18:12] [Server thread/INFO]: [UltimateTeams] Initializing commands...
[15:18:12] [Server thread/INFO]: [UltimateTeams] Successfully initialized commands
[15:18:12] [Server thread/INFO]: [UltimateTeams] Initializing events...
[15:18:12] [Server thread/INFO]: [UltimateTeams] Successfully initialized events
[15:18:12] [Server thread/INFO]: [UltimateTeams] Initializing teams...
[15:18:12] [Server thread/INFO]: [UltimateTeams] Successfully initialized teams
[15:18:12] [Server thread/INFO]: [UltimateTeams] Initializing ender chest backup manager...
[15:18:12] [Server thread/INFO]: [UltimateTeams] Loaded 52 ender chest backup entries.
[15:18:12] [Server thread/INFO]: [UltimateTeams] Successfully initialized ender chest backup manager
[15:18:12] [Server thread/INFO]: -------------------------------------------
[15:18:12] [Server thread/INFO]: UltimateTeams: PlaceholderAPI found!
[15:18:12] [Server thread/INFO]: [UltimateTeams] Initializing placeholderapi...
[15:18:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: UltimateTeams [4.7.2]
[15:18:12] [Server thread/INFO]: [UltimateTeams] Successfully initialized placeholderapi
[15:18:12] [Server thread/INFO]: UltimateTeams: External placeholders enabled!
[15:18:12] [Server thread/INFO]: -------------------------------------------
[15:18:12] [Server thread/INFO]: -------------------------------------------
[15:18:12] [Server thread/INFO]: UltimateTeams: FloodgateApi not found/feature disabled!
[15:18:12] [Server thread/INFO]: UltimateTeams: Bedrock support won't work!
[15:18:12] [Server thread/INFO]: -------------------------------------------
[15:18:12] [Server thread/INFO]: [UltimateTeams] Initializing metrics...
[15:18:12] [Server thread/INFO]: [UltimateTeams] Successfully initialized metrics
[15:18:12] [Server thread/INFO]: -------------------------------------------
[15:18:12] [Server thread/INFO]: UltimateTeams: Plugin by: xF3d3
[15:18:12] [Server thread/INFO]: UltimateTeams: Contributors: dei0 (TeamEnderChest)
[15:18:12] [Server thread/INFO]: UltimateTeams: Version: 4.7.2
[15:18:12] [Server thread/INFO]: UltimateTeams: Successfully enabled!
[15:18:12] [Server thread/INFO]: -------------------------------------------
[15:18:12] [Server thread/INFO]: [XPad] Enabling XPad v1.4.0
[15:18:12] [Server thread/INFO]: [XPAD] v1.4.0 Enabled!
[15:18:12] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.7.8
[15:18:12] [Server thread/INFO]: [InventoryRollbackPlus] Attempting support for version: 1.21.8-33-77b0097 (MC: 1.21.8)
[15:18:12] [Server thread/INFO]: [InventoryRollbackPlus] Using CraftBukkit version: v1_21_R5
[15:18:12] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
[15:18:12] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[15:18:12] [Server thread/INFO]: [InventoryRollbackPlus] Tests completed: 5, Skipped: 0, Failed: 0
[15:18:12] [Server thread/INFO]: [InventoryRollbackPlus] All tests passed successfully.
[15:18:12] [Server thread/INFO]: [DiscordBridge] Enabling DiscordBridge v1.0.0
[15:18:12] [Server thread/INFO]: [DiscordBridge] UltimateTeams TeamChat hook geregistreerd.
[15:18:12] [Server thread/INFO]: [DiscordBridge] Minecraft->Discord Server is ingeschakeld.
[15:18:12] [ForkJoinPool.commonPool-worker-2/WARN]: [UltimateTeams] A new version of UltimateTeams is available: v4.8.2 (running v4.7.2)
[15:18:13] [Server thread/INFO]: [spark] Starting background profiler...
[15:18:13] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[15:18:13] [Server thread/INFO]: Done preparing level "world" (11.412s)
[15:18:13] [Server thread/INFO]: Running delayed init tasks
[15:18:13] [Craft Scheduler Thread - 4 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[15:18:13] [Craft Scheduler Thread - 5 - Essentials/INFO]: [Essentials] Versie-informatie ophalen...
[15:18:13] [Craft Scheduler Thread - 4 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[15:18:13] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[15:18:13] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[15:18:13] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.GriefPreventionFeature] Plugin 'GriefPrevention' found. Using it now.
[15:18:13] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'GriefPrevention'
[15:18:13] [Craft Scheduler Thread - 9 - Vault/INFO]: [Vault] Checking for Updates ... 
[15:18:13] [Craft Scheduler Thread - 12 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:world configured and loaded!
[15:18:13] [Craft Scheduler Thread - 14 - BetterRTP/INFO]: [BetterRTP] Database CHUNK_DATA:ChunkData configured and loaded!
[15:18:13] [Craft Scheduler Thread - 12 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:spawn configured and loaded!
[15:18:13] [Craft Scheduler Thread - 10 - BetterRTP/INFO]: [BetterRTP] Database PLAYERS:Players configured and loaded!
[15:18:13] [Server thread/INFO]: [SilkSpawners] Result from AutoUpdater is: NO_UPDATE
[15:18:13] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[15:18:13] [Craft Scheduler Thread - 16 - BetterRTP/INFO]: [BetterRTP] Database QUEUE:Queue configured and loaded!
[15:18:13] [Craft Scheduler Thread - 4 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] You are running the latest version.
[15:18:13] [Craft Scheduler Thread - 9 - Vault/INFO]: [Vault] No new version available
[15:18:13] [Server thread/INFO]: [CoreProtect] FastAsyncWorldEdit logging successfully initialized.
[15:18:13] [Craft Scheduler Thread - 11 - UltimateTeams/INFO]: Loaded 41 teams!
[15:18:13] [Craft Scheduler Thread - 15 - UltraCosmetics/INFO]: [UltraCosmetics] You are running the latest version on Spigot.
[15:18:13] [Server thread/WARN]: [ExcellentCrates] 
********** PROBLEM REPORT **********
> Subject: &6&k|&r&e&lLOYAL CRATE&6&k|
> Path: plugins/ExcellentCrates/crates/loyal.yml
> Found Problems (1):
└── Problems in '1_week__royal' reward.
    └── No commands defined.
***********************************

[15:18:13] [Server thread/INFO]: UltimateTeams: Cleared all outstanding team invites!
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.111.0 ]================================
[15:18:13] [Server thread/INFO]: [ShopGUIPlus]  
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] Need help using ShopGUI+? Check out our Wiki or Join our Discord Support server!
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] https://docs.brcdev.net/ & https://discord.brcdev.net/
[15:18:13] [Server thread/INFO]: [ShopGUIPlus]  
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] Using SilkSpawners for spawners support.
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] Loaded 12 main menu items.
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'decoration' with 119 items.
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'ores' with 28 items.
[15:18:13] [Craft Scheduler Thread - 2 - UltimateRewards/INFO]: [UltimateRewards] There is a new v2.13.5 update available (You are running v2.13.3).
Outdated versions are no longer supported, get the latest one here: https://bit.ly/ultimate-rewards
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks' with 57 items.
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'mobdrops' with 25 items.
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'misc' with 43 items.
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'redstone' with 19 items.
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'heads' with 140 items.
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'wood' with 33 items.
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'tools' with 15 items.
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'spawners' with 16 items.
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'colours' with 130 items.
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'farmfood' with 42 items.
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] Loaded 12 shops with total of 667 items.
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] Loaded 7 sounds.
[15:18:13] [Server thread/INFO]: [ShopGUIPlus]  
[15:18:13] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[15:18:14] [Server thread/INFO]: [Citizens] 24 NPCs geladen.
[15:18:14] [Server thread/INFO]: ---------------------------------------------------------------------
[15:18:14] [Server thread/INFO]:  
[15:18:14] [Server thread/INFO]: Pl-Hide ▎ Update available: 2.0.5. You are on 1.5.22!
[15:18:14] [Server thread/INFO]:  
[15:18:14] [Server thread/INFO]: ---------------------------------------------------------------------
[15:18:14] [Server thread/INFO]: Done (34.902s)! For help, type "help"
[15:18:14] [Server thread/INFO]: [voicechat] Loading plugins
[15:18:14] [Server thread/INFO]: [voicechat] Loaded 0 plugin(s)
[15:18:14] [Server thread/INFO]: [voicechat] Initializing plugins
[15:18:14] [Server thread/INFO]: [voicechat] Initialized 0 plugin(s)
[15:18:14] [Server thread/WARN]: [voicechat] Running in offline mode - Voice chat encryption is not secure!
[15:18:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.9]
[15:18:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[15:18:14] [VoiceChatServerThread/INFO]: [voicechat] Voice chat server started at 0.0.0.0:25565
[15:18:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[15:18:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.2]
[15:18:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[15:18:14] [Server thread/INFO]: 5 placeholder hook(s) registered!
[15:18:14] [User Authenticator #2/INFO]: UUID of player PzneRSW is ac73753f-c938-49df-bb94-dc974f1c96e8
[15:18:14] [User Authenticator #0/INFO]: UUID of player yuqiixi is 26972ee3-27c0-4d9d-9c1d-0086d382c99c
[15:18:14] [User Authenticator #3/INFO]: UUID of player PzneRSW is ac73753f-c938-49df-bb94-dc974f1c96e8
[15:18:14] [User Authenticator #1/INFO]: UUID of player Jornjos1 is 2644f23a-1959-4b47-87fc-bcf2311a525b
[15:18:14] [Server thread/INFO]: [HorriblePlayerLoginEventHack] You have plugins listening to the PlayerLoginEvent, this will cause re-configuration APIs to be unavailable: [LuckPerms, Essentials, PL-Hide, GriefPrevention, ProtocolLib, WorldGuard]
[15:18:14] [Server thread/INFO]: yuqiixi (/77.171.54.78:35305) lost connection: Disconnected
[15:18:14] [Server thread/INFO]: PzneRSW (/77.160.184.86:45689) lost connection: Disconnected
[15:18:15] [Server thread/INFO]: PzneRSW[/77.160.184.86:39175] logged in with entity id 427 at ([world]928.6697289044286, 8.0, 542.5760346928491)
[15:18:15] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel standard in mode write
[15:18:15] [Server thread/INFO]: [ChatControl] TIP: Player PzneRSW is already in channel 'standard' in mode read, not adding.
[15:18:15] [Server thread/INFO]: [+] [Streamer]  PzneRSW
[15:18:15] [Server thread/INFO]: [CozyTags] TOEVOEGEN SPELER + 2644f23a-1959-4b47-87fc-bcf2311a525b
[15:18:15] [Server thread/INFO]: Jornjos1[/80.57.206.82:53755] logged in with entity id 428 at ([world]1425.3736899133728, 62.9375, 1824.1237208266023)
[15:18:15] [Server thread/INFO]: [+] Jornjos1
[15:18:15] [Server thread/INFO]: [ChatControl] TIP: Joining Jornjos1 to channel standard in mode write due to 'chatcontrol.channel.autojoin.standard.write' permission.  We won't join him again when he leaves channel manually.
[15:18:15] [Craft Scheduler Thread - 6 - BetterRTP/INFO]: [BetterRTP] Attempting to queue up some more safe locations...
[15:18:16] [Server thread/WARN]: [BetterRTP] Seems like the world `spawn` does not have a `WorldType` declared. Please add/fix this in the config.yml file! This world will be treated as an overworld! If this world is a nether world, configure it to NETHER (example: `- spawn: NETHER`
[15:18:19] [User Authenticator #1/INFO]: UUID of player yuqiixi is 26972ee3-27c0-4d9d-9c1d-0086d382c99c
[15:18:20] [Server thread/INFO]: yuqiixi[/77.171.54.78:33127] logged in with entity id 1153 at ([world]-1249.3838907963086, 82.88043770675931, -630.6035383292411)
[15:18:20] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel standard in mode write
[15:18:20] [Server thread/INFO]: [ChatControl] TIP: Player yuqiixi is already in channel 'standard' in mode read, not adding.
[15:18:20] [Server thread/INFO]: [voicechat] Received secret request of yuqiixi (20)
[15:18:20] [Server thread/INFO]: [voicechat] Sent secret to yuqiixi
[15:18:20] [Server thread/INFO]: [+] [JR.MOD] yuqiixi
[15:18:25] [User Authenticator #1/INFO]: UUID of player eeJack is 3fe018c8-526e-455a-a4da-e91caec7197d
[15:18:26] [Server thread/INFO]: eeJack[/213.93.32.197:52541] logged in with entity id 1915 at ([world]12139.307241491495, 63.0, -3365.2249227241628)
[15:18:26] [Server thread/INFO]: [voicechat] Received secret request of eeJack (20)
[15:18:26] [Server thread/INFO]: [voicechat] Sent secret to eeJack
[15:18:26] [Server thread/INFO]: [+] eeJack
[15:18:26] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel standard in mode write
[15:18:26] [Server thread/INFO]: [ChatControl] TIP: Player eeJack is already in channel 'standard' in mode read, not adding.
[15:18:31] [User Authenticator #1/INFO]: UUID of player xFanuel is 07afc97f-103b-4766-9774-5a364618fc10
[15:18:31] [Server thread/INFO]: xFanuel[/83.84.17.201:42901] logged in with entity id 2210 at ([world]5364.490806717573, 72.0, -4374.819779521784)
[15:18:31] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel standard in mode write
[15:18:31] [Server thread/INFO]: [ChatControl] TIP: Player xFanuel is already in channel 'standard' in mode read, not adding.
[15:18:31] [Server thread/INFO]: [+] xFanuel
[15:18:32] [Server thread/INFO]: Named entity Salmon['x4 Salmon'/1445, uuid='259f0cf1-e7e4-4375-b531-d06116ff6a30', l='ServerLevel[world]', x=-1302.10, y=26.00, z=-698.94, cpos=[-82, -44], tl=142, v=true] died: x4 Salmon discovered the floor was lava
[15:18:35] [User Authenticator #1/INFO]: UUID of player sparkie0704 is 0aa4c505-8d9a-4b65-ac3f-78670e345cde
[15:18:35] [Server thread/INFO]: sparkie0704[/77.167.60.98:34047] logged in with entity id 2827 at ([world]5435.930217104501, 70.0, -4331.725409256548)
[15:18:35] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel standard in mode write
[15:18:35] [Server thread/INFO]: [ChatControl] TIP: Player sparkie0704 is already in channel 'standard' in mode read, not adding.
[15:18:36] [User Authenticator #1/INFO]: UUID of player LuckyLuke_ is e5c25f49-4652-458a-8d23-137ae211a512
[15:18:36] [Server thread/INFO]: LuckyLuke_[/217.121.37.164:38099] logged in with entity id 2883 at ([spawn]10.145908329259106, 62.0, 12.34907727672526)
[15:18:36] [Server thread/INFO]: [ChatControl] TIP Alert: Supposed to add LuckyLuke_ to channel 'ranged' which is not installed on this server, skipping
[15:18:36] [Server thread/INFO]: [ChatControl] TIP Alert: Supposed to add LuckyLuke_ to channel 'helpop' which is not installed on this server, skipping
[15:18:36] [Server thread/INFO]: [ChatControl] TIP Alert: Supposed to add LuckyLuke_ to channel 'admin' which is not installed on this server, skipping
[15:18:36] [Server thread/INFO]: [ChatControl] TIP Alert: Supposed to add LuckyLuke_ to channel 'global' which is not installed on this server, skipping
[15:18:36] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel standard in mode write
[15:18:36] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel staff in mode read
[15:18:36] [Server thread/INFO]: [ChatControl] TIP: Player LuckyLuke_ is already in channel 'standard' in mode read, not adding.
[15:18:36] [Server thread/INFO]: [ChatControl] TIP: Player LuckyLuke_ is already in channel 'staff' in mode read, not adding.
[15:18:37] [Server thread/INFO]: eeJack issued server command: /shop
[15:18:41] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.8! Trying to find NMS support
[15:18:41] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R5' loaded!
[15:18:41] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'ShopGUIPlus' to create a bStats instance!
[15:18:46] [User Authenticator #1/INFO]: UUID of player EatingLittleKids is 28f2aa7c-ff6e-4904-b5ce-95b7b7b52c6e
[15:18:46] [Server thread/INFO]: EatingLittleKids[/145.53.170.89:43375] logged in with entity id 3385 at ([world]89.49878031537662, 64.0, 594.3138693668357)
[15:18:46] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel standard in mode write
[15:18:46] [Server thread/INFO]: [ChatControl] TIP: Player EatingLittleKids is already in channel 'standard' in mode read, not adding.
[15:18:47] [Server thread/INFO]: [ShopGUIPlus] eeJack bought 4 x Vine for $5 from decoration shop
[15:18:50] [Server thread/INFO]: sparkie0704 issued server command: /shop
[15:18:55] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:18:55] [Server thread/INFO]: xFanuel issued server command: /gold
[15:18:57] [Server thread/INFO]: xFanuel issued server command: /shop
[15:18:59] [Server thread/INFO]: xFanuel issued server command: /shop
[15:18:59] [Server thread/INFO]: Jornjos1 lost connection: Disconnected
[15:18:59] [Server thread/INFO]: [voicechat] Disconnecting client Jornjos1
[15:19:00] [Server thread/INFO]: [ShopGUIPlus] sparkie0704 bought 64 x Redstone Block for $2,102.4 from ores shop
[15:19:01] [Server thread/INFO]: Named entity TropicalFish['x2 Tropical Fish'/2095, uuid='6780ec32-89bc-4cc3-9e0e-f22cc5d5ade1', l='ServerLevel[world]', x=1403.33, y=14.00, z=1641.75, cpos=[87, 102], tl=97, v=true] died: x2 Tropical Fish discovered the floor was lava
[15:19:02] [Server thread/INFO]: [ShopGUIPlus] sparkie0704 bought 64 x Redstone Block for $2,102.4 from ores shop
[15:19:03] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:19:07] [Server thread/INFO]: [ShopGUIPlus] xFanuel bought 64 x Gold Ingot for $4,784 from ores shop
[15:19:11] [Craft Scheduler Thread - 17 - BetterRTP/INFO]: [BetterRTP] Max attempts to create a Queue reached for default_spawn (amount: 0)
[15:19:11] [Craft Scheduler Thread - 17 - BetterRTP/INFO]: [BetterRTP] Queueing paused, max queue limit reached!
[15:19:15] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 64 x Baked Potato for $368 from farmfood shop
[15:19:37] [User Authenticator #1/INFO]: UUID of player ItsmeThomasX is a174a54e-f236-4acb-9510-8f49cdbb1d05
[15:19:37] [Server thread/INFO]: ItsmeThomasX[/83.84.17.201:57459] logged in with entity id 6313 at ([world]5354.727573426634, 72.0, -4365.4618716762325)
[15:19:37] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel standard in mode write
[15:19:37] [Server thread/INFO]: [ChatControl] TIP: Player ItsmeThomasX is already in channel 'standard' in mode read, not adding.
[15:19:37] [Server thread/INFO]: [+] ItsmeThomasX
[15:19:48] [Server thread/INFO]: PzneRSW issued server command: /home
[15:19:50] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:19:52] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:19:56] [Server thread/INFO]: ItsmeThomasX issued server command: /AH
[15:19:58] [Server thread/INFO]: ItsmeThomasX issued server command: /ah
[15:19:59] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 11 x Torch for $13.75 from decoration shop
[15:20:02] [Server thread/INFO]: ItsmeThomasX issued server command: /ah
[15:20:03] [Async Chat Thread - #1/INFO]: [standard] LuckyLuke_: d
[15:20:03] [Craft Scheduler Thread - 19 - ChatControl/INFO]: [ChatControl] Note: Not sending LuckyLuke_'s chat to spying players because he has 'chatcontrol.bypass.spy.chat' permission. Player messages with such permission are not spied on. To disable that, negate this permission (a false value if using LuckPerms). This message only shows once per 3 hours.
[15:20:04] [Server thread/INFO]: LuckyLuke_ issued server command: /tags
[15:20:06] [Async Chat Thread - #1/INFO]: [standard] LuckyLuke_: d
[15:20:11] [Server thread/INFO]: LuckyLuke_ issued server command: /tags
[15:20:13] [Async Chat Thread - #1/INFO]: [standard] LuckyLuke_: d
[15:20:23] [Async Chat Thread - #1/INFO]: [standard] ItsmeThomasX: d
[15:21:14] [User Authenticator #4/INFO]: UUID of player Superster is 2a7b01fb-26ac-4c68-967b-820f18b84ecd
[15:21:14] [Server thread/INFO]: [CozyTags] TOEVOEGEN SPELER + 2a7b01fb-26ac-4c68-967b-820f18b84ecd
[15:21:14] [Server thread/INFO]: Superster[/77.167.43.200:35303] logged in with entity id 9544 at ([world]-1390.3151154191144, 67.0, -667.4066807916327)
[15:21:14] [Server thread/INFO]: [+] ROYAL Superster
[15:21:14] [Server thread/INFO]: [ChatControl] TIP: Joining Superster to channel standard in mode write due to 'chatcontrol.channel.autojoin.standard.write' permission.  We won't join him again when he leaves channel manually.
[15:21:17] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:21:17] [Server thread/INFO]: [ShopGUIPlus] yuqiixi sold all 4 x Bone for $10 to mobdrops shop
[15:21:18] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:21:20] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:21:20] [Server thread/INFO]: [ShopGUIPlus] yuqiixi sold all 3 x Arrow for $21 to mobdrops shop
[15:21:23] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:21:23] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:21:24] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:21:25] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:21:27] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:21:41] [Server thread/INFO]: ItsmeThomasX issued server command: /homes
[15:21:41] [Server thread/WARN]: ItsmeThomasX moved too quickly! -13.916451249405327,113.0,20.637946199261023
[15:21:47] [Server thread/INFO]: xFanuel issued server command: /home
[15:21:56] [Server thread/INFO]: xFanuel lost connection: Disconnected
[15:21:56] [Server thread/INFO]: [voicechat] Disconnecting client xFanuel
[15:21:56] [Server thread/INFO]: [-] xFanuel
[15:22:07] [Server thread/INFO]: LuckyLuke_ issued server command: /tab parse EatingLittleKids %tags_tab%
[15:22:19] [Server thread/INFO]: PzneRSW issued server command: /home
[15:22:27] [Server thread/INFO]: Superster issued server command: /shop
[15:22:33] [Server thread/INFO]: [ShopGUIPlus] Superster bought 21 x Leather for $1,050 from mobdrops shop
[15:23:04] [Server thread/INFO]: LuckyLuke_ issued server command: /tab reload
[15:23:04] [Server thread/INFO]: [TAB] Disabled in 3ms
[15:23:04] [Server thread/INFO]: [TAB] Enabled in 20ms
[15:23:39] [Server thread/INFO]: LuckyLuke_ issued server command: /tab reload
[15:23:39] [Server thread/INFO]: [TAB] Disabled in 1ms
[15:23:39] [Server thread/INFO]: [TAB] Enabled in 12ms
[15:23:41] [Server thread/INFO]: PzneRSW issued server command: /home
[15:23:45] [Server thread/INFO]: LuckyLuke_ issued server command: /lp user LuckyLuke_ parent set developers
[15:23:45] [luckperms-worker-2/INFO]: [LuckPerms] [Messaging] Sending log with id: e4ed77a8-87b4-41e7-a2fc-3e8c91d75cd3
[15:23:45] [luckperms-command-executor/INFO]: [LP] LOG > (LuckyLuke_) [U] (luckyluke_)
[15:23:45] [luckperms-command-executor/INFO]: [LP] LOG > parent set developers
[15:23:45] [luckperms-worker-5/INFO]: [LuckPerms] [Messaging] Sending user ping for 'luckyluke_' with id: 168b637b-4484-4b7f-96e4-b47e06bef011
[15:23:46] [Async Chat Thread - #2/INFO]: [standard] LuckyLuke_: Oke
[15:23:52] [Async Chat Thread - #2/INFO]: [standard] LuckyLuke_: jullie krijgen key van me <3
[15:23:55] [Async Chat Thread - #2/INFO]: [standard] yuqiixi: echt
[15:23:56] [Async Chat Thread - #2/INFO]: [standard] yuqiixi: ik ook
[15:23:58] [Server thread/INFO]: LuckyLuke_ issued server command: /crate key giveall cozy_key 1
[15:24:00] [Async Chat Thread - #2/INFO]: [standard] ItsmeThomasX: Allemaal?
[15:24:00] [Server thread/INFO]: LuckyLuke_ issued server command: /gamemode creative
[15:24:03] [Async Chat Thread - #3/INFO]: [standard] LuckyLuke_: Allemaal ja
[15:24:10] [Async Chat Thread - #3/INFO]: [standard] EatingLittleKids: Danku!
[15:24:10] [Async Chat Thread - #3/INFO]: [standard] Superster: Aww lovee
[15:24:10] [User Authenticator #5/INFO]: UUID of player xFanuel is 07afc97f-103b-4766-9774-5a364618fc10
[15:24:10] [Server thread/INFO]: xFanuel[/83.84.17.201:59459] logged in with entity id 14462 at ([world]5356.0705868392615, 72.875, -4368.5059409741325)
[15:24:10] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel standard in mode write
[15:24:10] [Server thread/INFO]: [ChatControl] TIP: Player xFanuel is already in channel 'standard' in mode read, not adding.
[15:24:10] [Server thread/INFO]: [+] xFanuel
[15:24:11] [Async Chat Thread - #3/INFO]: [standard] PzneRSW: soldaatt
[15:24:11] [Async Chat Thread - #3/INFO]: [standard] yuqiixi: wtf
[15:24:12] [Async Chat Thread - #3/INFO]: [standard] LuckyLuke_: Ze zijn overigens digitaal dus loop gewoon direct naar de crate toe
[15:24:14] [Async Chat Thread - #3/INFO]: [standard] yuqiixi: ik heb ghem niet gekregen
[15:24:18] [Async Chat Thread - #3/INFO]: [standard] yuqiixi: oh
[15:24:18] [Async Chat Thread - #3/INFO]: [standard] ItsmeThomasX: Thx
[15:24:20] [Async Chat Thread - #3/INFO]: [standard] yuqiixi: digitaal
[15:24:22] [Server thread/INFO]: PzneRSW issued server command: /spawn
[15:24:22] [Async Chat Thread - #3/INFO]: [standard] xFanuel: mag ik ook een ke
[15:24:25] [Async Chat Thread - #3/INFO]: [standard] LuckyLuke_: Daar zal je zien, je hebt "zoveel" keys
[15:24:25] [Async Chat Thread - #3/INFO]: [standard] xFanuel: key
[15:24:25] [Server thread/INFO]: yuqiixi issued server command: /spawn
[15:24:29] [Async Chat Thread - #3/INFO]: [standard] xFanuel: ik heb geen key
[15:24:30] [Async Chat Thread - #3/INFO]: [standard] LuckyLuke_: je bent te laat
[15:24:32] [Async Chat Thread - #3/INFO]: [standard] LuckyLuke_: maar geen zorgen
[15:24:34] [Async Chat Thread - #3/INFO]: [standard] LuckyLuke_: i got you
[15:24:37] [Async Chat Thread - #3/INFO]: [standard] xFanuel: :o
[15:24:40] [Async Chat Thread - #3/INFO]: [standard] ItsmeThomasX: W Luke
[15:24:44] [Server thread/INFO]: LuckyLuke_ issued server command: /crate key give xFanuel cozy_key 1
[15:24:45] [Server thread/INFO]: eeJack issued server command: /home
[15:24:46] [Async Chat Thread - #3/INFO]: [standard] xFanuel: tyy
[15:24:51] [Server thread/INFO]: PzneRSW issued server command: /home
[15:24:53] [Server thread/INFO]: xFanuel issued server command: /spawn
[15:24:54] [Server thread/INFO]: ItsmeThomasX issued server command: /spawn
[15:24:55] [User Authenticator #5/INFO]: UUID of player ShewinB is 7eae7820-6362-4a00-beda-ffe71c3cfa97
[15:24:55] [Server thread/INFO]: ShewinB[/185.188.251.180:46419] logged in with entity id 15839 at ([spawn]-6.662658319059724, 61.0, 3.4515995152483985)
[15:24:55] [Server thread/INFO]: [+] [ADMIN] ShewinB
[15:24:55] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel standard in mode write
[15:24:55] [Server thread/INFO]: [ChatControl] TIP: Player ShewinB is already in channel 'standard' in mode read, not adding.
[15:25:05] [Async Chat Thread - #3/INFO]: [standard] yuqiixi: zojuist een pickaxe gekregen zonder enchant
[15:25:06] [Async Chat Thread - #3/INFO]: [standard] yuqiixi: sobbing
[15:25:08] [Server thread/INFO]: yuqiixi issued server command: /team home
[15:25:17] [Server thread/INFO]: PzneRSW issued server command: /ec
[15:25:25] [Server thread/INFO]: LuckyLuke_ issued server command: /tab reload
[15:25:25] [Server thread/INFO]: [TAB] Disabled in 2ms
[15:25:25] [Server thread/INFO]: [TAB] Enabled in 10ms
[15:25:32] [Server thread/INFO]: LuckyLuke_ issued server command: /tab reload
[15:25:32] [Server thread/INFO]: [TAB] Disabled in 1ms
[15:25:32] [Server thread/INFO]: [TAB] Enabled in 9ms
[15:25:36] [Server thread/INFO]: PzneRSW issued server command: /craft
[15:25:36] [Server thread/INFO]: ItsmeThomasX issued server command: /shop
[15:25:43] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:25:43] [Server thread/INFO]: [ShopGUIPlus] yuqiixi sold all 1 x Rotten Flesh for $0.1 to mobdrops shop
[15:25:44] [Server thread/INFO]: PzneRSW issued server command: /craft
[15:25:46] [Server thread/INFO]: ItsmeThomasX issued server command: /ah
[15:25:46] [Server thread/INFO]: xFanuel issued server command: /store
[15:25:49] [Server thread/INFO]: LuckyLuke_ issued server command: /tab reload
[15:25:49] [Server thread/INFO]: [TAB] Disabled in 1ms
[15:25:49] [Server thread/INFO]: [TAB] Enabled in 9ms
[15:25:57] [Server thread/INFO]: PzneRSW issued server command: /ah
[15:26:03] [Server thread/INFO]: xFanuel issued server command: /store
[15:26:04] [Server thread/INFO]: ItsmeThomasX issued server command: /ah listings
[15:26:06] [Async Chat Thread - #4/INFO]: [standard] LuckyLuke_: dd
[15:26:12] [Server thread/INFO]: PzneRSW issued server command: /ah sell 45000
[15:26:15] [Async Chat Thread - #4/INFO]: [standard] xFanuel: ey man ik heb een shovel gekregen
[15:26:21] [Server thread/INFO]: ItsmeThomasX issued server command: /ah sell 99999
[15:26:25] [Async Chat Thread - #4/INFO]: [standard] LuckyLuke_: moeten nog enchants op
[15:26:26] [Async Chat Thread - #4/INFO]: [standard] LuckyLuke_: eig
[15:26:30] [Async Chat Thread - #4/INFO]: [standard] LuckyLuke_: dus geef die shovel ik enchant m
[15:26:32] [Async Chat Thread - #4/INFO]: [standard] ItsmeThomasX: Iemand die een totem wil in ah?
[15:26:38] [Server thread/INFO]: PzneRSW issued server command: /ah
[15:26:39] [Async Chat Thread - #4/INFO]: [standard] ItsmeThomasX: 1 euro korting van de normale shop
[15:26:44] [User Authenticator #6/INFO]: UUID of player Nicksealfish is bf11e41f-d791-45d4-b7ab-0f06f135620c
[15:26:45] [Server thread/INFO]: [CozyTags] TOEVOEGEN SPELER + bf11e41f-d791-45d4-b7ab-0f06f135620c
[15:26:45] [Server thread/INFO]: Nicksealfish[/84.30.36.93:47217] logged in with entity id 18189 at ([world]927.5430936789189, -34.0, 112.6365707809868)
[15:26:45] [Server thread/INFO]: [+] Nicksealfish
[15:26:45] [Server thread/INFO]: [ChatControl] TIP: Joining Nicksealfish to channel standard in mode write due to 'chatcontrol.channel.autojoin.standard.write' permission.  We won't join him again when he leaves channel manually.
[15:26:49] [Server thread/INFO]: Nicksealfish issued server command: /vote
[15:26:50] [Server thread/INFO]: ShewinB issued server command: /crate
[15:26:53] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:26:54] [Async Chat Thread - #4/INFO]: [standard] xFanuel: 1tje...
[15:26:54] [Server thread/INFO]: ShewinB issued server command: /crate help
[15:26:57] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:26:58] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:26:59] [Server thread/INFO]: LuckyLuke_ issued server command: /enchant fortune 1
[15:26:59] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:27:01] [Server thread/INFO]: LuckyLuke_ issued server command: /enchant efficiency 2
[15:27:02] [Server thread/INFO]: LuckyLuke_ issued server command: /enchant unbreaking 2
[15:27:04] [Server thread/INFO]: LuckyLuke_ issued server command: /enchant mending
[15:27:05] [Server thread/INFO]: eeJack issued server command: /home
[15:27:07] [Server thread/INFO]: [Votifier] Got a forwarded vote -> Vote (from:Minecraft-Server.net username:Nicksealfish address:2001:1c00:248b:fc00:5412:76a8:80e7:aedd timeStamp:1764685627 additionalData:null)
[15:27:07] [Server thread/INFO]: [UltimateRewards] Counting the vote for Nicksealfish
[15:27:07] [Server thread/INFO]: Crates » Given x1 of VOTE KEY key(s) to Nicksealfish.
[15:27:10] [Async Chat Thread - #4/INFO]: [standard] xFanuel: dank
[15:27:12] [Server thread/INFO]: ShewinB issued server command: /lp editor
[15:27:14] [Server thread/INFO]: LuckyLuke_ issued server command: /vote
[15:27:15] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:27:17] [Async Chat Thread - #4/INFO]: [standard] ItsmeThomasX: Nu iedereen loyal key?
[15:27:18] [Server thread/INFO]: EatingLittleKids issued server command: /shop
[15:27:19] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:27:20] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:27:21] [Server thread/INFO]: [Votifier] Got a forwarded vote -> Vote (from:minecraftkrant.nl username:nicksealfish address:2001:1c00:248b:fc00:5412:76a8:80e7:aedd timeStamp:1764685641 additionalData:null)
[15:27:21] [Server thread/INFO]: [UltimateRewards] Counting the vote for nicksealfish
[15:27:21] [Server thread/INFO]: Crates » Given x1 of VOTE KEY key(s) to Nicksealfish.
[15:27:24] [Async Chat Thread - #4/INFO]: [standard] LuckyLuke_: jij heb je lolbroek aan
[15:27:25] [Server thread/INFO]: [ShopGUIPlus] EatingLittleKids bought 4 x Amethyst Cluster for $15 from decoration shop
[15:27:26] [Server thread/INFO]: [Votifier] Got a forwarded vote -> Vote (from:MinecraftServers.org username:Nicksealfish address:2001:1c00:248b:fc00:5412:76a8:80e7:aedd timeStamp:1764685646000 additionalData:null)
[15:27:26] [Server thread/INFO]: [UltimateRewards] Counting the vote for Nicksealfish
[15:27:26] [Server thread/INFO]: Crates » Given x1 of VOTE KEY key(s) to Nicksealfish.
[15:27:28] [Server thread/INFO]: eeJack issued server command: /sellall
[15:27:32] [Server thread/INFO]: eeJack issued server command: /sell handall
[15:27:32] [Server thread/INFO]: [ShopGUIPlus] eeJack sold all 37 x Blaze Rod for $37 to mobdrops shop
[15:27:32] [Async Chat Thread - #4/INFO]: [standard] ItsmeThomasX: Ja vandaag wel
[15:27:36] [Async Chat Thread - #4/INFO]: [standard] xFanuel: 1 love key?......
[15:27:39] [Server thread/INFO]: sparkie0704 issued server command: /shop
[15:27:40] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:27:44] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:27:45] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:27:45] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:27:52] [Async Chat Thread - #4/INFO]: [standard] ItsmeThomasX: Wat moeten we doen voor 1 love key
[15:27:58] [Server thread/INFO]: Nicksealfish issued server command: /spawn
[15:27:59] [Server thread/INFO]: [ShopGUIPlus] sparkie0704 bought 15 x Redstone Torch for $525 from redstone shop
[15:28:01] [Async Chat Thread - #4/INFO]: [standard] ShewinB: Een relatie nemen
[15:28:05] [Async Chat Thread - #4/INFO]: [standard] ShewinB: Met luuk
[15:28:07] [Server thread/INFO]: [ShopGUIPlus] sparkie0704 bought 16 x Repeater for $5,600 from redstone shop
[15:28:09] [Async Chat Thread - #4/INFO]: [standard] ItsmeThomasX: :0
[15:28:13] [Server thread/INFO]: UltimateTeams: Cleared all outstanding team invites!
[15:28:20] [Server thread/INFO]: [Votifier] Got a forwarded vote -> Vote (from:minecraftkrant.nl username:LuckyLuke_ address:217.121.37.164 timeStamp:1764685700 additionalData:null)
[15:28:20] [Server thread/INFO]: [UltimateRewards] Counting the vote for LuckyLuke_
[15:28:20] [Server thread/INFO]: Crates » Given x1 of VOTE KEY key(s) to LuckyLuke_.
[15:28:23] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:28:23] [Server thread/INFO]: [Votifier] Got a forwarded vote -> Vote (from:Minecraft-Server.net username:LuckyLuke_ address:217.121.37.164 timeStamp:1764685703 additionalData:null)
[15:28:23] [Server thread/INFO]: [UltimateRewards] Counting the vote for LuckyLuke_
[15:28:23] [Server thread/INFO]: Crates » Given x1 of VOTE KEY key(s) to LuckyLuke_.
[15:28:24] [Server thread/INFO]: [Votifier] Got a forwarded vote -> Vote (from:MinecraftServers.org username:LuckyLuke_ address:217.121.37.164 timeStamp:1764685704000 additionalData:null)
[15:28:24] [Server thread/INFO]: [UltimateRewards] Counting the vote for LuckyLuke_
[15:28:24] [Server thread/INFO]: Crates » Given x1 of VOTE KEY key(s) to LuckyLuke_.
[15:28:26] [Server thread/INFO]: ItsmeThomasX issued server command: /vote
[15:28:26] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:28:26] [Async Chat Thread - #4/INFO]: [standard] xFanuel: ey hoe doe ik dat
[15:28:27] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:28:30] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:28:30] [Server thread/INFO]: [ShopGUIPlus] yuqiixi sold all 481 x String for $1,202.5 to mobdrops shop
[15:28:30] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:28:31] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:28:32] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:28:32] [Server thread/INFO]: xFanuel issued server command: /vote
[15:28:33] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:28:33] [Server thread/INFO]: [ShopGUIPlus] yuqiixi sold all 442 x Spider Eye for $1,105 to mobdrops shop
[15:28:38] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:28:38] [Server thread/INFO]: [ShopGUIPlus] yuqiixi sold all 1088 x Spider Eye for $2,720 to mobdrops shop
[15:28:41] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:28:41] [Server thread/INFO]: [ShopGUIPlus] yuqiixi sold all 1024 x String for $2,560 to mobdrops shop
[15:28:42] [Server thread/INFO]: LuckyLuke_ issued server command: /invsee ShewinB
[15:28:47] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:28:47] [Server thread/INFO]: [ShopGUIPlus] yuqiixi sold all 1024 x String for $2,560 to mobdrops shop
[15:28:50] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:28:53] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:28:53] [Server thread/INFO]: [ShopGUIPlus] yuqiixi sold all 810 x String for $2,025 to mobdrops shop
[15:28:55] [Server thread/INFO]: [Votifier] Got a forwarded vote -> Vote (from:minecraftkrant.nl username:ItsmeThomasX address:2001:1c00:2f19:ac00:ac5a:a31d:cfc3:4eb1 timeStamp:1764685734 additionalData:null)
[15:28:55] [Server thread/INFO]: [UltimateRewards] Counting the vote for ItsmeThomasX
[15:28:55] [Server thread/INFO]: Crates » Given x1 of VOTE KEY key(s) to ItsmeThomasX.
[15:28:56] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:28:56] [Server thread/INFO]: [ShopGUIPlus] yuqiixi sold all 1002 x Spider Eye for $2,505 to mobdrops shop
[15:29:03] [Server thread/INFO]: ItsmeThomasX issued server command: /vote
[15:29:14] [Server thread/INFO]: sparkie0704 issued server command: /msg xFanuel heb meer powerd rails nodig
[15:29:30] [Server thread/INFO]: ShewinB issued server command: /gm 3
[15:29:40] [Async Chat Thread - #6/INFO]: [standard] xFanuel: ik heb op de server gevote waar is me reward
[15:29:42] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:29:45] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:29:46] [Server thread/INFO]: xFanuel issued server command: /msg sparkie komt eraan
[15:29:46] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:29:47] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:29:47] [Server thread/INFO]: ShewinB issued server command: /gm 1
[15:29:50] [Async Chat Thread - #6/INFO]: [standard] LuckyLuke_: je hebt de keys digitaal
[15:29:52] [Async Chat Thread - #6/INFO]: [standard] LuckyLuke_: gewoon op de crate klikken
[15:29:53] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:29:53] [Server thread/INFO]: [ShopGUIPlus] yuqiixi sold all 3 x Rotten Flesh for $0.3 to mobdrops shop
[15:30:08] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:30:08] [Server thread/INFO]: [ShopGUIPlus] yuqiixi sold all 1216 x Bamboo for $5,472 to decoration shop
[15:30:08] [Server thread/INFO]: eeJack issued server command: /shop
[15:30:09] [Async Chat Thread - #6/INFO]: [standard] Nicksealfish: die vote crates zijn gek man
[15:30:09] [Server thread/INFO]: LuckyLuke_ issued server command: /crate key give ShewinB cozy_key 1
[15:30:12] [Server thread/INFO]: Nicksealfish issued server command: /home
[15:30:14] [Async Chat Thread - #6/INFO]: [standard] LuckyLuke_: ja i kr
[15:30:16] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:30:16] [Server thread/INFO]: [ShopGUIPlus] yuqiixi sold all 1216 x Bamboo for $5,472 to decoration shop
[15:30:19] [Server thread/INFO]: Superster issued server command: /shop
[15:30:20] [Async Chat Thread - #6/INFO]: [standard] LuckyLuke_: zijjn verder in het seizeon
[15:30:22] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:30:22] [Server thread/INFO]: [ShopGUIPlus] yuqiixi sold all 213 x Bamboo for $958.5 to decoration shop
[15:30:25] [Async Chat Thread - #6/INFO]: [standard] LuckyLuke_: eig moet ff gechanged worden
[15:30:25] [Async Chat Thread - #6/INFO]: [standard] xFanuel: bro ik heb gevote
[15:30:26] [Server thread/INFO]: [ShopGUIPlus] Superster bought 22 x Oak Planks for $14.3 from wood shop
[15:30:27] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give ShewinB 1500
[15:30:27] [Server thread/INFO]: $1,500 toegevoegd aan [ADMIN] ShewinB rekening. Nieuw saldo: $1,236,371.54
[15:30:28] [Async Chat Thread - #6/INFO]: [standard] xFanuel: ik krijg niks
[15:30:34] [Async Chat Thread - #6/INFO]: [standard] LuckyLuke_: krig ook geen melding
[15:30:53] [Server thread/INFO]: PzneRSW issued server command: /vote
[15:30:58] [Async Chat Thread - #6/INFO]: [standard] LuckyLuke_: Je moet zeker weten dat je je naam goed gespeld hebt
[15:31:02] [Async Chat Thread - #6/INFO]: [standard] ShewinB: We doen een getal onder de 50 de eerste die wint krijgt 100K!
[15:31:04] [Async Chat Thread - #6/INFO]: [standard] xFanuel: ja heb ik gedaan
[15:31:06] [Async Chat Thread - #6/INFO]: [standard] xFanuel: 25
[15:31:06] [Server thread/INFO]: [Votifier] Got a forwarded vote -> Vote (from:Minecraft-Server.net username:PzneRSW address:2a02:a45f:647a:0:c01d:2c40:e943:597c timeStamp:1764685866 additionalData:null)
[15:31:06] [Server thread/INFO]: [UltimateRewards] Counting the vote for PzneRSW
[15:31:06] [Server thread/INFO]: Crates » Given x1 of VOTE KEY key(s) to PzneRSW.
[15:31:09] [Async Chat Thread - #6/INFO]: [standard] xFanuel: 21
[15:31:12] [Server thread/INFO]: PzneRSW issued server command: /vote
[15:31:15] [Async Chat Thread - #6/INFO]: [standard] ItsmeThomasX: Luuk
[15:31:21] [Server thread/INFO]: ShewinB issued server command: /bc We doen een getal onder de 50 de eerste die wint krijgt 100K!
[15:31:24] [Server thread/INFO]: ShewinB issued server command: /bc
[15:31:25] [Async Chat Thread - #6/INFO]: [standard] ItsmeThomasX: Deze inruil voor een love key
[15:31:25] [Async Chat Thread - #7/INFO]: [standard] LuckyLuke_: ik krijg ook geen vote binnen xFanuel
[15:31:25] [Async Chat Thread - #7/INFO]: [standard] xFanuel: mag ik vote key?
[15:31:28] [Async Chat Thread - #7/INFO]: [standard] LuckyLuke_: je moet echt ff goed checken
[15:31:29] [Async Chat Thread - #7/INFO]: [standard] xFanuel: ik gestemd
[15:31:33] [Server thread/INFO]: [Votifier] Got a forwarded vote -> Vote (from:minecraftkrant.nl username:PzneRSW address:2a02:a45f:647a:0:c01d:2c40:e943:597c timeStamp:1764685893 additionalData:null)
[15:31:33] [Server thread/INFO]: [UltimateRewards] Counting the vote for PzneRSW
[15:31:33] [Server thread/INFO]: Crates » Given x1 of VOTE KEY key(s) to PzneRSW.
[15:31:34] [Server thread/INFO]: ShewinB issued server command: /broadcast We doen een getal onder de 50 de eerste die wint krijgt 100K!
[15:31:38] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 1
[15:31:39] [Async Chat Thread - #7/INFO]: [standard] LuckyLuke_: de rest lukt het wel allemaal namenlijk
[15:31:40] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 8
[15:31:40] [Async Chat Thread - #7/INFO]: [standard] Nicksealfish: 27
[15:31:41] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:31:41] [Server thread/INFO]: [ShopGUIPlus] yuqiixi sold all 1 x Rotten Flesh for $0.1 to mobdrops shop
[15:31:42] [Async Chat Thread - #7/INFO]: [standard] Superster: 4
[15:31:42] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 17
[15:31:42] [Async Chat Thread - #7/INFO]: [standard] eeJack: 49
[15:31:44] [Async Chat Thread - #7/INFO]: [standard] Nicksealfish: 4
[15:31:44] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 55
[15:31:45] [Async Chat Thread - #7/INFO]: [standard] eeJack: 48
[15:31:46] [Async Chat Thread - #6/INFO]: [standard] eeJack: 47
[15:31:46] [Async Chat Thread - #6/INFO]: [standard] LuckyLuke_: 0
[15:31:47] [Async Chat Thread - #6/INFO]: [standard] xFanuel: 23
[15:31:48] [Async Chat Thread - #6/INFO]: [standard] eeJack: 46
[15:31:48] [Async Chat Thread - #6/INFO]: [standard] yuqiixi: 34
[15:31:48] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 49
[15:31:48] [Async Chat Thread - #7/INFO]: [standard] xFanuel: 5
[15:31:49] [Async Chat Thread - #7/INFO]: [standard] eeJack: 45
[15:31:49] [Async Chat Thread - #7/INFO]: [standard] EatingLittleKids: 26
[15:31:50] [Async Chat Thread - #7/INFO]: [standard] eeJack: 44
[15:31:50] [Async Chat Thread - #7/INFO]: [standard] xFanuel: 4
[15:31:50] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 42
[15:31:51] [Async Chat Thread - #7/INFO]: [standard] Nicksealfish: 36
[15:31:51] [Async Chat Thread - #7/INFO]: [standard] eeJack: 43
[15:31:52] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 40
[15:31:52] [Async Chat Thread - #7/INFO]: [standard] yuqiixi: 34
[15:31:53] [Async Chat Thread - #7/INFO]: [standard] eeJack: 42
[15:31:53] [Async Chat Thread - #7/INFO]: [standard] EatingLittleKids: 6
[15:31:53] [Async Chat Thread - #6/INFO]: [standard] yuqiixi: 34
[15:31:53] [Async Chat Thread - #6/INFO]: [standard] yuqiixi: 34
[15:31:54] [Async Chat Thread - #6/INFO]: [standard] ItsmeThomasX: 34
[15:31:54] [Async Chat Thread - #6/INFO]: [standard] eeJack: 41
[15:31:54] [Async Chat Thread - #6/INFO]: [standard] yuqiixi: 34
[15:31:55] [Async Chat Thread - #6/INFO]: [standard] yuqiixi: 34
[15:31:55] [Async Chat Thread - #6/INFO]: [standard] xFanuel: 4
[15:31:55] [Async Chat Thread - #6/INFO]: [standard] yuqiixi: 34
[15:31:55] [Async Chat Thread - #6/INFO]: [standard] eeJack: 40
[15:31:55] [Async Chat Thread - #6/INFO]: [standard] Nicksealfish: 5
[15:31:56] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 32
[15:31:56] [Async Chat Thread - #7/INFO]: [standard] yuqiixi: 34
[15:31:57] [Async Chat Thread - #6/INFO]: [standard] xFanuel: 50
[15:31:58] [Server thread/INFO]: LuckyLuke_ issued server command: /clear
[15:31:58] [Async Chat Thread - #6/INFO]: [standard] ItsmeThomasX: 30
[15:31:58] [Async Chat Thread - #6/INFO]: [standard] eeJack: 39
[15:31:59] [Async Chat Thread - #6/INFO]: [standard] xFanuel: 49
[15:31:59] [Async Chat Thread - #6/INFO]: [standard] eeJack: 38
[15:32:00] [Async Chat Thread - #6/INFO]: [standard] ItsmeThomasX: 20
[15:32:00] [Async Chat Thread - #7/INFO]: [standard] yuqiixi: pls i need this
[15:32:00] [Async Chat Thread - #7/INFO]: [standard] eeJack: 37'
[15:32:01] [Async Chat Thread - #7/INFO]: [standard] xFanuel: 21
[15:32:01] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 18
[15:32:01] [Async Chat Thread - #7/INFO]: [standard] yuqiixi: 34
[15:32:01] [Server thread/INFO]: [Votifier] Got a forwarded vote -> Vote (from:MinecraftServers.org username:PzneRSW address:2a02:a45f:647a:0:c01d:2c40:e943:597c timeStamp:1764685921000 additionalData:null)
[15:32:01] [Server thread/INFO]: [UltimateRewards] Counting the vote for PzneRSW
[15:32:01] [Server thread/INFO]: Crates » Given x1 of VOTE KEY key(s) to PzneRSW.
[15:32:02] [Async Chat Thread - #7/INFO]: [standard] yuqiixi: 34
[15:32:02] [Async Chat Thread - #7/INFO]: [standard] xFanuel: 23
[15:32:03] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 19
[15:32:03] [Async Chat Thread - #7/INFO]: [standard] eeJack: 36
[15:32:04] [Async Chat Thread - #7/INFO]: [standard] xFanuel: 43
[15:32:04] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 21
[15:32:05] [Async Chat Thread - #7/INFO]: [standard] eeJack: 35
[15:32:05] [Async Chat Thread - #7/INFO]: [standard] xFanuel: 11
[15:32:05] [Async Chat Thread - #7/INFO]: [standard] Nicksealfish: 22
[15:32:06] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 22
[15:32:06] [Async Chat Thread - #7/INFO]: [standard] xFanuel: 1
[15:32:07] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 15
[15:32:08] [Async Chat Thread - #7/INFO]: [standard] eeJack: 1
[15:32:08] [Async Chat Thread - #7/INFO]: [standard] xFanuel: 2
[15:32:09] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 14
[15:32:09] [Server thread/INFO]: PzneRSW issued server command: /spawn
[15:32:09] [Async Chat Thread - #7/INFO]: [standard] yuqiixi: 17
[15:32:10] [Async Chat Thread - #7/INFO]: [standard] Nicksealfish: 6
[15:32:10] [Async Chat Thread - #7/INFO]: [standard] eeJack: 10
[15:32:11] [Async Chat Thread - #7/INFO]: [standard] xFanuel: 4
[15:32:11] [Async Chat Thread - #7/INFO]: [standard] yuqiixi: 17
[15:32:11] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 13
[15:32:11] [Async Chat Thread - #7/INFO]: [standard] Nicksealfish: 7
[15:32:12] [Async Chat Thread - #7/INFO]: [standard] yuqiixi: 17
[15:32:12] [Async Chat Thread - #7/INFO]: [standard] xFanuel: 7
[15:32:12] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 12
[15:32:13] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 6
[15:32:13] [Async Chat Thread - #7/INFO]: [standard] Nicksealfish: 8
[15:32:13] [Async Chat Thread - #6/INFO]: [standard] eeJack: 50
[15:32:13] [Async Chat Thread - #6/INFO]: [standard] ItsmeThomasX: 11
[15:32:14] [Async Chat Thread - #6/INFO]: [standard] yuqiixi: 13
[15:32:14] [Async Chat Thread - #6/INFO]: [standard] sparkie0704: 4
[15:32:14] [Async Chat Thread - #7/INFO]: [standard] Nicksealfish: 9
[15:32:15] [Async Chat Thread - #7/INFO]: [standard] yuqiixi: 13
[15:32:15] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 2
[15:32:16] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 27
[15:32:16] [Async Chat Thread - #6/INFO]: [standard] yuqiixi: 13
[15:32:16] [Async Chat Thread - #6/INFO]: [standard] xFanuel: 19
[15:32:16] [Async Chat Thread - #6/INFO]: [standard] sparkie0704: 1
[15:32:16] [Async Chat Thread - #6/INFO]: [standard] eeJack: 33
[15:32:17] [Async Chat Thread - #6/INFO]: [standard] yuqiixi: 13
[15:32:17] [Async Chat Thread - #6/INFO]: [standard] Nicksealfish: 10
[15:32:18] [Async Chat Thread - #6/INFO]: [standard] xFanuel: 17
[15:32:18] [Async Chat Thread - #6/INFO]: [standard] eeJack: 312
[15:32:19] [Async Chat Thread - #6/INFO]: [standard] ItsmeThomasX: 33
[15:32:19] [Async Chat Thread - #6/INFO]: [standard] LuckyLuke_: -1
[15:32:19] [Async Chat Thread - #6/INFO]: [standard] yuqiixi: 10
[15:32:20] [Async Chat Thread - #6/INFO]: [standard] eeJack: 32
[15:32:20] [Async Chat Thread - #6/INFO]: [standard] sparkie0704: 34
[15:32:21] [Async Chat Thread - #6/INFO]: [standard] xFanuel: 12
[15:32:22] [Async Chat Thread - #6/INFO]: [standard] eeJack: 21
[15:32:22] [Async Chat Thread - #6/INFO]: [standard] ItsmeThomasX: 38
[15:32:24] [Async Chat Thread - #6/INFO]: [standard] eeJack: 31
[15:32:24] [Async Chat Thread - #6/INFO]: [standard] yuqiixi: -50
[15:32:25] [Async Chat Thread - #6/INFO]: [standard] ItsmeThomasX: 36
[15:32:25] [Async Chat Thread - #6/INFO]: [standard] sparkie0704: 19
[15:32:25] [Async Chat Thread - #7/INFO]: [standard] ShewinB: Jaa luuk wint
[15:32:25] [Async Chat Thread - #7/INFO]: [standard] xFanuel: 32
[15:32:26] [Async Chat Thread - #7/INFO]: [standard] eeJack: 30
[15:32:26] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 18
[15:32:27] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 37
[15:32:29] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 36
[15:32:31] [Async Chat Thread - #7/INFO]: [standard] xFanuel: rigged
[15:32:33] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 39
[15:32:35] [Server thread/INFO]: xFanuel issued server command: /vote
[15:32:35] [Async Chat Thread - #7/INFO]: [standard] ShewinB: -1 was het!!
[15:32:36] [Async Chat Thread - #7/INFO]: [standard] yuqiixi: Rigged
[15:32:37] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 40
[15:32:37] [Async Chat Thread - #7/INFO]: [standard] yuqiixi: -1
[15:32:38] [Server thread/INFO]: PzneRSW issued server command: /home
[15:32:40] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: -10
[15:32:41] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 27
[15:32:41] [Async Chat Thread - #7/INFO]: [standard] Nicksealfish: ..
[15:32:44] [Async Chat Thread - #7/INFO]: [standard] ShewinB: nee jk guys
[15:32:44] [Async Chat Thread - #6/INFO]: [standard] Nicksealfish: bru
[15:32:45] [Async Chat Thread - #6/INFO]: [standard] sparkie0704: 18
[15:32:47] [Async Chat Thread - #6/INFO]: [standard] yuqiixi: 1
[15:32:47] [Async Chat Thread - #6/INFO]: [standard] sparkie0704: 15
[15:32:47] [Async Chat Thread - #6/INFO]: [standard] yuqiixi: 1
[15:32:47] [Async Chat Thread - #6/INFO]: [standard] LuckyLuke_: twas wel -1
[15:32:48] [Async Chat Thread - #6/INFO]: [standard] yuqiixi: 1
[15:32:48] [Async Chat Thread - #6/INFO]: [standard] yuqiixi: 1
[15:32:49] [Async Chat Thread - #6/INFO]: [standard] sparkie0704: 14
[15:32:49] [Async Chat Thread - #6/INFO]: [standard] yuqiixi: 1
[15:32:49] [Async Chat Thread - #6/INFO]: [standard] LuckyLuke_: maar
[15:32:49] [Async Chat Thread - #7/INFO]: [standard] yuqiixi: 1
[15:32:50] [Async Chat Thread - #7/INFO]: [standard] yuqiixi: 1
[15:32:50] [Async Chat Thread - #7/INFO]: [standard] yuqiixi: 1
[15:32:51] [Async Chat Thread - #7/INFO]: [standard] Nicksealfish: 1
[15:32:52] [Async Chat Thread - #7/INFO]: [standard] ShewinB: ik moest nog een getal hebben
[15:32:52] [Async Chat Thread - #7/INFO]: [standard] LuckyLuke_: hij was te langzaam met denken
[15:32:53] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: -1
[15:32:59] [Async Chat Thread - #7/INFO]: [standard] Nicksealfish: ...
[15:33:03] [Async Chat Thread - #7/INFO]: [standard] ShewinB: Oke ik heb een getal
[15:33:06] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 1
[15:33:07] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 8
[15:33:09] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 20
[15:33:10] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 2
[15:33:11] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 3
[15:33:11] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 4
[15:33:12] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 5
[15:33:13] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 50
[15:33:14] [Async Chat Thread - #7/INFO]: [standard] eeJack: 50
[15:33:15] [Async Chat Thread - #7/INFO]: [standard] eeJack: 1
[15:33:16] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 48
[15:33:16] [Async Chat Thread - #7/INFO]: [standard] eeJack: 2
[15:33:16] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:33:16] [Server thread/INFO]: ShewinB issued server command: /broadcast WIE WINT KRIJGT 200K!
[15:33:17] [Async Chat Thread - #7/INFO]: [standard] eeJack: 3t
[15:33:17] [Async Chat Thread - #6/INFO]: [standard] Nicksealfish: 49
[15:33:18] [Async Chat Thread - #6/INFO]: [standard] yuqiixi: 55
[15:33:18] [Async Chat Thread - #6/INFO]: [standard] ItsmeThomasX: 42
[15:33:19] [Async Chat Thread - #6/INFO]: [standard] LuckyLuke_: 24
[15:33:19] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:33:20] [Async Chat Thread - #6/INFO]: [standard] yuqiixi: 40
[15:33:20] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:33:20] [Async Chat Thread - #7/INFO]: [standard] eeJack: 3
[15:33:20] [Async Chat Thread - #7/INFO]: [standard] yuqiixi: 44
[15:33:20] [Async Chat Thread - #7/INFO]: [standard] Nicksealfish: 48
[15:33:21] [Async Chat Thread - #7/INFO]: [standard] eeJack: 4
[15:33:21] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 6
[15:33:21] [Async Chat Thread - #7/INFO]: [standard] eeJack: 5
[15:33:21] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 33
[15:33:21] [Async Chat Thread - #7/INFO]: [standard] yuqiixi: 23
[15:33:22] [Async Chat Thread - #7/INFO]: [standard] eeJack: 6
[15:33:22] [Async Chat Thread - #7/INFO]: [standard] yuqiixi: 23
[15:33:22] [Async Chat Thread - #7/INFO]: [standard] eeJack: 7
[15:33:23] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 7
[15:33:23] [Async Chat Thread - #7/INFO]: [standard] yuqiixi: 43
[15:33:23] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 30
[15:33:24] [Async Chat Thread - #7/INFO]: [standard] Nicksealfish: 47
[15:33:24] [Async Chat Thread - #7/INFO]: [standard] eeJack: 8
[15:33:24] [Async Chat Thread - #7/INFO]: [standard] Superster: 4
[15:33:24] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 8
[15:33:24] [Async Chat Thread - #7/INFO]: [standard] eeJack: 9
[15:33:25] [Async Chat Thread - #7/INFO]: [standard] eeJack: 10
[15:33:26] [Async Chat Thread - #7/INFO]: [standard] Nicksealfish: 37
[15:33:27] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 24
[15:33:28] [Async Chat Thread - #7/INFO]: [standard] eeJack: 11
[15:33:28] [Async Chat Thread - #7/INFO]: [standard] Nicksealfish: 38
[15:33:28] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 13
[15:33:29] [Async Chat Thread - #7/INFO]: [standard] eeJack: 12
[15:33:29] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 22
[15:33:30] [Async Chat Thread - #7/INFO]: [standard] eeJack: 13
[15:33:30] [Async Chat Thread - #6/INFO]: [standard] Nicksealfish: 2
[15:33:30] [Async Chat Thread - #6/INFO]: [standard] sparkie0704: 14
[15:33:31] [Async Chat Thread - #6/INFO]: [standard] eeJack: 14
[15:33:31] [Server thread/INFO]: [Votifier] Got a forwarded vote -> Vote (from:minecraftkrant.nl username:xFanuel address:2001:1c00:2f19:ac00:e9ca:bce0:8b82:9e0c timeStamp:1764686011 additionalData:null)
[15:33:31] [Server thread/INFO]: [UltimateRewards] Counting the vote for xFanuel
[15:33:31] [Server thread/INFO]: Crates » Given x1 of VOTE KEY key(s) to xFanuel.
[15:33:31] [Async Chat Thread - #6/INFO]: [standard] sparkie0704: 15
[15:33:31] [Async Chat Thread - #6/INFO]: [standard] ItsmeThomasX: 39
[15:33:32] [Async Chat Thread - #6/INFO]: [standard] Nicksealfish: 22
[15:33:32] [Server thread/INFO]: ShewinB issued server command: /tempban LuckyLuke_ 60s
[15:33:32] [Server thread/INFO]: LuckyLuke_ lost connection: Je bent tijdelijk verbannen voor 1 minuut:
De Ban Hamer heeft gesproken!
[15:33:32] [Server thread/INFO]: [voicechat] Disconnecting client LuckyLuke_
[15:33:32] [Server thread/INFO]: [Essentials] Speler [ADMIN] ShewinB verbande LuckyLuke_ tijdelijk voor 1 minuut. Reden: De Ban Hamer heeft gesproken!.
[15:33:32] [Async Chat Thread - #6/INFO]: [standard] eeJack: 15
[15:33:32] [Async Chat Thread - #6/INFO]: [standard] sparkie0704: 16
[15:33:34] [Async Chat Thread - #7/INFO]: [standard] eeJack: 16
[15:33:34] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 17
[15:33:34] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 38
[15:33:35] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 18
[15:33:35] [Async Chat Thread - #6/INFO]: [standard] Nicksealfish: 23
[15:33:35] [User Authenticator #7/INFO]: UUID of player LuckyLuke_ is e5c25f49-4652-458a-8d23-137ae211a512
[15:33:35] [Server thread/INFO]: Disconnecting LuckyLuke_ (/217.121.37.164:46695): Je bent verbannen van de server voor 56 seconden, met als reden: De Ban Hamer heeft gesproken!
[15:33:35] [Server thread/INFO]: LuckyLuke_ (/217.121.37.164:46695) lost connection: Je bent verbannen van de server voor 56 seconden, met als reden: De Ban Hamer heeft gesproken!
[15:33:36] [Async Chat Thread - #6/INFO]: [standard] eeJack: 17
[15:33:36] [Async Chat Thread - #6/INFO]: [standard] sparkie0704: 19
[15:33:37] [Async Chat Thread - #6/INFO]: [standard] Nicksealfish: 21
[15:33:37] [Async Chat Thread - #6/INFO]: [standard] eeJack: 18
[15:33:38] [Async Chat Thread - #6/INFO]: [standard] ItsmeThomasX: 36
[15:33:38] [Async Chat Thread - #6/INFO]: [standard] sparkie0704: 20
[15:33:39] [Async Chat Thread - #6/INFO]: [standard] Nicksealfish: 12
[15:33:39] [Async Chat Thread - #6/INFO]: [standard] eeJack: 19
[15:33:39] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 22
[15:33:39] [Async Chat Thread - #6/INFO]: [standard] ItsmeThomasX: 42
[15:33:39] [Async Chat Thread - #7/ERROR]: Could not pass event AsyncChatEvent to EssentialsChat v2.21.2
java.lang.NullPointerException: Cannot invoke "String.length()" because "input" is null
    at net.kyori.adventure.text.serializer.legacy.LegacyComponentSerializerImpl.deserialize(LegacyComponentSerializerImpl.java:207) ~[adventure-text-serializer-legacy-4.24.0.jar:?]
    at EssentialsX-2.21.2.jar/net.ess3.provider.providers.PaperChatListenerProvider.onHighest(PaperChatListenerProvider.java:74) ~[EssentialsX-2.21.2.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[pufferfish-api-1.21.8-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71) ~[pufferfish-api-1.21.8-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:630) ~[pufferfish-api-1.21.8-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.adventure.ChatProcessor.post(ChatProcessor.java:378) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at io.papermc.paper.adventure.ChatProcessor.processModern(ChatProcessor.java:151) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at io.papermc.paper.adventure.ChatProcessor.process(ChatProcessor.java:97) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.chat(ServerGamePacketListenerImpl.java:2493) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.broadcastChatMessage(ServerGamePacketListenerImpl.java:2531) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChat$10(ServerGamePacketListenerImpl.java:2273) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.util.FutureChain.lambda$append$1(FutureChain.java:25) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at java.base/java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:718) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[15:33:39] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 3
[15:33:40] [Async Chat Thread - #7/INFO]: [standard] eeJack: 20
[15:33:41] [Async Chat Thread - #7/INFO]: [standard] Nicksealfish: 13
[15:33:41] [User Authenticator #7/INFO]: UUID of player LuckyLuke_ is e5c25f49-4652-458a-8d23-137ae211a512
[15:33:41] [Server thread/INFO]: Disconnecting LuckyLuke_ (/217.121.37.164:42869): Je bent verbannen van de server voor 50 seconden, met als reden: De Ban Hamer heeft gesproken!
[15:33:41] [Server thread/INFO]: LuckyLuke_ (/217.121.37.164:42869) lost connection: Je bent verbannen van de server voor 50 seconden, met als reden: De Ban Hamer heeft gesproken!
[15:33:42] [Async Chat Thread - #7/INFO]: [standard] eeJack: 21
[15:33:42] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 23
[15:33:42] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 46
[15:33:43] [Async Chat Thread - #7/INFO]: [standard] Nicksealfish: 15
[15:33:43] [Async Chat Thread - #7/INFO]: [standard] eeJack: 22
[15:33:44] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 25
[15:33:44] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 65
[15:33:45] [Async Chat Thread - #7/INFO]: [standard] eeJack: 23
[15:33:45] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 26
[15:33:45] [Async Chat Thread - #7/INFO]: [standard] eeJack: 24
[15:33:46] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 2
[15:33:46] [Async Chat Thread - #7/INFO]: [standard] eeJack: 25
[15:33:46] [Async Chat Thread - #7/INFO]: [standard] Nicksealfish: 27
[15:33:47] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 27
[15:33:47] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 1
[15:33:48] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 28
[15:33:48] [Async Chat Thread - #7/INFO]: [standard] eeJack: 26
[15:33:49] [Async Chat Thread - #7/INFO]: [standard] Nicksealfish: 26
[15:33:49] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 27
[15:33:50] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: 4
[15:33:51] [Async Chat Thread - #7/INFO]: [standard] Nicksealfish: 25
[15:33:52] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 29
[15:33:52] [Server thread/INFO]: ShewinB issued server command: /broadcast ItsmeThomasX WINT
[15:33:52] [Async Chat Thread - #7/INFO]: [standard] eeJack: 49
[15:33:53] [Async Chat Thread - #7/INFO]: [standard] sparkie0704: 30
[15:33:53] [Async Chat Thread - #7/INFO]: [standard] eeJack: 48
[15:33:55] [Async Chat Thread - #7/INFO]: [standard] eeJack: 47
[15:33:59] [Server thread/INFO]: ShewinB issued server command: /pay ItsmeThomasX 200k
[15:33:59] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: Lets go
[15:34:01] [Server thread/INFO]: xFanuel issued server command: /tpa sparkie
[15:34:04] [User Authenticator #7/INFO]: UUID of player LuckyLuke_ is e5c25f49-4652-458a-8d23-137ae211a512
[15:34:04] [Server thread/INFO]: Disconnecting LuckyLuke_ (/217.121.37.164:55613): Je bent verbannen van de server voor 27 seconden, met als reden: De Ban Hamer heeft gesproken!
[15:34:04] [Server thread/INFO]: LuckyLuke_ (/217.121.37.164:55613) lost connection: Je bent verbannen van de server voor 27 seconden, met als reden: De Ban Hamer heeft gesproken!
[15:34:06] [Async Chat Thread - #7/INFO]: [standard] yuqiixi: 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 50
[15:34:07] [Server thread/INFO]: sparkie0704 issued server command: /tpaccept
[15:34:09] [Async Chat Thread - #7/INFO]: [standard] yuqiixi: oh.
[15:34:09] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /unban LuckyLuke_
[15:34:09] [Server thread/INFO]: [Essentials] Speler Console verwijderde ban van LuckyLuke_
[15:34:11] [User Authenticator #7/INFO]: UUID of player LuckyLuke_ is e5c25f49-4652-458a-8d23-137ae211a512
[15:34:11] [Server thread/INFO]: LuckyLuke_[/217.121.37.164:49265] logged in with entity id 33299 at ([spawn]7.564498632152452, 64.1314826591468, 6.895575827825879)
[15:34:12] [Server thread/INFO]: [+] [DEV] LuckyLuke_
[15:34:12] [Server thread/INFO]: [ChatControl] TIP Alert: Supposed to add LuckyLuke_ to channel 'ranged' which is not installed on this server, skipping
[15:34:12] [Server thread/INFO]: [ChatControl] TIP Alert: Supposed to add LuckyLuke_ to channel 'helpop' which is not installed on this server, skipping
[15:34:12] [Server thread/INFO]: [ChatControl] TIP Alert: Supposed to add LuckyLuke_ to channel 'admin' which is not installed on this server, skipping
[15:34:12] [Server thread/INFO]: [ChatControl] TIP Alert: Supposed to add LuckyLuke_ to channel 'global' which is not installed on this server, skipping
[15:34:12] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel standard in mode write
[15:34:12] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel staff in mode read
[15:34:12] [Server thread/INFO]: [ChatControl] TIP: Player LuckyLuke_ is already in channel 'standard' in mode read, not adding.
[15:34:12] [Server thread/INFO]: [ChatControl] TIP: Player LuckyLuke_ is already in channel 'staff' in mode read, not adding.
[15:34:12] [Async Chat Thread - #7/INFO]: [standard] Superster: LOL
[15:34:13] [Async Chat Thread - #7/INFO]: [standard] ItsmeThomasX: Nog een potje?
[15:34:13] [Server thread/INFO]: LuckyLuke_ issued server command: /chat reload
[15:34:13] [Server thread/INFO]: [ChatControl] Warning: No such localization: nl_NL in plugin's jar, using keys from the disk file or from the default English locale for keys that are missing.
[15:34:13] [Server thread/INFO]: [ChatControl] TIP: Player sparkie0704 is already in channel 'standard' in mode read, not adding.
[15:34:13] [Server thread/INFO]: [ChatControl] TIP: Player EatingLittleKids is already in channel 'standard' in mode read, not adding.
[15:34:13] [Server thread/INFO]: [ChatControl] TIP: Player Superster is already in channel 'standard' in mode read, not adding.
[15:34:13] [Server thread/INFO]: [ChatControl] TIP: Player ItsmeThomasX is already in channel 'standard' in mode read, not adding.
[15:34:13] [Server thread/INFO]: [ChatControl] TIP: Player ShewinB is already in channel 'standard' in mode read, not adding.
[15:34:13] [Server thread/INFO]: [ChatControl] TIP: Player yuqiixi is already in channel 'standard' in mode read, not adding.
[15:34:13] [Server thread/INFO]: [ChatControl] TIP: Player eeJack is already in channel 'standard' in mode read, not adding.
[15:34:13] [Server thread/INFO]: [ChatControl] TIP: Player Nicksealfish is already in channel 'standard' in mode read, not adding.
[15:34:13] [Server thread/INFO]: [ChatControl] TIP: Player PzneRSW is already in channel 'standard' in mode read, not adding.
[15:34:13] [Server thread/INFO]: [ChatControl] TIP: Player xFanuel is already in channel 'standard' in mode read, not adding.
[15:34:13] [Server thread/INFO]: [ChatControl] TIP: Player LuckyLuke_ is already in channel 'standard' in mode read, not adding.
[15:34:13] [Server thread/INFO]: [ChatControl] TIP: Player LuckyLuke_ is already in channel 'staff' in mode read, not adding.
[15:34:14] [Async Chat Thread - #6/INFO]: [standard] LuckyLuke_: dd
[15:34:20] [Server thread/INFO]: xFanuel issued server command: /msh sparkie hoeveel nog
[15:34:27] [Server thread/INFO]: xFanuel issued server command: /msg sparkie hvl nog
[15:34:32] [Server thread/INFO]: yuqiixi issued server command: /team home
[15:34:32] [Server thread/WARN]: yuqiixi moved too quickly! 4.611240714494443,71.0,-13.132036311990646
[15:34:35] [Server thread/INFO]: sparkie0704 issued server command: /r 2 stack?
[15:34:38] [Async Chat Thread - #6/INFO]: [standard] ShewinB: Lol
[15:34:43] [Server thread/INFO]: xFanuel issued server command: /msg sparkie damm
[15:34:54] [Server thread/INFO]: EatingLittleKids issued server command: /shop
[15:34:58] [Server thread/INFO]: [Essentials] Created a User for Top5Playtime (73fee5bb-3eb7-23d4-b2aa-691cdcafc4b5) for non Bukkit type: net.citizensnpcs.nms.v1_21_R5.entity.EntityHumanNPC$PlayerNPC
[15:35:03] [Server thread/INFO]: [ShopGUIPlus] EatingLittleKids bought 4 x Large Amethyst Bud for $13.8 from decoration shop
[15:35:06] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:35:09] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 1024 x String for $2,560 to mobdrops shop
[15:35:10] [Server thread/INFO]: xFanuel issued server command: /msg sparkie ff snel psisen
[15:35:10] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 768 x Spider Eye for $1,920 to mobdrops shop
[15:35:13] [Server thread/INFO]: sparkie0704 issued server command: /r jo
[15:35:18] [Server thread/INFO]: LuckyLuke_ issued server command: /chat reload
[15:35:18] [Server thread/INFO]: [ChatControl] Warning: No such localization: nl_NL in plugin's jar, using keys from the disk file or from the default English locale for keys that are missing.
[15:35:18] [Server thread/INFO]: [ChatControl] TIP: Player sparkie0704 is already in channel 'standard' in mode read, not adding.
[15:35:18] [Server thread/INFO]: [ChatControl] TIP: Player EatingLittleKids is already in channel 'standard' in mode read, not adding.
[15:35:18] [Server thread/INFO]: [ChatControl] TIP: Player Superster is already in channel 'standard' in mode read, not adding.
[15:35:18] [Server thread/INFO]: [ChatControl] TIP: Player ItsmeThomasX is already in channel 'standard' in mode read, not adding.
[15:35:18] [Server thread/INFO]: [ChatControl] TIP: Player ShewinB is already in channel 'standard' in mode read, not adding.
[15:35:18] [Server thread/INFO]: [ChatControl] TIP: Player yuqiixi is already in channel 'standard' in mode read, not adding.
[15:35:18] [Server thread/INFO]: [ChatControl] TIP: Player eeJack is already in channel 'standard' in mode read, not adding.
[15:35:18] [Server thread/INFO]: [ChatControl] TIP: Player Nicksealfish is already in channel 'standard' in mode read, not adding.
[15:35:18] [Server thread/INFO]: [ChatControl] TIP: Player PzneRSW is already in channel 'standard' in mode read, not adding.
[15:35:18] [Server thread/INFO]: [ChatControl] TIP: Player xFanuel is already in channel 'standard' in mode read, not adding.
[15:35:18] [Server thread/INFO]: [ChatControl] TIP: Player LuckyLuke_ is already in channel 'standard' in mode read, not adding.
[15:35:18] [Server thread/INFO]: [ChatControl] TIP: Player LuckyLuke_ is already in channel 'staff' in mode read, not adding.
[15:35:20] [Async Chat Thread - #6/INFO]: [standard] LuckyLuke_: dd
[15:35:22] [Async Chat Thread - #6/INFO]: [standard] ShewinB: l
[15:35:22] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:35:26] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 426 x String for $1,065 to mobdrops shop
[15:35:26] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 293 x Spider Eye for $732.5 to mobdrops shop
[15:35:31] [Server thread/INFO]: Nicksealfish issued server command: /ah
[15:35:32] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:35:33] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:35:33] [Server thread/INFO]: [ShopGUIPlus] yuqiixi sold all 1 x White Wool for $0.35 to colours shop
[15:35:34] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:35:35] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:35:36] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:35:54] [Server thread/INFO]: Superster issued server command: /shop
[15:35:59] [Server thread/INFO]: [ShopGUIPlus] Superster bought 21 x Leather for $1,050 from mobdrops shop
[15:36:12] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:36:14] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 1733 x Bamboo for $7,798.5 to decoration shop
[15:36:43] [Async Chat Thread - #9/INFO]: [standard] ShewinB: ItsmeThomasX
[15:36:46] [Server thread/INFO]: LuckyLuke_ issued server command: /setblock ~ ~1 ~ minecraft:player_head[rotation=0]{custom_name:{"text":"Greece","color":"gold","underlined":true,"bold":true,"italic":false},profile:{properties:[{name:"textures",value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZn
[15:36:46] [Async Chat Thread - #9/INFO]: [standard] ItsmeThomasX: Ja
[15:36:51] [Async Chat Thread - #9/INFO]: [standard] ShewinB: Ik gheef jou 200k en je schiet op me
[15:36:58] [Server thread/INFO]: Nicksealfish issued server command: /spawn
[15:36:58] [Async Chat Thread - #9/INFO]: [standard] ItsmeThomasX: Als bedankje
[15:37:01] [Server thread/INFO]: ShewinB issued server command: /eco take ItsmeThomasX 200000
[15:37:01] [Async Chat Thread - #9/INFO]: [standard] Superster: HAHA
[15:37:03] [Server thread/INFO]: Nicksealfish issued server command: /home
[15:37:04] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:37:07] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 1792 x Bamboo for $8,064 to decoration shop
[15:37:18] [Server thread/INFO]: Gave 1 [Greece] to LuckyLuke_
[15:37:21] [Server thread/INFO]: ShewinB issued server command: /eco give ItsmeThomasX 200000
[15:37:24] [Server thread/INFO]: LuckyLuke_ issued server command: /tp ShewinB
[15:37:38] [Server thread/INFO]: LuckyLuke_ issued server command: /invsee ShewinB
[15:37:54] [Server thread/INFO]: LuckyLuke_ issued server command: /clear
[15:37:55] [Server thread/INFO]: LuckyLuke_ issued server command: /invsee ShewinB
[15:38:01] [Server thread/INFO]: ShewinB issued server command: /ec
[15:38:06] [PvPManager Worker Thread - 2/INFO]: PvP ➤ Update available: 4.1.28 Current version: 4.1.16
[15:38:06] [PvPManager Worker Thread - 2/INFO]: PvP ➤ Follow the link to download: https://www.spigotmc.org/resources/pvpmanager.10610
[15:38:08] [Server thread/INFO]: ShewinB issued server command: /ec
[15:38:11] [Server thread/INFO]: LuckyLuke_ issued server command: /attribute ShewinB minecraft:scale base set 0.1
[15:38:13] [Server thread/INFO]: UltimateTeams: Cleared all outstanding team invites!
[15:38:14] [Server thread/INFO]: LuckyLuke_ issued server command: /attribute ShewinB minecraft:scale base set 10
[15:38:20] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:38:22] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:38:23] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:38:28] [Server thread/INFO]: [GriefPrevention] Nicksealfish attempted to create a claim, but conflicted with claim 548
[15:38:29] [Async Chat Thread - #11/INFO]: [standard] ItsmeThomasX: 1 millie als ik op je kan schieten als je super klein bent
[15:38:34] [Server thread/INFO]: eeJack issued server command: /shop
[15:38:35] [Server thread/INFO]: ShewinB issued server command: /attribute ItsmeThomasX minecraft:scale base set 20
[15:38:38] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:38:38] [Server thread/INFO]: yuqiixi issued server command: /team home
[15:38:38] [Server thread/WARN]: yuqiixi moved too quickly! 862.1947099718006,5.0,1285.684591384911
[15:38:40] [Server thread/INFO]: Nicksealfish issued server command: /home
[15:38:40] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:38:41] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:38:44] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 448 x Bone Meal for $448 from mobdrops shop
[15:38:52] [Server thread/INFO]: ShewinB issued server command: /attribute ItsmeThomasX minecraft:scale base set 1
[15:38:57] [Server thread/INFO]: LuckyLuke_ issued server command: /tp ItsmeThomasX
[15:39:05] [Server thread/INFO]: Nicksealfish issued server command: /unclaim
[15:39:08] [Server thread/INFO]: LuckyLuke_ issued server command: /attribute ShewinB minecraft:scale base set 1
[15:39:27] [Server thread/INFO]: sparkie0704 issued server command: /shop
[15:39:30] [Server thread/INFO]: ShewinB issued server command: /attribute ItsmeThomasX minecraft:scale base set 20
[15:39:32] [Server thread/INFO]: LuckyLuke_ issued server command: /chat reload
[15:39:32] [Server thread/INFO]: [ChatControl] Warning: No such localization: nl_NL in plugin's jar, using keys from the disk file or from the default English locale for keys that are missing.
[15:39:32] [Server thread/INFO]: [ChatControl] TIP: Player sparkie0704 is already in channel 'standard' in mode read, not adding.
[15:39:32] [Server thread/INFO]: [ChatControl] TIP: Player EatingLittleKids is already in channel 'standard' in mode read, not adding.
[15:39:32] [Server thread/INFO]: [ChatControl] TIP: Player Superster is already in channel 'standard' in mode read, not adding.
[15:39:32] [Server thread/INFO]: [ChatControl] TIP: Player ItsmeThomasX is already in channel 'standard' in mode read, not adding.
[15:39:32] [Server thread/INFO]: [ChatControl] TIP: Player ShewinB is already in channel 'standard' in mode read, not adding.
[15:39:32] [Server thread/INFO]: [ChatControl] TIP: Player yuqiixi is already in channel 'standard' in mode read, not adding.
[15:39:32] [Server thread/INFO]: [ChatControl] TIP: Player eeJack is already in channel 'standard' in mode read, not adding.
[15:39:32] [Server thread/INFO]: [ChatControl] TIP: Player PzneRSW is already in channel 'standard' in mode read, not adding.
[15:39:32] [Server thread/INFO]: [ChatControl] TIP: Player xFanuel is already in channel 'standard' in mode read, not adding.
[15:39:32] [Server thread/INFO]: [ChatControl] TIP: Player LuckyLuke_ is already in channel 'standard' in mode read, not adding.
[15:39:32] [Server thread/INFO]: [ChatControl] TIP: Player LuckyLuke_ is already in channel 'staff' in mode read, not adding.
[15:39:32] [Server thread/INFO]: [ChatControl] TIP: Player Nicksealfish is already in channel 'standard' in mode read, not adding.
[15:39:33] [Server thread/INFO]: [ShopGUIPlus] sparkie0704 bought 4 x Comparator for $1,600 from redstone shop
[15:39:40] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:39:43] [Server thread/INFO]: xFanuel issued server command: /spawn
[15:39:43] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:39:44] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:39:44] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:39:46] [Server thread/INFO]: Nicksealfish issued server command: /unclaim
[15:39:55] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:40:00] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:40:01] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:40:01] [Server thread/INFO]: ShewinB issued server command: /rtp
[15:40:01] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:40:05] [Server thread/INFO]: LuckyLuke_ issued server command: /rtp
[15:40:05] [Craft Scheduler Thread - 37 - BetterRTP/INFO]: [BetterRTP] -Removed a queue Location{world=CraftWorld{name=world},x=-1450.5,y=70.0,z=-2307.5,pitch=-36.044144,yaw=132.29433}
[15:40:09] [Server thread/INFO]: sparkie0704 issued server command: /crawl
[15:40:11] [Server thread/INFO]: ShewinB issued server command: /home home
[15:40:11] [Server thread/INFO]: LuckyLuke_ issued server command: /s ItsmeThomasX
[15:40:16] [Server thread/INFO]: xFanuel issued server command: /home
[15:40:21] [Async Chat Thread - #13/INFO]: [standard] ItsmeThomasX: ey
[15:40:24] [Async Chat Thread - #13/INFO]: [standard] LuckyLuke_: hahah
[15:40:25] [Server thread/INFO]: ShewinB issued server command: /tphere ItsmeThomasX
[15:40:33] [Async Chat Thread - #13/INFO]: [standard] LuckyLuke_: blijf stil staan
[15:40:35] [Server thread/INFO]: ShewinB issued server command: /tp LuckyLuke_
[15:40:36] [Async Chat Thread - #13/INFO]: [standard] LuckyLuke_: ik wil zien wat die creeper doet
[15:40:43] [Server thread/INFO]: xFanuel issued server command: /tpa itsmethomasx
[15:40:46] [Server thread/INFO]: ItsmeThomasX issued server command: /tpaccept
[15:40:59] [Server thread/INFO]: sparkie0704 issued server command: /crawl
[15:41:01] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:41:04] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:41:05] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:41:05] [Async Chat Thread - #13/INFO]: [standard] LuckyLuke_: zo cursed dit
[15:41:05] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:41:09] [Server thread/INFO]: xFanuel issued server command: /shop
[15:41:23] [Server thread/INFO]: [ShopGUIPlus] xFanuel bought 11 x Redstone for $40.15 from ores shop
[15:41:24] [Server thread/INFO]: PzneRSW issued server command: /ah
[15:41:29] [Server thread/INFO]: [ChatControl] ShewinB has died at {world} {x} {y} {z} by ENTITY_ATTACK
[15:41:41] [Server thread/INFO]: PzneRSW issued server command: /ah expired
[15:41:41] [Server thread/INFO]: Superster issued server command: /ec
[15:41:42] [Server thread/INFO]: ShewinB issued server command: /tp LuckyLuke_
[15:41:42] [Server thread/INFO]: xFanuel issued server command: /tpa sparkie
[15:41:46] [Server thread/INFO]: sparkie0704 issued server command: /tpaccept
[15:41:54] [Server thread/INFO]: xFanuel issued server command: /msg sparkie sorry was ff bezig
[15:41:55] [Server thread/INFO]: ShewinB issued server command: /invsee LuckyLuke_
[15:41:56] [Server thread/INFO]: Superster issued server command: /ec
[15:41:57] [Async Chat Thread - #13/INFO]: [standard] sparkie0704: top das wel genoeg ook
[15:42:02] [Server thread/INFO]: LuckyLuke_ issued server command: /gamemode creative
[15:42:04] [Server thread/INFO]: ShewinB issued server command: /gm 1
[15:42:13] [Server thread/INFO]: LuckyLuke_ issued server command: /attribute ItsmeThomasX minecraft:scale base set 1
[15:42:29] [Server thread/INFO]: LuckyLuke_ issued server command: /xp set ShewinB 69l
[15:42:32] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:42:32] [Server thread/INFO]: eeJack issued server command: /home
[15:42:33] [Async Chat Thread - #13/INFO]: [standard] xFanuel: dit is echt leip
[15:42:33] [Server thread/INFO]: LuckyLuke_ issued server command: /xp set ShewinB 67l
[15:42:33] [Server thread/INFO]: ShewinB issued server command: /gm 0
[15:42:36] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 1792 x Bamboo for $8,064 to decoration shop
[15:42:41] [User Authenticator #8/INFO]: UUID of player SirMickAlot is 69adfae8-1819-4aea-986f-e86d993db479
[15:42:41] [Server thread/INFO]: [CozyTags] TOEVOEGEN SPELER + 69adfae8-1819-4aea-986f-e86d993db479
[15:42:41] [Server thread/INFO]: SirMickAlot[/62.45.103.40:56705] logged in with entity id 56325 at ([spawn]9.813233207615092, 62.42606803945876, 2.591742065349142)
[15:42:41] [Server thread/INFO]: [ChatControl] TIP: Joining SirMickAlot to channel standard in mode write due to 'chatcontrol.channel.autojoin.standard.write' permission.  We won't join him again when he leaves channel manually.
[15:42:41] [Server thread/INFO]: [+] [MOD] SirMickAlot
[15:42:44] [Async Chat Thread - #13/INFO]: [standard] LuckyLuke_: ohnee
[15:42:46] [Async Chat Thread - #13/INFO]: [standard] LuckyLuke_: hebben we mick
[15:42:47] [Server thread/INFO]: sparkie0704 issued server command: /shop
[15:42:51] [Async Chat Thread - #13/INFO]: [standard] SirMickAlot: Ohja
[15:42:53] [Server thread/INFO]: [ShopGUIPlus] sparkie0704 bought 192 x Stone for $297.6 from blocks shop
[15:42:55] [Server thread/INFO]: ShewinB issued server command: /gm 1
[15:42:56] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:42:56] [Server thread/INFO]: Superster issued server command: /ec
[15:42:57] [Async Chat Thread - #13/INFO]: [standard] SirMickAlot: daar ben ik dan eindelijk
[15:42:59] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 1792 x Bamboo for $8,064 to decoration shop
[15:43:05] [Server thread/INFO]: Superster issued server command: /home home
[15:43:09] [Async Chat Thread - #13/INFO]: [standard] xFanuel: mick geef ons allemaal een love key als welkom eer
[15:43:09] [Server thread/INFO]: ShewinB issued server command: /home home
[15:43:11] [Server thread/INFO]: ShewinB issued server command: /gm 1
[15:43:13] [Server thread/INFO]: ShewinB issued server command: /gm 1
[15:43:24] [Async Chat Thread - #13/INFO]: [standard] SirMickAlot: xFanuel wie vraagt word overgeslagen
[15:43:25] [Server thread/INFO]: Superster issued server command: /ec
[15:43:39] [Async Chat Thread - #13/INFO]: [standard] xFanuel: en dan geef je nu iedereen een love key en mij niet xd
[15:43:43] [Async Chat Thread - #13/INFO]: [standard] ItsmeThomasX: Ik heb niks gevraagd
[15:43:44] [Server thread/INFO]: EatingLittleKids issued server command: /shop
[15:43:56] [Server thread/INFO]: EatingLittleKids issued server command: /shop
[15:44:07] [Async Chat Thread - #13/INFO]: [standard] xFanuel: hulp?
[15:44:09] [Async Chat Thread - #13/INFO]: [standard] Superster: Ew niet Mick
[15:44:10] [Server thread/INFO]: sparkie0704 issued server command: /shop
[15:44:16] [Async Chat Thread - #13/INFO]: [standard] SirMickAlot: WAT
[15:44:18] [Server thread/INFO]: EatingLittleKids issued server command: /sho
[15:44:19] [Server thread/INFO]: EatingLittleKids issued server command: /shop
[15:44:21] [Server thread/INFO]: [ShopGUIPlus] sparkie0704 bought 64 x Oak Log for $169.6 from wood shop
[15:44:22] [Async Chat Thread - #13/INFO]: [standard] Superster: Grapje <33
[15:44:23] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:44:24] [Server thread/INFO]: EatingLittleKids issued server command: /shop
[15:44:28] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:44:28] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:44:29] [Server thread/INFO]: [ShopGUIPlus] EatingLittleKids bought 4 x Sea Lantern for $14.6 from blocks shop
[15:44:30] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 512 x Bone Meal for $512 from mobdrops shop
[15:44:39] [Async Chat Thread - #13/INFO]: [standard] SirMickAlot: Dacht ik al
[15:44:44] [Async Chat Thread - #13/INFO]: [standard] Superster: Nou nou
[15:44:48] [Async Chat Thread - #13/INFO]: [standard] SirMickAlot: xD
[15:44:49] [Async Chat Thread - #13/INFO]: [standard] Superster: Mijn huis is bijna af!!
[15:44:54] [Async Chat Thread - #13/INFO]: [standard] SirMickAlot: meen je niet
[15:44:58] [Async Chat Thread - #13/INFO]: [standard] ItsmeThomasX: Luuk kijk is boven je
[15:44:58] [Async Chat Thread - #13/INFO]: [standard] SirMickAlot: ik kom zo ff kijken
[15:45:04] [Async Chat Thread - #13/INFO]: [standard] Superster: Hihhii
[15:45:29] [Server thread/INFO]: PzneRSW issued server command: /ah sell 4000
[15:45:29] [Server thread/INFO]: sparkie0704 issued server command: /shop
[15:45:35] [Server thread/INFO]: xFanuel issued server command: /home
[15:45:40] [Server thread/INFO]: [ShopGUIPlus] sparkie0704 bought 12 x Hopper for $4,800 from redstone shop
[15:45:42] [Server thread/INFO]: PzneRSW issued server command: /ah sell 2500
[15:45:49] [Server thread/INFO]: PzneRSW issued server command: /ah sell 2500
[15:46:00] [Server thread/INFO]: PzneRSW issued server command: /ah sell 4676
[15:46:02] [Server thread/INFO]: xFanuel issued server command: /tpa itsmethomasx
[15:46:03] [Server thread/INFO]: ItsmeThomasX issued server command: /tpaccept
[15:46:05] [Server thread/INFO]: EatingLittleKids issued server command: /shop
[15:46:09] [Server thread/INFO]: [ShopGUIPlus] EatingLittleKids bought 4 x Sea Lantern for $14.6 from blocks shop
[15:46:17] [Async Chat Thread - #15/INFO]: [standard] ItsmeThomasX: Luuk
[15:46:25] [Async Chat Thread - #15/INFO]: [standard] ItsmeThomasX: W8
[15:46:33] [Server thread/INFO]: ShewinB issued server command: /tp SirMickAlot
[15:46:47] [Async Chat Thread - #15/INFO]: [standard] ItsmeThomasX: Shewin
[15:46:47] [Server thread/INFO]: Superster issued server command: /ec
[15:46:50] [Async Chat Thread - #15/INFO]: [standard] ShewinB: Ja?
[15:46:51] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:46:51] [Async Chat Thread - #15/INFO]: [standard] ItsmeThomasX: tp is
[15:46:54] [Server thread/INFO]: ShewinB issued server command: /tp ItsmeThomasX
[15:46:56] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:46:57] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:46:58] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:47:08] [Async Chat Thread - #15/INFO]: [standard] ItsmeThomasX: Zit erbij
[15:47:11] [User Authenticator #9/INFO]: UUID of player JeroenBouwer_ is 1adc3dc5-efd7-4ec2-b98d-e2697fce8efb
[15:47:11] [Server thread/INFO]: [CozyTags] TOEVOEGEN SPELER + 1adc3dc5-efd7-4ec2-b98d-e2697fce8efb
[15:47:11] [Server thread/INFO]: JeroenBouwer_[/86.87.42.227:58769] logged in with entity id 65508 at ([world]284.1655026290568, 64.0, 330.39804937670453)
[15:47:11] [Server thread/INFO]: ShewinB issued server command: /attribute LuckyLuke_ minecraft:scale base set 20
[15:47:11] [Server thread/INFO]: [+] [Streamer]  JeroenBouwer_
[15:47:11] [Server thread/INFO]: [ChatControl] TIP: Joining JeroenBouwer_ to channel standard in mode write due to 'chatcontrol.channel.autojoin.standard.write' permission.  We won't join him again when he leaves channel manually.
[15:47:19] [Server thread/INFO]: sparkie0704 issued server command: /crawl
[15:47:21] [Server thread/INFO]: ShewinB issued server command: /attribute ItsmeThomasX minecraft:scale base set 20
[15:47:34] [Server thread/INFO]: ShewinB issued server command: /attribute xFanuel minecraft:scale base set 20
[15:47:40] [Server thread/INFO]: ShewinB issued server command: /tphere SirMickAlot
[15:47:45] [Server thread/INFO]: sparkie0704 issued server command: /msg xFanuel maak alvast ff 8 hopper minecarts
[15:47:53] [Server thread/INFO]: ShewinB issued server command: /tphere SirMickAlot
[15:47:53] [Server thread/INFO]: xFanuel issued server command: /msg sparkie yes doe ik
[15:47:56] [Server thread/INFO]: xFanuel issued server command: /home
[15:47:59] [Server thread/INFO]: xFanuel issued server command: /home
[15:48:02] [Server thread/INFO]: ShewinB issued server command: /attribute xFanuel minecraft:scale base set 1
[15:48:13] [Server thread/INFO]: ShewinB issued server command: /attribute ItsmeThomasX minecraft:scale base set 1
[15:48:13] [Craft Scheduler Thread - 62 - UltimateTeams/INFO]: [UltimateTeams] Creating automatic ender chest backups...
[15:48:13] [Craft Scheduler Thread - 62 - UltimateTeams/INFO]: [UltimateTeams] Automatic ender chest backups completed.
[15:48:13] [Server thread/INFO]: UltimateTeams: Cleared all outstanding team invites!
[15:48:17] [Server thread/INFO]: ShewinB issued server command: /attribute LuckyLuke_ minecraft:scale base set 1
[15:48:25] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:48:27] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 1792 x Bamboo for $8,064 to decoration shop
[15:48:28] [Server thread/INFO]: ShewinB issued server command: /attribute SirMickAlot minecraft:scale base set 0.1
[15:48:32] [Server thread/INFO]: Named entity Salmon['x3 Salmon'/52499, uuid='155905a8-7d4b-4f5d-8940-301e4e36d0cf', l='ServerLevel[world]', x=-1300.87, y=62.00, z=-2228.97, cpos=[-82, -140], tl=7525, v=true] died: x3 Salmon was shot by ItsmeThomasX
[15:48:34] [Server thread/INFO]: Named entity Salmon['x2 Salmon'/52501, uuid='a0bdb79b-b5fa-414c-af10-c7459dba59c8', l='ServerLevel[world]', x=-1301.29, y=62.31, z=-2230.28, cpos=[-82, -140], tl=7525, v=true] died: x2 Salmon was shot by ItsmeThomasX
[15:48:37] [Server thread/INFO]: Named entity Salmon['x2 Salmon'/49111, uuid='b213ff52-371d-4864-9f92-7113f48bf6b6', l='ServerLevel[world]', x=-1301.67, y=62.45, z=-2216.19, cpos=[-82, -139], tl=7952, v=true] died: x2 Salmon was shot by ItsmeThomasX
[15:48:57] [Server thread/INFO]: xFanuel issued server command: /shop
[15:49:02] [Server thread/INFO]: [ShopGUIPlus] xFanuel bought 8 x Hopper for $3,200 from redstone shop
[15:49:41] [Server thread/INFO]: SirMickAlot issued server command: /echest
[15:49:43] [Server thread/INFO]: [ChatControl] SirMickAlot has died at {world} {x} {y} {z} by ENTITY_EXPLOSION
[15:49:54] [Server thread/INFO]: SirMickAlot issued server command: /tp ShewinB
[15:49:57] [Async Chat Thread - #17/INFO]: [standard] xFanuel: 'onbekende krachten' klinkt spannend
[15:50:00] [Server thread/INFO]: PzneRSW issued server command: /home
[15:50:04] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:50:06] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:50:06] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:50:07] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:50:18] [Server thread/INFO]: ShewinB issued server command: /inventoryrollback restore SirMickAlot
[15:50:22] [Async Chat Thread - #17/INFO]: [standard] ItsmeThomasX: Ik hoef niet dood Shewin
[15:50:31] [Server thread/INFO]: EatingLittleKids issued server command: /shop
[15:50:37] [Server thread/INFO]: ShewinB issued server command: /attribute SirMickAlot minecraft:scale base set 20
[15:50:38] [Server thread/INFO]: [ShopGUIPlus] EatingLittleKids bought 6 x Diorite for $9.3 from blocks shop
[15:51:06] [Async Chat Thread - #17/INFO]: [standard] ItsmeThomasX: Iemand windburst boekje?
[15:51:19] [Server thread/INFO]: ShewinB issued server command: /attribute ShewinB minecraft:scale base set 20
[15:51:24] [Server thread/INFO]: ShewinB issued server command: /give SirMickAlot rockets
[15:51:29] [Server thread/INFO]: Superster issued server command: /home base
[15:51:31] [Server thread/INFO]: ShewinB issued server command: /give SirMickAlot firework_rocket
[15:51:44] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:51:48] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 1792 x Bamboo for $8,064 to decoration shop
[15:52:12] [Server thread/INFO]: Superster issued server command: /home home
[15:52:17] [Server thread/INFO]: EatingLittleKids issued server command: /shop
[15:52:27] [Server thread/INFO]: ShewinB issued server command: /v
[15:52:30] [Server thread/INFO]: PzneRSW issued server command: /home
[15:52:31] [Server thread/INFO]: yuqiixi issued server command: /shop
[15:52:32] [Server thread/INFO]: ShewinB issued server command: /tp EatingLittleKids
[15:52:32] [Server thread/INFO]: SirMickAlot issued server command: /vanish
[15:52:32] [User Authenticator #10/INFO]: UUID of player EnderFace_ is 3856ed52-f29f-40bb-833d-480245f92b3b
[15:52:33] [Server thread/INFO]: [CozyTags] TOEVOEGEN SPELER + 3856ed52-f29f-40bb-833d-480245f92b3b
[15:52:33] [Server thread/INFO]: EnderFace_[/86.89.18.226:36389] logged in with entity id 82799 at ([spawn]6.048093771524787, 62.125, 5.365195198323029)
[15:52:33] [Server thread/INFO]: [+] [JR.MOD] EnderFace_
[15:52:33] [Server thread/INFO]: [ChatControl] TIP: Joining EnderFace_ to channel standard in mode write due to 'chatcontrol.channel.autojoin.standard.write' permission.  We won't join him again when he leaves channel manually.
[15:52:36] [Server thread/INFO]: [ShopGUIPlus] yuqiixi bought 21 x Grass Block for $74.55 from blocks shop
[15:52:44] [Server thread/INFO]: EnderFace_ issued server command: /rewards
[15:52:45] [Server thread/INFO]: ShewinB issued server command: /tphere sirmickalot
[15:52:46] [Server thread/INFO]: EnderFace_ issued server command: /rewards
[15:52:47] [Server thread/INFO]: ShewinB issued server command: /tphere sirmickalot
[15:52:48] [Server thread/INFO]: EnderFace_ issued server command: /rewards
[15:52:49] [Server thread/INFO]: ShewinB issued server command: /v
[15:52:50] [Server thread/INFO]: EnderFace_ issued server command: /rewards
[15:52:51] [Server thread/INFO]: SirMickAlot issued server command: /tp ShewinB
[15:52:51] [Server thread/INFO]: EnderFace_ issued server command: /rewards
[15:52:52] [Server thread/INFO]: EnderFace_ issued server command: /rewards
[15:53:00] [Server thread/INFO]: SirMickAlot issued server command: /vanish
[15:53:01] [Server thread/INFO]: EatingLittleKids issued server command: /shop
[15:53:05] [Server thread/INFO]: [ShopGUIPlus] EatingLittleKids bought 1 x Sea Lantern for $3.65 from blocks shop
[15:53:07] [Server thread/INFO]: ShewinB issued server command: /attribute ShewinB minecraft:scale base set 1
[15:53:09] [Server thread/INFO]: EatingLittleKids issued server command: /shop
[15:53:14] [Server thread/INFO]: ShewinB issued server command: /attribute ShewinB minecraft:scale base set 20
[15:53:18] [Server thread/INFO]: [ShopGUIPlus] EatingLittleKids bought 10 x End Rod for $107.5 from decoration shop
[15:53:31] [Server thread/INFO]: sparkie0704 issued server command: /crawl
[15:53:41] [Async Chat Thread - #20/INFO]: [standard] EatingLittleKids: Tf
[15:53:41] [Server thread/INFO]: EnderFace_ issued server command: /home home
[15:53:44] [Server thread/INFO]: JeroenBouwer_ lost connection: Disconnected
[15:53:44] [Server thread/INFO]: [voicechat] Disconnecting client JeroenBouwer_
[15:53:44] [Server thread/INFO]: [-] [Streamer]  JeroenBouwer_
[15:53:46] [Async Chat Thread - #20/INFO]: [standard] ShewinB: EatingLittleKids
[15:53:52] [Server thread/INFO]: EnderFace_ issued server command: /fly
[15:53:53] [Async Chat Thread - #20/INFO]: [standard] EatingLittleKids: Waddup
[15:54:01] [Server thread/INFO]: ShewinB issued server command: /tp EnderFace_
[15:54:09] [Async Chat Thread - #20/INFO]: [standard] EnderFace_: XD
[15:54:14] [Server thread/INFO]: sparkie0704 issued server command: /crawl
[15:54:16] [Server thread/INFO]: ShewinB issued server command: /attribute ShewinB minecraft:scale base set 1
[15:54:20] [Server thread/WARN]: Happy Ghast (vehicle of ShewinB) moved wrongly! 0.4852468488872148
[15:54:24] [Async Chat Thread - #20/INFO]: [standard] EatingLittleKids: Damn
[15:54:26] [Server thread/INFO]: SirMickAlot issued server command: /tp ShewinB
[15:54:29] [Server thread/INFO]: ShewinB issued server command: /attribute SirMickAlot minecraft:scale base set 1
[15:54:33] [Server thread/INFO]: Superster issued server command: /home base
[15:54:33] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[15:54:33] [Server thread/INFO]: [ShopGUIPlus] yuqiixi sold all 1 x White Wool for $0.35 to colours shop
[15:54:35] [Server thread/INFO]: SirMickAlot issued server command: /fly
[15:54:38] [Server thread/INFO]: EnderFace_ issued server command: /ec
[15:54:39] [Async Chat Thread - #20/INFO]: [standard] ItsmeThomasX: Hoe ben je ooit op die naam gekomen
[15:54:46] [Server thread/INFO]: ShewinB issued server command: /attribute SirMickAlot minecraft:scale base set 20
[15:54:49] [Server thread/INFO]: ShewinB issued server command: /attribute ShewinB minecraft:scale base set 20
[15:54:49] [Server thread/INFO]: Named entity TropicalFish['x7 Tropical Fish'/87315, uuid='f6939296-6d37-4a22-b0b6-1d1cbe96ff7a', l='ServerLevel[world]', x=-3010.76, y=47.00, z=1772.25, cpos=[-189, 110], tl=1315, v=true] died: x7 Tropical Fish discovered the floor was lava
[15:54:51] [Server thread/INFO]: ShewinB issued server command: /attribute ShewinB minecraft:scale base set 20
[15:55:00] [Async Chat Thread - #20/INFO]: [standard] EatingLittleKids: ik vroeg aan mensen wat ik kon gebruiken als username
[15:55:03] [Async Chat Thread - #20/INFO]: [standard] ShewinB: EnderFace_
[15:55:03] [Async Chat Thread - #21/INFO]: [standard] EatingLittleKids: En hun kwamen met je hobbies
[15:55:09] [Async Chat Thread - #21/INFO]: [standard] EnderFace_: ja?
[15:55:12] [Async Chat Thread - #21/INFO]: [standard] ShewinB: kom is naar buiten
[15:55:13] [Server thread/INFO]: Superster issued server command: /home home
[15:55:18] [Server thread/INFO]: yuqiixi issued server command: /shop
[15:55:22] [Server thread/INFO]: [ShopGUIPlus] yuqiixi bought 1 x Redstone for $3.65 from ores shop
[15:55:26] [Async Chat Thread - #21/INFO]: [standard] SirMickAlot: Waddduppppp
[15:55:26] [User Authenticator #11/INFO]: UUID of player kitkat_25 is e7792d03-f24b-4607-83c6-b1f7bb3cc9b2
[15:55:26] [Server thread/INFO]: [CozyTags] TOEVOEGEN SPELER + e7792d03-f24b-4607-83c6-b1f7bb3cc9b2
[15:55:26] [Server thread/INFO]: kitkat_25[/213.49.145.205:33101] logged in with entity id 95090 at ([world]-1.5, 64.0, -1.5)
[15:55:26] [Server thread/INFO]: [+] kitkat_25
[15:55:26] [Server thread/INFO]: [ChatControl] TIP: Joining kitkat_25 to channel standard in mode write due to 'chatcontrol.channel.autojoin.standard.write' permission.  We won't join him again when he leaves channel manually.
[15:55:26] [Server thread/INFO]: [PvPManager] Resumed new player protection for kitkat_25 because they left an excluded world.
[15:55:31] [Async Chat Thread - #21/INFO]: [standard] EnderFace_: jemig dikke reus op me ghast haha
[15:55:32] [Async Chat Thread - #21/INFO]: [standard] ItsmeThomasX: welkom kitkat
[15:55:33] [Async Chat Thread - #21/INFO]: [standard] xFanuel: welkom
[15:55:33] [Async Chat Thread - #21/INFO]: [standard] SirMickAlot: Welkom kitkat_25
[15:55:37] [Server thread/INFO]: ShewinB issued server command: /attribute ShewinB minecraft:scale base set 0.1
[15:55:41] [Server thread/INFO]: ShewinB issued server command: /attribute SirMickAlot minecraft:scale base set 0.1
[15:55:43] [Server thread/INFO]: kitkat_25 issued server command: /rewards
[15:55:43] [Server thread/INFO]: [Essentials] Created a User for CIT-d849f7c1362a (d849f7c1-362a-223c-8932-987e86f8757a) for non Bukkit type: net.citizensnpcs.nms.v1_21_R5.entity.EntityHumanNPC$PlayerNPC
[15:55:48] [Server thread/INFO]: ShewinB issued server command: /tp kitkat_25
[15:55:50] [Async Chat Thread - #21/INFO]: [standard] EnderFace_: das beter]
[15:55:54] [Server thread/INFO]: SirMickAlot issued server command: /tp kitkat_25
[15:56:00] [Server thread/INFO]: Superster issued server command: /home base
[15:56:09] [Server thread/INFO]: kitkat_25 issued server command: /discordbridge:mcstatus
[15:56:26] [Server thread/INFO]: SirMickAlot issued server command: /spy on
[15:56:26] [Server thread/INFO]: LuckyLuke_ issued server command: /spawn
[15:56:29] [Server thread/INFO]: PzneRSW issued server command: /rtp
[15:56:30] [Server thread/INFO]: ShewinB issued server command: /home home
[15:56:37] [Server thread/INFO]: xFanuel issued server command: /home
[15:56:43] [Server thread/INFO]: Superster issued server command: /craft
[15:57:00] [Async Chat Thread - #23/INFO]: [standard] ShewinB: Superster kom is dc
[15:57:03] [Async Chat Thread - #23/INFO]: [standard] EnderFace_: LuckyLuke_
[15:57:03] [Server thread/INFO]: ShewinB issued server command: /tp Superster
[15:57:09] [Async Chat Thread - #23/INFO]: [standard] Superster: wtf xD
[15:57:10] [Async Chat Thread - #23/INFO]: [standard] yuqiixi: super sterretjeee !!
[15:57:18] [Async Chat Thread - #23/INFO]: [standard] Superster: Call?
[15:57:20] [Server thread/INFO]: SirMickAlot issued server command: /spy off
[15:57:23] [Async Chat Thread - #23/INFO]: [standard] sparkie0704: duw die minecart
[15:57:24] [Async Chat Thread - #23/INFO]: [standard] ShewinB: yess
[15:57:28] [Async Chat Thread - #23/INFO]: [standard] ShewinB: ik move je even
[15:57:28] [Server thread/INFO]: EnderFace_ issued server command: /ec
[15:57:28] [Server thread/INFO]: eeJack issued server command: /home
[15:57:29] [Server thread/INFO]: kitkat_25 issued server command: /rtp
[15:57:29] [Server thread/INFO]: [PvPManager] Resumed new player protection for kitkat_25 because they left an excluded world.
[15:57:29] [Craft Scheduler Thread - 58 - BetterRTP/INFO]: [BetterRTP] -Removed a queue Location{world=CraftWorld{name=world},x=-1297.5,y=79.0,z=-1472.5,pitch=-13.8610735,yaw=88.80878}
[15:57:32] [Server thread/INFO]: EnderFace_ issued server command: /ec
[15:57:34] [Async Chat Thread - #23/INFO]: [standard] ShewinB: ga maar naar hangout
[15:57:36] [Server thread/INFO]: SirMickAlot issued server command: /tp Superster
[15:57:37] [Async Chat Thread - #23/INFO]: [standard] Superster: Im inn
[15:57:38] [Async Chat Thread - #23/INFO]: [standard] kitkat_25: halloo
[15:57:56] [Async Chat Thread - #23/INFO]: [standard] xFanuel: waar komt de bamboe
[15:57:57] [Server thread/INFO]: ItsmeThomasX issued server command: /ah
[15:58:06] [Server thread/INFO]: eeJack issued server command: /sellall
[15:58:08] [Async Chat Thread - #23/INFO]: [standard] sparkie0704: hier onder
[15:58:10] [Server thread/INFO]: eeJack issued server command: /sell handall
[15:58:10] [Server thread/INFO]: [ShopGUIPlus] eeJack sold all 1 x Ink Sac for $6 to mobdrops shop
[15:58:13] [Server thread/INFO]: ItsmeThomasX issued server command: /ah
[15:58:13] [Server thread/INFO]: UltimateTeams: Cleared all outstanding team invites!
[15:58:19] [Server thread/INFO]: SirMickAlot issued server command: /tags
[15:58:22] [Server thread/INFO]: ShewinB issued server command: /attribute SirMickAlot minecraft:scale base set 1
[15:58:27] [Server thread/INFO]: ShewinB issued server command: /attribute ShewinB minecraft:scale base set 1
[15:58:31] [Server thread/INFO]: [ChatControl] kitkat_25 has died at {world} {x} {y} {z} by ENTITY_ATTACK
[15:58:36] [Server thread/INFO]: kitkat_25 lost connection: Disconnected
[15:58:36] [Server thread/INFO]: [voicechat] Disconnecting client kitkat_25
[15:58:36] [Server thread/INFO]: [-] kitkat_25
[15:58:41] [Server thread/INFO]: sparkie0704 issued server command: /shop
[15:58:44] [Server thread/INFO]: [ShopGUIPlus] sparkie0704 bought 1 x Comparator for $400 from redstone shop
[15:58:47] [Server thread/INFO]: SirMickAlot issued server command: /fly
[15:58:47] [Async Chat Thread - #24/INFO]: [standard] xFanuel: leuke tijd gehad?
[15:58:53] [Server thread/INFO]: ShewinB issued server command: /home home
[15:58:54] [Async Chat Thread - #24/INFO]: [standard] ItsmeThomasX: rage quit
[15:58:57] [Server thread/INFO]: LuckyLuke_ issued server command: /chat reload
[15:58:57] [Server thread/INFO]: [ChatControl] Warning: No such localization: nl_NL in plugin's jar, using keys from the disk file or from the default English locale for keys that are missing.
[15:58:57] [Server thread/INFO]: [ChatControl] TIP: Player sparkie0704 is already in channel 'standard' in mode read, not adding.
[15:58:57] [Server thread/INFO]: [ChatControl] TIP: Player EatingLittleKids is already in channel 'standard' in mode read, not adding.
[15:58:57] [Server thread/INFO]: [ChatControl] TIP: Player Superster is already in channel 'standard' in mode read, not adding.
[15:58:57] [Server thread/INFO]: [ChatControl] TIP: Player yuqiixi is already in channel 'standard' in mode read, not adding.
[15:58:57] [Server thread/INFO]: [ChatControl] TIP: Player PzneRSW is already in channel 'standard' in mode read, not adding.
[15:58:57] [Server thread/INFO]: [ChatControl] TIP: Player Nicksealfish is already in channel 'standard' in mode read, not adding.
[15:58:57] [Server thread/INFO]: [ChatControl] TIP: Player ItsmeThomasX is already in channel 'standard' in mode read, not adding.
[15:58:57] [Server thread/INFO]: [ChatControl] TIP: Player xFanuel is already in channel 'standard' in mode read, not adding.
[15:58:57] [Server thread/INFO]: [ChatControl] TIP: Player EnderFace_ is already in channel 'standard' in mode read, not adding.
[15:58:57] [Server thread/INFO]: [ChatControl] TIP: Player LuckyLuke_ is already in channel 'standard' in mode read, not adding.
[15:58:57] [Server thread/INFO]: [ChatControl] TIP: Player LuckyLuke_ is already in channel 'staff' in mode read, not adding.
[15:58:57] [Server thread/INFO]: [ChatControl] TIP: Player ShewinB is already in channel 'standard' in mode read, not adding.
[15:58:57] [Server thread/INFO]: [ChatControl] TIP: Player eeJack is already in channel 'standard' in mode read, not adding.
[15:58:57] [Server thread/INFO]: [ChatControl] TIP: Player SirMickAlot is already in channel 'standard' in mode read, not adding.
[15:58:58] [Async Chat Thread - #24/INFO]: [standard] sparkie0704: ik?
[15:59:00] [Server thread/INFO]: SirMickAlot issued server command: /spy on
[15:59:01] [Server thread/INFO]: PzneRSW issued server command: /home
[15:59:04] [Async Chat Thread - #24/INFO]: [standard] xFanuel: nee die kitkat
[15:59:07] [Server thread/INFO]: PzneRSW issued server command: /shop
[15:59:09] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:59:09] [Server thread/INFO]: SirMickAlot issued server command: /chc internal book 49e2288c-3bf9-4010-936d-0fa124eba24b
[15:59:10] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:59:11] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[15:59:13] [Server thread/INFO]: SirMickAlot issued server command: /chc internal book 49e2288c-3bf9-4010-936d-0fa124eba24b
[15:59:13] [Async Chat Thread - #24/INFO]: [standard] sparkie0704: oh
[15:59:27] [Server thread/INFO]: [GriefPrevention] ShewinB placed a sign @ world: x-188, z-765;Mick je bent ;Kanker dik
[15:59:28] [Server thread/INFO]: Superster issued server command: /home base
[15:59:29] [Server thread/INFO]: Superster issued server command: /home home
[15:59:30] [Server thread/INFO]: Superster issued server command: /home home
[15:59:31] [Server thread/INFO]: Superster issued server command: /home home
[16:00:08] [User Authenticator #12/INFO]: UUID of player Matthie65 is b914a188-d6f3-4de0-b45e-fdb96c1569c9
[16:00:10] [Server thread/INFO]: PzneRSW issued server command: /shgop
[16:00:11] [Server thread/INFO]: [CozyTags] TOEVOEGEN SPELER + b914a188-d6f3-4de0-b45e-fdb96c1569c9
[16:00:11] [Server thread/INFO]: Matthie65[/87.208.8.213:57859] logged in with entity id 108785 at ([world]-2059.3539475727243, 128.0, -3041.672788894004)
[16:00:12] [Server thread/INFO]: [+] Matthie65
[16:00:12] [Server thread/INFO]: [ChatControl] TIP: Joining Matthie65 to channel standard in mode write due to 'chatcontrol.channel.autojoin.standard.write' permission.  We won't join him again when he leaves channel manually.
[16:00:12] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:00:14] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:00:16] [Server thread/INFO]: [ChatControl] Applying rules to Anvil. If you wish players to use colors on items, give them 'chatcontrol.use.color.anvil' permission. This message only shows once per 3 hours.
[16:00:18] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 1856 x Bamboo for $8,352 to decoration shop
[16:00:23] [Server thread/INFO]: Matthie65 lost connection: Disconnected
[16:00:23] [Server thread/INFO]: [voicechat] Disconnecting client Matthie65
[16:00:23] [Server thread/INFO]: [-] Matthie65
[16:00:28] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:00:30] [User Authenticator #12/INFO]: UUID of player kitkat_25 is e7792d03-f24b-4607-83c6-b1f7bb3cc9b2
[16:00:30] [Server thread/INFO]: kitkat_25[/213.49.145.205:54001] logged in with entity id 110282 at ([world]2.4467598381818743, 64.0, 2.209983552732062)
[16:00:30] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel standard in mode write
[16:00:30] [Server thread/INFO]: [ChatControl] TIP: Player kitkat_25 is already in channel 'standard' in mode read, not adding.
[16:00:30] [Server thread/INFO]: [+] kitkat_25
[16:00:30] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 1601 x Bamboo for $7,204.5 to decoration shop
[16:00:34] [Server thread/WARN]: SirMickAlot moved too quickly! 5.02383943253335,10.490552582658992,-26.572943163897094
[16:00:35] [Server thread/INFO]: PzneRSW issued server command: /ah
[16:00:39] [Server thread/INFO]: ShewinB issued server command: /ah
[16:00:45] [Async Chat Thread - #25/INFO]: [standard] kitkat_25: hyy allemaal
[16:00:49] [Async Chat Thread - #25/INFO]: [standard] ItsmeThomasX: Hallo
[16:00:49] [Async Chat Thread - #25/INFO]: [standard] SirMickAlot: Heyy
[16:00:50] [Async Chat Thread - #25/INFO]: [standard] EatingLittleKids: Hoii
[16:00:52] [Async Chat Thread - #25/INFO]: [standard] EnderFace_: hoiii
[16:00:57] [Server thread/INFO]: Nicksealfish issued server command: /home
[16:01:09] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:01:13] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:01:14] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:01:14] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:01:41] [Async Chat Thread - #25/INFO]: [standard] yuqiixi: hallo mick!
[16:01:47] [Async Chat Thread - #25/INFO]: [standard] SirMickAlot: Doei yuqiixi
[16:01:50] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:01:51] [Async Chat Thread - #25/INFO]: [standard] yuqiixi: doei mick
[16:01:53] [User Authenticator #13/INFO]: UUID of player xmelii is ec4f79b3-b19a-4fde-b8c3-8d80705dd38b
[16:01:54] [Server thread/INFO]: [CozyTags] TOEVOEGEN SPELER + ec4f79b3-b19a-4fde-b8c3-8d80705dd38b
[16:01:54] [Server thread/INFO]: xmelii[/80.60.44.82:51279] logged in with entity id 114150 at ([world]-1408.5690690903518, 80.0, -592.8859811189909)
[16:01:54] [Server thread/INFO]: [+] ROYAL xmelii
[16:01:54] [Server thread/INFO]: [ChatControl] TIP: Joining xmelii to channel standard in mode write due to 'chatcontrol.channel.autojoin.standard.write' permission.  We won't join him again when he leaves channel manually.
[16:01:55] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:01:55] [Server thread/INFO]: [voicechat] Received secret request of xmelii (20)
[16:01:55] [Server thread/INFO]: [voicechat] Sent secret to xmelii
[16:01:55] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:02:18] [Server thread/INFO]: Superster issued server command: /home home
[16:02:19] [Server thread/INFO]: Superster issued server command: /home base
[16:02:21] [Server thread/INFO]: Superster issued server command: /home base
[16:02:27] [Async Chat Thread - #25/INFO]: [standard] yuqiixi: Mick pak hem
[16:02:30] [Server thread/INFO]: ShewinB issued server command: /tp xmelii
[16:02:32] [Async Chat Thread - #25/INFO]: [standard] kitkat_25: zoekt iemand nog een teamlid ofzo haha
[16:02:39] [Server thread/INFO]: eeJack issued server command: /shop
[16:02:40] [Async Chat Thread - #25/INFO]: [standard] ShewinB: kan je eens dc komen?
[16:02:43] [Async Chat Thread - #25/INFO]: [standard] xFanuel: wat zijn je sterke punten
[16:02:44] [Async Chat Thread - #25/INFO]: [standard] ItsmeThomasX: Wat kan je allemaal?
[16:02:47] [Async Chat Thread - #25/INFO]: [standard] xmelii: welke
[16:02:53] [Async Chat Thread - #25/INFO]: [standard] ShewinB: hangout ik move je
[16:03:01] [User Authenticator #14/INFO]: UUID of player AlansioK is 4c42a2db-4504-4fe5-b566-361b845d42c6
[16:03:02] [Server thread/INFO]: [CozyTags] TOEVOEGEN SPELER + 4c42a2db-4504-4fe5-b566-361b845d42c6
[16:03:02] [Server thread/INFO]: AlansioK[/77.170.118.68:46319] logged in with entity id 117257 at ([world]644.224019689411, 48.0, -2222.4187272653658)
[16:03:02] [Server thread/INFO]: [ChatControl] TIP: Joining AlansioK to channel standard in mode write due to 'chatcontrol.channel.autojoin.standard.write' permission.  We won't join him again when he leaves channel manually.
[16:03:02] [Server thread/INFO]: [+] AlansioK
[16:03:13] [Async Chat Thread - #25/INFO]: [standard] AlansioK: yooo
[16:03:14] [Server thread/INFO]: AlansioK issued server command: /ah
[16:03:15] [Async Chat Thread - #25/INFO]: [standard] yuqiixi: hehe
[16:03:15] [Server thread/INFO]: EatingLittleKids issued server command: /unclaim
[16:03:17] [Async Chat Thread - #25/INFO]: [standard] yuqiixi: eindelijk!
[16:03:21] [Server thread/INFO]: EatingLittleKids issued server command: /unclaim
[16:03:22] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[16:03:22] [Server thread/INFO]: [ShopGUIPlus] yuqiixi sold all 2 x Rotten Flesh for $0.2 to mobdrops shop
[16:03:25] [Async Chat Thread - #25/INFO]: [standard] SirMickAlot: Ja je bewoog zo veel
[16:03:27] [Server thread/INFO]: LuckyLuke_ issued server command: /reward reload
[16:03:27] [Server thread/INFO]: [UltimateRewards] Loading rewards...
[16:03:28] [Server thread/INFO]: [UltimateRewards] Column og_rewardCollected in table rewards does not exist. Attempting to create column...
[16:03:28] [Server thread/INFO]: [UltimateRewards] Column og_reward in table rewards does not exist. Attempting to create column...
[16:03:28] [Server thread/INFO]: [UltimateRewards] 13 rewards have been loaded from rewards folder!
[16:03:28] [Server thread/INFO]: [UltimateRewards] Loading guis...
[16:03:28] [Server thread/INFO]: [UltimateRewards] Loaded 0 scheduled and 0 repeatable tasks!
[16:03:29] [Server thread/INFO]: LuckyLuke_ issued server command: /rewards
[16:03:29] [Async Chat Thread - #26/INFO]: [standard] SirMickAlot: xD
[16:03:32] [Server thread/INFO]: EatingLittleKids issued server command: /unclaim
[16:03:36] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 Doe zo even /msg itsmethomas maar wat zijn je sterke punten (in minecraft)
[16:03:43] [Server thread/INFO]: AlansioK issued server command: /vote
[16:03:46] [Server thread/INFO]: EatingLittleKids issued server command: /unclaim
[16:03:47] [Server thread/INFO]: PzneRSW issued server command: /ah sell 3000
[16:03:54] [Server thread/INFO]: [Votifier] Got a forwarded vote -> Vote (from:MinecraftServers.org username:alansiok address:2a02:a451:ad29:0:6162:a1ae:3eee:a065 timeStamp:1764687833000 additionalData:null)
[16:03:54] [Server thread/INFO]: [UltimateRewards] Counting the vote for alansiok
[16:03:54] [Server thread/INFO]: Crates » Given x1 of VOTE KEY key(s) to AlansioK.
[16:04:09] [Server thread/INFO]: [Votifier] Got a forwarded vote -> Vote (from:Minecraft-Server.net username:alansiok address:2a02:a451:ad29:0:6162:a1ae:3eee:a065 timeStamp:1764687849 additionalData:null)
[16:04:09] [Server thread/INFO]: [UltimateRewards] Counting the vote for alansiok
[16:04:09] [Server thread/INFO]: Crates » Given x1 of VOTE KEY key(s) to AlansioK.
[16:04:20] [Server thread/INFO]: [Votifier] Got a forwarded vote -> Vote (from:minecraftkrant.nl username:alansiok address:2a02:a451:ad29:0:6162:a1ae:3eee:a065 timeStamp:1764687860 additionalData:null)
[16:04:20] [Server thread/INFO]: [UltimateRewards] Counting the vote for alansiok
[16:04:20] [Server thread/INFO]: Crates » Given x1 of VOTE KEY key(s) to AlansioK.
[16:04:41] [Server thread/INFO]: Superster issued server command: /home base
[16:04:46] [Server thread/INFO]: AlansioK issued server command: /spawn
[16:04:47] [Server thread/INFO]: Superster issued server command: /home home
[16:04:50] [Server thread/INFO]: sparkie0704 issued server command: /home
[16:04:55] [Async Chat Thread - #27/INFO]: [standard] yuqiixi: boo
[16:04:58] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[16:04:58] [Server thread/INFO]: [ShopGUIPlus] yuqiixi sold all 5 x Arrow for $35 to mobdrops shop
[16:05:03] [Server thread/INFO]: ShewinB issued server command: /ignoreclaims
[16:05:07] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[16:05:07] [Server thread/INFO]: [ShopGUIPlus] yuqiixi sold all 5 x Cooked Porkchop for $3.25 to farmfood shop
[16:05:09] [Server thread/INFO]: yuqiixi issued server command: /sell handall
[16:05:19] [Server thread/INFO]: ItsmeThomasX issued server command: /tpa kitkat_25
[16:05:25] [Async Chat Thread - #27/INFO]: [standard] kitkat_25: kan ik iemand zijn team joinen
[16:05:29] [Server thread/INFO]: PzneRSW issued server command: /ah sell 4000
[16:05:31] [Server thread/INFO]: PzneRSW issued server command: /ah
[16:05:33] [Server thread/INFO]: PzneRSW issued server command: /ah
[16:05:35] [Server thread/INFO]: ShewinB issued server command: /home home
[16:05:44] [Server thread/INFO]: EatingLittleKids issued server command: /unclaim
[16:05:49] [Server thread/INFO]: PzneRSW issued server command: /ah sell 4200
[16:05:52] [Async Chat Thread - #27/INFO]: [standard] ItsmeThomasX: Wat zijn je sterke punten?
[16:05:55] [Server thread/INFO]: yuqiixi issued server command: /hop
[16:05:56] [Server thread/INFO]: yuqiixi issued server command: /shop
[16:05:59] [Async Chat Thread - #27/INFO]: [standard] yuqiixi: wait
[16:06:00] [Server thread/INFO]: yuqiixi issued server command: /shopo
[16:06:01] [Server thread/INFO]: SirMickAlot issued server command: /hop
[16:06:01] [Server thread/INFO]: yuqiixi issued server command: /shop
[16:06:02] [Server thread/INFO]: yuqiixi issued server command: /shop
[16:06:04] [Server thread/INFO]: yuqiixi issued server command: /shop
[16:06:05] [Server thread/INFO]: ShewinB issued server command: /tphere xmelii
[16:06:08] [Server thread/INFO]: PzneRSW issued server command: /ah
[16:06:11] [Server thread/INFO]: [ShopGUIPlus] yuqiixi bought 11 x Ender Pearl for $550 from mobdrops shop
[16:06:13] [Async Chat Thread - #27/INFO]: [standard] AlansioK: Ik ga echt niet meer voten voor deze rewards...
[16:06:16] [Async Chat Thread - #27/INFO]: [standard] yuqiixi: uhm,
[16:06:17] [Server thread/INFO]: SirMickAlot issued server command: /staff
[16:06:18] [Async Chat Thread - #27/INFO]: [standard] yuqiixi: ik dacht
[16:06:27] [Server thread/INFO]: AlansioK issued server command: /home
[16:06:28] [Server thread/INFO]: SirMickAlot issued server command: /staff
[16:06:31] [Async Chat Thread - #27/INFO]: [standard] EnderFace_: kitkat_25 je kan altijd op dc vragen bij channel zoek een team.
[16:06:32] [Server thread/INFO]: SirMickAlot issued server command: /tphere yuqiixi
[16:06:36] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasX hoe bedoel je
[16:06:54] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 wat kan je, minen, bouwen?
[16:06:55] [Server thread/INFO]: Superster issued server command: /craft
[16:07:09] [Server thread/INFO]: AlansioK issued server command: /ah
[16:07:12] [Server thread/INFO]: LuckyLuke_ issued server command: /reward reload
[16:07:12] [Server thread/INFO]: [UltimateRewards] Loading rewards...
[16:07:12] [Server thread/INFO]: [UltimateRewards] 13 rewards have been loaded from rewards folder!
[16:07:12] [Server thread/INFO]: [UltimateRewards] Loading guis...
[16:07:12] [Server thread/INFO]: [UltimateRewards] Loaded 0 scheduled and 0 repeatable tasks!
[16:07:13] [Server thread/INFO]: LuckyLuke_ issued server command: /rewards
[16:07:17] [luckperms-command-executor/INFO]: [LP] Set tags.og to true for luckyluke_ in context global.
[16:07:17] [luckperms-worker-6/INFO]: [LuckPerms] [Messaging] Sending log with id: 00068a87-d121-473b-b45e-4007550e5086
[16:07:17] [luckperms-worker-14/INFO]: [LuckPerms] [Messaging] Sending user ping for 'luckyluke_' with id: 947d905d-a2b7-4dea-87fe-281eb4b57056
[16:07:19] [Server thread/INFO]: EatingLittleKids issued server command: /unclaim
[16:07:23] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:07:25] [Server thread/INFO]: SirMickAlot issued server command: /layback
[16:07:26] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 1664 x Bamboo for $7,488 to decoration shop
[16:07:31] [User Authenticator #15/INFO]: UUID of player Matthie65 is b914a188-d6f3-4de0-b45e-fdb96c1569c9
[16:07:32] [Server thread/INFO]: Matthie65[/87.208.8.213:54393] logged in with entity id 129615 at ([world]-2060.4214117271536, 128.0, -3042.0051754677056)
[16:07:32] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel standard in mode write
[16:07:32] [Server thread/INFO]: [ChatControl] TIP: Player Matthie65 is already in channel 'standard' in mode read, not adding.
[16:07:32] [Server thread/INFO]: [+] Matthie65
[16:07:33] [Server thread/INFO]: PzneRSW issued server command: /ah
[16:07:33] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasX mine, bouwen vanalles alleen pvp tegen andere spelers is niet zo geweldig ahaha
[16:07:35] [Server thread/INFO]: sparkie0704 issued server command: /shop
[16:07:39] [Server thread/INFO]: [ShopGUIPlus] sparkie0704 bought 64 x Cobblestone for $163.2 from blocks shop
[16:07:39] [Server thread/INFO]: yuqiixi issued server command: /lay
[16:07:39] [Server thread/INFO]: AlansioK issued server command: /ah
[16:07:44] [Async Chat Thread - #29/INFO]: [standard] Matthie65: hallo hallotjes
[16:07:45] [Server thread/INFO]: yuqiixi issued server command: /sit
[16:07:49] [Async Chat Thread - #29/INFO]: [standard] AlansioK: Hooii
[16:07:51] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 mnu daar kan je altijd aan werken
[16:07:59] [Server thread/INFO]: ItsmeThomasX issued server command: /home
[16:08:05] [Server thread/INFO]: PzneRSW issued server command: /ec
[16:08:06] [Server thread/INFO]: SirMickAlot issued server command: /staff
[16:08:07] [Server thread/INFO]: AlansioK issued server command: /rtp
[16:08:07] [Craft Scheduler Thread - 104 - BetterRTP/INFO]: [BetterRTP] -Removed a queue Location{world=CraftWorld{name=world},x=-2879.5,y=63.0,z=-1883.5,pitch=4.670534,yaw=-148.76729}
[16:08:11] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 ff overleggen met andere teammates
[16:08:13] [Server thread/INFO]: UltimateTeams: Cleared all outstanding team invites!
[16:08:13] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:08:16] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:08:16] [User Authenticator #15/INFO]: UUID of player Naemapema is 51383295-66ec-4616-96e5-3b1313f27537
[16:08:16] [Server thread/INFO]: SirMickAlot issued server command: /tphere yuqiixi
[16:08:17] [Server thread/INFO]: Superster issued server command: /shop
[16:08:17] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:08:17] [Server thread/INFO]: [CozyTags] TOEVOEGEN SPELER + 51383295-66ec-4616-96e5-3b1313f27537
[16:08:17] [Server thread/INFO]: Naemapema[/83.84.17.201:52043] logged in with entity id 131971 at ([world]5359.190755988194, 64.0, -4358.2640346538565)
[16:08:17] [Server thread/INFO]: [+] Naemapema
[16:08:17] [Server thread/INFO]: [ChatControl] TIP: Joining Naemapema to channel standard in mode write due to 'chatcontrol.channel.autojoin.standard.write' permission.  We won't join him again when he leaves channel manually.
[16:08:19] [Server thread/INFO]: xFanuel issued server command: /home
[16:08:21] [Server thread/INFO]: LuckyLuke_ issued server command: /reward reload
[16:08:21] [Server thread/INFO]: [UltimateRewards] Loading rewards...
[16:08:21] [Server thread/INFO]: [UltimateRewards] 13 rewards have been loaded from rewards folder!
[16:08:21] [Server thread/INFO]: [UltimateRewards] Loading guis...
[16:08:21] [Server thread/INFO]: [UltimateRewards] Loaded 0 scheduled and 0 repeatable tasks!
[16:08:21] [Server thread/INFO]: [ShopGUIPlus] Superster bought 4 x Coal for $10.6 from ores shop
[16:08:22] [Async Chat Thread - #29/INFO]: [standard] SirMickAlot: Bruh
[16:08:29] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasX oke dankjee
[16:08:30] [Server thread/INFO]: SirMickAlot issued server command: /staff
[16:08:30] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:08:32] [Server thread/INFO]: Matthie65 issued server command: /shop
[16:08:34] [Server thread/INFO]: EnderFace_ issued server command: /ec
[16:08:35] [Server thread/INFO]: [ShopGUIPlus] Matthie65 bought 4 x Cooked Beef for $55 from farmfood shop
[16:08:52] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:08:54] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 Stuur maar tpa (/tpa itsmethomas)
[16:08:55] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 384 x Bone Meal for $384 from mobdrops shop
[16:08:56] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:08:58] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 512 x Bone Meal for $512 from mobdrops shop
[16:09:10] [Server thread/INFO]: SirMickAlot issued server command: /msg yuqiixi protect me ik ga ff snel wat eten pakken xD
[16:09:10] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:09:14] [Server thread/INFO]: yuqiixi issued server command: /r oki!
[16:09:14] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:09:15] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:09:15] [Server thread/INFO]: kitkat_25 issued server command: /tpa ItsmeThomasX
[16:09:17] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 320 x Bone Meal for $320 from mobdrops shop
[16:09:23] [Server thread/INFO]: Matthie65 issued server command: /shop
[16:09:26] [Server thread/INFO]: [ShopGUIPlus] Matthie65 bought 64 x Cobblestone for $163.2 from blocks shop
[16:09:26] [Server thread/INFO]: ItsmeThomasX issued server command: /tpaccept
[16:09:27] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:09:29] [Async Chat Thread - #31/INFO]: [standard] xFanuel: sparkie die machine staat stil
[16:09:31] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:09:32] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 512 x Bone Meal for $512 from mobdrops shop
[16:09:33] [Server thread/INFO]: Matthie65 issued server command: /shop
[16:09:35] [Async Chat Thread - #31/INFO]: [standard] sparkie0704: dat klopt
[16:09:36] [Async Chat Thread - #31/INFO]: [standard] ItsmeThomasX: Goed
[16:09:37] [Server thread/INFO]: [ShopGUIPlus] Matthie65 bought 64 x Redstone for $233.6 from ores shop
[16:09:37] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 384 x Bone Meal for $384 from mobdrops shop
[16:09:42] [Async Chat Thread - #31/INFO]: [standard] ItsmeThomasX: Wat wil je bouwen
[16:09:46] [Server thread/INFO]: Matthie65 issued server command: /shop
[16:09:51] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasX mOOIE BASE
[16:09:56] [Server thread/INFO]: [ShopGUIPlus] Matthie65 bought 128 x Cobblestone for $326.4 from blocks shop
[16:10:02] [Server thread/INFO]: xFanuel issued server command: /trust naemapema
[16:10:03] [Server thread/INFO]: Matthie65 issued server command: /shop
[16:10:05] [Server thread/INFO]: xFanuel issued server command: /trust itsmethomasx
[16:10:06] [Server thread/INFO]: [ShopGUIPlus] Matthie65 bought 64 x Iron Ingot for $496 from ores shop
[16:10:07] [Server thread/INFO]: Superster issued server command: /ec
[16:10:11] [Server thread/INFO]: Superster issued server command: /ec
[16:10:12] [Server thread/INFO]: EatingLittleKids issued server command: /shop
[16:10:13] [Server thread/INFO]: Matthie65 issued server command: /shop
[16:10:16] [Server thread/INFO]: [ShopGUIPlus] Matthie65 bought 128 x Cobblestone for $326.4 from blocks shop
[16:10:19] [Server thread/INFO]: [ShopGUIPlus] EatingLittleKids bought 32 x Rotten Flesh for $384 from mobdrops shop
[16:10:23] [Server thread/INFO]: Superster issued server command: /craft
[16:10:32] [Server thread/INFO]: xFanuel issued server command: /msg sparkie me zus zegt 'nice!!'
[16:10:32] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasX wat wilje dat ik doe
[16:10:37] [Server thread/INFO]: sparkie0704 issued server command: /r tof
[16:10:37] [Server thread/INFO]: Superster issued server command: /craft
[16:10:42] [Server thread/INFO]: PzneRSW issued server command: /ah sell 3500
[16:10:43] [Server thread/INFO]: PzneRSW issued server command: /ah
[16:10:45] [Server thread/INFO]: PzneRSW issued server command: /ah
[16:10:45] [Server thread/INFO]: Naemapema issued server command: /shop
[16:10:49] [Server thread/INFO]: Superster issued server command: /craft
[16:10:50] [Server thread/INFO]: [ShopGUIPlus] Naemapema sold all 1408 x Bamboo for $6,336 to decoration shop
[16:10:55] [Server thread/INFO]: Naemapema issued server command: /shop
[16:10:57] [Server thread/INFO]: Superster issued server command: /craft
[16:10:59] [Server thread/INFO]: xFanuel issued server command: /trust kitkat_25
[16:10:59] [Server thread/INFO]: [ShopGUIPlus] Naemapema sold all 794 x Bamboo for $3,573 to decoration shop
[16:11:01] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 Ik vraag het even aan xFanuel die is meer van het bouwen, ik meer van minen en pvp
[16:11:04] [Server thread/INFO]: Naemapema issued server command: /home
[16:11:05] [Server thread/INFO]: eeJack issued server command: /home
[16:11:08] [Server thread/INFO]: Superster issued server command: /ec
[16:11:25] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 je kan weer in chat praten hoor hoef geen msg
[16:11:25] [Server thread/INFO]: yuqiixi issued server command: /shop
[16:11:26] [Server thread/INFO]: LuckyLuke_ issued server command: /reward reload
[16:11:26] [Server thread/INFO]: [UltimateRewards] Loading rewards...
[16:11:26] [Server thread/INFO]: [UltimateRewards] 13 rewards have been loaded from rewards folder!
[16:11:26] [Server thread/INFO]: [UltimateRewards] Loading guis...
[16:11:26] [Server thread/INFO]: [UltimateRewards] Loaded 0 scheduled and 0 repeatable tasks!
[16:11:30] [Server thread/INFO]: [ShopGUIPlus] yuqiixi bought 64 x Gunpowder for $1,920 from mobdrops shop
[16:11:33] [Server thread/INFO]: [ShopGUIPlus] yuqiixi bought 64 x Sugar Cane for $272 from farmfood shop
[16:11:35] [Server thread/INFO]: [ShopGUIPlus] yuqiixi bought 64 x Sugar Cane for $272 from farmfood shop
[16:11:39] [Server thread/INFO]: kitkat_25 issued server command: /msg xFanuel dankje
[16:11:39] [Server thread/INFO]: [ShopGUIPlus] yuqiixi bought 64 x Gunpowder for $1,920 from mobdrops shop
[16:12:02] [Async Chat Thread - #33/INFO]: [standard] kitkat_25: fanuel kan ik je met iets helpen
[16:12:07] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:12:09] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:12:10] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:12:10] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:12:11] [Server thread/INFO]: Matthie65 lost connection: Disconnected
[16:12:11] [Server thread/INFO]: [voicechat] Disconnecting client Matthie65
[16:12:11] [Server thread/INFO]: [-] Matthie65
[16:12:12] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 64 x Bone Meal for $64 from mobdrops shop
[16:12:19] [Async Chat Thread - #33/INFO]: [standard] xFanuel: ff denken
[16:12:36] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:12:37] [User Authenticator #16/INFO]: UUID of player Matthie65 is b914a188-d6f3-4de0-b45e-fdb96c1569c9
[16:12:38] [Server thread/INFO]: Matthie65[/87.208.8.213:34973] logged in with entity id 145132 at ([world]-2100.0050469547796, 179.0, -3081.300000011921)
[16:12:38] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel standard in mode write
[16:12:38] [Server thread/INFO]: [ChatControl] TIP: Player Matthie65 is already in channel 'standard' in mode read, not adding.
[16:12:38] [Server thread/INFO]: [+] Matthie65
[16:12:40] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:12:49] [Server thread/INFO]: LuckyLuke_ issued server command: /reward reset LuckyLuke_ og_reward
[16:12:49] [Server thread/INFO]: xFanuel issued server command: /teaminvites enable
[16:12:50] [Server thread/INFO]: LuckyLuke_ issued server command: /rewards
[16:12:51] [Server thread/INFO]: Superster issued server command: /ec
[16:12:58] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:13:00] [Server thread/INFO]: xFanuel issued server command: /
[16:13:00] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 1792 x Bamboo for $8,064 to decoration shop
[16:13:03] [Server thread/INFO]: kitkat_25 issued server command: /team
[16:13:06] [Profile Lookup Executor #1/WARN]: Couldn't look up profile properties for d6b4b656-f6e6-471f-8345-572dcb5d6338
com.mojang.authlib.exceptions.MinecraftClientHttpException: Status: 429
    at com.mojang.authlib.minecraft.client.MinecraftClient.readInputStream(MinecraftClient.java:103) ~[authlib-6.0.58.jar:?]
    at com.mojang.authlib.minecraft.client.MinecraftClient.get(MinecraftClient.java:56) ~[authlib-6.0.58.jar:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fetchProfileUncached(YggdrasilMinecraftSessionService.java:201) ~[authlib-6.0.58.jar:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fetchProfile(YggdrasilMinecraftSessionService.java:171) ~[authlib-6.0.58.jar:?]
    at com.destroystokyo.paper.profile.PaperMinecraftSessionService.fetchProfile(PaperMinecraftSessionService.java:35) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at org.bukkit.craftbukkit.profile.CraftPlayerProfile.getUpdatedProfile(CraftPlayerProfile.java:175) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[16:13:09] [Server thread/INFO]: Superster issued server command: /craft
[16:13:15] [Async Chat Thread - #33/INFO]: [standard] kitkat_25: dankje
[16:13:26] [Server thread/INFO]: Superster issued server command: /ec
[16:13:28] [Server thread/INFO]: Naemapema issued server command: /trust sparkie0704
[16:13:34] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:13:36] [Server thread/INFO]: xFanuel issued server command: /msg sparkie nu kan je in die chesten ook
[16:13:37] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 1397 x Bamboo for $6,286.5 to decoration shop
[16:13:37] [Server thread/INFO]: LuckyLuke_ issued server command: /reward reload
[16:13:37] [Server thread/INFO]: [UltimateRewards] Loading rewards...
[16:13:37] [Server thread/INFO]: [UltimateRewards] 13 rewards have been loaded from rewards folder!
[16:13:37] [Server thread/INFO]: [UltimateRewards] Loading guis...
[16:13:37] [Server thread/INFO]: [UltimateRewards] Loaded 0 scheduled and 0 repeatable tasks!
[16:13:40] [Server thread/INFO]: LuckyLuke_ issued server command: /rewards
[16:13:42] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:13:44] [Server thread/INFO]: sparkie0704 issued server command: /r top
[16:13:47] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:13:48] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:13:48] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:13:52] [Server thread/INFO]: ItsmeThomasX issued server command: /ah
[16:13:52] [Async Chat Thread - #33/INFO]: [standard] xFanuel: je kan helpen met uit hakken
[16:13:59] [Async Chat Thread - #33/INFO]: [standard] kitkat_25: ja
[16:14:02] [Async Chat Thread - #33/INFO]: [standard] xFanuel: we moeten een grote kamer voor chesten room
[16:14:02] [Server thread/INFO]: Nicksealfish issued server command: /home
[16:14:04] [Server thread/INFO]: SirMickAlot issued server command: /ec
[16:14:05] [Server thread/INFO]: Naemapema issued server command: /home
[16:14:08] [Server thread/INFO]: Naemapema issued server command: /trust kitkat_25
[16:14:11] [Server thread/INFO]: SirMickAlot issued server command: /spy off
[16:14:12] [Server thread/INFO]: Naemapema issued server command: /trust kitkat_25
[16:14:13] [Server thread/INFO]: SirMickAlot issued server command: /tp ShewinB
[16:14:16] [Server thread/INFO]: SirMickAlot issued server command: /tp ShewinB
[16:14:20] [Async Chat Thread - #33/INFO]: [standard] xFanuel: kom
[16:14:25] [Server thread/INFO]: LuckyLuke_ issued server command: /reward reload
[16:14:25] [Server thread/INFO]: [UltimateRewards] Loading rewards...
[16:14:25] [Server thread/INFO]: [UltimateRewards] 13 rewards have been loaded from rewards folder!
[16:14:25] [Server thread/INFO]: [UltimateRewards] Loading guis...
[16:14:25] [Server thread/INFO]: [UltimateRewards] Loaded 0 scheduled and 0 repeatable tasks!
[16:14:26] [Server thread/INFO]: LuckyLuke_ issued server command: /rewards
[16:14:26] [Server thread/INFO]: ItsmeThomasX issued server command: /ah
[16:14:40] [Async Chat Thread - #33/INFO]: [standard] Naemapema: kan je deze ruimtet uithakken?
[16:14:48] [Async Chat Thread - #33/INFO]: [standard] kitkat_25: w8 he ff pickax maken
[16:14:50] [Server thread/INFO]: PzneRSW issued server command: /ah sell 3500
[16:14:53] [Async Chat Thread - #33/INFO]: [standard] xFanuel: komt eraan
[16:14:54] [Server thread/INFO]: LuckyLuke_ issued server command: /reward reload
[16:14:54] [Server thread/INFO]: [UltimateRewards] Loading rewards...
[16:14:54] [Server thread/INFO]: [UltimateRewards] 13 rewards have been loaded from rewards folder!
[16:14:54] [Server thread/INFO]: [UltimateRewards] Loading guis...
[16:14:54] [Server thread/INFO]: [UltimateRewards] Loaded 0 scheduled and 0 repeatable tasks!
[16:14:54] [Server thread/INFO]: LuckyLuke_ issued server command: /rewards
[16:15:05] [Server thread/INFO]: Matthie65 fell from a high place
[16:15:06] [Server thread/INFO]: SirMickAlot issued server command: /tag
[16:15:08] [Server thread/INFO]: Matthie65 issued server command: /home
[16:15:10] [Server thread/INFO]: LuckyLuke_ issued server command: /rewards
[16:15:11] [Server thread/INFO]: SirMickAlot issued server command: /spawn
[16:15:13] [Server thread/INFO]: SirMickAlot issued server command: /rewards
[16:15:13] [Server thread/INFO]: [Essentials] Created a User for CIT-d849f7c1362a (d849f7c1-362a-223c-8932-987e86f8757a) for non Bukkit type: net.citizensnpcs.nms.v1_21_R5.entity.EntityHumanNPC$PlayerNPC
[16:15:14] [Server thread/INFO]: ShewinB issued server command: /spawn
[16:15:14] [Server thread/INFO]: SirMickAlot issued server command: /rewards
[16:15:14] [Async Chat Thread - #33/INFO]: [standard] Matthie65: balen
[16:15:14] [Async Chat Thread - #34/INFO]: [standard] AlansioK: rip
[16:15:14] [Server thread/INFO]: LuckyLuke_ issued server command: /rewards
[16:15:18] [luckperms-command-executor/INFO]: [LP] Set tags.og to true for sirmickalot in context global.
[16:15:18] [luckperms-worker-14/INFO]: [LuckPerms] [Messaging] Sending log with id: 64099818-ca01-41b5-b5b9-7be1a9d3937a
[16:15:18] [luckperms-worker-6/INFO]: [LuckPerms] [Messaging] Sending user ping for 'sirmickalot' with id: 5565e626-39a3-4933-8055-8d8cef387fd0
[16:15:19] [Server thread/INFO]: ShewinB issued server command: /tphere xFanuel
[16:15:20] [Server thread/INFO]: LuckyLuke_ issued server command: /tags
[16:15:23] [Server thread/INFO]: ShewinB issued server command: /tphere xmelii
[16:15:23] [Server thread/INFO]: SirMickAlot issued server command: /tags
[16:15:24] [Server thread/INFO]: ShewinB issued server command: /rewards
[16:15:24] [Async Chat Thread - #34/INFO]: [standard] kitkat_25: tnx
[16:15:25] [Server thread/INFO]: ShewinB issued server command: /rewards
[16:15:26] [Server thread/INFO]: ShewinB issued server command: /rewards
[16:15:26] [Server thread/INFO]: SirMickAlot issued server command: /rewards
[16:15:27] [Server thread/INFO]: xFanuel issued server command: /rewards
[16:15:29] [Server thread/INFO]: xmelii issued server command: /rewards
[16:15:31] [Server thread/INFO]: SirMickAlot issued server command: /tags
[16:15:32] [luckperms-command-executor/INFO]: [LP] Set tags.og to true for shewinb in context global.
[16:15:32] [luckperms-worker-14/INFO]: [LuckPerms] [Messaging] Sending log with id: 1f344f02-6eb8-4b9c-ae67-90452109fce8
[16:15:32] [luckperms-worker-14/INFO]: [LuckPerms] [Messaging] Sending user ping for 'shewinb' with id: 047265f7-79b2-48bb-990f-66ca14583e52
[16:15:32] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give xmelii 3500
[16:15:32] [Server thread/INFO]: $3,500 toegevoegd aan ROYAL xmelii rekening. Nieuw saldo: $388,430.66
[16:15:33] [Server thread/INFO]: LuckyLuke_ issued server command: /tags
[16:15:36] [Server thread/INFO]: SirMickAlot issued server command: /tags
[16:15:36] [Async Chat Thread - #34/INFO]: [standard] xFanuel: wats dit
[16:15:43] [luckperms-command-executor/INFO]: [LP] Set tags.og to true for xmelii in context global.
[16:15:43] [luckperms-worker-14/INFO]: [LuckPerms] [Messaging] Sending log with id: 873ff5d2-bd56-457f-acd1-a93c225ec4f5
[16:15:43] [luckperms-worker-6/INFO]: [LuckPerms] [Messaging] Sending user ping for 'xmelii' with id: 50e7716d-ebcf-47a2-ac8e-437596881445
[16:15:44] [Server thread/INFO]: LuckyLuke_ issued server command: /lp user LuckyLuke_ info
[16:15:44] [Server thread/INFO]: ItsmeThomasX issued server command: /ah
[16:15:46] [Server thread/INFO]: LuckyLuke_ issued server command: /lp user LuckyLuke_ info permissions
[16:15:51] [Server thread/INFO]: xmelii issued server command: /tags
[16:15:53] [Server thread/INFO]: SirMickAlot issued server command: /rewards
[16:15:55] [Server thread/INFO]: SirMickAlot issued server command: /rewards
[16:15:56] [Async Chat Thread - #34/INFO]: [standard] xFanuel: hoezo ben ik gebracht
[16:15:56] [Server thread/INFO]: SirMickAlot issued server command: /rewards
[16:16:04] [Async Chat Thread - #34/INFO]: [standard] kitkat_25: moed dit allemaal weg
[16:16:08] [Server thread/INFO]: xmelii issued server command: /rewards
[16:16:10] [Server thread/INFO]: xFanuel issued server command: /home
[16:16:17] [Server thread/INFO]: Matthie65 issued server command: /home
[16:16:21] [Async Chat Thread - #34/INFO]: [standard] xFanuel: kitkat ben je een meisje of een jongen
[16:16:23] [Server thread/INFO]: LuckyLuke_ issued server command: /lp editor
[16:16:25] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:16:28] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 384 x Bone Meal for $384 from mobdrops shop
[16:16:29] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:16:30] [Server thread/INFO]: xmelii issued server command: /home huis
[16:16:30] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:16:32] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 192 x Bone Meal for $192 from mobdrops shop
[16:16:33] [Async Chat Thread - #34/INFO]: [standard] kitkat_25: meisje
[16:16:43] [Async Chat Thread - #34/INFO]: [standard] xFanuel: dit
[16:16:44] [Async Chat Thread - #34/INFO]: [standard] Naemapema: yes
[16:16:46] [Async Chat Thread - #34/INFO]: [standard] xFanuel: de outline zit eral
[16:16:49] [Server thread/INFO]: ItsmeThomasX issued server command: /ah
[16:16:50] [Async Chat Thread - #34/INFO]: [standard] xFanuel: 4 hoog
[16:16:52] [Async Chat Thread - #33/INFO]: [standard] Naemapema: 4 hoog
[16:16:52] [Server thread/INFO]: LuckyLuke_ issued server command: /reward reload
[16:16:52] [Server thread/INFO]: [UltimateRewards] Loading rewards...
[16:16:53] [Server thread/INFO]: [UltimateRewards] 13 rewards have been loaded from rewards folder!
[16:16:53] [Server thread/INFO]: [UltimateRewards] Loading guis...
[16:16:53] [Server thread/INFO]: [UltimateRewards] Loaded 0 scheduled and 0 repeatable tasks!
[16:16:55] [Server thread/INFO]: Naemapema lost connection: Disconnected
[16:16:55] [Server thread/INFO]: [voicechat] Disconnecting client Naemapema
[16:16:55] [Server thread/INFO]: [-] Naemapema
[16:16:56] [Server thread/INFO]: SirMickAlot issued server command: /rewards
[16:17:02] [Async Chat Thread - #33/INFO]: [standard] SirMickAlot: Banaaaaaaan
[16:17:02] [Async Chat Thread - #33/INFO]: [standard] ShewinB: Banaaan
[16:17:06] [Server thread/INFO]: ItsmeThomasX issued server command: /msg pzneRSW Ik zie dat je boekjes verkoopt
[16:17:08] [Async Chat Thread - #33/INFO]: [standard] EnderFace_: druif
[16:17:09] [Async Chat Thread - #33/INFO]: [standard] xmelii: banaan
[16:17:10] [Server thread/INFO]: LuckyLuke_ issued server command: /reward reset SirMickAlot og_reward
[16:17:11] [Server thread/INFO]: xFanuel issued server command: /pay kitkat 5000
[16:17:16] [Server thread/INFO]: ItsmeThomasX issued server command: /msg PzneRSW Verkoop je een mending boekje?
[16:17:16] [Async Chat Thread - #33/INFO]: [standard] EnderFace_: dag druif
[16:17:17] [Server thread/INFO]: LuckyLuke_ issued server command: /reward reset xmelii og_reward
[16:17:23] [Server thread/INFO]: xmelii issued server command: /spawn
[16:17:24] [Server thread/INFO]: SirMickAlot issued server command: /rewards
[16:17:26] [Server thread/INFO]: xmelii issued server command: /rewards
[16:17:26] [Server thread/INFO]: Matthie65 issued server command: /home
[16:17:26] [luckperms-command-executor/INFO]: [LP] Set tag.og to true for sirmickalot in context global.
[16:17:26] [luckperms-worker-11/INFO]: [LuckPerms] [Messaging] Sending log with id: 83d824d2-2e6c-41a3-bd52-fecf36eb0a6d
[16:17:26] [luckperms-worker-11/INFO]: [LuckPerms] [Messaging] Sending user ping for 'sirmickalot' with id: 9816f8ff-7b65-4fe2-9d6e-67d70337ce8a
[16:17:28] [luckperms-command-executor/INFO]: [LP] Set tag.og to true for xmelii in context global.
[16:17:28] [luckperms-worker-11/INFO]: [LuckPerms] [Messaging] Sending log with id: d8daab12-2697-400a-9bb0-0043e0da2170
[16:17:28] [luckperms-worker-1/INFO]: [LuckPerms] [Messaging] Sending user ping for 'xmelii' with id: f16f588a-0fe7-4d77-899a-190b021ea166
[16:17:29] [Server thread/INFO]: SirMickAlot issued server command: /tags
[16:17:33] [Server thread/INFO]: Superster issued server command: /tags
[16:17:33] [Server thread/INFO]: xmelii issued server command: /tags
[16:17:34] [Async Chat Thread - #33/INFO]: [standard] SirMickAlot: Yippie
[16:17:34] [Server thread/INFO]: PzneRSW issued server command: /msg ItsmeThomasX nu helaas niet man
[16:17:45] [User Authenticator #17/INFO]: UUID of player Naemapema is 51383295-66ec-4616-96e5-3b1313f27537
[16:17:46] [Server thread/INFO]: Naemapema[/83.84.17.201:57849] logged in with entity id 160240 at ([world]5363.86132919957, 64.875, -4359.919300659289)
[16:17:46] [Server thread/INFO]: [+] Naemapema
[16:17:46] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel standard in mode write
[16:17:46] [Server thread/INFO]: [ChatControl] TIP: Player Naemapema is already in channel 'standard' in mode read, not adding.
[16:17:52] [Server thread/INFO]: ItsmeThomasX issued server command: /ah
[16:17:54] [Server thread/INFO]: Naemapema issued server command: /rewards
[16:17:57] [Server thread/INFO]: xFanuel issued server command: /msg sparkie hoeveel knaken heb je
[16:18:06] [Server thread/INFO]: sparkie0704 issued server command: /r knaken?
[16:18:08] [luckperms-command-executor/INFO]: [LP] Set tag.og to true for naemapema in context global.
[16:18:08] [luckperms-worker-2/INFO]: [LuckPerms] [Messaging] Sending log with id: 4b0c53b6-58b6-4886-bffd-4ff369edadd0
[16:18:08] [luckperms-worker-1/INFO]: [LuckPerms] [Messaging] Sending user ping for 'naemapema' with id: 231972f6-94e1-450d-aa30-d624aa9705e6
[16:18:10] [Server thread/INFO]: xFanuel issued server command: /msg sparkie geld
[16:18:13] [Craft Scheduler Thread - 112 - UltimateTeams/INFO]: [UltimateTeams] Creating automatic ender chest backups...
[16:18:13] [Craft Scheduler Thread - 112 - UltimateTeams/INFO]: [UltimateTeams] Automatic ender chest backups completed.
[16:18:13] [Server thread/INFO]: UltimateTeams: Cleared all outstanding team invites!
[16:18:13] [Server thread/INFO]: Naemapema issued server command: /tags
[16:18:14] [Server thread/INFO]: sparkie0704 issued server command: /r 18k
[16:18:19] [Server thread/INFO]: EatingLittleKids issued server command: /home
[16:18:30] [Server thread/INFO]: Matthie65 issued server command: /spawn
[16:18:30] [Server thread/INFO]: Naemapema issued server command: /tags
[16:18:31] [Server thread/INFO]: ItsmeThomasX issued server command: /tags
[16:18:31] [Server thread/INFO]: [Essentials] Created a User for Top5MobKills (7c0d66fe-93c4-25e4-9dc8-ab6ae5b3f040) for non Bukkit type: net.citizensnpcs.nms.v1_21_R5.entity.EntityHumanNPC$PlayerNPC
[16:18:47] [Server thread/INFO]: ItsmeThomasX issued server command: /pay sparkie0704 15000
[16:18:52] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:18:55] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 1792 x Bamboo for $8,064 to decoration shop
[16:18:56] [Async Chat Thread - #36/INFO]: [standard] ItsmeThomasX: Hoe krijg je OG?
[16:18:57] [Server thread/INFO]: xFanuel issued server command: /msg sparkie kleinig hijdje
[16:18:59] [Server thread/INFO]: ItsmeThomasX issued server command: /tags
[16:19:03] [Server thread/INFO]: sparkie0704 issued server command: /r oh top
[16:19:03] [Async Chat Thread - #36/INFO]: [standard] SirMickAlot: Claimen bij postbode
[16:19:04] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:19:09] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 1276 x Bamboo for $5,742 to decoration shop
[16:19:09] [Server thread/INFO]: Nicksealfish issued server command: /spawn
[16:19:09] [Server thread/INFO]: ItsmeThomasX issued server command: /spawn
[16:19:12] [Server thread/INFO]: Matthie65 issued server command: /rewards
[16:19:13] [Server thread/INFO]: Nicksealfish issued server command: /rewards
[16:19:15] [Server thread/INFO]: ItsmeThomasX issued server command: /rewards
[16:19:15] [Server thread/INFO]: xFanuel issued server command: /spawn
[16:19:17] [luckperms-command-executor/INFO]: [LP] Set tag.og to true for matthie65 in context global.
[16:19:17] [luckperms-worker-2/INFO]: [LuckPerms] [Messaging] Sending log with id: b31f321b-a156-4b30-a579-5bcc0a834e0d
[16:19:17] [luckperms-worker-1/INFO]: [LuckPerms] [Messaging] Sending user ping for 'matthie65' with id: 8559fa07-4f2e-404c-8b14-cd811c555837
[16:19:18] [Server thread/INFO]: xFanuel issued server command: /rewards
[16:19:19] [Server thread/INFO]: xFanuel issued server command: /rewards
[16:19:19] [Server thread/INFO]: xmelii issued server command: /sit
[16:19:20] [luckperms-command-executor/INFO]: [LP] Set tag.og to true for nicksealfish in context global.
[16:19:20] [luckperms-worker-1/INFO]: [LuckPerms] [Messaging] Sending log with id: b6317252-953e-4abb-8ad5-1da18b4454cf
[16:19:20] [luckperms-worker-1/INFO]: [LuckPerms] [Messaging] Sending user ping for 'nicksealfish' with id: 4a3c2763-f184-425f-bbde-74ad6d71996f
[16:19:21] [Server thread/INFO]: sparkie0704 issued server command: /r maar... ik krijg het ontlading ding maar niet goed dus werkt nog niet
[16:19:23] [Server thread/INFO]: PzneRSW issued server command: /ah
[16:19:23] [luckperms-command-executor/INFO]: [LP] Set tag.og to true for xfanuel in context global.
[16:19:23] [luckperms-worker-2/INFO]: [LuckPerms] [Messaging] Sending log with id: 401d92e1-2873-4595-a975-f2f1d0ad4bbe
[16:19:23] [luckperms-worker-2/INFO]: [LuckPerms] [Messaging] Sending user ping for 'xfanuel' with id: 213b3fe8-0850-4dd6-ac48-0549a21788d8
[16:19:23] [Server thread/INFO]: Matthie65 issued server command: /tags
[16:19:24] [Server thread/INFO]: Nicksealfish issued server command: /tags
[16:19:28] [Server thread/INFO]: xFanuel issued server command: /tags
[16:19:30] [Server thread/INFO]: EnderFace_ issued server command: /sethome caver
[16:19:31] [luckperms-command-executor/INFO]: [LP] Set tag.og to true for itsmethomasx in context global.
[16:19:31] [luckperms-worker-1/INFO]: [LuckPerms] [Messaging] Sending log with id: fb6c127d-b70e-4ec8-9ba7-d440333c4376
[16:19:31] [luckperms-worker-2/INFO]: [LuckPerms] [Messaging] Sending user ping for 'itsmethomasx' with id: e0fc5b52-7dab-408f-ac36-115cb1f42b23
[16:19:36] [Server thread/INFO]: ItsmeThomasX issued server command: /tags
[16:19:36] [Server thread/INFO]: Nicksealfish issued server command: /home
[16:19:36] [Server thread/INFO]: EnderFace_ issued server command: /sethome caver
[16:19:39] [Server thread/INFO]: EnderFace_ issued server command: /sethome caver
[16:19:40] [Async Chat Thread - #36/INFO]: [standard] xFanuel: ym atthie
[16:19:42] [Async Chat Thread - #36/INFO]: [standard] ItsmeThomasX: Aight
[16:19:42] [Server thread/INFO]: EnderFace_ issued server command: /sethome caver
[16:19:44] [Server thread/INFO]: EnderFace_ issued server command: /sethome caver
[16:19:47] [Async Chat Thread - #36/INFO]: [standard] xFanuel: kom ff tp
[16:19:48] [Async Chat Thread - #36/INFO]: [standard] Nicksealfish: suiiiiiiiii
[16:19:50] [Server thread/INFO]: xFanuel issued server command: /home
[16:19:51] [Server thread/INFO]: EnderFace_ issued server command: /home caver
[16:19:51] [Server thread/INFO]: AlansioK issued server command: /postbode
[16:19:53] [Server thread/INFO]: EnderFace_ issued server command: /spawn
[16:19:55] [Server thread/INFO]: Matthie65 issued server command: /home
[16:19:55] [Server thread/INFO]: EnderFace_ issued server command: /spawn
[16:19:57] [Async Chat Thread - #36/INFO]: [standard] ItsmeThomasX: Iemand die Mending boekje heeft?
[16:19:58] [Server thread/INFO]: EnderFace_ issued server command: /rewards
[16:20:00] [Server thread/INFO]: ItsmeThomasX issued server command: /homes
[16:20:02] [Async Chat Thread - #36/INFO]: [standard] xFanuel: matthie tpa is
[16:20:03] [luckperms-command-executor/INFO]: [LP] Set tag.og to true for enderface_ in context global.
[16:20:03] [luckperms-worker-1/INFO]: [LuckPerms] [Messaging] Sending log with id: 619fea4a-a9b5-4837-8511-9e11ee303a5b
[16:20:03] [luckperms-worker-1/INFO]: [LuckPerms] [Messaging] Sending user ping for 'enderface_' with id: 5028cc0f-c428-4844-8156-f2689cb32c62
[16:20:03] [Server thread/INFO]: ItsmeThomasX issued server command: /ah
[16:20:04] [Async Chat Thread - #36/INFO]: [standard] Nicksealfish: ik heb wel
[16:20:08] [Server thread/INFO]: EnderFace_ issued server command: /home caver
[16:20:15] [Async Chat Thread - #36/INFO]: [standard] ItsmeThomasX: Kan je op ah zetten?
[16:20:16] [Server thread/INFO]: Matthie65 issued server command: /tpa xFanuel
[16:20:19] [Server thread/INFO]: xFanuel issued server command: /tpaccept
[16:20:19] [Async Chat Thread - #36/INFO]: [standard] Nicksealfish: sure geef me 1
[16:20:20] [Async Chat Thread - #36/INFO]: [standard] ItsmeThomasX: Niet al te duur :)
[16:20:24] [Server thread/INFO]: Nicksealfish issued server command: /home
[16:20:24] [Server thread/INFO]: EnderFace_ issued server command: /fly
[16:20:27] [Server thread/INFO]: AlansioK issued server command: /ah
[16:20:30] [Async Chat Thread - #36/INFO]: [standard] Nicksealfish: 5k
[16:20:32] [Server thread/INFO]: AlansioK issued server command: /ah
[16:20:33] [Server thread/INFO]: EatingLittleKids issued server command: /home
[16:20:34] [Async Chat Thread - #36/INFO]: [standard] ItsmeThomasX: Sg
[16:20:36] [Server thread/INFO]: ItsmeThomasX issued server command: /ah
[16:20:47] [Server thread/INFO]: ShewinB issued server command: /tp xmelii
[16:20:53] [Async Chat Thread - #36/INFO]: [standard] Nicksealfish: meer ook omdat mending common is gewoorden en eco
[16:21:03] [Server thread/INFO]: ItsmeThomasX issued server command: /ah
[16:21:08] [Server thread/INFO]: Nicksealfish issued server command: /ah sell 5000
[16:21:12] [Async Chat Thread - #36/INFO]: [standard] Nicksealfish: staat er op
[16:21:16] [Server thread/INFO]: ItsmeThomasX issued server command: /ah
[16:21:17] [Server thread/INFO]: xmelii issued server command: /tpa superster
[16:21:20] [Server thread/INFO]: PzneRSW issued server command: /ah
[16:21:20] [Server thread/INFO]: Superster issued server command: /tpaccept
[16:21:21] [Server thread/INFO]: LuckyLuke_ issued server command: /rewards
[16:21:23] [Async Chat Thread - #36/INFO]: [standard] ItsmeThomasX: Top
[16:21:26] [Server thread/INFO]: PzneRSW issued server command: /ah
[16:21:28] [Server thread/INFO]: xmelii issued server command: /sit
[16:21:29] [Server thread/INFO]: ShewinB issued server command: /invsee SirMickAlot
[16:21:35] [Server thread/INFO]: ShewinB issued server command: /home home
[16:21:43] [Async Chat Thread - #36/INFO]: [standard] kitkat_25: blokken zijn weg voor de chest era
[16:21:45] [Server thread/INFO]: SirMickAlot issued server command: /staff
[16:21:47] [Server thread/INFO]: SirMickAlot issued server command: /
[16:21:50] [Async Chat Thread - #36/INFO]: [standard] Matthie65: deze is niet heel slim man
[16:22:09] [Async Chat Thread - #36/INFO]: [standard] ItsmeThomasX: 1 sec kitkat
[16:22:11] [Async Chat Thread - #36/INFO]: [standard] xFanuel: dit is allemaal dankzij sparkie
[16:22:24] [Async Chat Thread - #36/INFO]: [standard] Matthie65: w sparkie
[16:22:32] [Async Chat Thread - #36/INFO]: [standard] sparkie0704: ja werkt nog niet
[16:22:33] [Async Chat Thread - #36/INFO]: [standard] Matthie65: heeft ie het gebouwd
[16:22:35] [Server thread/INFO]: PzneRSW issued server command: /rewards
[16:22:38] [Async Chat Thread - #36/INFO]: [standard] xFanuel: ja
[16:22:40] [luckperms-command-executor/INFO]: [LP] Set tag.og to true for pznersw in context global.
[16:22:40] [luckperms-worker-1/INFO]: [LuckPerms] [Messaging] Sending log with id: 95a66c88-bcea-4fc5-99b8-964341ac6706
[16:22:40] [luckperms-worker-1/INFO]: [LuckPerms] [Messaging] Sending user ping for 'pznersw' with id: 0c986982-457f-4866-bae7-bcc28ece0d68
[16:22:40] [Server thread/INFO]: ShewinB issued server command: /ec
[16:22:48] [Server thread/INFO]: eeJack issued server command: /sell handall
[16:22:48] [Server thread/INFO]: [ShopGUIPlus] eeJack sold all 54 x Blaze Rod for $54 to mobdrops shop
[16:22:48] [Server thread/INFO]: PzneRSW issued server command: /tags
[16:22:49] [Server thread/INFO]: LuckyLuke_ issued server command: /clear
[16:22:51] [Server thread/INFO]: SirMickAlot lost connection: Disconnected
[16:22:51] [Server thread/INFO]: [voicechat] Disconnecting client SirMickAlot
[16:22:51] [Server thread/INFO]: [-] [MOD] SirMickAlot
[16:23:00] [User Authenticator #18/INFO]: UUID of player SirMickAlot is 69adfae8-1819-4aea-986f-e86d993db479
[16:23:00] [Server thread/INFO]: SirMickAlot[/62.45.103.40:56191] logged in with entity id 172889 at ([world]-1152.119869790088, 101.0, -1483.9478276075379)
[16:23:00] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel standard in mode write
[16:23:00] [Server thread/INFO]: [ChatControl] TIP: Player SirMickAlot is already in channel 'standard' in mode read, not adding.
[16:23:00] [Server thread/INFO]: [+] [MOD] SirMickAlot
[16:23:16] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:23:19] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:23:20] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:23:21] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 512 x Bone Meal for $512 from mobdrops shop
[16:23:24] [Server thread/INFO]: ShewinB issued server command: /inventoryrollback restore ShewinB
[16:23:37] [User Authenticator #18/INFO]: UUID of player Beww is d6b4b656-f6e6-471f-8345-572dcb5d6338
[16:23:38] [Server thread/INFO]: [CozyTags] TOEVOEGEN SPELER + d6b4b656-f6e6-471f-8345-572dcb5d6338
[16:23:38] [Server thread/INFO]: Beww[/91.176.64.110:52429] logged in with entity id 173986 at ([pvp-arena]88.73575992546613, 84.0, -118.56107288682016)
[16:23:38] [Server thread/INFO]: [+] [MOD] Beww
[16:23:38] [Server thread/INFO]: [ChatControl] TIP: Joining Beww to channel standard in mode write due to 'chatcontrol.channel.autojoin.standard.write' permission.  We won't join him again when he leaves channel manually.
[16:23:38] [Server thread/INFO]: [voicechat] Received secret request of Beww (20)
[16:23:38] [Server thread/INFO]: [voicechat] Sent secret to Beww
[16:23:41] [Async Chat Thread - #36/INFO]: [standard] Matthie65: veel hopper minecarts is wel slim man
[16:23:42] [Async Chat Thread - #36/INFO]: [standard] yuqiixi: waar is mijn og tag
[16:23:44] [Server thread/INFO]: Nicksealfish lost connection: Disconnected
[16:23:44] [Server thread/INFO]: [voicechat] Disconnecting client Nicksealfish
[16:23:44] [Server thread/INFO]: [-] Nicksealfish
[16:23:46] [Server thread/INFO]: LuckyLuke_ issued server command: /tags create lucky &8[&#77F454☘&#545EB6︎&8] Een_tag_voor_geluk
[16:23:47] [Server thread/INFO]: LuckyLuke_ issued server command: /tags
[16:23:48] [Server thread/INFO]: Beww issued server command: /rewards
[16:23:52] [Async Chat Thread - #36/INFO]: [standard] xFanuel: hbj
[16:23:53] [luckperms-command-executor/INFO]: [LP] Set tag.og to true for beww in context global.
[16:23:53] [luckperms-worker-1/INFO]: [LuckPerms] [Messaging] Sending log with id: 8b5bfe73-77dd-4f1f-8dfd-c6df983bb09e
[16:23:53] [luckperms-worker-2/INFO]: [LuckPerms] [Messaging] Sending user ping for 'beww' with id: 260e4c7e-4efe-49da-8619-9ca5d4a4aac3
[16:23:53] [Server thread/INFO]: yuqiixi issued server command: /tag
[16:23:55] [Async Chat Thread - #36/INFO]: [standard] Matthie65: want despawn is snel man
[16:23:57] [Async Chat Thread - #36/INFO]: [standard] ItsmeThomasX: Zo is het goed kitkat
[16:23:58] [Async Chat Thread - #36/INFO]: [standard] Beww: t
[16:24:09] [Server thread/INFO]: Beww issued server command: /rewards
[16:24:10] [Server thread/INFO]: xFanuel issued server command: /msg sparkie ohja de items die spawnen heel snel
[16:24:21] [Server thread/INFO]: Beww issued server command: /tags
[16:24:22] [Server thread/INFO]: Superster issued server command: /shop
[16:24:25] [Server thread/INFO]: SirMickAlot issued server command: /staff
[16:24:26] [Server thread/INFO]: [ShopGUIPlus] Superster bought 12 x Sea Lantern for $43.8 from blocks shop
[16:24:30] [Server thread/INFO]: PzneRSW issued server command: /warp nether
[16:24:32] [Server thread/INFO]: sparkie0704 issued server command: /r mnu
[16:24:34] [Server thread/INFO]: Beww issued server command: /spawn
[16:24:35] [Async Chat Thread - #36/INFO]: [standard] Matthie65: dis wel een mooi teampje die je heb gemaakt
[16:24:38] [Async Chat Thread - #36/INFO]: [standard] xFanuel: kom
[16:24:44] [Async Chat Thread - #36/INFO]: [standard] xFanuel: moet je dr bij?
[16:24:47] [Async Chat Thread - #36/INFO]: [standard] ItsmeThomasX: Ja he Matthie
[16:24:51] [Async Chat Thread - #36/INFO]: [standard] Matthie65: nee hoor
[16:24:54] [Server thread/INFO]: LuckyLuke_ issued server command: /tags edit content lucky &#77F454🍀
[16:24:56] [Server thread/INFO]: LuckyLuke_ issued server command: /tags
[16:24:57] [Async Chat Thread - #36/INFO]: [standard] Matthie65: ik heb mn eigen gozer
[16:25:03] [Async Chat Thread - #36/INFO]: [standard] Matthie65: ouwe beerbei
[16:25:05] [Async Chat Thread - #36/INFO]: [standard] Matthie65: beerbie
[16:25:06] [User Authenticator #19/INFO]: UUID of player PeterEilering69 is be4ab327-1c7e-4a14-804e-b1cdf324d3ad
[16:25:06] [Server thread/INFO]: [CozyTags] TOEVOEGEN SPELER + be4ab327-1c7e-4a14-804e-b1cdf324d3ad
[16:25:06] [Server thread/INFO]: PeterEilering69[/85.144.248.132:50387] logged in with entity id 176940 at ([world]5476.300000011921, 22.0, 1740.762499988079)
[16:25:06] [Server thread/INFO]: [+] PeterEilering69
[16:25:07] [Server thread/INFO]: [ChatControl] TIP: Joining PeterEilering69 to channel standard in mode write due to 'chatcontrol.channel.autojoin.standard.write' permission.  We won't join him again when he leaves channel manually.
[16:25:09] [Server thread/INFO]: ShewinB issued server command: /home home
[16:25:12] [Async Chat Thread - #36/INFO]: [standard] EnderFace_: t
[16:25:15] [Async Chat Thread - #36/INFO]: [standard] PeterEilering69: yoo
[16:25:16] [Server thread/INFO]: LuckyLuke_ issued server command: /tags edit content lucky &8[&l&#77F454🍀&r&8]
[16:25:17] [Server thread/INFO]: LuckyLuke_ issued server command: /tags
[16:25:21] [Async Chat Thread - #36/INFO]: [standard] LuckyLuke_: Hehe
[16:25:21] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:25:24] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 1792 x Bamboo for $8,064 to decoration shop
[16:25:29] [Server thread/INFO]: LuckyLuke_ issued server command: /tags edit content lucky &8[&#77F454🍀&r&8]
[16:25:31] [Async Chat Thread - #36/INFO]: [standard] LuckyLuke_: test
[16:25:31] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:25:32] [Server thread/INFO]: Beww issued server command: /chc internal remove f2614344-1d5a-43c7-b4db-c5fff7f7c7a4
[16:25:35] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 953 x Bamboo for $4,288.5 to decoration shop
[16:25:36] [Async Chat Thread - #36/INFO]: [standard] Beww: oh
[16:25:37] [Async Chat Thread - #36/INFO]: [standard] Beww: lol
[16:25:40] [Server thread/INFO]: EnderFace_ issued server command: /delhome caver
[16:25:40] [Server thread/INFO]: Matthie65 issued server command: /home
[16:25:43] [Server thread/INFO]: EnderFace_ issued server command: /sethome caver
[16:25:46] [Async Chat Thread - #36/INFO]: [standard] Beww: ik heb je test verwijderd
[16:25:46] [Server thread/INFO]: EnderFace_ issued server command: /sethome caver
[16:25:47] [Server thread/INFO]: EnderFace_ issued server command: /sethome caver
[16:25:51] [Server thread/INFO]: EnderFace_ issued server command: /spawn
[16:25:53] [Server thread/INFO]: EnderFace_ issued server command: /rewards
[16:25:54] [Server thread/INFO]: EnderFace_ issued server command: /rewards
[16:25:57] [Server thread/INFO]: ShewinB issued server command: /tags
[16:25:59] [Server thread/INFO]: EnderFace_ lost connection: Disconnected
[16:25:59] [Server thread/INFO]: [voicechat] Disconnecting client EnderFace_
[16:25:59] [Server thread/INFO]: [-] [JR.MOD] EnderFace_
[16:26:00] [User Authenticator #19/INFO]: UUID of player EnderFace_ is 3856ed52-f29f-40bb-833d-480245f92b3b
[16:26:00] [Server thread/INFO]: EnderFace_[/86.89.18.226:41561] logged in with entity id 179533 at ([spawn]4.100400105927407, 62.125, 12.285032651433468)
[16:26:00] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel standard in mode write
[16:26:00] [Server thread/INFO]: [ChatControl] TIP: Player EnderFace_ is already in channel 'standard' in mode read, not adding.
[16:26:00] [Server thread/INFO]: [+] [JR.MOD] EnderFace_
[16:26:01] [Async Chat Thread - #36/INFO]: [standard] SirMickAlot: Alle OGS zeg ff W in chat
[16:26:04] [Server thread/INFO]: ShewinB issued server command: /tags
[16:26:05] [User Authenticator #19/INFO]: UUID of player Megaaa__ is eb97068c-2619-4084-b2cb-35828ede4ec0
[16:26:05] [Server thread/INFO]: Beww issued server command: /team home
[16:26:05] [Server thread/INFO]: [CozyTags] TOEVOEGEN SPELER + eb97068c-2619-4084-b2cb-35828ede4ec0
[16:26:05] [Server thread/INFO]: Megaaa__[/141.134.150.206:53225] logged in with entity id 179719 at ([world]-1.5, 63.0, -9.5)
[16:26:05] [Server thread/INFO]: [ChatControl] TIP: Joining Megaaa__ to channel standard in mode write due to 'chatcontrol.channel.autojoin.standard.write' permission.  We won't join him again when he leaves channel manually.
[16:26:05] [Server thread/INFO]: [+] Megaaa__
[16:26:05] [Server thread/INFO]: [PvPManager] Resumed new player protection for Megaaa__ because they left an excluded world.
[16:26:05] [Async Chat Thread - #36/INFO]: [standard] EnderFace_: t
[16:26:06] [Async Chat Thread - #36/INFO]: [standard] xFanuel: dit kan nog
[16:26:08] [Server thread/INFO]: EnderFace_ issued server command: /rewards
[16:26:08] [Server thread/INFO]: ItsmeThomasX issued server command: /msg Kitkat_25 wat is je dc?
[16:26:12] [Async Chat Thread - #36/INFO]: [standard] Matthie65: wel mooii hoor fanuel
[16:26:16] [Async Chat Thread - #36/INFO]: [standard] SirMickAlot: Welkom Megaaa__
[16:26:22] [Async Chat Thread - #36/INFO]: [standard] ItsmeThomasX: Welkom Megaaa__
[16:26:23] [Async Chat Thread - #38/INFO]: [standard] xFanuel: danku mede mijn teamgenoots
[16:26:27] [Async Chat Thread - #38/INFO]: [standard] Megaaa__: jowwww
[16:26:31] [Server thread/INFO]: sparkie0704 issued server command: /shop
[16:26:32] [Server thread/INFO]: ShewinB issued server command: /tempban LuckyLuke_ 1s
[16:26:32] [Server thread/INFO]: LuckyLuke_ lost connection: Je bent tijdelijk verbannen voor 1 seconde:
De Ban Hamer heeft gesproken!
[16:26:32] [Server thread/INFO]: [voicechat] Disconnecting client LuckyLuke_
[16:26:32] [Server thread/INFO]: [Essentials] Speler [ADMIN] ShewinB verbande LuckyLuke_ tijdelijk voor 1 seconde. Reden: De Ban Hamer heeft gesproken!.
[16:26:34] [Async Chat Thread - #38/INFO]: [standard] EnderFace_: hmm de og heb ik nog niet wel geclaimed maar niet achter me naam
[16:26:34] [User Authenticator #19/INFO]: UUID of player LuckyLuke_ is e5c25f49-4652-458a-8d23-137ae211a512
[16:26:34] [Server thread/INFO]: LuckyLuke_[/217.121.37.164:50825] logged in with entity id 180930 at ([spawn]-10.881355128329124, 62.51348592534161, 11.468876094806845)
[16:26:34] [Server thread/INFO]: [+] [DEV] LuckyLuke_
[16:26:34] [Server thread/INFO]: [ChatControl] TIP Alert: Supposed to add LuckyLuke_ to channel 'ranged' which is not installed on this server, skipping
[16:26:34] [Server thread/INFO]: [ChatControl] TIP Alert: Supposed to add LuckyLuke_ to channel 'helpop' which is not installed on this server, skipping
[16:26:34] [Server thread/INFO]: [ChatControl] TIP Alert: Supposed to add LuckyLuke_ to channel 'admin' which is not installed on this server, skipping
[16:26:34] [Server thread/INFO]: [ChatControl] TIP Alert: Supposed to add LuckyLuke_ to channel 'global' which is not installed on this server, skipping
[16:26:34] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel standard in mode write
[16:26:34] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel staff in mode read
[16:26:34] [Server thread/INFO]: [ChatControl] TIP: Player LuckyLuke_ is already in channel 'standard' in mode read, not adding.
[16:26:34] [Server thread/INFO]: [ChatControl] TIP: Player LuckyLuke_ is already in channel 'staff' in mode read, not adding.
[16:26:35] [Server thread/INFO]: Megaaa__ issued server command: /rtp
[16:26:35] [Server thread/INFO]: [PvPManager] Resumed new player protection for Megaaa__ because they left an excluded world.
[16:26:35] [Craft Scheduler Thread - 128 - BetterRTP/INFO]: [BetterRTP] -Removed a queue Location{world=CraftWorld{name=world},x=-2509.5,y=65.0,z=-2366.5,pitch=9.2988205,yaw=92.11771}
[16:26:36] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:26:38] [Server thread/INFO]: [ShopGUIPlus] sparkie0704 bought 1 x Comparator for $400 from redstone shop
[16:26:39] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:26:39] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:26:39] [Server thread/INFO]: EnderFace_ issued server command: /home caver
[16:26:40] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:26:42] [Server thread/INFO]: EnderFace_ issued server command: /fly
[16:26:44] [Server thread/INFO]: EnderFace_ issued server command: /fly
[16:26:47] [Server thread/INFO]: Beww issued server command: /co i
[16:26:50] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasX kitkat_25
[16:26:52] [Server thread/INFO]: Beww issued server command: /co i
[16:26:57] [Server thread/INFO]: Matthie65 issued server command: /msg xFanuel heb je nog wat geld nodig of heb je nu genoeg van je farms gekregen?
[16:27:10] [Server thread/INFO]: Megaaa__ lost connection: Disconnected
[16:27:10] [Server thread/INFO]: [voicechat] Disconnecting client Megaaa__
[16:27:10] [Server thread/INFO]: [-] Megaaa__
[16:27:13] [Server thread/INFO]: xmelii issued server command: /sit
[16:27:13] [Server thread/INFO]: xFanuel issued server command: /msg matthie wat kan je kwijt
[16:27:17] [Server thread/INFO]: ShewinB lost connection: Disconnected
[16:27:17] [Server thread/INFO]: [voicechat] Disconnecting client ShewinB
[16:27:17] [Server thread/INFO]: [-] [ADMIN] ShewinB
[16:27:21] [Async Chat Thread - #38/INFO]: [standard] kitkat_25: 4 hoog?
[16:27:24] [Async Chat Thread - #38/INFO]: [standard] xFanuel: ja
[16:27:27] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 geadd
[16:27:34] [Server thread/INFO]: EnderFace_ issued server command: /ec
[16:27:36] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 heb je al een sword?
[16:27:40] [Server thread/INFO]: Matthie65 issued server command: /msg xFanuel wat je nodig hebt om zo door te gaan :)
[16:27:44] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasX NEE
[16:27:49] [Server thread/INFO]: sparkie0704 issued server command: /sell handall
[16:27:49] [Server thread/INFO]: [ShopGUIPlus] sparkie0704 sold all 576 x Bamboo for $2,592 to decoration shop
[16:27:50] [Server thread/INFO]: sparkie0704 issued server command: /sell handall
[16:27:53] [Server thread/INFO]: sparkie0704 issued server command: /sell handall
[16:27:53] [Server thread/INFO]: [ShopGUIPlus] sparkie0704 sold all 47 x Bamboo for $211.5 to decoration shop
[16:27:59] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:28:04] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 1 x Name Tag for $500 from misc shop
[16:28:08] [Server thread/INFO]: PzneRSW issued server command: /anvil
[16:28:08] [Server thread/INFO]: [Essentials] PzneRSW was de toegang verboden tot het commando.
[16:28:10] [Server thread/INFO]: PzneRSW issued server command: /home
[16:28:13] [Server thread/INFO]: PzneRSW issued server command: /home
[16:28:13] [Server thread/INFO]: UltimateTeams: Cleared all outstanding team invites!
[16:28:18] [Server thread/INFO]: yuqiixi issued server command: /spawn
[16:28:20] [Server thread/INFO]: yuqiixi issued server command: /rewards
[16:28:21] [Server thread/INFO]: yuqiixi issued server command: /rewards
[16:28:28] [Server thread/INFO]: xFanuel issued server command: /msg matthie ik heb nu 9k moet wel wat hebben voor spullen enz
[16:28:29] [Server thread/INFO]: sparkie0704 issued server command: /shop
[16:28:31] [luckperms-command-executor/INFO]: [LP] Set tag.og to true for yuqiixi in context global.
[16:28:31] [luckperms-worker-1/INFO]: [LuckPerms] [Messaging] Sending log with id: 99d5fb5c-f853-4d4c-bf59-1b72a4a3bcee
[16:28:31] [luckperms-worker-2/INFO]: [LuckPerms] [Messaging] Sending user ping for 'yuqiixi' with id: f1d066c7-98ee-40a8-82dd-4e29f95ec9a5
[16:28:32] [Server thread/INFO]: [ShopGUIPlus] sparkie0704 bought 1 x Comparator for $400 from redstone shop
[16:28:38] [Server thread/INFO]: yuqiixi issued server command: /tag
[16:28:39] [Server thread/INFO]: xFanuel issued server command: /msg matthie als je wat kwijt kan is dat al helemaal prima
[16:28:44] [Async Chat Thread - #39/INFO]: [standard] yuqiixi: guys ik ben og
[16:28:48] [Async Chat Thread - #39/INFO]: [standard] yuqiixi: zien jullie dat
[16:28:48] [Server thread/INFO]: eeJack issued server command: /home
[16:28:50] [Async Chat Thread - #39/INFO]: [standard] EnderFace_: nice
[16:28:51] [Server thread/INFO]: Named entity Sheep['Dinnerbone'/3465, uuid='11e3b0d9-0784-4d44-a6f1-8bceb8d9900c', l='ServerLevel[world]', x=123.50, y=57.04, z=597.50, cpos=[7, 37], tl=83153, v=true] died: Dinnerbone drowned
[16:28:52] [Async Chat Thread - #39/INFO]: [standard] yuqiixi: wat cool hey
[16:28:54] [Server thread/INFO]: Matthie65 issued server command: /msg xFanuel koop jij trouwens je pistons enz via de shop of craft je het?
[16:28:56] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasX dankje
[16:28:56] [Server thread/INFO]: Named entity Wolf['Kerel'/185849, uuid='499d0419-8785-4166-aa54-6334a5822c79', l='ServerLevel[world]', x=964.46, y=144.00, z=506.38, cpos=[60, 31], tl=851, v=true] died: Kerel was slain by PzneRSW
[16:28:57] [Async Chat Thread - #39/INFO]: [standard] EnderFace_: ik nie
[16:28:59] [Async Chat Thread - #39/INFO]: [standard] yuqiixi: oh
[16:28:59] [Server thread/INFO]: PzneRSW issued server command: /home
[16:29:05] [Server thread/INFO]: Matthie65 issued server command: /shop
[16:29:05] [Server thread/INFO]: xFanuel issued server command: /msg matthie om en om
[16:29:08] [Server thread/INFO]: [ShopGUIPlus] Matthie65 bought 4 x Cooked Beef for $55 from farmfood shop
[16:29:15] [Async Chat Thread - #39/INFO]: [standard] EnderFace_: wat heb je gedaan dat je het nu wel achter je naam hebt staan?
[16:29:19] [Server thread/INFO]: xFanuel issued server command: /msg matthie meestal gwn craft
[16:29:21] [Async Chat Thread - #39/INFO]: [standard] yuqiixi: ga naar spawn
[16:29:26] [Async Chat Thread - #39/INFO]: [standard] Beww: ;/tags
[16:29:26] [Async Chat Thread - #39/INFO]: [standard] yuqiixi: en claim het in je postbode!
[16:29:27] [Server thread/INFO]: Matthie65 issued server command: /msg xFanuel moet je ook zeker doen
[16:29:32] [Server thread/INFO]: Matthie65 issued server command: /msg xFanuel is VEEL goedkoper
[16:29:35] [Server thread/INFO]: sparkie0704 issued server command: /shop
[16:29:37] [Async Chat Thread - #39/INFO]: [standard] EnderFace_: heb al geclaimed :P
[16:29:39] [Server thread/INFO]: [ShopGUIPlus] sparkie0704 bought 1 x Comparator for $400 from redstone shop
[16:29:40] [Async Chat Thread - #39/INFO]: [standard] Beww: ;/tags
[16:29:40] [Server thread/INFO]: EnderFace_ issued server command: /tags
[16:29:43] [Async Chat Thread - #39/INFO]: [standard] EnderFace_: t
[16:29:47] [Server thread/INFO]: Matthie65 issued server command: /shop
[16:29:47] [Async Chat Thread - #39/INFO]: [standard] EnderFace_: ty
[16:29:53] [Server thread/INFO]: yuqiixi issued server command: /spy
[16:29:53] [Server thread/INFO]: Superster issued server command: /spawn
[16:29:56] [Server thread/INFO]: Superster issued server command: /rewards
[16:29:57] [Server thread/INFO]: Superster issued server command: /rewards
[16:29:59] [luckperms-command-executor/INFO]: [LP] Set tag.og to true for superster in context global.
[16:29:59] [luckperms-worker-1/INFO]: [LuckPerms] [Messaging] Sending log with id: df8d8232-d91e-4883-90d8-910a44b51ef9
[16:29:59] [luckperms-worker-2/INFO]: [LuckPerms] [Messaging] Sending user ping for 'superster' with id: a950f80f-5b15-4f07-aaa5-b96756679d3a
[16:30:01] [Async Chat Thread - #39/INFO]: [standard] EnderFace_: leuke toevoeging
[16:30:02] [Server thread/INFO]: Superster issued server command: /tags
[16:30:03] [Server thread/INFO]: yuqiixi issued server command: /spy toggle
[16:30:09] [Server thread/INFO]: Superster issued server command: /home home
[16:30:13] [Async Chat Thread - #39/INFO]: [standard] yuqiixi: ik wil even de nieuwe command uit proberen
[16:30:15] [Server thread/INFO]: xFanuel issued server command: /msg matthie yeppp
[16:30:19] [Server thread/INFO]: AlansioK issued server command: /tags
[16:30:21] [Async Chat Thread - #39/INFO]: [standard] yuqiixi: willenkeurig kies ik enderface
[16:30:22] [Async Chat Thread - #39/INFO]: [standard] yuqiixi: LOL
[16:30:22] [Async Chat Thread - #39/INFO]: [standard] EnderFace_: :P
[16:30:26] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 Als je zo even accept heet Itsmethomasxx
[16:30:28] [Async Chat Thread - #39/INFO]: [standard] EnderFace_: wow
[16:30:29] [Async Chat Thread - #39/INFO]: [standard] LuckyLuke_: ik wil uniek zijn
[16:30:30] [Server thread/INFO]: yuqiixi issued server command: /spy toggle chat staff
[16:30:31] [Server thread/INFO]: SirMickAlot issued server command: /vanish
[16:30:33] [Server thread/INFO]: Matthie65 issued server command: /pay xFanuel 100000
[16:30:35] [Async Chat Thread - #39/INFO]: [standard] Beww: je bent al uniek
[16:30:39] [Async Chat Thread - #39/INFO]: [standard] EnderFace_: LuckyLuke_ ik hoor je
[16:30:41] [Server thread/INFO]: Matthie65 issued server command: /msg xFanuel doe je best dr mee
[16:30:42] [Server thread/INFO]: yuqiixi issued server command: /spy on
[16:30:43] [Server thread/INFO]: SirMickAlot issued server command: /tp yuqiixi
[16:30:46] [Server thread/INFO]: xFanuel issued server command: /msg matthie nooitt!!!!!!
[16:30:51] [Server thread/INFO]: xFanuel issued server command: /msg mathhie thanks mannn
[16:30:56] [Server thread/INFO]: xFanuel issued server command: /msg matthie thanks man
[16:31:02] [Server thread/INFO]: Matthie65 issued server command: /msg xFanuel zekers!!!!!
[16:31:05] [Server thread/INFO]: EnderFace_ issued server command: /ec
[16:31:09] [Server thread/INFO]: xFanuel issued server command: /msg matthie wordt gewaardeerd
[16:31:09] [Server thread/INFO]: yuqiixi issued server command: /ec
[16:31:09] [Server thread/INFO]: [Essentials] yuqiixi was de toegang verboden tot het commando.
[16:31:11] [Server thread/INFO]: LuckyLuke_ issued server command: /chat permissions
[16:31:11] [Server thread/INFO]: LuckyLuke_ issued server command: /#flp 1
[16:31:12] [Server thread/INFO]: Superster issued server command: /sit
[16:31:15] [Server thread/INFO]: LuckyLuke_ issued server command: /#flp 2
[16:31:15] [Server thread/INFO]: ItsmeThomasX issued server command: /ah
[16:31:16] [Server thread/INFO]: xFanuel issued server command: /msg matthie hoe ziet jouw base eruit dan
[16:31:16] [Server thread/INFO]: SirMickAlot issued server command: /vanish
[16:31:17] [Async Chat Thread - #39/INFO]: [standard] yuqiixi: holy i love the new command
[16:31:18] [Server thread/INFO]: LuckyLuke_ issued server command: /#flp 3
[16:31:20] [Server thread/INFO]: xFanuel issued server command: /tpa matthie
[16:31:20] [Server thread/INFO]: Matthie65 issued server command: /home
[16:31:21] [Server thread/INFO]: LuckyLuke_ issued server command: /#flp 4
[16:31:24] [Server thread/INFO]: Matthie65 issued server command: /tpaccept
[16:31:29] [Async Chat Thread - #39/INFO]: [standard] EnderFace_: werkt t goed?
[16:31:34] [Server thread/INFO]: SirMickAlot issued server command: /staff
[16:31:36] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasX dankje
[16:31:36] [Async Chat Thread - #39/INFO]: [standard] yuqiixi: jaaa!!
[16:31:37] [Server thread/INFO]: Beww issued server command: /spy on
[16:31:39] [Async Chat Thread - #39/INFO]: [standard] EnderFace_: top!
[16:31:42] [Async Chat Thread - #39/INFO]: [standard] EnderFace_: W
[16:31:45] [Async Chat Thread - #39/INFO]: [standard] xFanuel: .....
[16:31:47] [Async Chat Thread - #39/INFO]: [standard] yuqiixi: dit is leukkkk
[16:31:48] [Server thread/INFO]: Beww issued server command: /spy menu
[16:31:49] [Server thread/INFO]: PeterEilering69 issued server command: /lay
[16:31:50] [Async Chat Thread - #39/INFO]: [standard] Matthie65: mhm
[16:31:50] [Async Chat Thread - #39/INFO]: [standard] yuqiixi: heb ik wat te doen
[16:31:52] [Server thread/INFO]: yuqiixi issued server command: /spy menu
[16:31:55] [Async Chat Thread - #39/INFO]: [standard] Matthie65: valt wel mee he
[16:31:57] [Async Chat Thread - #39/INFO]: [standard] xFanuel: wat voor farms
[16:32:03] [Server thread/INFO]: EnderFace_ issued server command: /spy on
[16:32:03] [Async Chat Thread - #39/INFO]: [standard] xFanuel: bamboe
[16:32:17] [Async Chat Thread - #39/INFO]: [standard] xFanuel: dit is lijp
[16:32:19] [User Authenticator #20/INFO]: UUID of player 105cps is 121fa4e1-61e1-49a5-aec7-2543b9485928
[16:32:19] [Server thread/INFO]: [CozyTags] TOEVOEGEN SPELER + 121fa4e1-61e1-49a5-aec7-2543b9485928
[16:32:19] [Server thread/INFO]: 105cps[/178.84.120.49:35779] logged in with entity id 194989 at ([world]0.0, 64.0, 0.0)
[16:32:19] [Server thread/INFO]: [+] 105cps
[16:32:19] [Server thread/INFO]: [ChatControl] TIP: Joining 105cps to channel standard in mode write due to 'chatcontrol.channel.autojoin.standard.write' permission.  We won't join him again when he leaves channel manually.
[16:32:23] [Server thread/INFO]: ItsmeThomasX issued server command: /msg Kitkat_25 Hoe kan ik je noemen naar teammates? Hij/hem, zij/haar, het enz.?
[16:32:28] [Async Chat Thread - #39/INFO]: [standard] xFanuel: per uur?
[16:32:29] [Server thread/INFO]: sparkie0704 issued server command: /sell handall
[16:32:29] [Server thread/INFO]: [ShopGUIPlus] sparkie0704 sold all 313 x Bamboo for $1,408.5 to decoration shop
[16:32:34] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasX kan ik jouw met iets helpen
[16:32:35] [Async Chat Thread - #39/INFO]: [standard] Matthie65: 100-200k ofz
[16:32:37] [Server thread/INFO]: SirMickAlot issued server command: /spy on
[16:32:38] [Server thread/INFO]: xmelii issued server command: /sit
[16:32:39] [Async Chat Thread - #39/INFO]: [standard] xFanuel: dam
[16:32:45] [Async Chat Thread - #39/INFO]: [standard] xFanuel: doe je goed
[16:32:48] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 neuh niet echt
[16:32:50] [Async Chat Thread - #39/INFO]: [standard] Matthie65: jaja
[16:32:53] [Async Chat Thread - #39/INFO]: [standard] Matthie65: prima
[16:32:55] [Server thread/INFO]: EnderFace_ issued server command: /spy menu
[16:32:57] [Server thread/INFO]: LuckyLuke_ issued server command: /chat reload
[16:32:57] [Server thread/INFO]: [ChatControl] Warning: No such localization: nl_NL in plugin's jar, using keys from the disk file or from the default English locale for keys that are missing.
[16:32:57] [Server thread/INFO]: [ChatControl] TIP: Player sparkie0704 is already in channel 'standard' in mode read, not adding.
[16:32:57] [Server thread/INFO]: [ChatControl] TIP: Player EatingLittleKids is already in channel 'standard' in mode read, not adding.
[16:32:57] [Server thread/INFO]: [ChatControl] TIP: Player kitkat_25 is already in channel 'standard' in mode read, not adding.
[16:32:57] [Server thread/INFO]: [ChatControl] TIP: Player AlansioK is already in channel 'standard' in mode read, not adding.
[16:32:57] [Server thread/INFO]: [ChatControl] TIP: Player Naemapema is already in channel 'standard' in mode read, not adding.
[16:32:57] [Server thread/INFO]: [ChatControl] TIP: Player xFanuel is already in channel 'standard' in mode read, not adding.
[16:32:57] [Server thread/INFO]: [ChatControl] TIP: Player Matthie65 is already in channel 'standard' in mode read, not adding.
[16:32:57] [Server thread/INFO]: [ChatControl] TIP: Player ItsmeThomasX is already in channel 'standard' in mode read, not adding.
[16:32:57] [Server thread/INFO]: [ChatControl] TIP: Player xmelii is already in channel 'standard' in mode read, not adding.
[16:32:57] [Server thread/INFO]: [ChatControl] TIP: Player PeterEilering69 is already in channel 'standard' in mode read, not adding.
[16:32:57] [Server thread/INFO]: [ChatControl] TIP: Player Beww is already in channel 'standard' in mode read, not adding.
[16:32:57] [Server thread/INFO]: [ChatControl] TIP: Player LuckyLuke_ is already in channel 'standard' in mode read, not adding.
[16:32:57] [Server thread/INFO]: [ChatControl] TIP: Player LuckyLuke_ is already in channel 'staff' in mode read, not adding.
[16:32:57] [Server thread/INFO]: [ChatControl] TIP: Player EnderFace_ is already in channel 'standard' in mode read, not adding.
[16:32:57] [Server thread/INFO]: [ChatControl] TIP: Player PzneRSW is already in channel 'standard' in mode read, not adding.
[16:32:57] [Server thread/INFO]: [ChatControl] TIP: Player yuqiixi is already in channel 'standard' in mode read, not adding.
[16:32:57] [Server thread/INFO]: [ChatControl] TIP: Player eeJack is already in channel 'standard' in mode read, not adding.
[16:32:57] [Server thread/INFO]: [ChatControl] TIP: Player Superster is already in channel 'standard' in mode read, not adding.
[16:32:57] [Server thread/INFO]: [ChatControl] TIP: Player SirMickAlot is already in channel 'standard' in mode read, not adding.
[16:32:57] [Server thread/INFO]: [ChatControl] TIP: Player 105cps is already in channel 'standard' in mode read, not adding.
[16:32:58] [Server thread/INFO]: PzneRSW issued server command: /baltop 2
[16:32:58] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 tenzij je wil minen met mij
[16:33:01] [Server thread/INFO]: ItsmeThomasX issued server command: /tpa xfanuel
[16:33:10] [Server thread/INFO]: xFanuel issued server command: /tpaccept
[16:33:12] [Server thread/INFO]: EnderFace_ issued server command: /spy off
[16:33:15] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasx ja is goed
[16:33:17] [Async Chat Thread - #39/INFO]: [standard] Matthie65: en dat terwijl ik dr uitzie alsof ik 10k heb natuurlijk
[16:33:19] [Server thread/INFO]: LuckyLuke_ issued server command: /lp group helper permission set chatcontrol.color.white
[16:33:19] [luckperms-worker-2/INFO]: [LuckPerms] [Messaging] Sending log with id: 4a7e1413-0f45-42aa-8e7e-170ff9cefa84
[16:33:19] [luckperms-command-executor/INFO]: [LP] LOG > (LuckyLuke_) [G] (helper)
[16:33:19] [luckperms-command-executor/INFO]: [LP] LOG > permission set chatcontrol.color.white true
[16:33:21] [luckperms-worker-2/INFO]: [LuckPerms] [Messaging] Sending ping with id: 38c3533d-690b-4cb5-8578-cb7628a5da66
[16:33:23] [Async Chat Thread - #39/INFO]: [standard] xFanuel: hahahahaha\
[16:33:23] [Server thread/INFO]: EnderFace_ issued server command: /spy on
[16:33:26] [Async Chat Thread - #39/INFO]: [standard] xFanuel: nooit onderschatten
[16:33:29] [Async Chat Thread - #39/INFO]: [standard] SirMickAlot: t
[16:33:31] [Server thread/INFO]: EnderFace_ issued server command: /ec
[16:33:33] [Server thread/INFO]: ItsmeThomasX issued server command: /home
[16:33:34] [Async Chat Thread - #39/INFO]: [standard] xFanuel: wat is die toren dan?
[16:33:42] [Server thread/INFO]: 105cps issued server command: /home
[16:33:44] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 als je wil kan je home zetten hier
[16:33:44] [Async Chat Thread - #39/INFO]: [standard] Matthie65: bamboo
[16:33:50] [Server thread/INFO]: LuckyLuke_ issued server command: /lp group helper permission set chatcontrol.guicolor.white
[16:33:50] [luckperms-worker-1/INFO]: [LuckPerms] [Messaging] Sending log with id: 3a6c6eac-38a1-4a23-89ce-646ed2569118
[16:33:50] [luckperms-command-executor/INFO]: [LP] LOG > (LuckyLuke_) [G] (helper)
[16:33:50] [luckperms-command-executor/INFO]: [LP] LOG > permission set chatcontrol.guicolor.white true
[16:33:52] [luckperms-worker-11/INFO]: [LuckPerms] [Messaging] Sending ping with id: 4dbaeeb2-44ed-4de5-88fa-0a1f7388353b
[16:34:04] [Server thread/INFO]: kitkat_25 issued server command: /sethome
[16:34:05] [Server thread/INFO]: Beww issued server command: /t test
[16:34:11] [Server thread/INFO]: 105cps lost connection: Disconnected
[16:34:11] [Server thread/INFO]: [voicechat] Disconnecting client 105cps
[16:34:11] [Server thread/INFO]: [-] 105cps
[16:34:15] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasx hebk gedaan
[16:34:18] [User Authenticator #21/INFO]: UUID of player 105cps is 121fa4e1-61e1-49a5-aec7-2543b9485928
[16:34:18] [Server thread/INFO]: 105cps[/178.84.120.49:55839] logged in with entity id 198867 at ([world]1961.2226337807758, 66.0, -2931.1267115706883)
[16:34:18] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel standard in mode write
[16:34:18] [Server thread/INFO]: [ChatControl] TIP: Player 105cps is already in channel 'standard' in mode read, not adding.
[16:34:18] [Server thread/INFO]: [+] 105cps
[16:34:19] [Server thread/INFO]: Beww issued server command: /t kunnen jullie dit lezen?
[16:34:23] [Server thread/INFO]: sparkie0704 issued server command: /shop
[16:34:24] [Async Chat Thread - #39/INFO]: [standard] xFanuel: wat kostte dit
[16:34:25] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 heb je Proximity Vc?
[16:34:27] [Server thread/INFO]: [ShopGUIPlus] sparkie0704 bought 11 x Oak Log for $29.15 from wood shop
[16:34:30] [Server thread/INFO]: 105cps issued server command: /rewards
[16:34:35] [Server thread/INFO]: SirMickAlot issued server command: /spy off
[16:34:36] [Async Chat Thread - #39/INFO]: [standard] Matthie65: in totaal denk wel een paar hondertjes
[16:34:36] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasx nee
[16:34:41] [Server thread/INFO]: PeterEilering69 issued server command: /shop
[16:34:42] [luckperms-command-executor/INFO]: [LP] Set tag.og to true for 105cps in context global.
[16:34:42] [luckperms-worker-2/INFO]: [LuckPerms] [Messaging] Sending log with id: 01836f64-1dec-49a9-b6c6-39ed7421b88a
[16:34:42] [luckperms-worker-1/INFO]: [LuckPerms] [Messaging] Sending user ping for '105cps' with id: 52225261-3d68-428c-af6d-cb37ca53cd33
[16:34:43] [Server thread/INFO]: EnderFace_ issued server command: /spy off
[16:34:46] [Async Chat Thread - #39/INFO]: [standard] xFanuel: denk wel miljoenetjes
[16:34:51] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasx ik weet nbiet eens zeker of ik in de dc server zit
[16:34:52] [Server thread/INFO]: 105cps issued server command: /tags
[16:34:53] [Async Chat Thread - #39/INFO]: [standard] Matthie65: nouuuuu
[16:34:58] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 ik stuur wel
[16:35:06] [Server thread/INFO]: LuckyLuke_ issued server command: /tags
[16:35:07] [Server thread/INFO]: 105cps issued server command: /shop
[16:35:13] [Server thread/INFO]: Beww issued server command: /team warp end
[16:35:13] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 als je Proximity vc wil moet je even /audio doen
[16:35:18] [Async Chat Thread - #39/INFO]: [standard] Matthie65: hight limit btw
[16:35:19] [Async Chat Thread - #39/INFO]: [standard] xFanuel: ja goeie man
[16:35:23] [Async Chat Thread - #39/INFO]: [standard] xFanuel: wattttt
[16:35:23] [Server thread/INFO]: [ShopGUIPlus] PeterEilering69 sold all 192 x Redstone for $144 to ores shop
[16:35:36] [Server thread/INFO]: LuckyLuke_ issued server command: /chat color menu
[16:35:39] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 maar lets go voor minen
[16:35:42] [Server thread/INFO]: Matthie65 issued server command: /sell handall
[16:35:42] [Server thread/INFO]: [ShopGUIPlus] Matthie65 sold all 1341 x Bamboo for $6,034.5 to decoration shop
[16:35:44] [Server thread/INFO]: LuckyLuke_ issued server command: /msg SirMickAlot ./chat color menu
[16:35:52] [Server thread/INFO]: SirMickAlot issued server command: /chat color menu
[16:35:52] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasx yes
[16:35:56] [Server thread/INFO]: EatingLittleKids issued server command: /home
[16:35:58] [Server thread/INFO]: Superster issued server command: /ec
[16:36:04] [Async Chat Thread - #39/INFO]: [standard] xFanuel: ai ik ga weer terug
[16:36:04] [Server thread/INFO]: sparkie0704 issued server command: /sell handall
[16:36:04] [Server thread/INFO]: [ShopGUIPlus] sparkie0704 sold all 1600 x Bamboo for $7,200 to decoration shop
[16:36:04] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 heb je eten mee?
[16:36:04] [Server thread/INFO]: xFanuel issued server command: /home
[16:36:05] [Server thread/INFO]: LuckyLuke_ issued server command: /lp group helper permission set chatcontrol.command.color
[16:36:05] [luckperms-worker-1/INFO]: [LuckPerms] [Messaging] Sending log with id: 4ae13fb8-acf3-44c4-9aa2-9336f06fc62e
[16:36:05] [luckperms-command-executor/INFO]: [LP] LOG > (LuckyLuke_) [G] (helper)
[16:36:05] [luckperms-command-executor/INFO]: [LP] LOG > permission set chatcontrol.command.color true
[16:36:07] [luckperms-worker-2/INFO]: [LuckPerms] [Messaging] Sending ping with id: 91f54b1a-b51a-4c17-a439-ea8b965e8c97
[16:36:07] [Server thread/INFO]: SirMickAlot issued server command: /chat color menu
[16:36:08] [Async Chat Thread - #39/INFO]: [standard] xFanuel: ziet er goed uit
[16:36:10] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasx yes
[16:36:13] [Async Chat Thread - #39/INFO]: [standard] SirMickAlot: Yes yes
[16:36:15] [Async Chat Thread - #39/INFO]: [standard] Matthie65: thxxx
[16:36:18] [Server thread/INFO]: Matthie65 issued server command: /sell handall
[16:36:18] [Server thread/INFO]: [ShopGUIPlus] Matthie65 sold all 1408 x Bamboo for $6,336 to decoration shop
[16:36:29] [Server thread/INFO]: SirMickAlot issued server command: /fly
[16:36:43] [Async Chat Thread - #39/INFO]: [standard] sparkie0704: als t goed is doet ie het nu helemaal
[16:36:44] [Server thread/INFO]: 105cps issued server command: /shop
[16:36:48] [Server thread/INFO]: Beww issued server command: /tags
[16:36:54] [Server thread/INFO]: Beww issued server command: /tags
[16:36:54] [Server thread/INFO]: Matthie65 issued server command: /sell handall
[16:36:54] [Server thread/INFO]: [ShopGUIPlus] Matthie65 sold all 1408 x Bamboo for $6,336 to decoration shop
[16:36:55] [Server thread/INFO]: 105cps issued server command: /shop
[16:36:56] [Async Chat Thread - #39/INFO]: [standard] xFanuel: geen problemen met het despawnen?
[16:37:00] [Server thread/INFO]: sparkie0704 issued server command: /shop
[16:37:02] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 wat we echt nodig hebben nu is iron en gold
[16:37:05] [Server thread/INFO]: [ShopGUIPlus] sparkie0704 bought 2 x Lever for $100 from redstone shop
[16:37:07] [Server thread/INFO]: [ShopGUIPlus] 105cps bought 2 x Mushroom Stew for $11.5 from farmfood shop
[16:37:10] [Async Chat Thread - #39/INFO]: [standard] sparkie0704: zou er niet moeten zijn
[16:37:14] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 rest mag je meenemen als je wil
[16:37:15] [Server thread/INFO]: 105cps issued server command: /shop
[16:37:16] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasx is goed
[16:37:18] [Server thread/INFO]: Matthie65 issued server command: /sell handall
[16:37:18] [Server thread/INFO]: [ShopGUIPlus] Matthie65 sold all 1408 x Bamboo for $6,336 to decoration shop
[16:37:20] [Server thread/INFO]: [ShopGUIPlus] 105cps bought 5 x Mushroom Stew for $28.75 from farmfood shop
[16:37:26] [Async Chat Thread - #39/INFO]: [standard] xFanuel: mods hoelang duurt het voordat een item despawned
[16:37:27] [Server thread/INFO]: AlansioK issued server command: /home
[16:37:27] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasx kheb wel geen licht
[16:37:30] [Server thread/INFO]: EnderFace_ issued server command: /chat color menu
[16:37:30] [Server thread/INFO]: LuckyLuke_ issued server command: /tags edit content lucky &8[&#77F454LUCKY☘&r&8]
[16:37:33] [Async Chat Thread - #39/INFO]: [standard] sparkie0704: geen idee
[16:37:33] [Async Chat Thread - #39/INFO]: [standard] EnderFace_: t
[16:37:44] [Async Chat Thread - #39/INFO]: [standard] xFanuel: \
[16:37:44] [Server thread/INFO]: Matthie65 issued server command: /sell handall
[16:37:44] [Server thread/INFO]: [ShopGUIPlus] Matthie65 sold all 1408 x Bamboo for $6,336 to decoration shop
[16:37:48] [Server thread/INFO]: EnderFace_ issued server command: /chat color menu
[16:37:55] [Server thread/INFO]: sparkie0704 issued server command: /sell handall
[16:37:55] [Server thread/INFO]: [ShopGUIPlus] sparkie0704 sold all 1066 x Bamboo for $4,797 to decoration shop
[16:37:55] [Server thread/INFO]: LuckyLuke_ issued server command: /tags edit content lucky &8[&#77F454&lL&#6ADC46&lU&#5CC538&lC&#4FAD2A&lK&#41961C&lY&#347E0E&l☘&r&8]
[16:37:58] [Async Chat Thread - #39/INFO]: [standard] LuckyLuke_: yea
[16:37:58] [Server thread/INFO]: Matthie65 issued server command: /sell handall
[16:37:58] [Server thread/INFO]: [ShopGUIPlus] Matthie65 sold all 1215 x Bamboo for $5,467.5 to decoration shop
[16:38:09] [Async Chat Thread - #39/INFO]: [standard] sparkie0704: oke ik ga nu eten maken
[16:38:11] [Async Chat Thread - #39/INFO]: [standard] sparkie0704: later he
[16:38:13] [Server thread/INFO]: UltimateTeams: Cleared all outstanding team invites!
[16:38:14] [Async Chat Thread - #39/INFO]: [standard] xFanuel: joejoe
[16:38:15] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasx hen jij tortches
[16:38:15] [Server thread/INFO]: sparkie0704 lost connection: Disconnected
[16:38:15] [Server thread/INFO]: [voicechat] Disconnecting client sparkie0704
[16:38:15] [Server thread/INFO]: [-] sparkie0704
[16:38:18] [Async Chat Thread - #39/INFO]: [standard] EnderFace_: LuckyLuke_ jij hebt wel een passende extra achter je naam haha
[16:38:24] [Async Chat Thread - #39/INFO]: [standard] EnderFace_: lucky
[16:38:30] [Async Chat Thread - #39/INFO]: [standard] EnderFace_: fancy
[16:38:32] [Server thread/INFO]: Matthie65 issued server command: /sell handall
[16:38:32] [Server thread/INFO]: [ShopGUIPlus] Matthie65 sold all 1408 x Bamboo for $6,336 to decoration shop
[16:38:32] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 Heb er 3
[16:38:33] [Server thread/INFO]: Beww issued server command: /chat color menu
[16:38:37] [Server thread/INFO]: ItsmeThomasX issued server command: /shop
[16:38:46] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasx tnx
[16:38:54] [Server thread/INFO]: Beww issued server command: /sell all
[16:38:54] [Server thread/INFO]: [ShopGUIPlus] Beww sold all 1 x Cooked Beef for $0.65 to farmfood shop
[16:38:54] [Server thread/INFO]: [ShopGUIPlus] Beww sold all 310 x Ender Pearl for $1,550 to mobdrops shop
[16:38:54] [Server thread/INFO]: [ShopGUIPlus] Beww sold all 4 x Totem Of Undying for $12 to mobdrops shop
[16:38:54] [Server thread/INFO]: [ShopGUIPlus] Beww sold all 5 x Gunpowder for $12.5 to mobdrops shop
[16:38:57] [Server thread/INFO]: Matthie65 issued server command: /sell handall
[16:38:57] [Server thread/INFO]: [ShopGUIPlus] Matthie65 sold all 1472 x Bamboo for $6,624 to decoration shop
[16:38:59] [Server thread/INFO]: Beww issued server command: /sell all
[16:38:59] [Server thread/INFO]: [ShopGUIPlus] Beww sold all 496 x Ender Pearl for $2,480 to mobdrops shop
[16:39:04] [Server thread/INFO]: Beww issued server command: /sell all
[16:39:04] [Server thread/INFO]: [ShopGUIPlus] Beww sold all 496 x Ender Pearl for $2,480 to mobdrops shop
[16:39:07] [Server thread/INFO]: Beww issued server command: /sell all
[16:39:09] [Server thread/INFO]: Beww issued server command: /sell all
[16:39:09] [Server thread/INFO]: [ShopGUIPlus] Beww sold all 496 x Ender Pearl for $2,480 to mobdrops shop
[16:39:12] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasx ik ga aan de andere kant
[16:39:15] [Server thread/INFO]: PzneRSW issued server command: /home
[16:39:21] [Server thread/INFO]: Beww issued server command: /sell all
[16:39:21] [Server thread/INFO]: [ShopGUIPlus] Beww sold all 312 x Ender Pearl for $1,560 to mobdrops shop
[16:39:22] [Server thread/INFO]: Matthie65 issued server command: /sell handall
[16:39:22] [Server thread/INFO]: [ShopGUIPlus] Matthie65 sold all 1472 x Bamboo for $6,624 to decoration shop
[16:39:23] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 Isg ik tp zo ff naar je
[16:39:25] [Server thread/INFO]: ItsmeThomasX issued server command: /home
[16:39:26] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:39:28] [Server thread/INFO]: ItsmeThomasX issued server command: /home
[16:39:30] [Server thread/INFO]: PeterEilering69 issued server command: /home
[16:39:31] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 1280 x Netherrack for $192 to blocks shop
[16:39:43] [Async Chat Thread - #41/INFO]: [standard] Beww: verkoopt er iemand golden carrots?
[16:39:46] [Server thread/INFO]: Beww issued server command: /ah
[16:39:50] [Server thread/INFO]: Matthie65 issued server command: /sell handall
[16:39:50] [Server thread/INFO]: [ShopGUIPlus] Matthie65 sold all 1472 x Bamboo for $6,624 to decoration shop
[16:39:53] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:39:57] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:39:57] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:39:58] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:40:00] [Server thread/INFO]: Matthie65 issued server command: /sell handall
[16:40:00] [Server thread/INFO]: [ShopGUIPlus] Matthie65 sold all 43 x Bamboo for $193.5 to decoration shop
[16:40:04] [Server thread/INFO]: Matthie65 issued server command: /home
[16:40:07] [Async Chat Thread - #41/INFO]: [standard] Superster: Sure hoeveel heb je nodig
[16:40:15] [Async Chat Thread - #41/INFO]: [standard] Beww: 1 stack?
[16:40:16] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:40:21] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:40:21] [Server thread/INFO]: ItsmeThomasX issued server command: /tpa kitkat_25
[16:40:21] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:40:23] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 512 x Bone Meal for $512 from mobdrops shop
[16:40:35] [Server thread/INFO]: Superster issued server command: /tpa Beww
[16:40:42] [Server thread/INFO]: Beww issued server command: /tpaccept
[16:40:46] [Server thread/INFO]: SirMickAlot issued server command: /tp xmelii
[16:40:49] [Async Chat Thread - #41/INFO]: [standard] Beww: hoevel wil je ervoor?
[16:40:50] [Async Chat Thread - #41/INFO]: [standard] Superster: Hoef er niks voor
[16:40:51] [Server thread/INFO]: Superster issued server command: /home base
[16:40:52] [Server thread/INFO]: SirMickAlot issued server command: /fly
[16:40:53] [Server thread/INFO]: Superster issued server command: /home home
[16:40:53] [Async Chat Thread - #41/INFO]: [standard] Beww: oh thanks
[16:40:55] [Server thread/INFO]: Superster issued server command: /home home
[16:40:57] [Async Chat Thread - #41/INFO]: [standard] Superster: Npp
[16:40:58] [Server thread/INFO]: Beww issued server command: /pay Superster 5000
[16:40:59] [Server thread/INFO]: Matthie65 issued server command: /shop
[16:41:03] [Server thread/INFO]: [ShopGUIPlus] Matthie65 bought 5 x Cooked Beef for $68.75 from farmfood shop
[16:41:24] [User Authenticator #22/INFO]: UUID of player Nicksealfish is bf11e41f-d791-45d4-b7ab-0f06f135620c
[16:41:24] [Server thread/INFO]: Nicksealfish[/84.30.36.93:44703] logged in with entity id 218165 at ([world]907.3354005406817, -40.0, 130.69999998807907)
[16:41:24] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel standard in mode write
[16:41:24] [Server thread/INFO]: [ChatControl] TIP: Player Nicksealfish is already in channel 'standard' in mode read, not adding.
[16:41:24] [Server thread/INFO]: [+] Nicksealfish
[16:41:34] [Server thread/INFO]: xmelii issued server command: /shop
[16:41:47] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasx than,ks
[16:41:47] [Server thread/INFO]: EatingLittleKids lost connection: Disconnected
[16:41:47] [Server thread/INFO]: [voicechat] Disconnecting client EatingLittleKids
[16:41:47] [Server thread/INFO]: [-] EatingLittleKids
[16:41:50] [Server thread/INFO]: [ShopGUIPlus] xmelii bought 64 x Spruce Log for $169.6 from wood shop
[16:41:51] [Server thread/INFO]: Nicksealfish issued server command: /home
[16:41:56] [Server thread/INFO]: Nicksealfish issued server command: /shop
[16:42:05] [Server thread/ERROR]: [ChatControl] Unhandled exception occurred in onPacketSending(PacketEvent) for ChatControl
java.lang.NullPointerException: Cannot invoke "com.comphenix.protocol.reflect.accessors.MethodAccessor.invoke(Object, Object[])" because "com.comphenix.protocol.wrappers.codecs.WrappedDataResult.PARTIAL_RESULT_MESSAGE_ACCESSOR" is null
    at ProtocolLib(2).jar/com.comphenix.protocol.wrappers.codecs.WrappedDataResult.getOrThrow(WrappedDataResult.java:48) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.wrappers.WrappedChatComponent.serialize(WrappedChatComponent.java:101) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.wrappers.WrappedChatComponent.getJson(WrappedChatComponent.java:219) ~[ProtocolLib(2).jar:?]
    at ChatControl-11.6.0(1).jar/org.mineacademy.chatcontrol.lib.model.PacketListener$SimpleChatAdapter.onPacketSending(PacketListener.java:278) ~[ChatControl-11.6.0(1).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.injector.collection.OutboundPacketListenerSet.invokeListener(OutboundPacketListenerSet.java:74) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.injector.collection.PacketListenerSet.lambda$invoke$0(PacketListenerSet.java:123) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.timing.TimingTracker.lambda$static$0(TimingTracker.java:7) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.injector.collection.PacketListenerSet.invoke(PacketListenerSet.java:123) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.injector.collection.OutboundPacketListenerSet.invoke(OutboundPacketListenerSet.java:30) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.injector.collection.PacketListenerSet.invoke(PacketListenerSet.java:102) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.injector.PacketFilterManager.postPacketToListeners(PacketFilterManager.java:528) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.injector.PacketFilterManager.invokeOutboundPacketListeners(PacketFilterManager.java:516) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.injector.netty.channel.NettyChannelInjector.processOutbound(NettyChannelInjector.java:528) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.injector.netty.channel.NettyEventLoopProxy.proxyRunnable(NettyEventLoopProxy.java:44) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.injector.netty.channel.NettyEventLoopProxy.execute(NettyEventLoopProxy.java:233) ~[ProtocolLib(2).jar:?]
    at net.minecraft.network.Connection.sendPacket(Connection.java:477) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.network.Connection.send(Connection.java:438) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.server.network.ServerCommonPacketListenerImpl.send(ServerCommonPacketListenerImpl.java:328) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.server.network.ServerCommonPacketListenerImpl.send(ServerCommonPacketListenerImpl.java:310) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at org.bukkit.craftbukkit.entity.CraftPlayer.sendMessage(CraftPlayer.java:3081) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.kyori.adventure.audience.Audience.sendMessage(Audience.java:259) ~[adventure-api-4.24.0.jar:?]
    at net.kyori.adventure.audience.Audience.sendMessage(Audience.java:223) ~[adventure-api-4.24.0.jar:?]
    at ChatControl-11.6.0(1).jar/org.mineacademy.chatcontrol.lib.platform.BukkitPlayer.sendMessage0(BukkitPlayer.java:292) ~[ChatControl-11.6.0(1).jar:?]
    at ChatControl-11.6.0(1).jar/org.mineacademy.chatcontrol.lib.platform.FoundationPlayer.sendMessage(FoundationPlayer.java:438) ~[ChatControl-11.6.0(1).jar:?]
    at ChatControl-11.6.0(1).jar/org.mineacademy.chatcontrol.lib.platform.FoundationPlayer.sendMessageWithPrefix(FoundationPlayer.java:582) ~[ChatControl-11.6.0(1).jar:?]
    at ChatControl-11.6.0(1).jar/org.mineacademy.chatcontrol.lib.platform.FoundationPlayer.sendMessage(FoundationPlayer.java:533) ~[ChatControl-11.6.0(1).jar:?]
    at ChatControl-11.6.0(1).jar/org.mineacademy.chatcontrol.lib.Common.tell(Common.java:152) ~[ChatControl-11.6.0(1).jar:?]
    at ChatControl-11.6.0(1).jar/org.mineacademy.chatcontrol.model.Spy.broadcast(Spy.java:250) ~[ChatControl-11.6.0(1).jar:?]
    at ChatControl-11.6.0(1).jar/org.mineacademy.chatcontrol.model.Spy.broadcastAnvil(Spy.java:443) ~[ChatControl-11.6.0(1).jar:?]
    at ChatControl-11.6.0(1).jar/org.mineacademy.chatcontrol.listener.PlayerListener.onClick(PlayerListener.java:479) ~[ChatControl-11.6.0(1).jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[pufferfish-api-1.21.8-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71) ~[pufferfish-api-1.21.8-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:630) ~[pufferfish-api-1.21.8-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleContainerClick(ServerGamePacketListenerImpl.java:3209) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:59) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:14) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:29) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:155) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1457) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:176) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:129) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1437) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1431) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:118) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1392) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1273) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:311) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[16:42:05] [Server thread/ERROR]: Parameters: 
  net.minecraft.network.protocol.game.ClientboundSystemChatPacket@59de5d8c[
    content=io.papermc.paper.adventure.AdventureComponent@e8eebb8e
    overlay=false
  ]

[16:42:05] [Server thread/ERROR]: [ChatControl] Unhandled exception occurred in onPacketSending(PacketEvent) for ChatControl
java.lang.NullPointerException: Cannot invoke "com.comphenix.protocol.reflect.accessors.MethodAccessor.invoke(Object, Object[])" because "com.comphenix.protocol.wrappers.codecs.WrappedDataResult.PARTIAL_RESULT_MESSAGE_ACCESSOR" is null
    at ProtocolLib(2).jar/com.comphenix.protocol.wrappers.codecs.WrappedDataResult.getOrThrow(WrappedDataResult.java:48) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.wrappers.WrappedChatComponent.serialize(WrappedChatComponent.java:101) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.wrappers.WrappedChatComponent.getJson(WrappedChatComponent.java:219) ~[ProtocolLib(2).jar:?]
    at ChatControl-11.6.0(1).jar/org.mineacademy.chatcontrol.lib.model.PacketListener$SimpleChatAdapter.onPacketSending(PacketListener.java:278) ~[ChatControl-11.6.0(1).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.injector.collection.OutboundPacketListenerSet.invokeListener(OutboundPacketListenerSet.java:74) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.injector.collection.PacketListenerSet.lambda$invoke$0(PacketListenerSet.java:123) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.timing.TimingTracker.lambda$static$0(TimingTracker.java:7) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.injector.collection.PacketListenerSet.invoke(PacketListenerSet.java:123) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.injector.collection.OutboundPacketListenerSet.invoke(OutboundPacketListenerSet.java:30) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.injector.collection.PacketListenerSet.invoke(PacketListenerSet.java:102) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.injector.PacketFilterManager.postPacketToListeners(PacketFilterManager.java:528) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.injector.PacketFilterManager.invokeOutboundPacketListeners(PacketFilterManager.java:516) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.injector.netty.channel.NettyChannelInjector.processOutbound(NettyChannelInjector.java:528) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.injector.netty.channel.NettyEventLoopProxy.proxyRunnable(NettyEventLoopProxy.java:44) ~[ProtocolLib(2).jar:?]
    at ProtocolLib(2).jar/com.comphenix.protocol.injector.netty.channel.NettyEventLoopProxy.execute(NettyEventLoopProxy.java:233) ~[ProtocolLib(2).jar:?]
    at net.minecraft.network.Connection.sendPacket(Connection.java:477) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.network.Connection.send(Connection.java:438) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.server.network.ServerCommonPacketListenerImpl.send(ServerCommonPacketListenerImpl.java:328) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.server.network.ServerCommonPacketListenerImpl.send(ServerCommonPacketListenerImpl.java:310) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at org.bukkit.craftbukkit.entity.CraftPlayer.sendMessage(CraftPlayer.java:3081) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.kyori.adventure.audience.Audience.sendMessage(Audience.java:259) ~[adventure-api-4.24.0.jar:?]
    at net.kyori.adventure.audience.Audience.sendMessage(Audience.java:223) ~[adventure-api-4.24.0.jar:?]
    at ChatControl-11.6.0(1).jar/org.mineacademy.chatcontrol.lib.platform.BukkitPlayer.sendMessage0(BukkitPlayer.java:292) ~[ChatControl-11.6.0(1).jar:?]
    at ChatControl-11.6.0(1).jar/org.mineacademy.chatcontrol.lib.platform.FoundationPlayer.sendMessage(FoundationPlayer.java:438) ~[ChatControl-11.6.0(1).jar:?]
    at ChatControl-11.6.0(1).jar/org.mineacademy.chatcontrol.lib.platform.FoundationPlayer.sendMessageWithPrefix(FoundationPlayer.java:582) ~[ChatControl-11.6.0(1).jar:?]
    at ChatControl-11.6.0(1).jar/org.mineacademy.chatcontrol.lib.platform.FoundationPlayer.sendMessage(FoundationPlayer.java:533) ~[ChatControl-11.6.0(1).jar:?]
    at ChatControl-11.6.0(1).jar/org.mineacademy.chatcontrol.lib.Common.tell(Common.java:152) ~[ChatControl-11.6.0(1).jar:?]
    at ChatControl-11.6.0(1).jar/org.mineacademy.chatcontrol.model.Spy.broadcast(Spy.java:250) ~[ChatControl-11.6.0(1).jar:?]
    at ChatControl-11.6.0(1).jar/org.mineacademy.chatcontrol.model.Spy.broadcastAnvil(Spy.java:443) ~[ChatControl-11.6.0(1).jar:?]
    at ChatControl-11.6.0(1).jar/org.mineacademy.chatcontrol.listener.PlayerListener.onClick(PlayerListener.java:479) ~[ChatControl-11.6.0(1).jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[pufferfish-api-1.21.8-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71) ~[pufferfish-api-1.21.8-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:630) ~[pufferfish-api-1.21.8-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleContainerClick(ServerGamePacketListenerImpl.java:3209) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:59) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:14) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:29) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:155) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1457) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:176) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:129) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1437) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1431) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:118) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1392) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1273) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:311) ~[pufferfish-1.21.8.jar:1.21.8-33-77b0097]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[16:42:05] [Server thread/ERROR]: Parameters: 
  net.minecraft.network.protocol.game.ClientboundSystemChatPacket@38447f15[
    content=io.papermc.paper.adventure.AdventureComponent@e8eebb8e
    overlay=false
  ]

[16:42:13] [Server thread/INFO]: Matthie65 issued server command: /shop
[16:42:17] [Server thread/INFO]: [ShopGUIPlus] Matthie65 bought 256 x Glowstone for $448 from blocks shop
[16:42:22] [Server thread/INFO]: [ShopGUIPlus] Matthie65 bought 576 x Glass for $1,987.2 from colours shop
[16:42:27] [Server thread/INFO]: SirMickAlot issued server command: /staff
[16:42:29] [Server thread/INFO]: SirMickAlot issued server command: /vanish
[16:42:30] [Async Chat Thread - #43/INFO]: [standard] Beww: LuckyLuke_
[16:42:31] [Server thread/INFO]: SirMickAlot issued server command: /vanish
[16:42:35] [Server thread/INFO]: Villager Villager['Librarian'/212770, uuid='602e3fb2-5012-457b-a3bb-b0272249ae65', l='ServerLevel[world]', x=1805.30, y=40.00, z=-1924.69, cpos=[112, -121], tl=3141, v=true] died, message: 'Librarian was slain by 105cps'
[16:42:39] [Server thread/INFO]: xmelii issued server command: /craft
[16:42:41] [Server thread/INFO]: Villager Villager['Librarian'/212771, uuid='69e8b13d-f91e-4d48-8cc0-a11e72e0b6b9', l='ServerLevel[world]', x=1807.30, y=40.00, z=-1924.68, cpos=[112, -121], tl=3254, v=true] died, message: 'Librarian was slain by 105cps'
[16:42:44] [Async Chat Thread - #43/INFO]: [standard] LuckyLuke_: ja Beww
[16:42:44] [Server thread/INFO]: SirMickAlot issued server command: /
[16:42:47] [Server thread/INFO]: Villager Villager['Librarian'/212775, uuid='3aca1f34-15a1-43f8-b7f4-20e9dcab620f', l='ServerLevel[world]', x=1811.31, y=40.00, z=-1924.69, cpos=[113, -121], tl=3388, v=true] died, message: 'Librarian was slain by 105cps'
[16:42:48] [Server thread/INFO]: PeterEilering69 issued server command: /home
[16:42:55] [Server thread/INFO]: Villager Villager['Librarian'/212777, uuid='f9d598c4-4b55-4d0c-a53b-97b3edf4f698', l='ServerLevel[world]', x=1813.38, y=40.00, z=-1924.68, cpos=[113, -121], tl=3548, v=true] died, message: 'Librarian was slain by 105cps'
[16:43:00] [Server thread/INFO]: Villager Villager['Librarian'/212776, uuid='a11f8c25-1495-40c5-9237-495b140d2d61', l='ServerLevel[world]', x=1815.62, y=40.00, z=-1924.68, cpos=[113, -121], tl=3633, v=true] died, message: 'Librarian was slain by 105cps'
[16:43:05] [Server thread/INFO]: Villager Villager['Librarian'/212976, uuid='13de61c7-2fac-47b7-8202-3be31a190fab', l='ServerLevel[world]', x=1815.50, y=40.00, z=-1916.32, cpos=[113, -120], tl=3656, v=true] died, message: 'Librarian was slain by 105cps'
[16:43:09] [Server thread/INFO]: Villager Villager['Librarian'/212974, uuid='fb2a27bb-da80-4780-8cd3-eb4bf7fc498f', l='ServerLevel[world]', x=1813.33, y=40.00, z=-1916.30, cpos=[113, -120], tl=3734, v=true] died, message: 'Librarian was slain by 105cps'
[16:43:14] [Server thread/INFO]: Villager Villager['Librarian'/212975, uuid='24e70a1d-4f0a-48cc-aa6f-2bca5d928df8', l='ServerLevel[world]', x=1811.30, y=40.00, z=-1916.30, cpos=[113, -120], tl=3837, v=true] died, message: 'Librarian was slain by 105cps'
[16:43:21] [Server thread/INFO]: Villager Villager['Librarian'/212968, uuid='dec0389d-97e8-4fb9-87cb-2296e502512d', l='ServerLevel[world]', x=1807.46, y=40.00, z=-1916.30, cpos=[112, -120], tl=3964, v=true] died, message: 'Librarian was slain by 105cps'
[16:43:33] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 Kan je zo even accepten
[16:43:33] [Server thread/INFO]: LuckyLuke_ issued server command: /setblock -1 61 -18 minecraft:light_blue_concrete
[16:43:33] [Server thread/INFO]: [LuckyLuke_: Changed the block at -1, 61, -18]
[16:43:35] [Server thread/INFO]: ItsmeThomasX issued server command: /home
[16:43:38] [Server thread/INFO]: ItsmeThomasX issued server command: /home
[16:43:44] [Server thread/INFO]: Villager Villager['Librarian'/212967, uuid='90e265de-5326-4bb9-b554-ab763056c64c', l='ServerLevel[world]', x=1805.33, y=40.00, z=-1916.30, cpos=[112, -120], tl=4433, v=true] died, message: 'Librarian was slain by 105cps'
[16:43:44] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasx watte
[16:43:48] [Server thread/INFO]: AlansioK issued server command: /ah
[16:43:51] [Server thread/INFO]: LuckyLuke_ issued server command: /setblock 17 61 -18 minecraft:light_blue_concrete
[16:43:51] [Server thread/INFO]: [LuckyLuke_: Changed the block at 17, 61, -18]
[16:43:56] [Server thread/INFO]: LuckyLuke_ issued server command: /npc select
[16:44:01] [Server thread/INFO]: LuckyLuke_ issued server command: /npc rename &byuqiixi
[16:44:09] [Server thread/INFO]: Beww issued server command: /sell all
[16:44:09] [Server thread/INFO]: [ShopGUIPlus] Beww sold all 464 x Ender Pearl for $2,320 to mobdrops shop
[16:44:09] [Server thread/INFO]: [ShopGUIPlus] Beww sold all 64 x Baked Potato for $28.8 to farmfood shop
[16:44:11] [Server thread/INFO]: LuckyLuke_ issued server command: /npc create ShewinB
[16:44:13] [Server thread/INFO]: Beww issued server command: /sell all
[16:44:13] [Server thread/INFO]: [ShopGUIPlus] Beww sold all 300 x Ender Pearl for $1,500 to mobdrops shop
[16:44:14] [Server thread/INFO]: Superster issued server command: /craft
[16:44:15] [Server thread/INFO]: AlansioK lost connection: Disconnected
[16:44:15] [Server thread/INFO]: [voicechat] Disconnecting client AlansioK
[16:44:15] [Server thread/INFO]: [-] AlansioK
[16:44:22] [Server thread/INFO]: Beww issued server command: /home
[16:44:47] [Server thread/INFO]: ItsmeThomasX issued server command: /tpa kitkat
[16:44:50] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:44:53] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 1728 x Bamboo for $7,776 to decoration shop
[16:44:58] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:45:01] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 1188 x Bamboo for $5,346 to decoration shop
[16:45:01] [Server thread/WARN]: EnderFace_ moved wrongly!
[16:45:03] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:45:04] [Server thread/INFO]: LuckyLuke_ issued server command: /npc select
[16:45:05] [Server thread/INFO]: LuckyLuke_ issued server command: /npc remove
[16:45:06] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:45:07] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:45:07] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:45:07] [Server thread/INFO]: Superster issued server command: /ah
[16:45:13] [Server thread/INFO]: ItsmeThomasX issued server command: /msg kitkat_25 die :)
[16:45:19] [User Authenticator #23/INFO]: UUID of player AlansioK is 4c42a2db-4504-4fe5-b566-361b845d42c6
[16:45:19] [Server thread/INFO]: AlansioK[/77.170.118.68:40545] logged in with entity id 230067 at ([world]645.3834948109783, 48.0, -2220.8783331333298)
[16:45:19] [Server thread/INFO]: [ChatControl] TIP: Joining player to his saved channel standard in mode write
[16:45:19] [Server thread/INFO]: [ChatControl] TIP: Player AlansioK is already in channel 'standard' in mode read, not adding.
[16:45:19] [Server thread/INFO]: [+] AlansioK
[16:45:20] [Server thread/INFO]: LuckyLuke_ issued server command: /npc create &bEnderFace_
[16:45:24] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:45:28] [Server thread/INFO]: AlansioK issued server command: /rewards
[16:45:29] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:45:30] [Server thread/INFO]: kitkat_25 issued server command: /tpaccept
[16:45:30] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:45:31] [Async Chat Thread - #45/INFO]: [standard] LuckyLuke_: EnderFace_ & yuqiixi jullie staan ook bij staff nu
[16:45:32] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 512 x Bone Meal for $512 from mobdrops shop
[16:45:43] [luckperms-command-executor/INFO]: [LP] Set tag.og to true for alansiok in context global.
[16:45:43] [luckperms-worker-2/INFO]: [LuckPerms] [Messaging] Sending log with id: c2182838-21e9-43e3-a571-68673efd5232
[16:45:43] [luckperms-worker-1/INFO]: [LuckPerms] [Messaging] Sending user ping for 'alansiok' with id: edc07093-1b68-4d73-8dea-d144b0151901
[16:45:49] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:45:52] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:45:52] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 576 x Bone Meal for $576 from mobdrops shop
[16:45:53] [Server thread/INFO]: [ShopGUIPlus] PzneRSW bought 512 x Bone Meal for $512 from mobdrops shop
[16:46:04] [Server thread/INFO]: Nicksealfish issued server command: /shop
[16:46:10] [Server thread/INFO]: [ShopGUIPlus] Nicksealfish bought 64 x Obsidian for $368 from blocks shop
[16:46:13] [Server thread/INFO]: AlansioK issued server command: /ah
[16:46:14] [Server thread/INFO]: Matthie65 issued server command: /home
[16:46:15] [Async Chat Thread - #45/INFO]: [standard] EnderFace_: oke.
[16:46:21] [Server thread/INFO]: xFanuel issued server command: /tpa itsmethomasx
[16:46:23] [Async Chat Thread - #45/INFO]: [standard] EnderFace_: :D
[16:46:25] [Server thread/INFO]: Named entity EnderMan['Dinnerbone'/23, uuid='165026f8-9b57-443d-8f53-4e3198eac8db', l='ServerLevel[world]', x=-47.57, y=67.00, z=2.61, cpos=[-3, 0], tl=9001, v=true] died: Dinnerbone was burned to a crisp while fighting Beww
[16:46:25] [Server thread/INFO]: ItsmeThomasX issued server command: /tpaccept
[16:46:27] [Server thread/INFO]: LuckyLuke_ lost connection: Disconnected
[16:46:27] [Server thread/INFO]: [voicechat] Disconnecting client LuckyLuke_
[16:46:27] [Server thread/INFO]: [-] [DEV] LuckyLuke_
[16:46:35] [Server thread/INFO]: Beww issued server command: /staff
[16:46:36] [Server thread/INFO]: Beww issued server command: /v
[16:46:37] [Server thread/INFO]: Beww issued server command: /v
[16:46:39] [Server thread/INFO]: Beww issued server command: /v
[16:46:43] [Server thread/INFO]: SirMickAlot issued server command: /staff spec
[16:46:50] [Server thread/INFO]: SirMickAlot issued server command: /staff spec
[16:46:58] [Server thread/WARN]: xFanuel moved wrongly!
[16:47:01] [Server thread/INFO]: PeterEilering69 issued server command: /shop
[16:47:05] [Server thread/INFO]: Matthie65 issued server command: /shop
[16:47:08] [Server thread/INFO]: [ShopGUIPlus] PeterEilering69 sold all 214 x Lapis Lazuli for $567.1 to ores shop
[16:47:09] [Server thread/INFO]: [ShopGUIPlus] Matthie65 bought 6 x Spruce Log for $15.9 from wood shop
[16:47:12] [Server thread/INFO]: EnderFace_ issued server command: /staff
[16:47:20] [Server thread/INFO]: EnderFace_ issued server command: /staff
[16:47:24] [Server thread/INFO]: Superster issued server command: /home home
[16:47:46] [Server thread/INFO]: eeJack issued server command: /home
[16:47:48] [Server thread/INFO]: Superster issued server command: /home home
[16:47:48] [Server thread/INFO]: xFanuel issued server command: /msg kitkat als je restone tegen komt kan je dat ook meenemen heb het vaak nodig voor farms
[16:47:57] [Server thread/INFO]: SirMickAlot issued server command: /fly
[16:48:01] [Server thread/INFO]: kitkat_25 issued server command: /msg ItsmeThomasx is goed
[16:48:13] [Craft Scheduler Thread - 160 - UltimateTeams/INFO]: [UltimateTeams] Creating automatic ender chest backups...
[16:48:13] [Craft Scheduler Thread - 160 - UltimateTeams/INFO]: [UltimateTeams] Automatic ender chest backups completed.
[16:48:13] [Server thread/INFO]: UltimateTeams: Cleared all outstanding team invites!
[16:48:14] [Server thread/INFO]: SirMickAlot issued server command: /home zwitserland
[16:48:17] [Server thread/INFO]: SirMickAlot issued server command: /vanish
[16:48:19] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:48:22] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 1169 x Bamboo for $5,260.5 to decoration shop
[16:48:23] [Server thread/INFO]: SirMickAlot issued server command: /staff
[16:48:37] [Server thread/INFO]: Nicksealfish issued server command: /shop
[16:48:42] [Server thread/INFO]: [ShopGUIPlus] Nicksealfish bought 64 x Obsidian for $368 from blocks shop
[16:49:15] [Server thread/INFO]: PzneRSW issued server command: /shop
[16:49:17] [Server thread/INFO]: ItsmeThomasX issued server command: /pay kitkat_25 25000
[16:49:18] [Server thread/INFO]: [ShopGUIPlus] PzneRSW sold all 1177 x Bamboo for $5,296.5 to decoration shop
[16:49:20] [Server thread/INFO]: PzneRSW issued server command: /home
[16:49:32] [Server thread/INFO]: Nicksealfish issued server command: /home
[16:49:44] [Server thread/INFO]: Naemapema lost connection: Disconnected
[16:49:44] [Server thread/INFO]: [voicechat] Disconnecting client Naemapema
[16:49:44] [Server thread/INFO]: [-] Naemapema
[16:50:00] [Server thread/INFO]: Matthie65 issued server command: /shop
[16:50:03] [Server thread/INFO]: [ShopGUIPlus] Matthie65 bought 64 x Spruce Log for $169.6 from wood shop
[16:50:17] [Server thread/INFO]: EnderFace_ issued server command: /chat color menu