Paste #114643: Unnamed Server Log Paste

Date: 2023/08/30 13:50:31 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387


[04:01:41] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[04:01:51] [ServerMain/WARN]: Found loot table element validation problem in {loot_tables:minecraft:entities/bat}.pools[2].entries[0]: Unknown loot table called minecraft:entities/reference/extra/bat
[04:01:51] [ServerMain/WARN]: Found loot table element validation problem in {loot_tables:minecraft:entities/shulker}.pools[2].entries[0]: Unknown loot table called minecraft:entities/reference/extra/shulker
[04:01:51] [ServerMain/WARN]: Found loot table element validation problem in {loot_tables:minecraft:entities/ender_dragon}.pools[0].entries[0]: Unknown loot table called minecraft:entities/reference/extra/ender_dragon
[04:01:51] [ServerMain/INFO]: Loaded 7 recipes
[04:01:53] [Server thread/INFO]: Starting minecraft server version 1.20.1
[04:01:53] [Server thread/INFO]: Loading properties
[04:01:53] [Server thread/INFO]: This server is running Paper version git-Paper-167 (MC: 1.20.1) (Implementing API version 1.20.1-R0.1-SNAPSHOT) (Git: 0c0a480)
[04:01:53] [Server thread/INFO]: Server Ping Player Sample Count: 12
[04:01:53] [Server thread/INFO]: Using 4 threads for Netty based IO
[04:01:54] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[04:01:54] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[04:01:54] [Server thread/INFO]: Default game type: SURVIVAL
[04:01:54] [Server thread/INFO]: Generating keypair
[04:01:54] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25567
[04:01:54] [Server thread/INFO]: Using epoll channel type
[04:01:54] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[04:01:54] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loading 4 libraries... please wait
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/mariadb/jdbc/mariadb-java-client/3.1.3/mariadb-java-client-3.1.3.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/github/waffle/waffle-jna/3.2.0/waffle-jna-3.2.0.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/net/java/dev/jna/jna/5.12.1/jna-5.12.1.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/net/java/dev/jna/jna-platform/5.12.1/jna-platform-5.12.1.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/slf4j/jcl-over-slf4j/1.7.36/jcl-over-slf4j-1.7.36.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/github/ben-manes/caffeine/caffeine/2.9.3/caffeine-2.9.3.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.23.0/checker-qual-3.23.0.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/mysql/mysql-connector-j/8.0.32/mysql-connector-j-8.0.32.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/google/protobuf/protobuf-java/3.21.9/protobuf-java-3.21.9.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [RewardsLite] Loading 1 libraries... please wait
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [RewardsLite] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[04:01:55] [Server thread/INFO]: [SpigotLibraryLoader] [RewardsLite] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[04:01:55] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.102
[04:01:56] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[04:01:56] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.3
[04:01:56] [Server thread/INFO]: [dynmap] Loading server plugin dynmap v3.6-899
[04:01:56] [Server thread/INFO]: [dynmap] version=git-Paper-167 (MC: 1.20.1)
[04:01:56] [Server thread/INFO]: [dynmap] Mod Support API available
[04:01:56] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.26.2
[04:01:56] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.2-SNAPSHOT (b69-492be77)
[04:01:56] [Server thread/INFO]: [floodgate] Took 662ms to boot Floodgate
[04:01:56] [Server thread/INFO]: [DiscordSRV-Staff-Chat] Loading server plugin DiscordSRV-Staff-Chat v1.4.4
[04:01:56] [Server thread/INFO]: [ATR] Loading server plugin AcceptTheRules v10.11
[04:01:56] [Server thread/INFO]: [ServerEssentials] Loading server plugin ServerEssentials v1.82.2
[04:01:56] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.1.0
[04:01:57] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.1
[04:01:57] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.7.2-SNAPSHOT-552;f5a5eae
[04:01:57] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@f5ae0e5]
[04:01:57] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.32-SNAPSHOT (build 3156)
[04:01:57] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.20.1
[04:01:57] [Server thread/INFO]: [ChatControlRed] Loading server plugin ChatControlRed v10.19.5
[04:01:57] [Server thread/INFO]: [GriefDefender] Loading server plugin GriefDefender v2.3.9
[04:01:57] [Server thread/INFO]: [TradeShop] Loading server plugin TradeShop v2.6.1-DEV
[04:01:57] [Server thread/INFO]: [Sentinel] Loading server plugin Sentinel v2.8.0-SNAPSHOT (build 508)
[04:01:57] [Server thread/INFO]: [Quests] Loading server plugin Quests v4.8.3-b423
[04:01:57] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.7.0
[04:01:57] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.1
[04:01:57] [Server thread/INFO]: [AllianceTag] Loading server plugin AllianceTag v2.0
[04:01:57] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.14
[04:01:57] [Server thread/INFO]: [BuycraftX] Loading server plugin BuycraftX v12.0.8
[04:01:57] [Server thread/INFO]: [PlayerKits] Loading server plugin PlayerKits v2.27.1
[04:01:57] [Server thread/INFO]: [voicechat] Loading server plugin voicechat v2.4.10
[04:01:57] [Server thread/INFO]: [FreedomChat] Loading server plugin FreedomChat v1.5.0
[04:01:57] [Server thread/INFO]: [IllegalStack] Loading server plugin IllegalStack v2.9.8
[04:01:57] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.0.1
[04:01:57] [Server thread/INFO]: [NPC_Destinations] Loading server plugin NPC_Destinations v2.6.11
[04:01:57] [Server thread/WARN]: Worldguard not found, custom flags are not enabled
[04:01:57] [Server thread/INFO]: [dtlTradersPlus] Loading server plugin dtlTradersPlus v6.4.20
[04:01:57] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Loading server plugin InteractiveChatDiscordSrvAddon v4.2.7.0
[04:01:57] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordCommandEvents subscribed (1 methods)
[04:01:57] [Server thread/INFO]: [EssentialsProtect] Loading server plugin EssentialsProtect v2.20.1
[04:01:57] [Server thread/INFO]: [ArmorStandEditor] Loading server plugin ArmorStandEditor v1.20.1-43.2
[04:01:57] [Server thread/INFO]: [FortuneCraft] Loading server plugin FortuneCraft v1.0
[04:01:57] [Server thread/INFO]: [Spartan] Loading server plugin Spartan vPhase 519.1
[04:01:57] [Server thread/INFO]: [SafeNET] Loading server plugin SafeNET v3.8
[04:01:57] [Server thread/INFO]: [spark] Loading server plugin spark v1.9.12
[04:01:57] [Server thread/INFO]: [SurvivalInvisiframes] Loading server plugin SurvivalInvisiframes v2.1.0
[04:01:57] [Server thread/INFO]: [QuestsGUI] Loading server plugin QuestsGUI v0.54
[04:01:57] [Server thread/INFO]: [GDHooks] Loading server plugin GDHooks v0.8-DEV
[04:01:57] [Server thread/INFO]: [RewardsLite] Loading server plugin RewardsLite v3.1.6
[04:01:57] [Server thread/INFO]: [PsudoCommand] Loading server plugin PsudoCommand v1.0.34
[04:01:57] [Server thread/INFO]: [RainbowChat] Loading server plugin RainbowChat v1.0
[04:01:57] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[04:01:57] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.102
[04:01:58] [Server thread/INFO]:         __    
[04:01:58] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.102
[04:01:58] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[04:01:58] [Server thread/INFO]: 
[04:01:58] [Server thread/INFO]: [LuckPerms] Loading configuration...
[04:01:58] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[04:01:58] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[04:01:58] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[04:01:59] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[04:01:59] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[04:01:59] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[04:01:59] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1928ms)
[04:01:59] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[04:01:59] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[04:01:59] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[04:01:59] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[04:01:59] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[04:01:59] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.1.0
[04:01:59] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.7.2-SNAPSHOT-552;f5a5eae
[04:01:59] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[04:01:59] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[04:02:00] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[04:02:00] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[04:02:00] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R1.PaperweightFaweAdapter as the Bukkit adapter
[04:02:00] [Server thread/INFO]: [GriefDefender] Enabling GriefDefender v2.3.9
[04:02:00] [Server thread/INFO]: [GriefDefender] Loading libraries...
[04:02:00] [Server thread/INFO]: [GriefDefender] GriefDefender boot start.
[04:02:02] [Server thread/INFO]: [GriefDefender] Loading configuration...
[04:02:02] [Server thread/INFO]: [GriefDefender] Loading Flag Definition Presets...
[04:02:02] [Server thread/INFO]: [GriefDefender] Loading flag definitions from file 'minecraft.conf'...
[04:02:03] [Server thread/INFO]: [GriefDefender] Detected Vault. Initializing VaultProvider...
[04:02:03] [Server thread/INFO]: [GriefDefender] [ACF] Enabled Asynchronous Tab Completion Support!
[04:02:03] [Server thread/INFO]: [GriefDefender] Loaded successfully.
[04:02:03] [Server thread/INFO]: [SafeNET] Enabling SafeNET v3.8
[04:02:03] [Server thread/INFO]: [SafeNET] Paper server components available; handshakes will be handled via the API and sessions will not be validated.
[04:02:03] [Server thread/INFO]: [PsudoCommand] Enabling PsudoCommand v1.0.34
[04:02:03] [Server thread/INFO]: [PsudoCommand] Registered command psudo for vanilla usage.
[04:02:03] [Server thread/INFO]: [PsudoCommand] Registered command psudouuid for vanilla usage.
[04:02:03] [Server thread/INFO]: [PsudoCommand] Registered command psudoas for vanilla usage.
[04:02:03] [Server thread/INFO]: [PsudoCommand] Registered command psudoasraw for vanilla usage.
[04:02:03] [Server thread/INFO]: [PsudoCommand] Registered command psudoasop for vanilla usage.
[04:02:03] [Server thread/INFO]: [PsudoCommand] Registered command psudoasconsole for vanilla usage.
[04:02:03] [Server thread/INFO]: [PsudoCommand] Registered command psudo for /execute (through Brigadier).
[04:02:03] [Server thread/INFO]: [PsudoCommand] Registered command psudouuid for /execute (through Brigadier).
[04:02:03] [Server thread/INFO]: [PsudoCommand] Registered command psudoas for /execute (through Brigadier).
[04:02:03] [Server thread/INFO]: [PsudoCommand] Registered command psudoasraw for /execute (through Brigadier).
[04:02:03] [Server thread/INFO]: [PsudoCommand] Registered command psudoasop for /execute (through Brigadier).
[04:02:03] [Server thread/INFO]: [PsudoCommand] Registered command psudoasconsole for /execute (through Brigadier).
[04:02:03] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[04:02:03] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[04:02:03] [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.
[04:02:03] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[04:02:03] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[04:02:03] [Server thread/INFO]: Preparing level "TheWilds"
[04:02:03] [Server thread/INFO]: [GriefDefender] [thewilds] 264 total claims loaded.
[04:02:03] [Server thread/INFO]: [GriefDefender] Loading schematics for world TheWilds...
[04:02:03] [Server thread/INFO]: [GriefDefender] [thewilds_nether] 41 total claims loaded.
[04:02:03] [Server thread/INFO]: [GriefDefender] Loading schematics for world TheWilds_nether...
[04:02:03] [Server thread/INFO]: [GriefDefender] [thewilds_the_end] 13 total claims loaded.
[04:02:03] [Server thread/INFO]: [GriefDefender] Loading schematics for world TheWilds_the_end...
[04:02:03] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[04:02:04] [Server thread/INFO]: Time elapsed: 217 ms
[04:02:04] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[04:02:04] [Server thread/INFO]: Time elapsed: 21 ms
[04:02:04] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[04:02:04] [Server thread/INFO]: Time elapsed: 13 ms
[04:02:04] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[04:02:04] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[04:02:04] [Server thread/INFO]: [dynmap] Enabling dynmap v3.6-899
[04:02:04] [Server thread/INFO]: [dynmap] Added 20 custom biome mappings
[04:02:04] [Server thread/INFO]: [dynmap] Using LuckPerms 5.4.102 for access control
[04:02:04] [Server thread/WARN]: [dynmap] SkinsRestorer integration can't be enabled because SkinsRestorer is not installed
[04:02:04] [Server thread/INFO]: [dynmap] Mod Support processing completed
[04:02:06] [Server thread/INFO]: [dynmap] Loaded 27 shaders.
[04:02:06] [Server thread/INFO]: [dynmap] Loaded 83 perspectives.
[04:02:06] [Server thread/INFO]: [dynmap] Loaded 22 lightings.
[04:02:06] [Server thread/INFO]: [dynmap] Starting enter/exit processing
[04:02:06] [Dynmap Render Thread/INFO]: [dynmap] Finish marker initialization
[04:02:07] [Server thread/INFO]: [dynmap] Web server started on address 0.0.0.0:25554
[04:02:07] [Server thread/INFO]: [dynmap] version 3.6-899 is enabled - core version 3.6-899
[04:02:07] [Server thread/INFO]: [dynmap] For support, visit our Discord at https://discord.gg/s3rd5qn
[04:02:07] [Server thread/INFO]: [dynmap] For news, visit https://reddit.com/r/Dynmap or follow https://universeodon.com/@dynmap
[04:02:07] [Server thread/INFO]: [dynmap] To report or track bugs, visit https://github.com/webbukkit/dynmap/issues
[04:02:07] [Server thread/INFO]: [dynmap] If you'd like to donate, please visit https://www.patreon.com/dynmap or https://ko-fi.com/michaelprimm
[04:02:07] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'TheWilds'.
[04:02:07] [Server thread/INFO]: [dynmap] Loaded 6 pending tile renders for world 'TheWilds'
[04:02:07] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'TheWilds_nether'.
[04:02:07] [Server thread/INFO]: [dynmap] Loaded 3 pending tile renders for world 'TheWilds_nether'
[04:02:07] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'TheWilds_the_end'.
[04:02:07] [Server thread/INFO]: [dynmap] Enabled
[04:02:07] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.2
[04:02:07] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.2-SNAPSHOT (b69-492be77)
[04:02:07] [Server thread/INFO]: [DiscordSRV-Staff-Chat] Enabling DiscordSRV-Staff-Chat v1.4.4
[04:02:07] [Server thread/INFO]: [DiscordSRV] API listener com.rezzedup.discordsrv.staffchat.listeners.DiscordStaffChatListener subscribed (1 methods)
[04:02:07] [Server thread/INFO]: [DiscordSRV-Staff-Chat] Subscribed to DiscordSRV: messages will be sent to Discord
[04:02:07] [Server thread/INFO]: [ATR] Enabling AcceptTheRules v10.11
[04:02:07] [Server thread/INFO]: [com.morelaid.shaded.atr.ormlite.table.TableUtils] creating table 'playerdata'
[04:02:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: atr [10.11]
[04:02:07] [Server thread/INFO]: [ATR] Version 10.11 is enabled!
[04:02:07] [Server thread/INFO]: [ServerEssentials] Enabling ServerEssentials v1.82.2
[04:02:07] [Server thread/INFO]: *********************
[04:02:07] [Server thread/INFO]: [SUCCESS] Server Essentials has been enabled.
[04:02:07] [Server thread/INFO]: [SUCCESS] PlaceholderAPI has been enabled.
[04:02:07] [Server thread/INFO]: [SUCCESS] DiscordSRV Integration has been enabled.
[04:02:07] [Server thread/INFO]: [DiscordSRV] API listener me.rocketmankianproductions.serveressentials.events.DiscordMessageReceived subscribed (1 methods)
[04:02:07] [Server thread/INFO]: [SUCCESS] Config.yml has been initialised.
[04:02:07] [Server thread/INFO]: [SUCCESS] Commands have been enabled.
[04:02:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: se [1.0]
[04:02:07] [Server thread/INFO]: [SUCCESS] Events have been enabled.
[04:02:07] [Server thread/INFO]: *********************
[04:02:07] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.1
[04:02:07] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[04:02:07] [Server thread/INFO]: [Essentials] No kits found to migrate.
[04:02:07] [Dynmap Render Thread/INFO]: [dynmap] Loading default resource pack
[04:02:07] [Server thread/INFO]: [Essentials] Loaded 36837 items from items.json.
[04:02:07] [Server thread/INFO]: [Essentials] Using locale en_US
[04:02:07] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[04:02:07] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[04:02:07] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[04:02:07] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[04:02:07] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.32-SNAPSHOT (build 3156)
[04:02:07] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[04:02:07] [Server thread/INFO]: [Citizens] Loading external libraries
[04:02:08] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[04:02:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[04:02:08] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[04:02:08] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.20.1
[04:02:08] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[04:02:08] [Server thread/INFO]: [ChatControlRed] Enabling ChatControlRed v10.19.5
[04:02:08] [Server thread/INFO]:  ____ _  _ ____ ___ ____ ____ _  _ ___ ____ ____ _
[04:02:08] [Server thread/INFO]:  |    |__| |__|  |  |    |  | |\ |  |  |__/ |  | |
[04:02:08] [Server thread/INFO]:  |___ |  | |  |  |  |___ |__| | \|  |  |  \ |__| |___
[04:02:08] [Server thread/INFO]:   
[04:02:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: chatcontrolred [10.19.5]
[04:02:08] [Server thread/INFO]:   
[04:02:08] [Server thread/INFO]: Tutorial & help:
[04:02:08] [Server thread/INFO]: https://github.com/kangarko/ChatControl-Red/wiki
[04:02:08] [Server thread/INFO]:   
[04:02:08] [Server thread/INFO]: Loaded! Random joke: Censored for stating the obvious! #elonMusk
[04:02:08] [Server thread/INFO]:   
[04:02:08] [Server thread/INFO]: [DiscordSRV] API listener org.mineacademy.chatcontrol.lib.model.DiscordListener$DiscordListenerImpl unsubscribed
[04:02:08] [Server thread/INFO]: [DiscordSRV] API listener org.mineacademy.chatcontrol.lib.model.DiscordListener$DiscordListenerImpl subscribed (3 methods)
[04:02:08] [Server thread/INFO]: [TradeShop] Enabling TradeShop v2.6.1-DEV
[04:02:09] [Server thread/INFO]: [TradeShop] Metrics successfully initialized!
[04:02:09] [Server thread/INFO]: [Sentinel] Enabling Sentinel v2.8.0-SNAPSHOT (build 508)
[04:02:09] [Server thread/INFO]: [Sentinel] Sentinel loading...
[04:02:09] [Server thread/INFO]: [Sentinel] Running on java version: 17.0.7
[04:02:09] [Server thread/INFO]: [Sentinel] Sentinel loaded on a fully supported Minecraft version. If you encounter any issues or need to ask a question, please join our Discord at https://discord.gg/Q6pZGSR and post in the '#sentinel' channel.
[04:02:09] [Thread-35/WARN]: [TradeShop] [Updater] +-----------------------------------------------------+
[04:02:09] [Thread-35/WARN]: [TradeShop] [Updater] You are running a developmental version of TradeShop!
[04:02:09] [Thread-35/WARN]: [TradeShop] [Updater] Most recent stable version: 2.6.0-Stable
[04:02:09] [Thread-35/WARN]: [TradeShop] [Updater] Current version: 2.6.1-DEV
[04:02:09] [Thread-35/WARN]: [TradeShop] [Updater] Please notice that the build may contain critical bugs!
[04:02:09] [Thread-35/WARN]: [TradeShop] [Updater] +-----------------------------------------------------+
[04:02:09] [Server thread/INFO]: [Sentinel] Vault linked! Group targets will work.
[04:02:09] [Server thread/INFO]: [Sentinel] Sentinel loaded!
[04:02:09] [Server thread/INFO]: [Quests] Enabling Quests v4.8.3-b423
[04:02:09] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R1.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[04:02:10] [pool-28-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (767828469573c2f0fa3ed5a44feb0b2f15f2c02d)
[04:02:10] [Server thread/INFO]: [Quests] Loaded language en-US. Translations via Crowdin
[04:02:10] [Server thread/INFO]: [Quests] Successfully linked Quests with Citizens 2.0.32-SNAPSHOT (build 3156)
[04:02:10] [Server thread/INFO]: [Quests] Loading storage implementation: YAML
[04:02:10] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.7.0
[04:02:10] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:The Phuzz(511085329906925568)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:➡│disclaimer(1139817931098837002)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🤗│welcome(511229701260443648)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:👉│rules(511230426413793296)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📋│role-info(928804580173692928)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎁│giveaways(692406848044793886)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📰│discord-news(692406992857202718)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📣│announcements(511230897349984266)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🈚│freebies(761237378919563334)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📕│youtube(516672836232937493)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🔮│twitch(561870243811557386)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📘│twitter(554233367206297620)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🍍│twitch-drops(786208925778968616)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🥭│sponsors(934419935160070164)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🛠│resources-tools(1128292299688915024)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:✨│general(511256011953143809)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🌟│find-a-crew(692374217743925331)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🕒│waiting-room(692372673333952522)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🕵│mystery-discussion(979049508048629771)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:jolly-tavern(1137104800908058625)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:set-sail(1138122479768965242)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:captains-schedule(1139966454914097233)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:stream-chat(1138179239229804564)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:weekly-raffle(1138177107520917605)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🟨-captains-club-faq(1139844401523335240)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🟧-video-submission-faq(1139311892427448370)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🧙│patrons(710048941605126206)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💜│subs-and-members(629988186235600936)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📚│storytelling(611494914764570625)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🦍│dad-jokes(517342328512446484)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📰│sot-news(514613761290534912)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📜│coding(845351999629033515)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:rankings(585782839447126036)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:world-announcements(867753483754799114)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:officer-chat(871788975927484426)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:aesthetic-shots(898468256011157504)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🗡-world-chat(864428248241668106)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:server-status(734878135836868792)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:updates(628127808480215060)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:server-info(692710181582274645)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:rank-info(886403676820897792)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:creative-voting(965304582815244348)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:creative-competition(740893280656424981)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:minecraft-updates(885222860052889630)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:donator(969704202148405258)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:bug-report(1004561701351464980)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:bedrock(1086644685138821162)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:fortunecraft(663309000523382794)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:events(1047987438691295293)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:idle-miner(803557910260088832)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⛏─lobby-chat─⛏(1005859354836205568)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⛏─survival-chat─⛏(734878806543958058)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⛏─creative-chat─⛏(734878829457178765)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⛏─skywars-chat─⛏(958081177825206322)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:shop-discussion(783350981479104582)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:wishlist(628127857666686976)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:feedback(732241637673009242)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:media(732386371724902431)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:locations(926544646606319616)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:supporter-chat(969703496045699102)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-chat(800442685511958568)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:spartan(954376386162851870)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:reports(883134871797641230)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:obliviouswaffle-bug-report(1140398790642258001)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:peakrhys-bug-report(1141061198419349534)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:create-a-ticket(805913695683084308)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticketlogs(805915949349470228)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-0342(1140637515376771102)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:space-rig(1003272400525328465)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:miners-media(1003272463179849770)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:lounge(692166894286798929)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:modmail-commands(687380157245292561)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:modmail-log(687380243018678291)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:braxbludroot-0(1141872916972183623)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:gameaholik-0(1142063152834543698)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:itsjustmegg-0(1143261141825503263)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:anu_bus-0(1144793091446952117)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:robogames05-0(1145091343417344000)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:etath-0(1145116495983153183)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:beno9922-0(1145461174540976229)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:community-managers(511263449561432084)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:captains-log(1136789318942343168)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:mods(958037065625387068)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:mod-reports(1045845760668868688)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:twitch-mods(942357814473555978)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:test-everything(511186674668273666)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:log(580841997959561217)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:the-plank(975748856321028126)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:crew(512337430217490432)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:project(530354961670864917)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:server-status(805909215016910849)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:updates(805909040663756851)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:access-info(805909359941910558)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:fortunerust(806887749725716500)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:serverchat(805908826792001556)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:feedback(805909553035083866)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:wishlist(805909526162571304)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:media(805909593241944074)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:rosewild-0(1146096147522392195)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:notinsomniac-0(1146201331556700302)
[04:02:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console channel ID was invalid, not forwarding console output
[04:02:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[04:02:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling dynmap hook
[04:02:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[04:02:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[04:02:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 4 alerts registered
[04:02:11] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[04:02:11] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[04:02:11] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into DiscordSRV!
[04:02:11] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechat.hooks.discordsrv.DiscordSRVEvents subscribed (2 methods)
[04:02:11] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[04:02:11] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ChatControlRed!
[04:02:11] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Floodgate!
[04:02:11] [Server thread/INFO]: [InteractiveChat] InteractiveChat has injected into Dynmap!
[04:02:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: interactivechat [4.2.7.0]
[04:02:11] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[04:02:11] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.1
[04:02:11] [Server thread/INFO]: [net.coreprotect.hikari.pool.HikariPool] HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@25334106
[04:02:12] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[04:02:12] [Server thread/INFO]: [CoreProtect] Using MySQL for data storage.
[04:02:12] [Server thread/INFO]: --------------------
[04:02:12] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[04:02:12] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[04:02:12] [Server thread/INFO]: --------------------
[04:02:12] [Server thread/INFO]: [AllianceTag] Enabling AllianceTag v2.0
[04:02:12] [Server thread/INFO]: [SUCCESS] Alliance Tag has launched successfully
[04:02:12] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.14
[04:02:12] [Server thread/INFO]: [VotingPlugin] Using BungeeMethod: PLUGINMESSAGING
[04:02:12] [Server thread/INFO]: [VotingPlugin] Loaded plugin message channels: vp:vp
[04:02:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: votingplugin [1.6]
[04:02:12] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[04:02:12] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[04:02:12] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.14
[04:02:12] [Server thread/WARN]: [VotingPlugin] No vote has been recieved from servers-minecraft.net, may be an invalid service site. Please read: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[04:02:12] [Server thread/WARN]: [VotingPlugin] No vote has been recieved from topminecraftservers.org, may be an invalid service site. Please read: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[04:02:12] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[04:02:12] [Server thread/INFO]: [BuycraftX] Validating your server key...
[04:02:13] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[04:02:13] [Server thread/INFO]: [PlayerKits] Enabling PlayerKits v2.27.1
[04:02:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerkits [2.27.1]
[04:02:13] [Server thread/INFO]: [PlayerKits] Has been enabled! Version: 2.27.1
[04:02:13] [Server thread/INFO]: [PlayerKits] Thanks for using my plugin!  ~Ajneb97
[04:02:13] [Server thread/INFO]: [voicechat] Enabling voicechat v2.4.10
[04:02:13] [Server thread/INFO]: [voicechat] Initializing compatibility for Bukkit version 1.20.1-R0.1
[04:02:13] [Server thread/INFO]: [voicechat] Compatibility version 17
[04:02:13] [Server thread/INFO]: [voicechat] Successfully initialized commodore command completion
[04:02:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: voicechat [2.4.10]
[04:02:13] [Server thread/INFO]: [voicechat] Successfully registered PlaceholderAPI expansion
[04:02:13] [Server thread/INFO]: [FreedomChat] Enabling FreedomChat v1.5.0
[04:02:13] [Server thread/INFO]: [IllegalStack] Enabling IllegalStack v2.9.8
[04:02:13] [Server thread/INFO]: [IllegalStack/IllegalStack] The following materials are allowed to have stacks larger than the vanilla size: POTION 
[04:02:13] [Server thread/INFO]: [IllegalStack/IllegalStack] Chat Components found! Enabling clickable commands in /istack
[04:02:13] [Server thread/INFO]: [IllegalStack/fListener] MC Version v1_20_r1 detected!
[04:02:13] [Server thread/INFO]: [IllegalStack/Listener113] Enabling 1.13+ Checks
[04:02:13] [Server thread/INFO]: [IllegalStack/IllegalStack] ZombieVillagerTransformChance is set to 0 *** Only really matters if the difficulty is set to HARD ***
[04:02:13] [Server thread/INFO]: [TAB] Enabling TAB v4.0.1
[04:02:13] [Server thread/INFO]: [TAB] Server version: 1.20.1 (v1_20_R1)
[04:02:13] [Server thread/INFO]: [TAB] Loaded NMS hook in 22ms
[04:02:14] [Server thread/INFO]: [TAB] Enabled in 74ms
[04:02:14] [Server thread/INFO]: [NPC_Destinations] Enabling NPC_Destinations v2.6.11
[04:02:14] [Server thread/INFO]: [NPC_Destinations] Unknown minecraft version org.bukkit.craftbukkit.v1_20_R1. Using the latest version. Check for updates (https://www.spigotmc.org/resources/nunpcdestinations-automate-npc-travel-and-locations-1-8-3-1-9-4.13863/)
[04:02:14] [Server thread/INFO]: [NPC_Destinations] Citizens (2.0.32-SNAPSHOT (build 3156)) found, NPC trait enabled.
[04:02:14] [Server thread/INFO]: [NPC_Destinations] BetonQuest not found, quest support disabled
[04:02:14] [Server thread/INFO]: [NPC_Destinations] LightAPI was not found, there will be no support for NPC torch lighting.
[04:02:14] [Server thread/INFO]: [NPC_Destinations] JobsReborn was not found, there will be no support for Jobs in locations.
[04:02:14] [Server thread/INFO]: [NPC_Destinations] Sentinel (2.8.0-SNAPSHOT (build 508)) was found, adding support for sentinel in locations.
[04:02:14] [Server thread/INFO]: [NPC_Destinations] PlotSquared not found, plot compliance disabled
[04:02:14] [Server thread/INFO]: [NPC_Destinations] Worldguard not found, region support disabled
[04:02:14] [Server thread/INFO]: [dtlTradersPlus] Enabling dtlTradersPlus v6.4.20
[04:02:14] [Server thread/INFO]: dtlTradersPlus> Welcome to dtlTradersPlus v6.4.20!
[04:02:14] [Server thread/INFO]: dtlTradersPlus> Trying to hook into any Vault supported plugin...
[04:02:14] [Server thread/INFO]: dtlTradersPlus> Vault found! Trying to hook...
[04:02:14] [Server thread/INFO]: dtlTradersPlus> Found economy plugin: EssentialsX Economy
[04:02:14] [Server thread/INFO]: dtlTradersPlus> Loaded 1 guis from the guis config!
[04:02:14] [Server thread/INFO]: dtlTradersPlus> Hooking into Citizens!
[04:02:14] [Server thread/INFO]: dtlTradersPlus> Hooking into PlaceholderAPI
[04:02:14] [Server thread/INFO]: dtlTradersPlus> dtlTraders is managed by Degitise. www.degitise.com
[04:02:14] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Enabling InteractiveChatDiscordSrvAddon v4.2.7.0
[04:02:15] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fest-reflect-1.4.1-remapped.jar"
[04:02:15] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-api-11.0.0-remapped.jar"
[04:02:15] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-11.0.0-remapped.jar"
[04:02:15] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "mapdb-3.0.8-remapped.jar"
[04:02:15] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-forkjoin-11.0.0-remapped.jar"
[04:02:15] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fastutil-8.5.9-remapped.jar"
[04:02:15] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "bungeecord-chat-1.16-R0.4-remapped.jar"
[04:02:15] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "kotlin-stdlib-1.6.21-remapped.jar"
[04:02:15] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "icu4j-71.1-remapped.jar"
[04:02:15] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "elsa-3.0.0-M5-remapped.jar"
[04:02:15] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "lz4-1.3.0-remapped.jar"
[04:02:15] [Server thread/INFO]: [InteractiveChat] Loading languages...
[04:02:15] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordReadyEvents subscribed (1 methods)
[04:02:15] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.LegacyDiscordCommandEvents subscribed (1 methods)
[04:02:15] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.OutboundToDiscordEvents subscribed (16 methods)
[04:02:15] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.InboundToGameEvents subscribed (8 methods)
[04:02:15] [Server thread/INFO]: [ICDiscordSrvAddon] InteractiveChat DiscordSRV Addon has been Enabled!
[04:02:15] [Server thread/INFO]: [EssentialsProtect] Enabling EssentialsProtect v2.20.1
[04:02:15] [Server thread/INFO]: [EssentialsProtect] Continuing to enable Protect.
[04:02:15] [Server thread/INFO]: [EssentialsProtect] Starting Metrics. Opt-out using the global bStats config.
[04:02:15] [Server thread/INFO]: [ArmorStandEditor] Enabling ArmorStandEditor v1.20.1-43.2
[04:02:15] [Server thread/INFO]: [ArmorStandEditor] ======= ArmorStandEditor =======
[04:02:15] [Server thread/INFO]: [ArmorStandEditor] Plugin Version: 1.20.1-43.2
[04:02:15] [Server thread/INFO]: [ArmorStandEditor] Minecraft Version: v1_20_R1
[04:02:15] [Server thread/INFO]: [ArmorStandEditor] ArmorStandEditor is compatible with this version of Minecraft. Loading continuing.
[04:02:15] [Server thread/INFO]: [ArmorStandEditor] SpigotMC: true
[04:02:15] [Server thread/INFO]: [ArmorStandEditor] ================================
[04:02:15] [Server thread/INFO]: [FortuneCraft] Enabling FortuneCraft v1.0
[04:02:15] [Server thread/INFO]: [SUCCESS] FortuneCraft has been enabled.
[04:02:15] [Server thread/INFO]: [SUCCESS] Config.yml has been initialised.
[04:02:15] [Server thread/INFO]: [Spartan] Enabling Spartan vPhase 519.1
[04:02:15] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 9 slash commands (0 conflicted) for 1 plugins in 1/1 guilds (0 cancelled)
[04:02:15] [Server thread/INFO]: [spark] Enabling spark v1.9.12
[04:02:16] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[04:02:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.9.12]
[04:02:16] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[04:02:16] [Server thread/INFO]: [SurvivalInvisiframes] Enabling SurvivalInvisiframes v2.1.0
[04:02:16] [Server thread/INFO]: [QuestsGUI] Enabling QuestsGUI v0.54
[04:02:17] [Server thread/INFO]: [QuestsGUI] Initializing QuestsGUI separated YAML storage...
[04:02:17] [Server thread/INFO]: [GDHooks] Enabling GDHooks v0.8-DEV
[04:02:17] [Server thread/INFO]: [GDHooks] Loading libraries...
[04:02:18] [Server thread/INFO]: [GDHooks] GDHooks boot start.
[04:02:20] [Server thread/WARN]: Plugin 'GDHooks' is creating timing 'Commands' - this is deprecated behavior, please report it to the authors: 
[04:02:20] [Server thread/INFO]: [GDHooks] [ACF] Enabled Asynchronous Tab Completion Support!
[04:02:20] [Server thread/WARN]: Plugin 'GDHooks' is creating timing 'Command: gdhooksreload' - this is deprecated behavior, please report it to the authors: 
[04:02:20] [Server thread/WARN]: Plugin 'GDHooks' is creating timing 'Command: gdhooksversion' - this is deprecated behavior, please report it to the authors: 
[04:02:20] [Server thread/INFO]: [GDHooks] Detected Vault. Checking for compatible shop plugin hooks...
[04:02:20] [Server thread/INFO]: [GDHooks] TradeShop provider enabled!
[04:02:20] [Server thread/INFO]: [GDHooks] Initializing GriefDefender Dynmap provider...
[04:02:20] [Server thread/INFO]: [GDHooks] Dynmap provider is activated
[04:02:20] [Server thread/INFO]: [GDHooks] Dynmap provider enabled!
[04:02:20] [Server thread/INFO]: [GDHooks] GDHooks loaded successfully.
[04:02:20] [Server thread/INFO]: [RewardsLite] Enabling RewardsLite v3.1.6
[04:02:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rewardslite [1.0.0]
[04:02:21] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@1608452c
[04:02:21] [Server thread/INFO]: [RewardsLite] Loaded 14 rewards.
[04:02:21] [Server thread/INFO]: [RainbowChat] Enabling RainbowChat v1.0
[04:02:23] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[04:02:23] [Server thread/INFO]: Running delayed init tasks
[04:02:23] [Craft Scheduler Thread - 4 - Essentials/INFO]: [Essentials] Fetching version information...
[04:02:23] [Craft Scheduler Thread - 3 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[04:02:23] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.GriefDefenderFeature] Plugin 'GriefDefender' found. Using it now.
[04:02:23] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'GriefDefender'
[04:02:23] [Server thread/INFO]: [GriefDefender] Loading Global Snapshot Data...
[04:02:23] [Server thread/INFO]: [GriefDefender] Loading Admin Claim Group Data...
[04:02:23] [Server thread/INFO]: [GriefDefender] Checking for compatible economy plugin...
[04:02:23] [Server thread/INFO]: [GriefDefender] Found economy plugin 'EssentialsX Economy'. GriefDefender economy integration is now enabled.
[04:02:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: griefdefender [0.1]
[04:02:23] [Server thread/INFO]: [GriefDefender] PlaceholderAPI provider enabled!
[04:02:23] [Craft Scheduler Thread - 0 - ServerEssentials/INFO]: [SUCCESS] Server Essentials is up to date!
[04:02:23] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[04:02:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: discordsrv [1.26.2]
[04:02:23] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[04:02:23] [Server thread/INFO]: [SafeNET] Thank you for downloading SafeNET!
[04:02:24] [Server thread/ERROR]: [Citizens] The trait assignment failed to load for NPC ID: 69.
[04:02:24] [Server thread/ERROR]: [Citizens] The trait triggers failed to load for NPC ID: 69.
[04:02:24] [Server thread/INFO]: [Citizens] Loaded 28 NPCs.
[04:02:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: world [1.2.2]
[04:02:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.5]
[04:02:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[04:02:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.4-R2]
[04:02:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.8.1]
[04:02:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: essentials [1.5.2]
[04:02:24] [Server thread/INFO]: [PAPI] [Javascript-Expansion] 2 scripts loaded!
[04:02:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: javascript [2.1.0]
[04:02:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.2]
[04:02:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bungee [2.2]
[04:02:24] [Server thread/INFO]: 9 placeholder hook(s) registered!
[04:02:24] [Server thread/INFO]: Done (30.919s)! For help, type "help"
[04:02:24] [Server thread/INFO]: Timings Reset
[04:02:24] [Craft Scheduler Thread - 3 - Vault/INFO]: [Vault] Checking for Updates ... 
[04:02:24] [Server thread/INFO]: [voicechat] Loading plugins
[04:02:24] [Server thread/INFO]: [voicechat] Loaded 0 plugin(s)
[04:02:24] [Server thread/INFO]: [voicechat] Initializing plugins
[04:02:24] [Server thread/INFO]: [voicechat] Initialized 0 plugin(s)
[04:02:24] [Server thread/WARN]: [voicechat] Running in offline mode - Voice chat encryption is not secure!
[04:02:24] [Server thread/INFO]: [voicechat] Using default voicechat socket implementation
[04:02:24] [VoiceChatServerThread/INFO]: [voicechat] Using server-ip as bind address: 0.0.0.0
[04:02:24] [VoiceChatServerThread/INFO]: [voicechat] Server started at port 25576
[04:02:24] [Craft Scheduler Thread - 3 - Vault/INFO]: [Vault] No new version available
[04:02:24] [Server thread/WARN]: [EntityLookup] Entity uuid already exists: a093751a-2c77-4658-9d5f-62ab4494bdaf, mapped to EntityArmorStand['Armor Stand'/129, uuid='a093751a-2c77-4658-9d5f-62ab4494bdaf', l='ServerLevel[TheWilds]', x=16562064.50, y=1000.00, z=-22242911.50, cpos=[1035129, -1390182], tl=0, v=false], can't add EntityArmorStand['Armor Stand'/130, uuid='a093751a-2c77-4658-9d5f-62ab4494bdaf', l='ServerLevel[TheWilds]', x=16562064.50, y=1000.00, z=-22242911.50, cpos=[1035129, -1390182], tl=0, v=false]
[04:02:24] [Server thread/INFO]: [Server] Successfully loaded Whimzee's Better Desert Pyramid
[04:02:24] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 9 slash commands (0 conflicted) for 1 plugins in 1/1 guilds (0 cancelled)
[04:02:24] [Craft Scheduler Thread - 3 - TradeShop/ERROR]: [TradeShop Debug - DEV_EXPIRATION] You are currently running a DEV version that is past its expiration date.
[04:02:24] [Craft Scheduler Thread - 3 - TradeShop/ERROR]: [TradeShop Debug - DEV_EXPIRATION] Please update to a newer DEV version for testing or BETA/RELEASE if on a live server.
[04:02:24] [Server thread/INFO]: [Quests] Loaded 4 Quest(s), 10 Action(s), 2 Condition(s) and 811 Phrase(s)
[04:02:24] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[04:02:24] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[04:02:25] [Craft Scheduler Thread - 10 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.14
[04:02:26] [Craft Scheduler Thread - 15 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Checking for server resource pack...
[04:02:26] [Craft Scheduler Thread - 15 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] No server resource pack found
[04:02:26] [Craft Scheduler Thread - 15 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Reloading ResourceManager: Default, PhuzzyBond
[04:02:26] [Craft Scheduler Thread - 15 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Optifine" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.optifine.OptifineManager"
[04:02:26] [Craft Scheduler Thread - 15 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Chime" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.chime.ChimeManager"
[04:02:26] [Craft Scheduler Thread - 15 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Loading "Default" resources...
[04:02:26] [Thread-49/INFO]: [Spartan Notification] Done loading 5296 rows of data to the Research Engine.
[04:02:26] [Craft Scheduler Thread - 8 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:02:27] [Server thread/WARN]: [EntityLookup] Entity uuid already exists: a093751a-2c77-4658-9d5f-62ab4494bdaf, mapped to EntityArmorStand['Armor Stand'/129, uuid='a093751a-2c77-4658-9d5f-62ab4494bdaf', l='ServerLevel[TheWilds]', x=16562064.50, y=1000.00, z=-22242911.50, cpos=[1035129, -1390182], tl=0, v=false], can't add EntityArmorStand['Armor Stand'/901, uuid='a093751a-2c77-4658-9d5f-62ab4494bdaf', l='ServerLevel[TheWilds]', x=16562064.50, y=1000.00, z=-22242911.50, cpos=[1035129, -1390182], tl=209023, v=false]
[04:02:27] [Craft Scheduler Thread - 8 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:02:27] [Craft Scheduler Thread - 13 - VotingPlugin/WARN]: [VotingPlugin] Detected an issue with voting sites, check the server startup log for more details: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[04:02:30] [Craft Scheduler Thread - 15 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Loading "PhuzzyBond" resources...
[04:02:34] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded all resources!
[04:03:03] [Craft Scheduler Thread - 12 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[04:03:07] [Craft Scheduler Thread - 6 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[04:03:23] [Server thread/INFO]: [NPC_Destinations] A citizens save.yml has been backed up. See the {plugin}/CitizensBackups/ for the file.
[04:04:24] [Craft Scheduler Thread - 4 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:04:24] [Craft Scheduler Thread - 4 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:06:24] [Craft Scheduler Thread - 22 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:06:24] [Craft Scheduler Thread - 22 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:08:24] [Craft Scheduler Thread - 6 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:08:25] [Craft Scheduler Thread - 6 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:10:25] [Craft Scheduler Thread - 4 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:10:25] [Craft Scheduler Thread - 4 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:12:25] [Craft Scheduler Thread - 22 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:12:25] [Craft Scheduler Thread - 22 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:14:25] [Craft Scheduler Thread - 29 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:14:26] [Craft Scheduler Thread - 29 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:16:26] [Craft Scheduler Thread - 1 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:16:26] [Craft Scheduler Thread - 1 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:18:26] [Craft Scheduler Thread - 30 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:18:26] [Craft Scheduler Thread - 30 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:20:26] [Craft Scheduler Thread - 31 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:20:26] [Craft Scheduler Thread - 31 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:22:26] [Craft Scheduler Thread - 35 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:22:26] [Craft Scheduler Thread - 35 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:24:26] [Craft Scheduler Thread - 37 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:24:27] [Craft Scheduler Thread - 37 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:26:27] [Craft Scheduler Thread - 43 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:26:27] [Craft Scheduler Thread - 43 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:28:27] [Craft Scheduler Thread - 37 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:28:27] [Craft Scheduler Thread - 37 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:30:27] [Craft Scheduler Thread - 36 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:30:28] [Craft Scheduler Thread - 36 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:32:28] [Craft Scheduler Thread - 49 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:32:28] [Craft Scheduler Thread - 49 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:34:28] [Craft Scheduler Thread - 42 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:34:28] [Craft Scheduler Thread - 42 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:36:28] [Craft Scheduler Thread - 49 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:36:28] [Craft Scheduler Thread - 49 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:38:28] [Craft Scheduler Thread - 53 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:38:29] [Craft Scheduler Thread - 53 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:40:29] [Craft Scheduler Thread - 38 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:40:29] [Craft Scheduler Thread - 38 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:42:29] [Craft Scheduler Thread - 38 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:42:29] [Craft Scheduler Thread - 38 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:44:29] [Craft Scheduler Thread - 62 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:44:30] [Craft Scheduler Thread - 62 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:46:30] [Craft Scheduler Thread - 62 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:46:30] [Craft Scheduler Thread - 62 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:48:30] [Craft Scheduler Thread - 65 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:48:30] [Craft Scheduler Thread - 65 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:50:30] [Craft Scheduler Thread - 64 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:50:30] [Craft Scheduler Thread - 64 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:52:30] [Craft Scheduler Thread - 64 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:52:31] [Craft Scheduler Thread - 64 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:54:31] [Craft Scheduler Thread - 66 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:54:31] [Craft Scheduler Thread - 66 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:56:31] [Craft Scheduler Thread - 58 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:56:31] [Craft Scheduler Thread - 58 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[04:58:31] [Craft Scheduler Thread - 58 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[04:58:31] [Craft Scheduler Thread - 58 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:00:31] [Craft Scheduler Thread - 72 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:00:31] [Craft Scheduler Thread - 72 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:02:31] [Craft Scheduler Thread - 79 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:02:32] [Craft Scheduler Thread - 79 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:04:32] [Craft Scheduler Thread - 58 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:04:32] [Craft Scheduler Thread - 58 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:06:32] [Craft Scheduler Thread - 76 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:06:32] [Craft Scheduler Thread - 76 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:08:32] [Craft Scheduler Thread - 81 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:08:32] [Craft Scheduler Thread - 81 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:10:32] [Craft Scheduler Thread - 84 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:10:32] [Craft Scheduler Thread - 84 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:12:32] [Craft Scheduler Thread - 81 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:12:33] [Craft Scheduler Thread - 81 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:14:33] [Craft Scheduler Thread - 76 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:14:33] [Craft Scheduler Thread - 76 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:16:33] [Craft Scheduler Thread - 90 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:16:34] [Craft Scheduler Thread - 90 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:18:34] [Craft Scheduler Thread - 89 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:18:34] [Craft Scheduler Thread - 89 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:20:34] [Craft Scheduler Thread - 92 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:20:34] [Craft Scheduler Thread - 92 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:22:34] [Craft Scheduler Thread - 96 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:22:35] [Craft Scheduler Thread - 96 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:24:34] [Craft Scheduler Thread - 88 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:24:35] [Craft Scheduler Thread - 88 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:26:35] [Craft Scheduler Thread - 100 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:26:35] [Craft Scheduler Thread - 100 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:28:35] [Craft Scheduler Thread - 88 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:28:35] [Craft Scheduler Thread - 88 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:30:35] [Craft Scheduler Thread - 98 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:30:35] [Craft Scheduler Thread - 98 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:32:35] [Craft Scheduler Thread - 107 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:32:35] [Craft Scheduler Thread - 107 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:34:35] [Craft Scheduler Thread - 109 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:34:36] [Craft Scheduler Thread - 109 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:36:36] [Craft Scheduler Thread - 108 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:36:36] [Craft Scheduler Thread - 108 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:38:36] [Craft Scheduler Thread - 105 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:38:36] [Craft Scheduler Thread - 105 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:40:36] [Craft Scheduler Thread - 111 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:40:36] [Craft Scheduler Thread - 111 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:42:36] [Craft Scheduler Thread - 116 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:42:36] [Craft Scheduler Thread - 116 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:44:36] [Craft Scheduler Thread - 113 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:44:37] [Craft Scheduler Thread - 113 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:46:37] [Craft Scheduler Thread - 118 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:46:37] [Craft Scheduler Thread - 118 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:48:37] [Craft Scheduler Thread - 113 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:48:37] [Craft Scheduler Thread - 113 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:50:37] [Craft Scheduler Thread - 119 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:50:37] [Craft Scheduler Thread - 119 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:52:37] [Craft Scheduler Thread - 98 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:52:38] [Craft Scheduler Thread - 98 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:54:38] [Craft Scheduler Thread - 122 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:54:38] [Craft Scheduler Thread - 122 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:56:38] [Craft Scheduler Thread - 126 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:56:38] [Craft Scheduler Thread - 126 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[05:58:38] [Craft Scheduler Thread - 124 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[05:58:38] [Craft Scheduler Thread - 124 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:00:38] [Craft Scheduler Thread - 124 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:00:38] [Craft Scheduler Thread - 124 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:02:38] [Craft Scheduler Thread - 122 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:02:39] [Craft Scheduler Thread - 122 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:04:39] [Craft Scheduler Thread - 130 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:04:39] [Craft Scheduler Thread - 130 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:06:39] [Craft Scheduler Thread - 113 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:06:39] [Craft Scheduler Thread - 113 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:08:39] [Craft Scheduler Thread - 136 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:08:39] [Craft Scheduler Thread - 136 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:10:39] [Craft Scheduler Thread - 122 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:10:40] [Craft Scheduler Thread - 122 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:12:40] [Craft Scheduler Thread - 139 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:12:40] [Craft Scheduler Thread - 139 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:14:40] [Craft Scheduler Thread - 139 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:14:40] [Craft Scheduler Thread - 139 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:16:40] [Craft Scheduler Thread - 127 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:16:40] [Craft Scheduler Thread - 127 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:18:40] [Craft Scheduler Thread - 127 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:18:40] [Craft Scheduler Thread - 127 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:20:40] [Craft Scheduler Thread - 127 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:20:41] [Craft Scheduler Thread - 127 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:22:41] [Craft Scheduler Thread - 146 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:22:41] [Craft Scheduler Thread - 146 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:24:41] [Craft Scheduler Thread - 141 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:24:41] [Craft Scheduler Thread - 141 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:26:23] [Craft Scheduler Thread - 151 - TradeShop/ERROR]: [TradeShop Debug - DEV_EXPIRATION] You are currently running a DEV version that is past its expiration date.
[06:26:23] [Craft Scheduler Thread - 151 - TradeShop/ERROR]: [TradeShop Debug - DEV_EXPIRATION] Please update to a newer DEV version for testing or BETA/RELEASE if on a live server.
[06:26:41] [Craft Scheduler Thread - 150 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:26:42] [Craft Scheduler Thread - 150 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:28:42] [Craft Scheduler Thread - 153 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:28:42] [Craft Scheduler Thread - 153 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:30:42] [Craft Scheduler Thread - 155 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:30:43] [Craft Scheduler Thread - 155 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:32:43] [Craft Scheduler Thread - 147 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:32:43] [Craft Scheduler Thread - 147 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:34:43] [Craft Scheduler Thread - 155 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:34:43] [Craft Scheduler Thread - 155 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:36:43] [Craft Scheduler Thread - 158 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:36:43] [Craft Scheduler Thread - 158 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:38:43] [Craft Scheduler Thread - 148 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:38:44] [Craft Scheduler Thread - 148 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:40:44] [Craft Scheduler Thread - 163 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:40:44] [Craft Scheduler Thread - 163 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:42:44] [Craft Scheduler Thread - 160 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:42:44] [Craft Scheduler Thread - 160 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:44:44] [Craft Scheduler Thread - 168 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:44:44] [Craft Scheduler Thread - 168 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:46:44] [Craft Scheduler Thread - 169 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:46:45] [Craft Scheduler Thread - 169 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:48:45] [Craft Scheduler Thread - 159 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:48:45] [Craft Scheduler Thread - 159 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:50:45] [Craft Scheduler Thread - 172 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:50:45] [Craft Scheduler Thread - 172 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:52:45] [Craft Scheduler Thread - 148 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:52:45] [Craft Scheduler Thread - 148 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:54:45] [Craft Scheduler Thread - 175 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:54:46] [Craft Scheduler Thread - 175 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:56:46] [Craft Scheduler Thread - 176 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:56:46] [Craft Scheduler Thread - 176 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[06:58:46] [Craft Scheduler Thread - 148 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[06:58:46] [Craft Scheduler Thread - 148 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:00:46] [Craft Scheduler Thread - 175 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:00:47] [Craft Scheduler Thread - 175 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:02:47] [Craft Scheduler Thread - 175 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:02:47] [Craft Scheduler Thread - 175 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:04:47] [Craft Scheduler Thread - 175 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:04:47] [Craft Scheduler Thread - 175 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:06:47] [Craft Scheduler Thread - 179 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:06:47] [Craft Scheduler Thread - 179 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:08:47] [Craft Scheduler Thread - 166 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:08:47] [Craft Scheduler Thread - 166 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:10:47] [Craft Scheduler Thread - 178 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:10:48] [Craft Scheduler Thread - 178 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:12:48] [Craft Scheduler Thread - 186 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:12:48] [Craft Scheduler Thread - 186 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:14:48] [Craft Scheduler Thread - 186 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:14:48] [Craft Scheduler Thread - 186 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:16:48] [Craft Scheduler Thread - 193 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:16:48] [Craft Scheduler Thread - 193 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:18:48] [Craft Scheduler Thread - 175 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:18:49] [Craft Scheduler Thread - 175 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:20:49] [Craft Scheduler Thread - 191 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:20:49] [Craft Scheduler Thread - 191 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:22:49] [Craft Scheduler Thread - 193 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:22:49] [Craft Scheduler Thread - 193 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:24:49] [Craft Scheduler Thread - 200 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:24:49] [Craft Scheduler Thread - 200 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:26:49] [Craft Scheduler Thread - 193 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:26:49] [Craft Scheduler Thread - 193 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:28:49] [Craft Scheduler Thread - 206 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:28:50] [Craft Scheduler Thread - 206 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:30:50] [Craft Scheduler Thread - 205 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:30:50] [Craft Scheduler Thread - 205 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:32:50] [Craft Scheduler Thread - 208 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:32:50] [Craft Scheduler Thread - 208 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:34:50] [Craft Scheduler Thread - 209 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:34:50] [Craft Scheduler Thread - 209 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:36:50] [Craft Scheduler Thread - 213 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:36:50] [Craft Scheduler Thread - 213 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:38:50] [Craft Scheduler Thread - 212 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:38:51] [Craft Scheduler Thread - 212 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:40:51] [Craft Scheduler Thread - 217 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:40:51] [Craft Scheduler Thread - 217 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:42:51] [Craft Scheduler Thread - 219 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:42:51] [Craft Scheduler Thread - 219 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:44:51] [Craft Scheduler Thread - 220 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:44:52] [Craft Scheduler Thread - 220 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:46:52] [Craft Scheduler Thread - 225 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:46:53] [Craft Scheduler Thread - 225 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:48:53] [Craft Scheduler Thread - 224 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:48:53] [Craft Scheduler Thread - 224 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:50:53] [Craft Scheduler Thread - 229 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:50:53] [Craft Scheduler Thread - 229 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:52:53] [Craft Scheduler Thread - 229 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:52:54] [Craft Scheduler Thread - 229 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:54:54] [Craft Scheduler Thread - 231 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:54:54] [Craft Scheduler Thread - 231 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:56:54] [Craft Scheduler Thread - 232 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:56:54] [Craft Scheduler Thread - 232 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[07:58:54] [Craft Scheduler Thread - 235 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[07:58:54] [Craft Scheduler Thread - 235 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:00:54] [Craft Scheduler Thread - 225 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:00:54] [Craft Scheduler Thread - 225 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:02:54] [Craft Scheduler Thread - 240 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:02:55] [Craft Scheduler Thread - 240 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:04:55] [Craft Scheduler Thread - 241 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:04:55] [Craft Scheduler Thread - 241 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:06:55] [Craft Scheduler Thread - 241 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:06:55] [Craft Scheduler Thread - 241 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:08:55] [Craft Scheduler Thread - 244 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:08:55] [Craft Scheduler Thread - 244 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:10:55] [Craft Scheduler Thread - 229 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:10:55] [Craft Scheduler Thread - 229 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:12:55] [Craft Scheduler Thread - 248 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:12:56] [Craft Scheduler Thread - 248 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:14:56] [Craft Scheduler Thread - 248 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:14:56] [Craft Scheduler Thread - 248 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:16:56] [Craft Scheduler Thread - 229 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:16:56] [Craft Scheduler Thread - 229 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:18:56] [Craft Scheduler Thread - 254 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:18:56] [Craft Scheduler Thread - 254 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:20:56] [Craft Scheduler Thread - 253 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:20:57] [Craft Scheduler Thread - 253 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:22:57] [Craft Scheduler Thread - 256 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:22:57] [Craft Scheduler Thread - 256 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:24:57] [Craft Scheduler Thread - 255 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:24:57] [Craft Scheduler Thread - 255 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:26:57] [Craft Scheduler Thread - 255 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:26:57] [Craft Scheduler Thread - 255 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:28:57] [Craft Scheduler Thread - 263 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:28:58] [Craft Scheduler Thread - 263 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:30:58] [Craft Scheduler Thread - 264 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:30:58] [Craft Scheduler Thread - 264 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:32:58] [Craft Scheduler Thread - 268 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:32:58] [Craft Scheduler Thread - 268 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:34:58] [Craft Scheduler Thread - 258 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:34:58] [Craft Scheduler Thread - 258 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:36:58] [Craft Scheduler Thread - 269 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:36:58] [Craft Scheduler Thread - 269 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:38:58] [Craft Scheduler Thread - 270 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:38:59] [Craft Scheduler Thread - 270 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:40:59] [Craft Scheduler Thread - 269 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:40:59] [Craft Scheduler Thread - 269 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:42:59] [Craft Scheduler Thread - 270 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:42:59] [Craft Scheduler Thread - 270 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:44:59] [Craft Scheduler Thread - 258 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:44:59] [Craft Scheduler Thread - 258 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:46:59] [Craft Scheduler Thread - 276 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:47:00] [Craft Scheduler Thread - 276 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:49:00] [Craft Scheduler Thread - 271 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:49:00] [Craft Scheduler Thread - 271 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:50:23] [Craft Scheduler Thread - 283 - TradeShop/ERROR]: [TradeShop Debug - DEV_EXPIRATION] You are currently running a DEV version that is past its expiration date.
[08:50:23] [Craft Scheduler Thread - 283 - TradeShop/ERROR]: [TradeShop Debug - DEV_EXPIRATION] Please update to a newer DEV version for testing or BETA/RELEASE if on a live server.
[08:51:00] [Craft Scheduler Thread - 273 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:51:00] [Craft Scheduler Thread - 273 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:53:00] [Craft Scheduler Thread - 285 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:53:00] [Craft Scheduler Thread - 285 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:55:00] [Craft Scheduler Thread - 287 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:55:00] [Craft Scheduler Thread - 287 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:57:00] [Craft Scheduler Thread - 285 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:57:01] [Craft Scheduler Thread - 285 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[08:59:01] [Craft Scheduler Thread - 289 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[08:59:01] [Craft Scheduler Thread - 289 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:01:01] [Craft Scheduler Thread - 291 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:01:04] [Craft Scheduler Thread - 291 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:03:04] [Craft Scheduler Thread - 286 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:03:04] [Craft Scheduler Thread - 286 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:05:04] [Craft Scheduler Thread - 293 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:05:04] [Craft Scheduler Thread - 293 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:07:04] [Craft Scheduler Thread - 293 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:07:05] [Craft Scheduler Thread - 293 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:09:05] [Craft Scheduler Thread - 290 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:09:05] [Craft Scheduler Thread - 290 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:11:05] [Craft Scheduler Thread - 289 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:11:06] [Craft Scheduler Thread - 289 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:13:06] [Craft Scheduler Thread - 302 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:13:06] [Craft Scheduler Thread - 302 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:15:06] [Craft Scheduler Thread - 299 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:15:06] [Craft Scheduler Thread - 299 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:17:06] [Craft Scheduler Thread - 305 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:17:06] [Craft Scheduler Thread - 305 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:19:06] [Craft Scheduler Thread - 306 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:19:07] [Craft Scheduler Thread - 306 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:21:07] [Craft Scheduler Thread - 306 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:21:07] [Craft Scheduler Thread - 306 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:23:07] [Craft Scheduler Thread - 305 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:23:07] [Craft Scheduler Thread - 305 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:25:07] [Craft Scheduler Thread - 305 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:25:07] [Craft Scheduler Thread - 305 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:27:07] [Craft Scheduler Thread - 309 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:27:07] [Craft Scheduler Thread - 309 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:29:07] [Craft Scheduler Thread - 310 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:29:08] [Craft Scheduler Thread - 310 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:31:08] [Craft Scheduler Thread - 314 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:31:08] [Craft Scheduler Thread - 314 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:33:08] [Craft Scheduler Thread - 311 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:33:08] [Craft Scheduler Thread - 311 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:34:50] [Netty Epoll Server IO #3/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "00000000-0000-0000-0009-01f3f293e2f8".
[09:34:50] [User Authenticator #0/INFO]: UUID of player .Jelly8600 is 00000000-0000-0000-0009-01f3f293e2f8
[09:34:50] [Server thread/INFO]: [floodgate] Floodgate player logged in as .Jelly8600 joined (UUID: 00000000-0000-0000-0009-01f3f293e2f8)
[09:34:50] [Server thread/INFO]: [+] .Jelly8600 joined the Server for the first time!
[09:34:50] [Server thread/INFO]: .Jelly8600[/146.200.74.231:35818] logged in with entity id 9185 at ([TheWilds]-240.5612214774423, 145.0, -1517.687154518048)
[09:35:08] [Craft Scheduler Thread - 315 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:35:08] [Craft Scheduler Thread - 315 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:35:23] [Craft Scheduler Thread - 316 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[09:35:25] [Server thread/INFO]: me >> .Jelly8600 : You have accepted the Rules! 
[09:37:08] [Craft Scheduler Thread - 316 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:37:08] [Craft Scheduler Thread - 316 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:38:04] [Server thread/INFO]: [Quests] Failed to load language en-GB due to lack of translations
[09:39:08] [Craft Scheduler Thread - 320 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:39:09] [Craft Scheduler Thread - 320 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:41:09] [Craft Scheduler Thread - 320 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:41:09] [Craft Scheduler Thread - 320 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:43:09] [Craft Scheduler Thread - 327 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:43:09] [Craft Scheduler Thread - 327 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:43:43] [Server thread/INFO]: [Quests] 00000000-0000-0000-0009-01f3f293e2f8 started quest Pharaoh's Fortune
[09:44:41] [Server thread/INFO]: .Jelly8600 has reached the goal [Limbo Walker]
[09:44:55] [Server thread/INFO]: .Jelly8600 has made the advancement [Heart of Darkness]
[09:45:09] [Craft Scheduler Thread - 319 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:45:09] [Craft Scheduler Thread - 319 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:47:09] [Craft Scheduler Thread - 330 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:47:09] [Craft Scheduler Thread - 330 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:48:03] [Server thread/INFO]: .Jelly8600 has made the advancement [The First Night]
[09:48:07] [Server thread/INFO]: .Jelly8600 has made the advancement [Smooth Operator]
[09:48:23] [Server thread/INFO]: .Jelly8600 has made the advancement [Boaty McBoatface]
[09:49:09] [Craft Scheduler Thread - 327 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:49:10] [Craft Scheduler Thread - 327 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:51:10] [Craft Scheduler Thread - 329 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:51:10] [Craft Scheduler Thread - 329 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:53:10] [Craft Scheduler Thread - 336 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:53:10] [Craft Scheduler Thread - 336 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:55:10] [Craft Scheduler Thread - 335 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:55:10] [Craft Scheduler Thread - 335 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:55:51] [Server thread/INFO]: [Essentials] Created a User for Raider (bea745de-9dbd-2f37-90f0-77781ef54cc9) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[09:55:51] [Server thread/INFO]: [Essentials] Created a User for Raider (cd93a01e-add3-232e-a4cc-b80afce80e07) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[09:55:51] [Server thread/INFO]: [Essentials] Created a User for Raider (7937fb50-c722-25c7-a1c5-16a508ee70d4) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[09:55:51] [Server thread/INFO]: [Essentials] Created a User for Raider (22695dee-40be-2c97-9f3d-d0cd88bdfd2d) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[09:55:51] [Server thread/INFO]: [Essentials] Created a User for Raider (8683c875-5a89-26df-9219-70fd3414d8cf) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[09:57:08] [Server thread/INFO]: .Jelly8600 has made the advancement [Ladder Climbers Inc.]
[09:57:10] [Craft Scheduler Thread - 337 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:57:11] [Craft Scheduler Thread - 337 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[09:57:39] [Server thread/INFO]: .Jelly8600 has made the advancement [Don't Blink]
[09:59:11] [Craft Scheduler Thread - 339 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[09:59:11] [Craft Scheduler Thread - 339 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:01:11] [Craft Scheduler Thread - 341 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:01:11] [Craft Scheduler Thread - 341 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:02:23] [Craft Scheduler Thread - 340 - Vault/INFO]: [Vault] Checking for Updates ... 
[10:02:23] [Craft Scheduler Thread - 340 - Vault/INFO]: [Vault] No new version available
[10:03:11] [Craft Scheduler Thread - 331 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:03:11] [Craft Scheduler Thread - 331 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:04:17] [Server thread/INFO]: [Essentials] Essentials updated the underlying Player object for bea745de-9dbd-2f37-90f0-77781ef54cc9
[10:05:11] [Craft Scheduler Thread - 347 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:05:12] [Craft Scheduler Thread - 347 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:05:52] [Server thread/INFO]: .Jelly8600 has made the advancement [Blackout]
[10:06:10] [Server thread/INFO]: .Jelly8600 has completed the challenge [Inception]
[10:06:44] [Server thread/INFO]: .Jelly8600 has made the advancement [Click!]
[10:07:12] [Craft Scheduler Thread - 346 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:07:12] [Craft Scheduler Thread - 346 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:08:09] [Netty Epoll Server IO #3/INFO]: [floodgate] Floodgate player logged in as .Jelly8600 disconnected
[10:08:09] [Server thread/INFO]: .Jelly8600 lost connection: Disconnected
[10:08:09] [Server thread/INFO]: [voicechat] Disconnecting client .Jelly8600
[10:08:09] [Server thread/INFO]: [-] .Jelly8600
[10:08:23] [Craft Scheduler Thread - 353 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[10:09:12] [Craft Scheduler Thread - 354 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:09:12] [Craft Scheduler Thread - 354 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:11:12] [Craft Scheduler Thread - 355 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:11:13] [Craft Scheduler Thread - 355 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:13:13] [Craft Scheduler Thread - 355 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:13:13] [Craft Scheduler Thread - 355 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:15:13] [Craft Scheduler Thread - 353 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:15:13] [Craft Scheduler Thread - 353 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:17:13] [Craft Scheduler Thread - 358 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:17:13] [Craft Scheduler Thread - 358 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:19:13] [Craft Scheduler Thread - 364 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:19:13] [Craft Scheduler Thread - 364 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:21:13] [Craft Scheduler Thread - 364 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:21:14] [Craft Scheduler Thread - 364 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:23:14] [Craft Scheduler Thread - 366 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:23:14] [Craft Scheduler Thread - 366 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:25:14] [Craft Scheduler Thread - 369 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:25:15] [Craft Scheduler Thread - 369 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:27:15] [Craft Scheduler Thread - 367 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:27:15] [Craft Scheduler Thread - 367 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:29:15] [Craft Scheduler Thread - 369 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:29:15] [Craft Scheduler Thread - 369 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:31:15] [Craft Scheduler Thread - 375 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:31:16] [Craft Scheduler Thread - 375 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:33:16] [Craft Scheduler Thread - 376 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:33:16] [Craft Scheduler Thread - 376 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:35:16] [Craft Scheduler Thread - 377 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:35:16] [Craft Scheduler Thread - 377 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:36:55] [Server thread/INFO]: [Essentials] Essentials updated the underlying Player object for bea745de-9dbd-2f37-90f0-77781ef54cc9
[10:37:16] [Craft Scheduler Thread - 379 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:37:17] [Craft Scheduler Thread - 379 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:39:17] [Craft Scheduler Thread - 383 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:39:17] [Craft Scheduler Thread - 383 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:40:00] [Server thread/INFO]: [Essentials] Essentials updated the underlying Player object for bea745de-9dbd-2f37-90f0-77781ef54cc9
[10:41:17] [Craft Scheduler Thread - 375 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:41:17] [Craft Scheduler Thread - 375 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:43:17] [Craft Scheduler Thread - 385 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:43:17] [Craft Scheduler Thread - 385 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:45:17] [Craft Scheduler Thread - 383 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:45:17] [Craft Scheduler Thread - 383 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:47:17] [Craft Scheduler Thread - 385 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:47:18] [Craft Scheduler Thread - 385 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:49:18] [Craft Scheduler Thread - 393 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:49:18] [Craft Scheduler Thread - 393 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:51:18] [Craft Scheduler Thread - 386 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:51:19] [Craft Scheduler Thread - 386 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:53:19] [Craft Scheduler Thread - 391 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:53:19] [Craft Scheduler Thread - 391 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:53:44] [Netty Epoll Server IO #1/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "9d469269-4f8d-435e-9cc0-6a5e1f5c5318".
[10:53:45] [User Authenticator #1/INFO]: UUID of player Rhys_Broderick is 9d469269-4f8d-435e-9cc0-6a5e1f5c5318
[10:53:45] [Server thread/INFO]: [+] Rhys_Broderick
[10:53:45] [Server thread/INFO]: Rhys_Broderick[/90.195.21.255:43846] logged in with entity id 25565 at ([TheWilds]-254.8400752280272, 153.0, -1474.7799136154329)
[10:54:23] [Craft Scheduler Thread - 397 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[10:54:57] [Server thread/INFO]: Rhys_Broderick lost connection: Disconnected
[10:54:57] [Server thread/INFO]: [voicechat] Disconnecting client Rhys_Broderick
[10:54:57] [Server thread/INFO]: [-] Rhys_Broderick
[10:55:19] [Craft Scheduler Thread - 394 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:55:19] [Craft Scheduler Thread - 394 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:55:23] [Craft Scheduler Thread - 383 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[10:55:35] [Netty Epoll Server IO #3/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "9d469269-4f8d-435e-9cc0-6a5e1f5c5318".
[10:55:35] [User Authenticator #2/INFO]: UUID of player Rhys_Broderick is 9d469269-4f8d-435e-9cc0-6a5e1f5c5318
[10:55:35] [Server thread/INFO]: [+] Rhys_Broderick
[10:55:35] [Server thread/INFO]: Rhys_Broderick[/90.195.21.255:58254] logged in with entity id 25987 at ([TheWilds]-254.60140259666048, 150.24815874904752, -1512.9036605394854)
[10:56:07] [Server thread/INFO]: Rhys_Broderick lost connection: Disconnected
[10:56:07] [Server thread/INFO]: [voicechat] Disconnecting client Rhys_Broderick
[10:56:07] [Server thread/INFO]: [-] Rhys_Broderick
[10:56:23] [Craft Scheduler Thread - 386 - BuycraftX/INFO]: [BuycraftX] Sending 2 analytic events
[10:56:49] [Netty Epoll Server IO #2/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "9d469269-4f8d-435e-9cc0-6a5e1f5c5318".
[10:56:49] [User Authenticator #3/INFO]: UUID of player Rhys_Broderick is 9d469269-4f8d-435e-9cc0-6a5e1f5c5318
[10:56:49] [Server thread/INFO]: [+] Rhys_Broderick
[10:56:49] [Server thread/INFO]: Rhys_Broderick[/90.195.21.255:35430] logged in with entity id 26217 at ([TheWilds]-253.75832018555894, 145.0, -1507.270299690988)
[10:57:07] [Server thread/INFO]: Rhys_Broderick lost connection: Disconnected
[10:57:07] [Server thread/INFO]: [voicechat] Disconnecting client Rhys_Broderick
[10:57:07] [Server thread/INFO]: [-] Rhys_Broderick
[10:57:19] [Craft Scheduler Thread - 382 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:57:19] [Craft Scheduler Thread - 382 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:57:23] [Craft Scheduler Thread - 397 - BuycraftX/INFO]: [BuycraftX] Sending 2 analytic events
[10:58:37] [Netty Epoll Server IO #0/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "9d469269-4f8d-435e-9cc0-6a5e1f5c5318".
[10:58:37] [User Authenticator #4/INFO]: UUID of player Rhys_Broderick is 9d469269-4f8d-435e-9cc0-6a5e1f5c5318
[10:58:37] [Server thread/INFO]: [+] Rhys_Broderick
[10:58:37] [Server thread/INFO]: Rhys_Broderick[/90.195.21.255:43570] logged in with entity id 26512 at ([TheWilds]-253.75832018555894, 145.0, -1507.270299690988)
[10:59:10] [Server thread/INFO]: Rhys_Broderick lost connection: Disconnected
[10:59:10] [Server thread/INFO]: [voicechat] Disconnecting client Rhys_Broderick
[10:59:10] [Server thread/INFO]: [-] Rhys_Broderick
[10:59:19] [Craft Scheduler Thread - 394 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[10:59:20] [Craft Scheduler Thread - 394 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[10:59:23] [Craft Scheduler Thread - 400 - BuycraftX/INFO]: [BuycraftX] Sending 2 analytic events
[11:00:48] [Netty Epoll Server IO #2/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "8b871cae-d312-4a78-9b8d-01d806e93fb9".
[11:00:48] [User Authenticator #5/INFO]: UUID of player ObliviousWaffle is 8b871cae-d312-4a78-9b8d-01d806e93fb9
[11:00:48] [Server thread/INFO]: [+] ObliviousWaffle
[11:00:48] [Server thread/INFO]: ObliviousWaffle[/81.140.161.4:42694] logged in with entity id 26873 at ([TheWilds]-992.1119845002266, -20.18024340063611, -1437.021971908956)
[11:01:10] [Server thread/INFO]: ObliviousWaffle lost connection: Disconnected
[11:01:10] [Server thread/INFO]: [voicechat] Disconnecting client ObliviousWaffle
[11:01:10] [Server thread/INFO]: [-] ObliviousWaffle
[11:01:20] [Craft Scheduler Thread - 398 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:01:20] [Craft Scheduler Thread - 398 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:01:23] [Craft Scheduler Thread - 403 - BuycraftX/INFO]: [BuycraftX] Sending 2 analytic events
[11:03:20] [Craft Scheduler Thread - 403 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:03:21] [Craft Scheduler Thread - 403 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:05:19] [Netty Epoll Server IO #2/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "9d469269-4f8d-435e-9cc0-6a5e1f5c5318".
[11:05:19] [User Authenticator #6/INFO]: UUID of player Rhys_Broderick is 9d469269-4f8d-435e-9cc0-6a5e1f5c5318
[11:05:19] [Server thread/INFO]: [+] Rhys_Broderick
[11:05:19] [Server thread/INFO]: Rhys_Broderick[/90.195.21.255:46774] logged in with entity id 27929 at ([TheWilds]-280.5585323814076, 160.5, -1508.0306536345354)
[11:05:21] [Craft Scheduler Thread - 409 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:05:21] [Craft Scheduler Thread - 409 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:05:21] [Netty Epoll Server IO #3/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "8b871cae-d312-4a78-9b8d-01d806e93fb9".
[11:05:22] [User Authenticator #6/INFO]: UUID of player ObliviousWaffle is 8b871cae-d312-4a78-9b8d-01d806e93fb9
[11:05:22] [Server thread/INFO]: [+] ObliviousWaffle
[11:05:22] [Server thread/INFO]: ObliviousWaffle[/81.140.161.4:46778] logged in with entity id 27942 at ([TheWilds]-1006.4717155956445, -15.873933473523106, -1450.2477251022633)
[11:05:23] [Craft Scheduler Thread - 409 - BuycraftX/INFO]: [BuycraftX] Sending 2 analytic events
[11:05:52] [Server thread/INFO]: Rhys_Broderick lost connection: Disconnected
[11:05:52] [Server thread/INFO]: [voicechat] Disconnecting client Rhys_Broderick
[11:05:52] [Server thread/INFO]: [-] Rhys_Broderick
[11:06:23] [Craft Scheduler Thread - 406 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[11:06:25] [Netty Epoll Server IO #3/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "9d469269-4f8d-435e-9cc0-6a5e1f5c5318".
[11:06:25] [User Authenticator #7/INFO]: UUID of player Rhys_Broderick is 9d469269-4f8d-435e-9cc0-6a5e1f5c5318
[11:06:25] [Server thread/INFO]: [+] Rhys_Broderick
[11:06:25] [Server thread/INFO]: Rhys_Broderick[/90.195.21.255:41762] logged in with entity id 29276 at ([TheWilds]-280.5585323814076, 160.5, -1508.0306536345354)
[11:07:21] [Craft Scheduler Thread - 412 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:07:21] [Craft Scheduler Thread - 412 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:07:23] [Craft Scheduler Thread - 412 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[11:08:02] [Server thread/INFO]: <Voyager | Rhys_Broderick | Seraph> test
[11:09:21] [Craft Scheduler Thread - 411 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:09:21] [Craft Scheduler Thread - 411 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:11:21] [Craft Scheduler Thread - 408 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:11:21] [Craft Scheduler Thread - 408 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:12:45] [Server thread/INFO]: Rhys_Broderick lost connection: Disconnected
[11:12:45] [Server thread/INFO]: [voicechat] Disconnecting client Rhys_Broderick
[11:12:45] [Server thread/INFO]: [-] Rhys_Broderick
[11:13:21] [Craft Scheduler Thread - 408 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:13:22] [Craft Scheduler Thread - 408 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:13:23] [Craft Scheduler Thread - 419 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[11:13:55] [Server thread/INFO]: ObliviousWaffle lost connection: Disconnected
[11:13:55] [Server thread/INFO]: [voicechat] Disconnecting client ObliviousWaffle
[11:13:55] [Server thread/INFO]: [-] ObliviousWaffle
[11:14:23] [Craft Scheduler Thread - 415 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[11:14:23] [Craft Scheduler Thread - 421 - TradeShop/ERROR]: [TradeShop Debug - DEV_EXPIRATION] You are currently running a DEV version that is past its expiration date.
[11:14:23] [Craft Scheduler Thread - 421 - TradeShop/ERROR]: [TradeShop Debug - DEV_EXPIRATION] Please update to a newer DEV version for testing or BETA/RELEASE if on a live server.
[11:15:22] [Craft Scheduler Thread - 419 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:15:22] [Craft Scheduler Thread - 419 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:17:22] [Craft Scheduler Thread - 416 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:17:22] [Craft Scheduler Thread - 416 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:19:22] [Craft Scheduler Thread - 416 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:19:22] [Craft Scheduler Thread - 416 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:21:22] [Craft Scheduler Thread - 394 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:21:23] [Craft Scheduler Thread - 394 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:23:23] [Craft Scheduler Thread - 426 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:23:23] [Craft Scheduler Thread - 426 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:25:23] [Craft Scheduler Thread - 419 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:25:23] [Craft Scheduler Thread - 419 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:27:23] [Craft Scheduler Thread - 432 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:27:23] [Craft Scheduler Thread - 432 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:29:23] [Craft Scheduler Thread - 433 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:29:23] [Craft Scheduler Thread - 433 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:31:23] [Craft Scheduler Thread - 435 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:31:24] [Craft Scheduler Thread - 435 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:33:24] [Craft Scheduler Thread - 432 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:33:24] [Craft Scheduler Thread - 432 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:35:24] [Craft Scheduler Thread - 426 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:35:24] [Craft Scheduler Thread - 426 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:37:24] [Craft Scheduler Thread - 439 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:37:24] [Craft Scheduler Thread - 439 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:39:24] [Craft Scheduler Thread - 434 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:39:25] [Craft Scheduler Thread - 434 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:41:25] [Craft Scheduler Thread - 434 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:41:25] [Craft Scheduler Thread - 434 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:43:25] [Craft Scheduler Thread - 443 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:43:25] [Craft Scheduler Thread - 443 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:45:25] [Craft Scheduler Thread - 437 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:45:25] [Craft Scheduler Thread - 437 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:47:25] [Craft Scheduler Thread - 446 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:47:26] [Craft Scheduler Thread - 446 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:49:26] [Craft Scheduler Thread - 443 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:49:26] [Craft Scheduler Thread - 443 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:51:26] [Craft Scheduler Thread - 450 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:51:26] [Craft Scheduler Thread - 450 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:53:26] [Craft Scheduler Thread - 448 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:53:26] [Craft Scheduler Thread - 448 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:55:06] [Netty Epoll Server IO #3/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "9d469269-4f8d-435e-9cc0-6a5e1f5c5318".
[11:55:07] [User Authenticator #8/INFO]: UUID of player Rhys_Broderick is 9d469269-4f8d-435e-9cc0-6a5e1f5c5318
[11:55:07] [Server thread/INFO]: [+] Rhys_Broderick
[11:55:07] [Server thread/INFO]: Rhys_Broderick[/90.195.21.255:34936] logged in with entity id 40226 at ([TheWilds]-264.25931795276136, 170.0, -1524.9559479025645)
[11:55:23] [Craft Scheduler Thread - 454 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[11:55:26] [Craft Scheduler Thread - 454 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:55:27] [Craft Scheduler Thread - 454 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:57:27] [Craft Scheduler Thread - 451 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:57:27] [Craft Scheduler Thread - 451 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[11:59:27] [Craft Scheduler Thread - 451 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[11:59:27] [Craft Scheduler Thread - 451 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:00:52] [JDA MainWS-ReadThread/INFO]: Discord » (Staff) Fortune Craft Lobby: **DuckManKian** has joined the Lobby Server
[12:00:53] [Server thread/INFO]: discord → (Staff) Fortune Craft Lobby: DuckManKian has joined the Lobby Server
[12:01:27] [Craft Scheduler Thread - 463 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:01:27] [Craft Scheduler Thread - 463 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:02:28] [Netty Epoll Server IO #2/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "36be4d95-b982-432e-970b-23bdc6666aca".
[12:02:29] [User Authenticator #9/INFO]: UUID of player DuckManKian is 36be4d95-b982-432e-970b-23bdc6666aca
[12:02:29] [Server thread/INFO]: (Staff) DuckManKian has joined the game
[12:02:29] [Server thread/INFO]: [+] DuckManKian
[12:02:29] [Server thread/INFO]: DuckManKian[/2.98.33.249:45874] logged in with entity id 42720 at ([TheWilds]-1005.9595405909804, -15.01592933067853, -1442.844994516223)
[12:02:29] [JDA MainWS-ReadThread/INFO]: Discord » (Staff) Fortune Craft Lobby: **DuckManKian** has quit the Lobby Server
[12:02:30] [Server thread/INFO]: discord → (Staff) Fortune Craft Lobby: DuckManKian has quit the Lobby Server
[12:03:03] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[12:03:03] [Server thread/INFO]: [ChatControlRed] Note: Not sending DuckManKian's command to spying players because he had 'chatcontrol.bypass.spy' 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.
[12:03:05] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[12:03:08] [Server thread/INFO]: DuckManKian issued server command: /warp elevator1
[12:03:20] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[12:03:21] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[12:03:23] [Craft Scheduler Thread - 463 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[12:03:24] [Server thread/INFO]: Rhys_Broderick issued server command: /title
[12:03:27] [Craft Scheduler Thread - 456 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:03:27] [Craft Scheduler Thread - 456 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:03:40] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[12:05:27] [Craft Scheduler Thread - 462 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:05:28] [Craft Scheduler Thread - 462 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:06:24] [Server thread/INFO]: DuckManKian issued server command: /claimflag
[12:07:03] [Server thread/INFO]: DuckManKian issued server command: /gddebug record claim
[12:07:28] [Craft Scheduler Thread - 465 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:07:28] [Craft Scheduler Thread - 465 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:08:51] [Server thread/INFO]: DuckManKian issued server command: /gddebug paste
[12:09:28] [Craft Scheduler Thread - 470 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:09:28] [Craft Scheduler Thread - 470 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:09:44] [Server thread/INFO]: DuckManKian issued server command: /claimflag
[12:10:35] [Server thread/INFO]: DuckManKian issued server command: /gddebug record claim
[12:11:28] [Craft Scheduler Thread - 472 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:11:29] [Craft Scheduler Thread - 472 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:12:44] [Server thread/INFO]: DuckManKian issued server command: /gddebug paste
[12:13:10] [Server thread/INFO]: DuckManKian issued server command: /claimflag
[12:13:29] [Craft Scheduler Thread - 472 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:13:29] [Craft Scheduler Thread - 472 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:13:43] [Server thread/INFO]: DuckManKian issued server command: /gddebug record claim
[12:15:28] [Server thread/INFO]: DuckManKian issued server command: /gddebug paste
[12:15:29] [Craft Scheduler Thread - 475 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:15:29] [Craft Scheduler Thread - 475 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:16:21] [Server thread/INFO]: DuckManKian issued server command: /gddebug record claim
[12:16:54] [Server thread/INFO]: DuckManKian issued server command: /gddebug paste
[12:17:29] [Craft Scheduler Thread - 473 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:17:29] [Craft Scheduler Thread - 473 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:19:29] [Craft Scheduler Thread - 480 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:19:30] [Craft Scheduler Thread - 480 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:20:02] [Server thread/INFO]: DuckManKian issued server command: /claimflag
[12:20:04] [Server thread/INFO]: DuckManKian issued server command: /claimflag
[12:20:14] [Server thread/INFO]: DuckManKian issued server command: /claimflag
[12:21:30] [Craft Scheduler Thread - 481 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:21:30] [Craft Scheduler Thread - 481 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:23:30] [Craft Scheduler Thread - 478 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:23:30] [Craft Scheduler Thread - 478 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:25:30] [Craft Scheduler Thread - 484 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:25:30] [Craft Scheduler Thread - 484 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:27:14] [Server thread/INFO]: DuckManKian issued server command: /stopsound Rhys_Broderick
[12:27:14] [Server thread/INFO]: [DuckManKian: Stopped all sounds]
[12:27:17] [Server thread/INFO]: DuckManKian issued server command: /stopsound DuckManKian
[12:27:17] [Server thread/INFO]: [DuckManKian: Stopped all sounds]
[12:27:30] [Craft Scheduler Thread - 485 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:27:31] [Craft Scheduler Thread - 485 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:29:31] [Craft Scheduler Thread - 484 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:29:31] [Craft Scheduler Thread - 484 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:31:31] [Craft Scheduler Thread - 490 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:31:31] [Craft Scheduler Thread - 490 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:33:31] [Craft Scheduler Thread - 470 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:33:32] [Craft Scheduler Thread - 470 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:35:30] [Server thread/INFO]: DuckManKian issued server command: /ignoreclaims
[12:35:31] [Server thread/INFO]: DuckManKian issued server command: /ignoreclaims
[12:35:32] [Craft Scheduler Thread - 495 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:35:32] [Craft Scheduler Thread - 495 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:37:32] [Craft Scheduler Thread - 495 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:37:32] [Craft Scheduler Thread - 495 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:38:59] [Server thread/INFO]: [Essentials] Essentials updated the underlying Player object for bea745de-9dbd-2f37-90f0-77781ef54cc9
[12:39:32] [Craft Scheduler Thread - 498 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:39:33] [Craft Scheduler Thread - 498 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:41:33] [Craft Scheduler Thread - 495 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:41:33] [Craft Scheduler Thread - 495 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:42:11] [Server thread/INFO]: DuckManKian issued server command: /warp elevator2
[12:42:12] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[12:42:17] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[12:42:22] [Server thread/INFO]: DuckManKian issued server command: /warp elevator2
[12:42:25] [Server thread/INFO]: DuckManKian issued server command: /warp infinityroom
[12:42:30] [Server thread/INFO]: DuckManKian issued server command: /warp infinityroom
[12:42:30] [Server thread/WARN]: DuckManKian moved too quickly! -352.33783966795636,-76.0,-133.56057340244956
[12:42:31] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[12:42:33] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[12:42:36] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[12:42:37] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[12:43:33] [Craft Scheduler Thread - 491 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:43:33] [Craft Scheduler Thread - 491 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:44:47] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:spruce_trapdoor"}}
[12:44:47] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[12:44:57] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[12:44:57] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[12:45:33] [Craft Scheduler Thread - 506 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:45:34] [Craft Scheduler Thread - 506 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:47:31] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:spruce_trapdoor",Properties:{open:"true"}}}
[12:47:31] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[12:47:34] [Craft Scheduler Thread - 502 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:47:34] [Craft Scheduler Thread - 502 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:47:37] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[12:47:37] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[12:47:59] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"north",open:"true"}}}
[12:47:59] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[12:48:12] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[12:48:13] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[12:48:13] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[12:48:18] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[12:48:18] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[12:48:22] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[12:48:22] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[12:48:29] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[12:48:29] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[12:48:33] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[12:48:33] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[12:49:00] [Server thread/INFO]: DuckManKian issued server command: /effect give DuckManKian minecraft:slowness infinite 7
[12:49:00] [Server thread/INFO]: [DuckManKian: Applied effect Slowness to DuckManKian]
[12:49:04] [Server thread/INFO]: DuckManKian issued server command: /effect clear DuckManKian
[12:49:04] [Server thread/INFO]: [DuckManKian: Removed every effect from DuckManKian]
[12:49:07] [Server thread/INFO]: DuckManKian issued server command: /effect give DuckManKian minecraft:slowness infinite 6
[12:49:07] [Server thread/INFO]: [DuckManKian: Applied effect Slowness to DuckManKian]
[12:49:08] [Server thread/INFO]: DuckManKian issued server command: /effect clear DuckManKian
[12:49:08] [Server thread/INFO]: [DuckManKian: Removed every effect from DuckManKian]
[12:49:09] [Server thread/INFO]: DuckManKian issued server command: /effect give DuckManKian minecraft:slowness infinite 5
[12:49:09] [Server thread/INFO]: [DuckManKian: Applied effect Slowness to DuckManKian]
[12:49:18] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[12:49:18] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[12:49:22] [Server thread/INFO]: DuckManKian issued server command: /effect give DuckManKian minecraft:slowness infinite 5
[12:49:25] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[12:49:25] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[12:49:27] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[12:49:27] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[12:49:28] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[12:49:28] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[12:49:30] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[12:49:30] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[12:49:31] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[12:49:31] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[12:49:34] [Craft Scheduler Thread - 507 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:49:34] [Craft Scheduler Thread - 507 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:49:37] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[12:49:37] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[12:49:39] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[12:49:39] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[12:49:44] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[12:49:44] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[12:49:52] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[12:49:52] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[12:49:55] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[12:49:55] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[12:49:57] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[12:49:57] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[12:49:59] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[12:49:59] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[12:50:09] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[12:50:09] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[12:51:34] [Craft Scheduler Thread - 503 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:51:34] [Craft Scheduler Thread - 503 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:52:55] [Netty Epoll Server IO #1/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "8b871cae-d312-4a78-9b8d-01d806e93fb9".
[12:52:56] [User Authenticator #10/INFO]: UUID of player ObliviousWaffle is 8b871cae-d312-4a78-9b8d-01d806e93fb9
[12:52:56] [Server thread/INFO]: [+] ObliviousWaffle
[12:52:56] [Server thread/INFO]: ObliviousWaffle[/81.140.161.4:44518] logged in with entity id 77013 at ([TheWilds]-578.7670433200167, 104.0, -1347.8161171731288)
[12:53:23] [Craft Scheduler Thread - 513 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[12:53:34] [Craft Scheduler Thread - 507 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:53:34] [Craft Scheduler Thread - 507 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:55:34] [Craft Scheduler Thread - 511 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:55:35] [Craft Scheduler Thread - 511 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:57:35] [Craft Scheduler Thread - 498 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:57:35] [Craft Scheduler Thread - 498 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[12:59:35] [Craft Scheduler Thread - 516 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[12:59:35] [Craft Scheduler Thread - 516 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:01:35] [Craft Scheduler Thread - 513 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:01:35] [Craft Scheduler Thread - 513 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:03:35] [Craft Scheduler Thread - 504 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:03:36] [Craft Scheduler Thread - 504 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:05:36] [Craft Scheduler Thread - 524 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:05:36] [Craft Scheduler Thread - 524 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:06:00] [Server thread/INFO]: DuckManKian issued server command: /tphere ObliviousWaffle
[13:06:07] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[13:06:07] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[13:06:11] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[13:06:11] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[13:06:15] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[13:06:15] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[13:06:17] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[13:06:17] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[13:06:20] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[13:06:20] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[13:06:21] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[13:06:21] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[13:06:25] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[13:06:25] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[13:06:26] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[13:06:26] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[13:06:30] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[13:06:30] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[13:06:37] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[13:06:37] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[13:06:39] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[13:06:39] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[13:06:49] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[13:06:49] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[13:06:52] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[13:06:52] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[13:07:00] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[13:07:00] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[13:07:02] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[13:07:02] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[13:07:06] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[13:07:06] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[13:07:10] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[13:07:10] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[13:07:12] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[13:07:12] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[13:07:15] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[13:07:15] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[13:07:18] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[13:07:18] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[13:07:20] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[13:07:20] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[13:07:36] [Craft Scheduler Thread - 522 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:07:36] [Craft Scheduler Thread - 522 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:07:42] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[13:08:08] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[13:08:34] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[13:08:34] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[13:08:40] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[13:08:40] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[13:08:47] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[13:08:47] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[13:08:55] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[13:08:55] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[13:08:57] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[13:08:57] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[13:09:00] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[13:09:12] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[13:09:18] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:block_display,distance=..1]
[13:09:18] [Server thread/INFO]: [DuckManKian: Killed Block Display]
[13:09:20] [Server thread/INFO]: DuckManKian issued server command: /summon minecraft:block_display ~ ~ ~ {block_state:{Name:"minecraft:dark_oak_trapdoor",Properties:{facing:"east",open:"true"}}}
[13:09:20] [Server thread/INFO]: [DuckManKian: Summoned new Block Display]
[13:09:23] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[13:09:36] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[13:09:36] [Craft Scheduler Thread - 507 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:09:36] [Craft Scheduler Thread - 507 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:09:59] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[13:10:01] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[13:10:15] [Server thread/INFO]: DuckManKian issued server command: /effect clear DuckManKian
[13:10:15] [Server thread/INFO]: [DuckManKian: Removed every effect from DuckManKian]
[13:10:34] [Server thread/INFO]: DuckManKian issued server command: //replacenear 10 sea_lantern white_concrete
[13:10:34] [AsyncNotifyKeyedQueue - 0/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R1.PaperweightStarlightRelighterFactory as relighter factory.
[13:10:41] [Server thread/INFO]: DuckManKian issued server command: //replacenear 10 sea_lantern white_concrete
[13:10:44] [Server thread/INFO]: DuckManKian issued server command: //replacenear 10 sea_lantern white_concrete
[13:10:50] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[13:10:51] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[13:10:54] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[13:10:58] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[13:11:02] [Server thread/INFO]: DuckManKian issued server command: //replacenear 5 sea_lantern white_concrete
[13:11:03] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[13:11:06] [Server thread/INFO]: DuckManKian issued server command: //replacenear 5 sea_lantern white_concrete
[13:11:08] [Server thread/INFO]: DuckManKian issued server command: //replacenear 5 sea_lantern white_concrete
[13:11:14] [Server thread/INFO]: DuckManKian issued server command: //replacenear 5 sea_lantern white_concrete
[13:11:15] [Server thread/INFO]: DuckManKian issued server command: //replacenear 5 sea_lantern white_concrete
[13:11:15] [Server thread/INFO]: DuckManKian issued server command: //replacenear 5 sea_lantern white_concrete
[13:11:18] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[13:11:34] [Server thread/INFO]: DuckManKian issued server command: //replacenear 10 item_frame glow_item_frame
[13:11:36] [Craft Scheduler Thread - 507 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:11:36] [Craft Scheduler Thread - 507 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:12:08] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:item_frame,distance=..10]
[13:12:08] [Server thread/INFO]: [DuckManKian: Killed 423 entities]
[13:12:09] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:item_frame,distance=..10]
[13:12:12] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:item_frame,distance=..10]
[13:12:12] [Server thread/INFO]: [DuckManKian: Killed 63 entities]
[13:12:13] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:item_frame,distance=..10]
[13:12:13] [Server thread/INFO]: [DuckManKian: Killed 45 entities]
[13:12:13] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:item_frame,distance=..10]
[13:12:13] [Server thread/INFO]: [DuckManKian: Killed 44 entities]
[13:12:14] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:item_frame,distance=..10]
[13:12:14] [Server thread/INFO]: [DuckManKian: Killed 69 entities]
[13:12:15] [Server thread/INFO]: DuckManKian issued server command: /minecraft:kill @e[type=minecraft:item_frame,distance=..10]
[13:12:15] [Server thread/INFO]: [DuckManKian: Killed 9 entities]
[13:12:17] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[13:12:17] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[13:12:18] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[13:12:23] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[13:13:36] [Craft Scheduler Thread - 504 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:13:37] [Craft Scheduler Thread - 504 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:14:52] [Netty Epoll Server IO #2/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "00000000-0000-0000-0009-01f28df60d56".
[13:14:52] [User Authenticator #11/INFO]: UUID of player .Oblivi0usWaffle is 00000000-0000-0000-0009-01f28df60d56
[13:14:52] [Server thread/INFO]: [floodgate] Floodgate player logged in as .Oblivi0usWaffle joined (UUID: 00000000-0000-0000-0009-01f28df60d56)
[13:14:52] [Server thread/INFO]: [+] .Oblivi0usWaffle
[13:14:52] [Server thread/INFO]: .Oblivi0usWaffle[/136.23.4.39:36010] logged in with entity id 115065 at ([TheWilds]-263.94662, 136.5, -1479.6161)
[13:14:58] [Server thread/INFO]: DuckManKian issued server command: /tphere .Oblivi0usWaffle
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:14:58] [Server thread/WARN]: .Oblivi0usWaffle moved too quickly! -655.9948610496556,-106.7924758124573,-3.9854669679325525
[13:15:02] [Server thread/WARN]: .Oblivi0usWaffle was kicked for floating too long!
[13:15:02] [Server thread/INFO]: .Oblivi0usWaffle lost connection: Flying is not enabled on this server
[13:15:02] [Netty Epoll Server IO #2/INFO]: [floodgate] Floodgate player logged in as .Oblivi0usWaffle disconnected
[13:15:02] [Server thread/INFO]: [voicechat] Disconnecting client .Oblivi0usWaffle
[13:15:02] [Server thread/INFO]: [-] .Oblivi0usWaffle
[13:15:23] [Craft Scheduler Thread - 532 - BuycraftX/INFO]: [BuycraftX] Sending 2 analytic events
[13:15:37] [Craft Scheduler Thread - 534 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:15:37] [Craft Scheduler Thread - 534 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:15:40] [Server thread/INFO]: [ChatControlRed] Note: Not logging DuckManKian's sign because he had 'chatcontrol.bypass.log' permission. Players with these permission do not get their content logged. To disable that, negate this permission (a false value if using LuckPerms). This message only shows once per 3 hours.
[13:15:54] [Netty Epoll Server IO #2/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "00000000-0000-0000-0009-01f28df60d56".
[13:15:54] [User Authenticator #12/INFO]: UUID of player .Oblivi0usWaffle is 00000000-0000-0000-0009-01f28df60d56
[13:15:54] [Server thread/INFO]: [floodgate] Floodgate player logged in as .Oblivi0usWaffle joined (UUID: 00000000-0000-0000-0009-01f28df60d56)
[13:15:54] [Server thread/INFO]: [+] .Oblivi0usWaffle
[13:15:54] [Server thread/INFO]: .Oblivi0usWaffle[/136.23.4.39:40910] logged in with entity id 116680 at ([TheWilds]-919.94147, 28.25064437684007, -1483.6016)
[13:16:23] [Craft Scheduler Thread - 534 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[13:17:13] [Server thread/INFO]: DuckManKian issued server command: /give DuckManKian light_block
[13:17:23] [Server thread/INFO]: DuckManKian issued server command: /minecraft:give DuckManKian light
[13:17:23] [Server thread/INFO]: [DuckManKian: Gave 1 [Light] to DuckManKian]
[13:17:37] [Craft Scheduler Thread - 535 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:17:37] [Craft Scheduler Thread - 535 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:19:37] [Craft Scheduler Thread - 534 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:19:37] [Craft Scheduler Thread - 534 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:19:48] [Netty Epoll Server IO #1/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "00000000-0000-0000-0009-01f3f293e2f8".
[13:19:48] [User Authenticator #13/INFO]: UUID of player .Jelly8600 is 00000000-0000-0000-0009-01f3f293e2f8
[13:19:48] [Server thread/INFO]: [floodgate] Floodgate player logged in as .Jelly8600 joined (UUID: 00000000-0000-0000-0009-01f3f293e2f8)
[13:19:48] [Server thread/INFO]: [+] .Jelly8600
[13:19:48] [Server thread/INFO]: .Jelly8600[/146.200.74.231:44792] logged in with entity id 121853 at ([TheWilds_nether]-46.30001, 120.0, -383.72025)
[13:19:55] [Async Chat Thread - #17/INFO]: <Castaway | DuckManKian> wb
[13:19:56] [Async Chat Thread - #16/INFO]: <Voyager | Rhys_Broderick | Seraph> wb
[13:20:03] [Async Chat Thread - #16/INFO]: <Deckhand | ObliviousWaffle | Joyful> hallo
[13:20:08] [Async Chat Thread - #18/INFO]: <Sailor | .Jelly8600> Hello
[13:20:23] [Craft Scheduler Thread - 534 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[13:20:25] [Async Chat Thread - #18/INFO]: <Sailor | .Jelly8600> One of you knows me irl
[13:20:31] [Server thread/INFO]: DuckManKian issued server command: //wand
[13:20:41] [Server thread/INFO]: ObliviousWaffle lost connection: Disconnected
[13:20:41] [Server thread/INFO]: [voicechat] Disconnecting client ObliviousWaffle
[13:20:41] [Server thread/INFO]: [-] ObliviousWaffle
[13:21:02] [Async Chat Thread - #18/INFO]: <Castaway | DuckManKian> oh?
[13:21:23] [Craft Scheduler Thread - 534 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[13:21:23] [Netty Epoll Server IO #2/INFO]: [floodgate] Floodgate player logged in as .Oblivi0usWaffle disconnected
[13:21:23] [Server thread/INFO]: .Oblivi0usWaffle lost connection: Disconnected
[13:21:23] [Server thread/INFO]: [voicechat] Disconnecting client .Oblivi0usWaffle
[13:21:23] [Server thread/INFO]: [-] .Oblivi0usWaffle
[13:21:37] [Craft Scheduler Thread - 544 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:21:38] [Craft Scheduler Thread - 544 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:21:51] [Async Chat Thread - #16/INFO]: <Sailor | .Jelly8600> Ill clue you. I said i could get someone on here
[13:21:57] [Netty Epoll Server IO #0/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "8b871cae-d312-4a78-9b8d-01d806e93fb9".
[13:21:57] [User Authenticator #14/INFO]: UUID of player ObliviousWaffle is 8b871cae-d312-4a78-9b8d-01d806e93fb9
[13:21:57] [Server thread/INFO]: [+] ObliviousWaffle
[13:21:57] [Server thread/INFO]: ObliviousWaffle[/81.140.161.4:59550] logged in with entity id 125257 at ([TheWilds]-928.885494685186, 28.0, -1481.4197452751544)
[13:22:23] [Craft Scheduler Thread - 540 - BuycraftX/INFO]: [BuycraftX] Sending 2 analytic events
[13:22:57] [Async Chat Thread - #16/INFO]: <Castaway | DuckManKian> It's not me is it?
[13:23:03] [Async Chat Thread - #19/INFO]: <Sailor | .Jelly8600> No
[13:23:10] [Async Chat Thread - #16/INFO]: <Sailor | .Jelly8600> Rhys...
[13:23:38] [Craft Scheduler Thread - 535 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:23:38] [Craft Scheduler Thread - 535 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:24:04] [Server thread/INFO]: Rhys_Broderick issued server command: /msg .Jelly8600 0-0 c...
[13:24:17] [Async Chat Thread - #20/INFO]: <Sailor | .Jelly8600> Is Java workin now?
[13:24:49] [Server thread/INFO]: .Jelly8600 tried to swim in lava
[13:24:51] [Async Chat Thread - #20/INFO]: <Castaway | DuckManKian> We're still working on ironing things out, but it works a lot better now yep
[13:24:56] [Netty Epoll Server IO #0/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "00000000-0000-0000-0009-01f28df60d56".
[13:24:56] [User Authenticator #15/INFO]: UUID of player .Oblivi0usWaffle is 00000000-0000-0000-0009-01f28df60d56
[13:24:56] [Server thread/INFO]: [floodgate] Floodgate player logged in as .Oblivi0usWaffle joined (UUID: 00000000-0000-0000-0009-01f28df60d56)
[13:24:56] [Server thread/INFO]: [+] .Oblivi0usWaffle
[13:24:56] [Server thread/INFO]: .Oblivi0usWaffle[/136.23.4.39:34242] logged in with entity id 130464 at ([TheWilds]-922.15845, 28.0, -1483.0752)
[13:25:23] [Craft Scheduler Thread - 548 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[13:25:38] [Craft Scheduler Thread - 544 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:25:39] [Craft Scheduler Thread - 544 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:26:36] [Server thread/INFO]: [Quests] 00000000-0000-0000-0009-01f3f293e2f8 started quest Flower Power
[13:27:39] [Craft Scheduler Thread - 552 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:27:40] [Craft Scheduler Thread - 552 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:29:40] [Craft Scheduler Thread - 552 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:29:40] [Craft Scheduler Thread - 552 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:29:54] [Async Chat Thread - #24/INFO]: <Sailor | .Jelly8600> Im at Ministry...
[13:30:42] [Async Chat Thread - #24/INFO]: <Sailor | .Jelly8600> Looks closed. Ill return later
[13:31:40] [Craft Scheduler Thread - 552 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:31:41] [Craft Scheduler Thread - 552 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:31:58] [Server thread/INFO]: Rhys_Broderick issued server command: /msg .Jelly8600 Wont be open until the 24th of september...
[13:32:03] [Async Chat Thread - #26/INFO]: <Sailor | .Jelly8600> Ok
[13:32:29] [Server thread/INFO]: Rhys_Broderick issued server command: /msg .Jelly8600 I mean 26th
[13:32:34] [Async Chat Thread - #26/INFO]: <Sailor | .Jelly8600> Ah
[13:32:40] [Server thread/INFO]: Rhys_Broderick issued server command: /msg .Jelly8600 so a thursday
[13:32:50] [Async Chat Thread - #26/INFO]: <Sailor | .Jelly8600> Noice
[13:33:26] [Server thread/INFO]: .Jelly8600 issued server command: /title
[13:33:28] [Server thread/INFO]: Rhys_Broderick issued server command: /msg .Jelly8600 Sorry about the false info again... thanks to kian being a donut, its a tuesday
[13:33:40] [Async Chat Thread - #26/INFO]: <Sailor | .Jelly8600> Ok
[13:33:41] [Craft Scheduler Thread - 554 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:33:41] [Craft Scheduler Thread - 554 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:33:53] [Async Chat Thread - #26/INFO]: <Sailor | .Jelly8600> Imma head to The End
[13:34:46] [Server thread/WARN]: .Jelly8600 moved wrongly!
[13:35:41] [Craft Scheduler Thread - 560 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:35:41] [Craft Scheduler Thread - 560 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:35:52] [Server thread/INFO]: .Jelly8600 issued server command: /title
[13:37:41] [Craft Scheduler Thread - 545 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:37:42] [Craft Scheduler Thread - 545 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:38:23] [Craft Scheduler Thread - 564 - TradeShop/ERROR]: [TradeShop Debug - DEV_EXPIRATION] You are currently running a DEV version that is past its expiration date.
[13:38:23] [Craft Scheduler Thread - 564 - TradeShop/ERROR]: [TradeShop Debug - DEV_EXPIRATION] Please update to a newer DEV version for testing or BETA/RELEASE if on a live server.
[13:39:08] [Server thread/INFO]: .Jelly8600 fell from a high place
[13:39:24] [Async Chat Thread - #28/INFO]: <Sailor | .Jelly8600> It screwed it up XD
[13:39:42] [Craft Scheduler Thread - 565 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:39:42] [Craft Scheduler Thread - 565 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:40:19] [Server thread/INFO]: .Jelly8600 fell from a high place
[13:41:42] [Craft Scheduler Thread - 560 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:41:42] [Craft Scheduler Thread - 560 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:42:01] [Server thread/INFO]: .Jelly8600 has made the advancement [Who is Cutting Onions?]
[13:42:26] [Thread-49/INFO]: [Spartan Notification] SQL Update Error:
Command: INSERT INTO spartan_logs (creation_date, plugin_version, server_version, server_tps, online_players, type, information, player_uuid, player_latency, player_x, player_y, player_z, functionality, violation_level, cancel_violation) VALUES ('2023/08/30 13:40:19.606381563', 'Phase 519.1', '1.20', '19.794140934283455', '5', 'violation', '[Spartan Phase 519.1/225-983432/326342-535157] .Jelly8600 failed NoFall (VL: 1) [(Version: Paper 1.20), (C-V: 1) (Silent: false), (Ping: 0ms), (TPS: 19.798), (Hacker: false), (Online: 5), (XYZ: -269 16 -1743), (type: spoof, air: 56, vertical: -0.9593600000000002)]', '00000000-0000-0000-0009-01f3f293e2f8', '0', '-269', '16', '-1743', 'NoFall', '1', '1');
Exception: Data truncation: Data too long for column 'creation_date' at row 1
[13:42:40] [Server thread/INFO]: .Jelly8600 has made the advancement [Remote Getaway]
[13:43:42] [Craft Scheduler Thread - 544 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:43:42] [Craft Scheduler Thread - 544 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:43:54] [Server thread/INFO]: .Jelly8600 has made the advancement [The Point of No Return]
[13:43:55] [Server thread/INFO]: .Jelly8600 fell from a high place
[13:43:56] [Netty Epoll Server IO #0/INFO]: [floodgate] Floodgate player logged in as .Oblivi0usWaffle disconnected
[13:43:56] [Server thread/INFO]: .Oblivi0usWaffle lost connection: Disconnected
[13:43:56] [Server thread/INFO]: [voicechat] Disconnecting client .Oblivi0usWaffle
[13:43:56] [Server thread/INFO]: [-] .Oblivi0usWaffle
[13:44:23] [Craft Scheduler Thread - 567 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[13:44:32] [Netty Epoll Server IO #1/INFO]: [floodgate] Floodgate player logged in as .Jelly8600 disconnected
[13:44:32] [Server thread/INFO]: .Jelly8600 lost connection: Disconnected
[13:44:32] [Server thread/INFO]: [voicechat] Disconnecting client .Jelly8600
[13:44:32] [Server thread/INFO]: [-] .Jelly8600
[13:45:23] [Craft Scheduler Thread - 570 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[13:45:42] [Craft Scheduler Thread - 570 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:45:42] [Craft Scheduler Thread - 570 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:46:07] [Netty Epoll Server IO #0/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "00000000-0000-0000-0009-01f28df60d56".
[13:46:07] [User Authenticator #16/INFO]: UUID of player .Oblivi0usWaffle is 00000000-0000-0000-0009-01f28df60d56
[13:46:07] [Server thread/INFO]: [floodgate] Floodgate player logged in as .Oblivi0usWaffle joined (UUID: 00000000-0000-0000-0009-01f28df60d56)
[13:46:07] [Server thread/INFO]: [+] .Oblivi0usWaffle
[13:46:07] [Server thread/INFO]: .Oblivi0usWaffle[/136.23.4.39:55780] logged in with entity id 164684 at ([TheWilds]-930.23096, 28.0, -1484.9125)
[13:46:23] [Craft Scheduler Thread - 570 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[13:47:03] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[13:47:05] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[13:47:11] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[13:47:12] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[13:47:42] [Craft Scheduler Thread - 574 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:47:43] [Craft Scheduler Thread - 574 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:49:43] [Craft Scheduler Thread - 573 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:49:43] [Craft Scheduler Thread - 573 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:51:43] [Craft Scheduler Thread - 577 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:51:53] [Craft Scheduler Thread - 577 - BuycraftX/ERROR]: [BuycraftX] Could not fetch due players queue
java.net.SocketTimeoutException: timeout
    at net.buycraft.plugin.internal.okhttp3.internal.http2.Http2Stream$StreamTimeout.newTimeoutException(Http2Stream.java:656) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http2.Http2Stream$StreamTimeout.exitAndThrowIfTimedOut(Http2Stream.java:664) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http2.Http2Stream.takeHeaders(Http2Stream.java:153) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http2.Http2Codec.readResponseHeaders(Http2Codec.java:131) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.CallServerInterceptor.intercept(CallServerInterceptor.java:88) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.java:45) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.java:93) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.java:93) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.java:126) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.BuyCraftAPI$1.intercept(BuyCraftAPI.java:59) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.BuyCraftAPI$2.intercept(BuyCraftAPI.java:53) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.RealCall.getResponseWithInterceptorChain(RealCall.java:254) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.RealCall.execute(RealCall.java:92) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.retrofit2.OkHttpCall.execute(OkHttpCall.java:186) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.execution.DuePlayerFetcher.run(DuePlayerFetcher.java:62) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.execution.DuePlayerFetcher.run(DuePlayerFetcher.java:38) ~[BuycraftX.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-167]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.20.1.jar:git-Paper-167]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.20.1.jar:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[13:52:26] [Thread-49/INFO]: [Spartan Notification] SQL Update Error:
Command: INSERT INTO spartan_logs (creation_date, plugin_version, server_version, server_tps, online_players, type, information, player_uuid, player_latency, player_x, player_y, player_z, functionality, violation_level, cancel_violation) VALUES ('2023/08/30 13:46:17.404101949', 'Phase 519.1', '1.20', '19.801980198019802', '5', 'violation', '[Spartan Phase 519.1/225-983432/326342-535157] .Oblivi0usWaffle failed Speed (VL: 1) [(Version: Paper 1.20), (C-V: 1) (Silent: false), (Ping: 0ms), (TPS: 19.801), (Hacker: false), (Online: 5), (XYZ: -931 28 -1485), (type: normal, reason: fair-push, horizontal: 2.063284128664743, limit: 1.5, dynamic-limit: 1.875, vertical: 0.0, air: 0, difference: 1.847736779806145)]', '00000000-0000-0000-0009-01f28df60d56', '0', '-931', '28', '-1485', 'Speed', '1', '1');
Exception: Data truncation: Data too long for column 'creation_date' at row 1
[13:56:53] [Craft Scheduler Thread - 574 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:56:53] [Craft Scheduler Thread - 574 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[13:57:55] [Netty Epoll Server IO #0/INFO]: [floodgate] Floodgate player logged in as .Oblivi0usWaffle disconnected
[13:57:55] [Server thread/INFO]: .Oblivi0usWaffle lost connection: Disconnected
[13:57:55] [Server thread/INFO]: [voicechat] Disconnecting client .Oblivi0usWaffle
[13:57:55] [Server thread/INFO]: [-] .Oblivi0usWaffle
[13:58:23] [Craft Scheduler Thread - 574 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[13:58:53] [Craft Scheduler Thread - 575 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[13:58:54] [Craft Scheduler Thread - 575 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:00:54] [Craft Scheduler Thread - 574 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:00:54] [Craft Scheduler Thread - 574 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:01:35] [Server thread/INFO]: Rhys_Broderick lost connection: Disconnected
[14:01:35] [Server thread/INFO]: [voicechat] Disconnecting client Rhys_Broderick
[14:01:35] [Server thread/INFO]: [-] Rhys_Broderick
[14:02:23] [Craft Scheduler Thread - 584 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[14:02:26] [Thread-49/INFO]: [Spartan Notification] SQL Update Error:
Command: INSERT INTO spartan_logs (creation_date, plugin_version, server_version, server_tps, online_players, type, information, player_uuid, player_latency, player_x, player_y, player_z, functionality, violation_level, cancel_violation) VALUES ('2023/08/30 14:01:26.204123422', 'Phase 519.1', '1.20', '19.798059790140567', '5', 'violation', '[Spartan Phase 519.1/225-983432/326342-535157] ObliviousWaffle failed Speed (VL: 1) [(Version: Paper 1.20), (C-V: 1) (Silent: false), (Ping: 92ms), (TPS: 19.798), (Hacker: false), (Online: 5), (XYZ: -592 105 -1347), (type: normal, reason: air, horizontal: 0.6087536544151664, limit: 0.47, dynamic-limit: 0.6, vertical: 0.5, air: 0, difference: 0.29956325721428306)]', '8b871cae-d312-4a78-9b8d-01d806e93fb9', '92', '-592', '105', '-1347', 'Speed', '1', '1');
Exception: Data truncation: Data too long for column 'creation_date' at row 1
[14:02:54] [Craft Scheduler Thread - 588 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:02:54] [Craft Scheduler Thread - 588 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:04:54] [Craft Scheduler Thread - 588 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:04:54] [Craft Scheduler Thread - 588 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:06:54] [Craft Scheduler Thread - 587 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:06:55] [Craft Scheduler Thread - 587 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:08:00] [Server thread/INFO]: ObliviousWaffle lost connection: Disconnected
[14:08:00] [Server thread/INFO]: [voicechat] Disconnecting client ObliviousWaffle
[14:08:00] [Server thread/INFO]: [-] ObliviousWaffle
[14:08:23] [Craft Scheduler Thread - 592 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[14:08:55] [Craft Scheduler Thread - 592 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:08:55] [Craft Scheduler Thread - 592 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:10:55] [Craft Scheduler Thread - 544 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:10:55] [Craft Scheduler Thread - 544 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:12:55] [Craft Scheduler Thread - 599 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:12:55] [Craft Scheduler Thread - 599 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:14:55] [Craft Scheduler Thread - 544 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:14:56] [Craft Scheduler Thread - 544 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:16:56] [Craft Scheduler Thread - 544 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:16:56] [Craft Scheduler Thread - 544 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:18:56] [Craft Scheduler Thread - 592 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:18:56] [Craft Scheduler Thread - 592 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:20:56] [Craft Scheduler Thread - 592 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:20:56] [Craft Scheduler Thread - 592 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:22:56] [Craft Scheduler Thread - 611 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:22:57] [Craft Scheduler Thread - 611 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:24:57] [Craft Scheduler Thread - 613 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:24:58] [Craft Scheduler Thread - 613 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:26:58] [Craft Scheduler Thread - 613 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:26:58] [Craft Scheduler Thread - 613 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:27:14] [Server thread/INFO]: [Essentials] Essentials updated the underlying Player object for bea745de-9dbd-2f37-90f0-77781ef54cc9
[14:28:58] [Craft Scheduler Thread - 605 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:28:58] [Craft Scheduler Thread - 605 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:30:58] [Craft Scheduler Thread - 619 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:30:59] [Craft Scheduler Thread - 619 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:32:59] [Craft Scheduler Thread - 605 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:32:59] [Craft Scheduler Thread - 605 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:33:10] [Server thread/INFO]: DuckManKian lost connection: Disconnected
[14:33:10] [Server thread/INFO]: [voicechat] Disconnecting client DuckManKian
[14:33:10] [Server thread/INFO]: (Staff) DuckManKian has quit the game
[14:33:10] [Server thread/INFO]: [-] DuckManKian
[14:33:23] [Craft Scheduler Thread - 605 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[14:34:59] [Craft Scheduler Thread - 623 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:34:59] [Craft Scheduler Thread - 623 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:36:59] [Craft Scheduler Thread - 605 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:37:00] [Craft Scheduler Thread - 605 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:39:00] [Craft Scheduler Thread - 622 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:39:00] [Craft Scheduler Thread - 622 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:41:00] [Craft Scheduler Thread - 623 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:41:00] [Craft Scheduler Thread - 623 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:43:00] [Craft Scheduler Thread - 631 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:43:00] [Craft Scheduler Thread - 631 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:45:00] [Craft Scheduler Thread - 632 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:45:01] [Craft Scheduler Thread - 632 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:47:01] [Craft Scheduler Thread - 634 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:47:01] [Craft Scheduler Thread - 634 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:48:27] [Netty Epoll Server IO #2/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "0a7e036e-c307-4bf9-b617-4367f356890c".
[14:48:27] [User Authenticator #17/INFO]: UUID of player PirateCraggy is 0a7e036e-c307-4bf9-b617-4367f356890c
[14:48:28] [Server thread/INFO]: [+] PirateCraggy
[14:48:28] [Server thread/INFO]: PirateCraggy[/84.69.130.157:51714] logged in with entity id 204756 at ([TheWilds]-397.4407438312385, 63.0625, -746.2854125282186)
[14:49:01] [Craft Scheduler Thread - 630 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:49:01] [Craft Scheduler Thread - 630 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:49:23] [Craft Scheduler Thread - 630 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[14:51:01] [Craft Scheduler Thread - 631 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:51:01] [Craft Scheduler Thread - 631 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:53:01] [Craft Scheduler Thread - 630 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:53:02] [Craft Scheduler Thread - 630 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:55:02] [Craft Scheduler Thread - 605 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:55:02] [Craft Scheduler Thread - 605 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:57:02] [Craft Scheduler Thread - 631 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:57:03] [Craft Scheduler Thread - 631 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:59:03] [Craft Scheduler Thread - 646 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:59:03] [Craft Scheduler Thread - 646 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:00:47] [Thread-42/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[15:01:03] [Craft Scheduler Thread - 648 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:01:04] [Craft Scheduler Thread - 648 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:01:45] [Server thread/INFO]: [Essentials] Essentials updated the underlying Player object for 8683c875-5a89-26df-9219-70fd3414d8cf
[15:03:04] [Craft Scheduler Thread - 645 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:03:05] [Craft Scheduler Thread - 645 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:05:05] [Craft Scheduler Thread - 645 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:05:05] [Craft Scheduler Thread - 645 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:07:05] [Craft Scheduler Thread - 651 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:07:05] [Craft Scheduler Thread - 651 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:09:05] [Craft Scheduler Thread - 644 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:09:05] [Craft Scheduler Thread - 644 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:11:05] [Craft Scheduler Thread - 645 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:11:06] [Craft Scheduler Thread - 645 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:12:56] [Server thread/INFO]: PirateCraggy lost connection: Disconnected
[15:12:56] [Server thread/INFO]: [voicechat] Disconnecting client PirateCraggy
[15:12:56] [Server thread/INFO]: [-] PirateCraggy
[15:13:06] [Craft Scheduler Thread - 655 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:13:06] [Craft Scheduler Thread - 655 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:13:23] [Craft Scheduler Thread - 630 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[15:15:06] [Craft Scheduler Thread - 658 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:15:06] [Craft Scheduler Thread - 658 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:17:06] [Craft Scheduler Thread - 659 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:17:06] [Craft Scheduler Thread - 659 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:19:06] [Craft Scheduler Thread - 662 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:19:06] [Craft Scheduler Thread - 662 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:21:06] [Craft Scheduler Thread - 664 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:21:07] [Craft Scheduler Thread - 664 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:23:07] [Craft Scheduler Thread - 666 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:23:07] [Craft Scheduler Thread - 666 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:25:07] [Craft Scheduler Thread - 630 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:25:07] [Craft Scheduler Thread - 630 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:27:07] [Craft Scheduler Thread - 671 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:27:08] [Craft Scheduler Thread - 671 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:29:08] [Craft Scheduler Thread - 672 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:29:08] [Craft Scheduler Thread - 672 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:29:44] [Netty Epoll Server IO #3/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "0a7e036e-c307-4bf9-b617-4367f356890c".
[15:29:45] [User Authenticator #18/INFO]: UUID of player PirateCraggy is 0a7e036e-c307-4bf9-b617-4367f356890c
[15:29:45] [Server thread/INFO]: [+] PirateCraggy
[15:29:45] [Server thread/INFO]: PirateCraggy[/84.69.130.157:32916] logged in with entity id 214005 at ([TheWilds]-397.48702192779405, 63.0625, -747.1285552750496)
[15:30:23] [Craft Scheduler Thread - 666 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[15:31:08] [Craft Scheduler Thread - 669 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:31:08] [Craft Scheduler Thread - 669 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:33:08] [Craft Scheduler Thread - 674 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:33:09] [Craft Scheduler Thread - 674 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:35:09] [Craft Scheduler Thread - 672 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:35:09] [Craft Scheduler Thread - 672 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:37:09] [Craft Scheduler Thread - 680 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:37:10] [Craft Scheduler Thread - 680 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:39:10] [Craft Scheduler Thread - 674 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:39:10] [Craft Scheduler Thread - 674 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:41:10] [Craft Scheduler Thread - 674 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:41:11] [Craft Scheduler Thread - 674 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:43:11] [Craft Scheduler Thread - 680 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:43:11] [Craft Scheduler Thread - 680 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:45:11] [Craft Scheduler Thread - 679 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:45:11] [Craft Scheduler Thread - 679 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:45:34] [Server thread/INFO]: PirateCraggy lost connection: Disconnected
[15:45:34] [Server thread/INFO]: [voicechat] Disconnecting client PirateCraggy
[15:45:34] [Server thread/INFO]: [-] PirateCraggy
[15:46:23] [Craft Scheduler Thread - 676 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[15:47:11] [Craft Scheduler Thread - 687 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:47:12] [Craft Scheduler Thread - 687 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:49:12] [Craft Scheduler Thread - 686 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:49:12] [Craft Scheduler Thread - 686 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:51:12] [Craft Scheduler Thread - 686 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:51:13] [Craft Scheduler Thread - 686 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:53:13] [Craft Scheduler Thread - 693 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:53:15] [Craft Scheduler Thread - 693 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:55:15] [Craft Scheduler Thread - 692 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:55:16] [Craft Scheduler Thread - 692 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:57:16] [Craft Scheduler Thread - 690 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:57:16] [Craft Scheduler Thread - 690 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:59:16] [Craft Scheduler Thread - 698 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:59:16] [Craft Scheduler Thread - 698 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:01:16] [Craft Scheduler Thread - 698 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:01:16] [Craft Scheduler Thread - 698 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:02:23] [Craft Scheduler Thread - 698 - Vault/INFO]: [Vault] Checking for Updates ... 
[16:02:23] [Craft Scheduler Thread - 698 - Vault/INFO]: [Vault] No new version available
[16:02:23] [Craft Scheduler Thread - 690 - TradeShop/ERROR]: [TradeShop Debug - DEV_EXPIRATION] You are currently running a DEV version that is past its expiration date.
[16:02:23] [Craft Scheduler Thread - 690 - TradeShop/ERROR]: [TradeShop Debug - DEV_EXPIRATION] Please update to a newer DEV version for testing or BETA/RELEASE if on a live server.
[16:03:16] [Craft Scheduler Thread - 690 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:03:17] [Craft Scheduler Thread - 690 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:05:17] [Craft Scheduler Thread - 699 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:05:17] [Craft Scheduler Thread - 699 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:07:17] [Craft Scheduler Thread - 702 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:07:19] [Craft Scheduler Thread - 702 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:09:19] [Craft Scheduler Thread - 704 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:09:20] [Craft Scheduler Thread - 704 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:11:20] [Craft Scheduler Thread - 706 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:11:20] [Craft Scheduler Thread - 706 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:13:20] [Craft Scheduler Thread - 703 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:13:20] [Craft Scheduler Thread - 703 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:15:20] [Craft Scheduler Thread - 712 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:15:20] [Craft Scheduler Thread - 712 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:17:20] [Craft Scheduler Thread - 710 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:17:21] [Craft Scheduler Thread - 710 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:19:21] [Craft Scheduler Thread - 703 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:19:21] [Craft Scheduler Thread - 703 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:21:21] [Craft Scheduler Thread - 718 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:21:22] [Craft Scheduler Thread - 718 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:23:22] [Craft Scheduler Thread - 703 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:23:22] [Craft Scheduler Thread - 703 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:25:22] [Craft Scheduler Thread - 720 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:25:22] [Craft Scheduler Thread - 720 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:27:22] [Craft Scheduler Thread - 702 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:27:22] [Craft Scheduler Thread - 702 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:29:22] [Craft Scheduler Thread - 719 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:29:22] [Craft Scheduler Thread - 719 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:31:22] [Craft Scheduler Thread - 702 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:31:25] [Craft Scheduler Thread - 702 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:33:25] [Craft Scheduler Thread - 702 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:33:25] [Craft Scheduler Thread - 702 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:35:25] [Craft Scheduler Thread - 723 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:35:26] [Craft Scheduler Thread - 723 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:36:58] [Server thread/INFO]: [Essentials] Essentials updated the underlying Player object for bea745de-9dbd-2f37-90f0-77781ef54cc9
[16:37:26] [Craft Scheduler Thread - 729 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:37:26] [Craft Scheduler Thread - 729 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:39:26] [Craft Scheduler Thread - 723 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:39:26] [Craft Scheduler Thread - 723 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:41:26] [Craft Scheduler Thread - 736 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:41:27] [Craft Scheduler Thread - 736 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:43:27] [Craft Scheduler Thread - 738 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:43:27] [Craft Scheduler Thread - 738 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:45:27] [Craft Scheduler Thread - 739 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:45:28] [Craft Scheduler Thread - 739 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:47:28] [Craft Scheduler Thread - 743 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:47:28] [Craft Scheduler Thread - 743 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:49:28] [Craft Scheduler Thread - 742 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:49:28] [Craft Scheduler Thread - 742 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:51:28] [Craft Scheduler Thread - 733 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:51:28] [Craft Scheduler Thread - 733 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:53:28] [Craft Scheduler Thread - 746 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:53:29] [Craft Scheduler Thread - 746 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:55:29] [Craft Scheduler Thread - 738 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:55:29] [Craft Scheduler Thread - 738 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:57:29] [Craft Scheduler Thread - 747 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:57:29] [Craft Scheduler Thread - 747 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[16:59:29] [Craft Scheduler Thread - 749 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[16:59:30] [Craft Scheduler Thread - 749 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:01:30] [Craft Scheduler Thread - 751 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:01:30] [Craft Scheduler Thread - 751 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:03:30] [Craft Scheduler Thread - 749 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:03:30] [Craft Scheduler Thread - 749 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:05:30] [Craft Scheduler Thread - 753 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:05:30] [Craft Scheduler Thread - 753 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:07:30] [Craft Scheduler Thread - 753 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:07:32] [Craft Scheduler Thread - 753 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:09:32] [Craft Scheduler Thread - 756 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:09:33] [Craft Scheduler Thread - 756 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:11:33] [Craft Scheduler Thread - 756 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:11:33] [Craft Scheduler Thread - 756 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:12:43] [Server thread/INFO]: [Essentials] Essentials updated the underlying Player object for bea745de-9dbd-2f37-90f0-77781ef54cc9
[17:13:33] [Craft Scheduler Thread - 758 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:13:33] [Craft Scheduler Thread - 758 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:15:33] [Craft Scheduler Thread - 754 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:15:34] [Craft Scheduler Thread - 754 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:17:34] [Craft Scheduler Thread - 754 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:17:34] [Craft Scheduler Thread - 754 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:19:34] [Craft Scheduler Thread - 756 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:19:35] [Craft Scheduler Thread - 756 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:21:35] [Craft Scheduler Thread - 756 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:21:35] [Craft Scheduler Thread - 756 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:23:35] [Craft Scheduler Thread - 766 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:23:36] [Craft Scheduler Thread - 766 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:25:36] [Craft Scheduler Thread - 756 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:25:37] [Craft Scheduler Thread - 756 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:27:37] [Craft Scheduler Thread - 767 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:27:37] [Craft Scheduler Thread - 767 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:29:37] [Craft Scheduler Thread - 756 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:29:37] [Craft Scheduler Thread - 756 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:31:37] [Craft Scheduler Thread - 772 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:31:38] [Craft Scheduler Thread - 772 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:33:38] [Craft Scheduler Thread - 756 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:33:38] [Craft Scheduler Thread - 756 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:35:38] [Craft Scheduler Thread - 771 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:35:39] [Craft Scheduler Thread - 771 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:37:39] [Craft Scheduler Thread - 776 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:37:39] [Craft Scheduler Thread - 776 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:39:39] [Craft Scheduler Thread - 780 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:39:39] [Craft Scheduler Thread - 780 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:40:25] [Server thread/INFO]: [Essentials] Essentials updated the underlying Player object for bea745de-9dbd-2f37-90f0-77781ef54cc9
[17:41:39] [Craft Scheduler Thread - 782 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:41:39] [Craft Scheduler Thread - 782 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:43:39] [Craft Scheduler Thread - 783 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:43:41] [Craft Scheduler Thread - 783 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:45:41] [Craft Scheduler Thread - 786 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:45:41] [Craft Scheduler Thread - 786 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:47:41] [Craft Scheduler Thread - 785 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:47:41] [Craft Scheduler Thread - 785 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:49:41] [Craft Scheduler Thread - 789 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:49:42] [Craft Scheduler Thread - 789 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:51:42] [Craft Scheduler Thread - 786 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:51:43] [Craft Scheduler Thread - 786 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:53:43] [Craft Scheduler Thread - 790 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:53:43] [Craft Scheduler Thread - 790 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:55:43] [Craft Scheduler Thread - 789 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:55:43] [Craft Scheduler Thread - 789 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:57:43] [Craft Scheduler Thread - 789 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:57:44] [Craft Scheduler Thread - 789 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:59:44] [Craft Scheduler Thread - 796 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:59:44] [Craft Scheduler Thread - 796 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:01:44] [Craft Scheduler Thread - 790 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:01:44] [Craft Scheduler Thread - 790 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:03:44] [Craft Scheduler Thread - 797 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:03:44] [Craft Scheduler Thread - 797 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:05:44] [Craft Scheduler Thread - 800 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:05:45] [Craft Scheduler Thread - 800 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:07:45] [Craft Scheduler Thread - 797 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:07:47] [Craft Scheduler Thread - 797 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:09:47] [Craft Scheduler Thread - 797 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:09:47] [Craft Scheduler Thread - 797 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:11:47] [Craft Scheduler Thread - 807 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:11:47] [Craft Scheduler Thread - 807 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:13:47] [Craft Scheduler Thread - 812 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:13:51] [Craft Scheduler Thread - 812 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:15:51] [Craft Scheduler Thread - 810 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:15:51] [Craft Scheduler Thread - 810 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:17:51] [Craft Scheduler Thread - 816 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:17:51] [Craft Scheduler Thread - 816 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:19:51] [Craft Scheduler Thread - 810 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:19:52] [Craft Scheduler Thread - 810 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:21:52] [Craft Scheduler Thread - 810 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:21:53] [Craft Scheduler Thread - 810 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:23:53] [Craft Scheduler Thread - 808 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:23:53] [Craft Scheduler Thread - 808 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:25:53] [Craft Scheduler Thread - 824 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:25:54] [Craft Scheduler Thread - 824 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:26:23] [Craft Scheduler Thread - 825 - TradeShop/ERROR]: [TradeShop Debug - DEV_EXPIRATION] You are currently running a DEV version that is past its expiration date.
[18:26:23] [Craft Scheduler Thread - 825 - TradeShop/ERROR]: [TradeShop Debug - DEV_EXPIRATION] Please update to a newer DEV version for testing or BETA/RELEASE if on a live server.
[18:27:54] [Craft Scheduler Thread - 821 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:27:54] [Craft Scheduler Thread - 821 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:29:54] [Craft Scheduler Thread - 818 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:29:54] [Craft Scheduler Thread - 818 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:31:54] [Craft Scheduler Thread - 821 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:31:54] [Craft Scheduler Thread - 821 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:33:37] [Server thread/INFO]: [Essentials] Essentials updated the underlying Player object for bea745de-9dbd-2f37-90f0-77781ef54cc9
[18:33:54] [Craft Scheduler Thread - 827 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:33:55] [Craft Scheduler Thread - 827 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:35:55] [Craft Scheduler Thread - 831 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:35:55] [Craft Scheduler Thread - 831 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:37:55] [Craft Scheduler Thread - 829 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:37:55] [Craft Scheduler Thread - 829 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:39:55] [Craft Scheduler Thread - 838 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:39:56] [Craft Scheduler Thread - 838 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:41:56] [Craft Scheduler Thread - 838 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:41:56] [Craft Scheduler Thread - 838 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:42:33] [Craft Scheduler Thread - 831 - BuycraftX/ERROR]: [BuycraftX] Error whilst retrieving listing
java.net.SocketTimeoutException: timeout
    at net.buycraft.plugin.internal.okhttp3.internal.http2.Http2Stream$StreamTimeout.newTimeoutException(Http2Stream.java:656) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http2.Http2Stream$StreamTimeout.exitAndThrowIfTimedOut(Http2Stream.java:664) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http2.Http2Stream.takeHeaders(Http2Stream.java:153) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http2.Http2Codec.readResponseHeaders(Http2Codec.java:131) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.CallServerInterceptor.intercept(CallServerInterceptor.java:88) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.java:45) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.java:93) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.java:93) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.java:126) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.BuyCraftAPI$1.intercept(BuyCraftAPI.java:59) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.BuyCraftAPI$2.intercept(BuyCraftAPI.java:53) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.RealCall.getResponseWithInterceptorChain(RealCall.java:254) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.RealCall.execute(RealCall.java:92) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.retrofit2.OkHttpCall.execute(OkHttpCall.java:186) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.shared.tasks.ListingUpdateTask.run(ListingUpdateTask.java:32) ~[BuycraftX.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-167]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.20.1.jar:git-Paper-167]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.20.1.jar:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:43:56] [Craft Scheduler Thread - 827 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:43:56] [Craft Scheduler Thread - 827 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:45:56] [Craft Scheduler Thread - 844 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:45:57] [Craft Scheduler Thread - 844 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:47:57] [Craft Scheduler Thread - 845 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:47:57] [Craft Scheduler Thread - 845 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:49:57] [Craft Scheduler Thread - 843 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:49:57] [Craft Scheduler Thread - 843 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:51:57] [Craft Scheduler Thread - 843 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:51:57] [Craft Scheduler Thread - 843 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:53:57] [Craft Scheduler Thread - 849 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:53:58] [Craft Scheduler Thread - 849 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:55:58] [Craft Scheduler Thread - 854 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:55:58] [Craft Scheduler Thread - 854 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:57:58] [Craft Scheduler Thread - 853 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:57:58] [Craft Scheduler Thread - 853 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:59:58] [Craft Scheduler Thread - 849 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:59:58] [Craft Scheduler Thread - 849 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:01:58] [Craft Scheduler Thread - 860 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:02:02] [Craft Scheduler Thread - 860 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:04:02] [Craft Scheduler Thread - 860 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:04:02] [Craft Scheduler Thread - 860 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:06:02] [Craft Scheduler Thread - 862 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:06:02] [Craft Scheduler Thread - 862 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:08:02] [Craft Scheduler Thread - 864 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:08:06] [Craft Scheduler Thread - 864 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:10:06] [Craft Scheduler Thread - 867 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:10:07] [Craft Scheduler Thread - 867 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:12:07] [Craft Scheduler Thread - 850 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:12:17] [Craft Scheduler Thread - 850 - BuycraftX/ERROR]: [BuycraftX] Could not fetch due players queue
java.net.SocketTimeoutException: timeout
    at net.buycraft.plugin.internal.okhttp3.internal.http2.Http2Stream$StreamTimeout.newTimeoutException(Http2Stream.java:656) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http2.Http2Stream$StreamTimeout.exitAndThrowIfTimedOut(Http2Stream.java:664) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http2.Http2Stream.takeHeaders(Http2Stream.java:153) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http2.Http2Codec.readResponseHeaders(Http2Codec.java:131) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.CallServerInterceptor.intercept(CallServerInterceptor.java:88) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.java:45) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.java:93) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.java:93) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.java:126) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.BuyCraftAPI$1.intercept(BuyCraftAPI.java:59) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.BuyCraftAPI$2.intercept(BuyCraftAPI.java:53) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.RealCall.getResponseWithInterceptorChain(RealCall.java:254) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.okhttp3.RealCall.execute(RealCall.java:92) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.internal.retrofit2.OkHttpCall.execute(OkHttpCall.java:186) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.execution.DuePlayerFetcher.run(DuePlayerFetcher.java:62) ~[BuycraftX.jar:?]
    at net.buycraft.plugin.execution.DuePlayerFetcher.run(DuePlayerFetcher.java:38) ~[BuycraftX.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-167]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.20.1.jar:git-Paper-167]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.20.1.jar:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[19:14:28] [JDA MainWS-ReadThread/INFO]: Discord » (Staff) Fortune Craft Lobby: **DuckManKian** has joined the Lobby Server
[19:14:28] [Server thread/INFO]: discord → (Staff) Fortune Craft Lobby: DuckManKian has joined the Lobby Server
[19:14:30] [Netty Epoll Server IO #2/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "36be4d95-b982-432e-970b-23bdc6666aca".
[19:14:30] [User Authenticator #19/INFO]: UUID of player DuckManKian is 36be4d95-b982-432e-970b-23bdc6666aca
[19:14:30] [Server thread/INFO]: (Staff) DuckManKian has joined the game
[19:14:30] [Server thread/INFO]: [+] DuckManKian
[19:14:30] [Server thread/INFO]: DuckManKian[/2.98.33.249:42692] logged in with entity id 246189 at ([TheWilds]-593.7688807547396, 104.0, -1347.5736401277338)
[19:14:30] [JDA MainWS-ReadThread/INFO]: Discord » (Staff) Fortune Craft Lobby: **DuckManKian** has quit the Lobby Server
[19:14:30] [Server thread/INFO]: discord → (Staff) Fortune Craft Lobby: DuckManKian has quit the Lobby Server
[19:14:35] [Server thread/INFO]: DuckManKian issued server command: /warp elevator2
[19:14:36] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[19:14:37] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[19:14:40] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:14:41] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:14:48] [Server thread/INFO]: DuckManKian issued server command: /sentinel reach 2
[19:14:49] [Server thread/INFO]: DuckManKian issued server command: /gm 0
[19:14:52] [Server thread/INFO]: [Essentials] Created a User for Raider (92b1c363-273c-236b-9bed-488ccba12372) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[19:15:02] [Server thread/INFO]: DuckManKian issued server command: /heal
[19:15:05] [Server thread/INFO]: DuckManKian issued server command: /sentinel reach 1
[19:15:16] [Server thread/INFO]: DuckManKian issued server command: /eal
[19:15:17] [Server thread/INFO]: DuckManKian issued server command: /heal
[19:15:19] [Server thread/INFO]: DuckManKian issued server command: /god
[19:15:23] [Craft Scheduler Thread - 866 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[19:15:24] [Server thread/INFO]: DuckManKian issued server command: /sentinel reach 1.5
[19:15:36] [Server thread/INFO]: DuckManKian issued server command: /sentinel reach 2
[19:16:11] [Server thread/INFO]: DuckManKian issued server command: /sentinel attackrate
[19:16:14] [Server thread/INFO]: DuckManKian issued server command: /sentinel attackrate 2 2
[19:16:16] [Server thread/INFO]: DuckManKian issued server command: /sentinel attackrate
[19:16:31] [Server thread/INFO]: DuckManKian issued server command: /sentinel attackrate 3
[19:16:47] [Server thread/INFO]: DuckManKian issued server command: /sentinel 1
[19:16:49] [Server thread/INFO]: DuckManKian issued server command: /sentinel attackrate 1
[19:17:00] [Server thread/INFO]: DuckManKian issued server command: /god
[19:17:01] [Server thread/INFO]: DuckManKian issued server command: /gm1
[19:17:01] [Server thread/INFO]: DuckManKian was slain by Raider
[19:17:03] [Server thread/INFO]: DuckManKian issued server command: /back
[19:17:04] [Server thread/INFO]: DuckManKian issued server command: /gm 1
[19:17:11] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:17:12] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:17:16] [Server thread/INFO]: DuckManKian issued server command: /sentinel attackrate 1
[19:17:17] [Craft Scheduler Thread - 868 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:17:17] [Craft Scheduler Thread - 868 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:17:20] [Server thread/INFO]: DuckManKian issued server command: /sentinel reach 2
[19:17:27] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:17:31] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:17:33] [Server thread/INFO]: DuckManKian issued server command: /sentinel attackrate 1
[19:17:34] [Server thread/INFO]: DuckManKian issued server command: /sentinel reach 2
[19:17:38] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:17:39] [Server thread/INFO]: DuckManKian issued server command: /sentinel attackrate 1
[19:17:40] [Server thread/INFO]: DuckManKian issued server command: /sentinel reach 2
[19:17:41] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[19:17:43] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[19:17:46] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:17:47] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:17:49] [Server thread/INFO]: DuckManKian issued server command: /sentinel attackrate 1
[19:17:50] [Server thread/INFO]: DuckManKian issued server command: /sentinel reach 2
[19:17:53] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:17:53] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:17:55] [Server thread/INFO]: DuckManKian issued server command: /sentinel attackrate 1
[19:17:55] [Server thread/INFO]: DuckManKian issued server command: /sentinel reach 2
[19:18:01] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:18:02] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:18:03] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:18:04] [Server thread/INFO]: DuckManKian issued server command: /sentinel attackrate 1
[19:18:05] [Server thread/INFO]: DuckManKian issued server command: /sentinel reach 2
[19:18:11] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:18:13] [Server thread/INFO]: DuckManKian issued server command: /sentinel reach 2
[19:18:14] [Server thread/INFO]: DuckManKian issued server command: /sentinel attackrate 1
[19:18:16] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:18:16] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[19:18:18] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[19:18:18] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:18:20] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:18:21] [Server thread/INFO]: DuckManKian issued server command: /sentinel reach 2
[19:18:22] [Server thread/INFO]: DuckManKian issued server command: /sentinel attackrate 1
[19:18:27] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:18:28] [Server thread/INFO]: DuckManKian issued server command: /sentinel reach 2
[19:18:29] [Server thread/INFO]: DuckManKian issued server command: /sentinel attackrate 1
[19:18:30] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[19:18:34] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[19:18:36] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[19:18:36] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[19:18:38] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:18:39] [Server thread/INFO]: DuckManKian issued server command: /sentinel attackrate 1
[19:18:40] [Server thread/INFO]: DuckManKian issued server command: /sentinel reach 2
[19:18:40] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[19:18:50] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[19:18:53] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:18:54] [Server thread/INFO]: DuckManKian issued server command: /sentinel attackrate 1
[19:18:55] [Server thread/INFO]: DuckManKian issued server command: /sentinel reach 2
[19:18:58] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:19:01] [Server thread/INFO]: DuckManKian issued server command: /sentinel attackrate 1
[19:19:02] [Server thread/INFO]: DuckManKian issued server command: /sentinel reach 2
[19:19:05] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:19:06] [Server thread/INFO]: DuckManKian issued server command: /sentinel attackrate 1
[19:19:07] [Server thread/INFO]: DuckManKian issued server command: /sentinel reach 2
[19:19:10] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:19:11] [Server thread/INFO]: DuckManKian issued server command: /sentinel attackrate 1
[19:19:12] [Server thread/INFO]: DuckManKian issued server command: /sentinel reach 2
[19:19:14] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[19:19:15] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[19:19:17] [Craft Scheduler Thread - 869 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:19:18] [Craft Scheduler Thread - 869 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:19:18] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:19:19] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:19:21] [Server thread/INFO]: DuckManKian issued server command: /sentinel reach 2
[19:19:55] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[19:20:00] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[19:21:18] [Craft Scheduler Thread - 869 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:21:18] [Craft Scheduler Thread - 869 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:22:23] [Netty Epoll Server IO #2/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "8b871cae-d312-4a78-9b8d-01d806e93fb9".
[19:22:23] [User Authenticator #20/INFO]: UUID of player ObliviousWaffle is 8b871cae-d312-4a78-9b8d-01d806e93fb9
[19:22:23] [Server thread/INFO]: [+] ObliviousWaffle
[19:22:23] [Server thread/INFO]: ObliviousWaffle[/81.140.161.4:60552] logged in with entity id 255887 at ([TheWilds]-580.6593544608913, 105.0, -1346.7127172709907)
[19:22:38] [Async Chat Thread - #33/INFO]: <Deckhand | ObliviousWaffle | Joyful> hihi
[19:23:14] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] Chat: [Discord | Overheat > wafl
[19:23:18] [Craft Scheduler Thread - 879 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:23:20] [Craft Scheduler Thread - 879 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:23:20] [Async Chat Thread - #33/INFO]: <Deckhand | ObliviousWaffle | Joyful> hi ice
[19:23:23] [Craft Scheduler Thread - 868 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[19:24:05] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] Chat: [Discord | Overheat > did you fix the bugs yet
[19:24:13] [Async Chat Thread - #34/INFO]: <Deckhand | ObliviousWaffle | Joyful> not all of them
[19:25:04] [Server thread/INFO]: DuckManKian issued server command: /tp ObliviousWaffle
[19:25:12] [Server thread/INFO]: DuckManKian issued server command: /trust obliviouswaffle builder
[19:25:20] [Craft Scheduler Thread - 850 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:25:20] [Craft Scheduler Thread - 850 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:25:40] [Server thread/INFO]: DuckManKian issued server command: /warp elevator2
[19:25:44] [Server thread/INFO]: DuckManKian issued server command: /tphere ObliviousWaffle
[19:25:48] [Server thread/INFO]: DuckManKian issued server command: /kit give
[19:25:51] [Server thread/INFO]: DuckManKian issued server command: /kit give ObliviousWaffle moj
[19:25:57] [Server thread/INFO]: DuckManKian issued server command: /kit give moj ObliviousWaffle
[19:26:04] [Server thread/INFO]: DuckManKian issued server command: /gm 0 ObliviousWaffle
[19:26:33] [Server thread/INFO]: [Essentials] Created a User for Raider (c158a245-5ff9-2aa8-9360-4881a889eb1f) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[19:27:20] [Craft Scheduler Thread - 885 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:27:20] [Craft Scheduler Thread - 885 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:28:01] [Server thread/INFO]: DuckManKian issued server command: /sentinel greeting
[19:28:08] [Server thread/INFO]: [Essentials] Created a User for Raider (9b07a568-5e17-28f5-9766-45376ba82674) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[19:28:24] [Server thread/INFO]: ObliviousWaffle was slain by Raider
[19:28:43] [Server thread/INFO]: DuckManKian issued server command: /sentinel greeting &4Trying to resist me? Hah, good luck!
[19:28:46] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[19:28:49] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[19:28:49] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] Chat: [Discord | Overheat > wafl ded
[19:28:51] [Server thread/INFO]: DuckManKian issued server command: /tphere ObliviousWaffle
[19:28:55] [Async Chat Thread - #36/INFO]: <Deckhand | ObliviousWaffle | Joyful> i did ded
[19:29:04] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] Chat: [Discord | Overheat > sadge
[19:29:05] [Server thread/INFO]: [Essentials] Created a User for Raider (4e60507d-18e2-2586-a618-72970ac76432) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[19:29:20] [Server thread/INFO]: [Essentials] Created a User for Raider (9a696996-6bcd-237f-b09d-77532c1db39e) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[19:29:20] [Craft Scheduler Thread - 886 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:29:20] [Craft Scheduler Thread - 886 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:29:47] [Server thread/INFO]: [Essentials] Essentials updated the underlying Player object for 22695dee-40be-2c97-9f3d-d0cd88bdfd2d
[19:30:05] [Server thread/INFO]: [Essentials] Essentials updated the underlying Player object for 8683c875-5a89-26df-9219-70fd3414d8cf
[19:30:35] [Server thread/INFO]: DuckManKian issued server command: /gm 1 ObliviousWaffle
[19:30:36] [Server thread/INFO]: DuckManKian issued server command: /gamemode spectator
[19:30:37] [Server thread/INFO]: DuckManKian issued server command: /gamemode creative
[19:30:39] [Server thread/INFO]: DuckManKian issued server command: /tphere ObliviousWaffle
[19:30:51] [Server thread/INFO]: DuckManKian issued server command: /untrust obliviouswaffle
[19:31:15] [Server thread/INFO]: DuckManKian issued server command: /god
[19:31:16] [Server thread/INFO]: DuckManKian issued server command: /gm 0
[19:31:20] [Craft Scheduler Thread - 889 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:31:21] [Craft Scheduler Thread - 889 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:31:28] [Server thread/INFO]: [Essentials] Essentials updated the underlying Player object for 92b1c363-273c-236b-9bed-488ccba12372
[19:31:41] [Server thread/INFO]: [Essentials] Essentials updated the underlying Player object for c158a245-5ff9-2aa8-9360-4881a889eb1f
[19:31:47] [Server thread/INFO]: DuckManKian issued server command: /gm 1
[19:32:08] [Server thread/INFO]: [Essentials] Essentials updated the underlying Player object for cd93a01e-add3-232e-a4cc-b80afce80e07
[19:32:23] [Server thread/INFO]: DuckManKian issued server command: /gm 0
[19:32:48] [Server thread/INFO]: [Essentials] Essentials updated the underlying Player object for bea745de-9dbd-2f37-90f0-77781ef54cc9
[19:32:56] [Server thread/INFO]: [Essentials] Essentials updated the underlying Player object for 7937fb50-c722-25c7-a1c5-16a508ee70d4
[19:33:21] [Craft Scheduler Thread - 872 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:33:21] [Craft Scheduler Thread - 872 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:33:40] [Server thread/INFO]: DuckManKian issued server command: /gm 1
[19:34:01] [Server thread/INFO]: DuckManKian issued server command: /npc select
[19:34:06] [Server thread/INFO]: DuckManKian issued server command: /sentinel greetrate
[19:34:10] [Server thread/INFO]: DuckManKian issued server command: /sentinel greetrate 2
[19:34:21] [Server thread/INFO]: DuckManKian issued server command: /gm 0
[19:34:30] [Server thread/INFO]: DuckManKian issued server command: /gm 1
[19:34:39] [Server thread/INFO]: DuckManKian issued server command: /gm 0
[19:34:48] [Server thread/INFO]: DuckManKian issued server command: /gm 1
[19:35:04] [Server thread/INFO]: DuckManKian issued server command: /gm 0
[19:35:08] [Server thread/INFO]: DuckManKian issued server command: /gm 1
[19:35:21] [Craft Scheduler Thread - 872 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:35:22] [Craft Scheduler Thread - 872 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:37:22] [Craft Scheduler Thread - 894 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:37:22] [Craft Scheduler Thread - 894 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:37:56] [Server thread/INFO]: DuckManKian issued server command: /trust obliviouswaffle builder
[19:38:19] [Server thread/INFO]: DuckManKian issued server command: /gm 0
[19:38:23] [Server thread/INFO]: DuckManKian issued server command: /gm 1
[19:39:22] [Craft Scheduler Thread - 895 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:39:22] [Craft Scheduler Thread - 895 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:41:22] [Craft Scheduler Thread - 899 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:41:22] [Craft Scheduler Thread - 899 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:43:22] [Craft Scheduler Thread - 899 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:43:22] [Craft Scheduler Thread - 899 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:45:22] [Craft Scheduler Thread - 887 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:45:23] [Craft Scheduler Thread - 887 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:47:23] [Craft Scheduler Thread - 892 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:47:23] [Craft Scheduler Thread - 892 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:49:23] [Craft Scheduler Thread - 892 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:49:23] [Craft Scheduler Thread - 892 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:51:23] [Craft Scheduler Thread - 910 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:51:24] [Craft Scheduler Thread - 910 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:53:24] [Craft Scheduler Thread - 910 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:53:24] [Craft Scheduler Thread - 910 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:55:24] [Craft Scheduler Thread - 910 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:55:25] [Craft Scheduler Thread - 910 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:56:12] [Server thread/INFO]: [Essentials] Created a User for CIT-9efcd3ff2678 (9efcd3ff-2678-2695-ba5c-5ab0ade47d53) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[19:57:25] [Craft Scheduler Thread - 902 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:57:25] [Craft Scheduler Thread - 902 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:59:25] [Craft Scheduler Thread - 912 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:59:25] [Craft Scheduler Thread - 912 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:01:25] [Craft Scheduler Thread - 919 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:01:28] [Craft Scheduler Thread - 919 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:03:28] [Craft Scheduler Thread - 918 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:03:28] [Craft Scheduler Thread - 918 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:05:28] [Craft Scheduler Thread - 912 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:05:33] [Craft Scheduler Thread - 912 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:07:33] [Craft Scheduler Thread - 912 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:07:33] [Craft Scheduler Thread - 912 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:09:33] [Craft Scheduler Thread - 927 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:09:34] [Craft Scheduler Thread - 927 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:11:34] [Craft Scheduler Thread - 920 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:11:34] [Craft Scheduler Thread - 920 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:13:34] [Craft Scheduler Thread - 932 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:13:34] [Craft Scheduler Thread - 932 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:15:34] [Craft Scheduler Thread - 933 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:15:34] [Craft Scheduler Thread - 933 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:17:34] [Craft Scheduler Thread - 932 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:17:34] [Craft Scheduler Thread - 932 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:19:34] [Craft Scheduler Thread - 932 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:19:35] [Craft Scheduler Thread - 932 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:21:35] [Craft Scheduler Thread - 933 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:21:35] [Craft Scheduler Thread - 933 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:21:59] [Server thread/INFO]: ObliviousWaffle lost connection: Disconnected
[20:21:59] [Server thread/INFO]: [voicechat] Disconnecting client ObliviousWaffle
[20:21:59] [Server thread/INFO]: [-] ObliviousWaffle
[20:22:23] [Craft Scheduler Thread - 936 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[20:23:07] [Netty Epoll Server IO #1/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "8b871cae-d312-4a78-9b8d-01d806e93fb9".
[20:23:07] [User Authenticator #21/INFO]: UUID of player ObliviousWaffle is 8b871cae-d312-4a78-9b8d-01d806e93fb9
[20:23:07] [Server thread/INFO]: [+] ObliviousWaffle
[20:23:07] [Server thread/INFO]: ObliviousWaffle[/81.140.161.4:53374] logged in with entity id 353721 at ([TheWilds]-556.1703685501508, 105.6950660671307, -1337.300000011921)
[20:23:20] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] Chat: [Discord | rocketmankian > Getting close
[20:23:23] [Craft Scheduler Thread - 932 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[20:23:35] [Craft Scheduler Thread - 936 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:23:36] [Craft Scheduler Thread - 936 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:25:36] [Craft Scheduler Thread - 942 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:25:36] [Craft Scheduler Thread - 942 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:27:36] [Craft Scheduler Thread - 945 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:27:36] [Craft Scheduler Thread - 945 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:29:36] [Craft Scheduler Thread - 942 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:29:36] [Craft Scheduler Thread - 942 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:31:36] [Craft Scheduler Thread - 950 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:31:37] [Craft Scheduler Thread - 950 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:33:37] [Craft Scheduler Thread - 945 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:33:38] [Craft Scheduler Thread - 945 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:35:38] [Craft Scheduler Thread - 944 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:35:38] [Craft Scheduler Thread - 944 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:37:38] [Craft Scheduler Thread - 953 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:37:41] [Craft Scheduler Thread - 953 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:39:41] [Craft Scheduler Thread - 944 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:39:47] [Craft Scheduler Thread - 944 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:41:47] [Craft Scheduler Thread - 960 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:41:52] [Craft Scheduler Thread - 960 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:43:52] [Craft Scheduler Thread - 956 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:43:52] [Craft Scheduler Thread - 956 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:45:52] [Craft Scheduler Thread - 960 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:45:52] [Craft Scheduler Thread - 960 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:47:34] [Netty Epoll Server IO #1/INFO]: [SafeNET] ACCEPTED (code B0): Authenticated "00000000-0000-0000-0009-01f25299166d".
[20:47:34] [User Authenticator #22/INFO]: UUID of player .PeakGlue8651673 is 00000000-0000-0000-0009-01f25299166d
[20:47:34] [Server thread/INFO]: [floodgate] Floodgate player logged in as .PeakGlue8651673 joined (UUID: 00000000-0000-0000-0009-01f25299166d)
[20:47:34] [Server thread/INFO]: [+] .PeakGlue8651673
[20:47:34] [Server thread/INFO]: .PeakGlue8651673[/90.195.21.255:55644] logged in with entity id 395992 at ([TheWilds]-581.9872, 104.0, -1350.7054)
[20:47:52] [Craft Scheduler Thread - 953 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:47:52] [Craft Scheduler Thread - 953 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:48:23] [Craft Scheduler Thread - 963 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[20:48:54] [Server thread/INFO]: DuckManKian issued server command: /gm 0
[20:49:01] [Server thread/INFO]: [Essentials] Created a User for Raider (92b1c363-273c-236b-9bed-488ccba12372) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[20:49:09] [Server thread/INFO]: DuckManKian issued server command: /gm 1
[20:49:52] [Craft Scheduler Thread - 964 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[20:49:53] [Craft Scheduler Thread - 964 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[20:50:23] [Craft Scheduler Thread - 955 - TradeShop/ERROR]: [TradeShop Debug - DEV_EXPIRATION] You are currently running a DEV version that is past its expiration date.
[20:50:23] [Craft Scheduler Thread - 955 - TradeShop/ERROR]: [TradeShop Debug - DEV_EXPIRATION] Please update to a newer DEV version for testing or BETA/RELEASE if on a live server.